body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #F8F9FA;
  color: #1e2833;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Navbar & General UI */
.navbar-toggler { border: none !important; box-shadow: none !important; background: transparent !important; }
.navbar-brand img { height: 32px; margin-right: 8px; }
.nav-brand-name { font-size: 16px; color: #0272cb; font-weight: 600; margin-left: 8px; padding-bottom: 8px; white-space: nowrap; letter-spacing: 0px; }
.navbar-toggler .bi-list { color: #647CFF; transition: color 0.16s; }
.navbar-toggler:active .bi-list, .navbar-toggler:focus .bi-list { color: #0015ff; }

@media (min-width: 992px) {
  .navbar-nav { justify-content: center; width: 100%; gap: 24px; }
  .navbar-collapse { justify-content: center; }
}
@media (max-width:991px) {
  .navbar-nav { gap: 0; }
  .demo-btn { width: 100%; margin-top: 1rem; }
}
.navbar-nav .nav-link { padding-right: 1rem; color: #333; font-weight: 500; transition: color 0.2s; }
.nav-link.active, .nav-link:active { color: #0272cb !important; font-weight: bold; }


/* --------- CTA Button --------- */
.demo-btn {
  display: inline-block;
  white-space: nowrap;
  background: #ff8800;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  padding: 10px 26px;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 6px rgba(255,136,0,0.14);
  letter-spacing: 0.01em;
  vertical-align: middle;
  min-width: unset;
  max-width: unset;
  width: auto;
}
.demo-btn:hover, .demo-btn:focus {
  background: #ff7100;
  color: #fff;
  box-shadow: 0 2px 10px rgba(255,136,0,0.18);
}

/* --------- HERO --------- */
.hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background: #143447;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/Hero section.png');
  background-size: cover;
  background-position: center;
}
.hero-content {
  width: 80vw;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 0 48px 0;
}
.hero-textzone {
  max-width: 800px;
  width: 100%;
  color: #fff;
  text-align: center;
}
.hero-textzone h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.14;
  color: #fff;
}
.hero-textzone p {
  font-size: 1.25rem;
  color: #f5f5f5;
  margin-bottom: 22px;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1162px) {
  .hero-textzone h1 {
    font-size: 2rem;   /* Shrink from desktop size */
    line-height: 120% ;
  }
  .hero-textzone p {
    font-size: 1rem;   /* Shrink from desktop size */
    line-height: 1.5;
  }
}


/* --------- STATS --------- */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 34px auto 34px auto;
  padding: 12px 0 12px 0;
  justify-items: center;
  text-align: center;
}
.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #ff7700;
}
.stat-desc { font-size: 1.1rem; font-weight: 600; }

/* Mobile Grid Layout */
@media (max-width: 623px) {
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two columns on mobile */
    gap: 20px;
    margin: 24px 0;
    width: 100%;
  }
  .stat {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 0;
  }
  .stat-number {
    font-size: 1.5rem;
    color: #ff8400;
    font-weight: bold;
  }
  .stat-desc {
    font-size: 1rem;
    color: #232a39;
  }

}


/* --------- ABOUT US --------- */
.about-section {
  width: 100vw;
  padding: 16px 12px 16px 12px;
  background: #f8f9fa;
  display: flex;
  justify-content: center;
}

.about-card {
  width: 97vw;
  max-width: 99vw;
  background: #0866a0;
  color: #fff;
  border-radius: 14px;
  padding: 46px 50px 36px 50px;
  box-sizing: border-box;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .about-card {
    padding: 24px 24px;
  }
}

.about-card h2 {
  margin-top: 0;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.about-card p {
  font-size: 0.875rem;
  margin-bottom: 24px;
  color: #fff;
  line-height: 1.5;
}
.about-btn {
  background: #ff8800;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 1px 6px rgba(255,136,0,0.10);
  transition: background 0.16s;
}
.about-btn:hover,
.about-btn:focus {
  background: #ff7100;
  color: #fff;
}

/* --------- SERVICES SECTION --------- */
.services { padding: 44px 20px 24px 20px; }
.services h2 { font-size: 2rem; margin-bottom: 24px; color: #0272cb; font-weight: 700; }
.services-list {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 18px;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(36,72,97,0.1);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 320px;
}
.service-card img { width: 44px; margin-bottom: 12px; }
.service-card h3 { margin: 12px 0; font-size: 1.15rem; font-weight: 600; color: #005188; }
.service-card p { font-size: 16px; line-height: 150%; margin-bottom: 14px; color: #767676; }
.link-orange { color: #ff7700; font-weight: 600; text-decoration: none; }

@media (max-width: 1162px) {
  .services-list {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Space between each service item */
    padding: 0;
    margin: 0;
  }
  .service-item {
    width: 100%;
    padding: 16px 12px;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: left;
    font-size: 1rem;
  }
}


/* --------- CONNECT US SECTION --------- */
.connect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 58px 12px 58px 12px;
  background-color: #4a90fe;
  width: 100vw;
  box-sizing: border-box;
  min-height: 260px;
}
.certifications {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.cert-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
}
.connect-us-content {
  min-width: 320px;
  max-width: 320px;
  margin: 0 32px;
}
.connect-us-content h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0;
  margin-bottom: 10px;
}
.connect-us-content p {
  font-size: 1.18rem;
  color: #fff;
  margin-bottom: 0;
}
.contact-form {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.contact-form input[type="email"],
.contact-form input[type="text"] {
  padding: 18px 22px;
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  background: #f5f8fd;
  color: #222;
  min-width: 230px;
  height: 56px;
  outline: none;
  text-align: left;
}
.contact-form input[type="email"]:focus,
.contact-form input[type="text"]:focus {
  border: 2px solid #57C54C;
  background: #f5f8fd;
}
.contact-form .demo-btn {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff8800;
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 10px 16px;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 1px 6px rgba(255,136,0,0.10);
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form .demo-btn:hover { background-color: #e68200; color: #fff; }

/* Responsive: Stack fields and button */
@media (max-width: 700px) {
  .connect {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 16px 6px;
  }
  .contact-form {
    flex-direction: column;
    align-items: center;
    gap: 13px;
    width: 100%;
    max-width: 350px;
  }
  .contact-form input[type="email"], .contact-form input[type="text"] { width: 100%; max-width: 220px; }
  .contact-form .demo-btn { width: 100%; max-width: 220px; padding: 10px 16px 10px 16px; }
}


/* FOOTER styles */
footer {
  background: #1e2833;
  color: #fff;
  padding: 0;
  font-size: 15px;
  margin-top: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr 2.2fr;
  gap: 32px;
  padding: 38px 32px 0 32px;
}

.footer-col h3,
.footer-col h4 {
  color: #ff7700;
  margin-bottom: 8px;
  margin-top: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

/* NEW: Brand header with logo beside text */
.footer-brand h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  color: #F36F21;
  font-size: 1.35rem;
}

.footer-logo {
  height: 28px;
  margin-right: 8px;
  vertical-align: middle;
  /* Optional: border-radius: 4px; */
}

/* List and link styles */
.footer-brand ul,
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li,
.footer-brand ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand ul li,
.footer-brand ul li a {
  color: #fff;
}

.footer-col ul li a {
  color: #e8f3fd;
  text-decoration: none;
  font-size: 15px;
}

.footer-col ul li a:hover {
  color: #ff7700;
  text-decoration: underline;
}

.footer-contact p {
  margin: 0 0 10px 0;
}

.text-orange {
  color: #ff7700;
}

.footer-bottom {
  background: #151c22;
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
}

.footer-icon svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

/* Responsive footer grid */
@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 32px 18px 0 18px;
  }
}

@media (max-width: 700px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 24px 12px 0 12px;
    gap: 18px;
  }
  .footer-col {
    margin-bottom: 18px;
  }
}

/* Optional: links transition */
a, button {
  transition: all .2s;
}
