/* ====== GENERAL/BODY STYLES ====== */
html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #F8F9FA;
  color: #1e2833;
  overflow-x: hidden;
}

/* Navbar & General UI */
/* Main links */
.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;
}

/* Custom Hamburger Icon */
.navbar-toggler .bi-list {
  color: #647CFF;
  transition: color 0.16s;
}
.navbar-toggler:active .bi-list,
.navbar-toggler:focus .bi-list {
  color: #0015ff;
}

/* Center nav and gap on desktop */
@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; }
}

/* Nav link styling */
.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;   /* Use your brand blue */
  font-weight: bold;
}

/* Dropdown styling */
.dropdown-menu {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(100,124,255,0.07);
  border: 1px solid #e5e5e5;
  min-width: 230px;
}
.dropdown-item {
  font-size: 0.98rem;
  transition: background 0.1s, color 0.2s;
}
.dropdown-item:hover {
  background: #647CFF;
  color: #fff;
}

/* CTA Button */
.demo-btn {
  white-space: nowrap;
  background: #ff8800;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  padding: 0.7rem 2.1rem;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 6px rgba(255,136,0,0.14);
  letter-spacing: 0.01em;
  display: inline-block;
  vertical-align: middle;
}
.demo-btn:hover, .demo-btn:focus {
  background: #ff7100;
  color: #fff;
  box-shadow: 0 2px 10px rgba(255,136,0,0.18);
}

.navbar {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

@media (max-width:700px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 14px;
  }
}

.nav-links ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

    .navbar-brand img {
      height: 32px;
      margin-right: 8px;
    }
    .btn-primary {
      background: #647CFF;
      border-radius: 32px;
      font-weight: 600;
      border:none;
    }
    .btn-primary:hover {
      background: #57C54C;
      color: #fff;
    }
    @media (max-width: 991px) {
      .btn-primary { width: 100%; margin-top: 1rem; }
    }
    /* Custom menu spacing */
    .navbar-nav .nav-link {
      padding-right: 1rem;
    }
    /* Center nav and set gap on desktop */
@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 {
  white-space: nowrap;
  background: #ff8800;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
text-decoration: none;
  padding: 0.7rem 2.1rem;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 6px rgba(255,136,0,0.14);
  letter-spacing: 0.01em;
  display: inline-block; /* Prevent block wrapping */
  vertical-align: middle;
}
.demo-btn:hover, .demo-btn:focus {
  background: #ff7100;
  color: #fff;
  box-shadow: 0 2px 10px rgba(255,136,0,0.18);
}

.hero {
    position: relative;
    background: #222;
    color: #fff;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
   padding-top: 100px;
}

.hero-bg {
    background-image: url('image/about-background.png'); /* Replace with actual hero image */
    background-size: cover;
    background-position: center;
    position: absolute;
    inset: 0;
    opacity: 0.4;
    z-index: 1;
}
.about-content {
  width: 100%;
  display: flex;
  justify-content: center;   /* Center the .about-inner horizontally */
  align-items: center;
  padding: 32px 0;
}

.about-inner {
  width: 100%;
  text-align: center;        /* Center text inside */
  padding-right: 25px;
  padding-left: 25px ;
}

.about-inner p {
  text-align: start;        /* Paragraph text also centered */
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Mobile responsiveness */
@media (max-width: 700px) {
  .about-inner {
    max-width: 99vw;
    padding: 0 8px;
    font-size: 0.96rem;
  }
}


.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.hero .intro {
    font-size: 1.1rem;
    line-height: 1.7;
}

.mission-vision {
    display: flex;
    justify-content: center;
    padding: 28px 0;
}

.mission-vision-inner {
    display: flex;
    background: #0065A8;
    color: #fff;
    border-radius: 10px;
    width: 97%;
    max-width: 1500px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 30px 18px;
}

.mission, .vision {
    flex: 1 1 0;
    padding: 0 18px;
    text-align: center;
}

.mission h2, .vision h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 14px;
}

.mission p, .vision p {
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.divider {
    width: 2px;
    height: 90%;
    background: #eaf2f9;
    min-height: 120px;
    margin: 0 18px;
    border-radius: 2px;
    align-self: stretch;
}

@media (max-width: 700px) {
    .mission-vision-inner {
        flex-direction: column;
        gap: 16px;
        padding: 18px 7px;
    }
    .mission-vision-inner p {
      font-size: 14px;
    }
    .mission-vision h2{
      font-size: 24px;
    }
    .divider {
        display: none;
    }
    .mission, .vision {
        padding: 0;
    }
}

.how-we-do-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px; /* Set the gap between left/right blocks to 16px */
    padding: 34px 18px;
    align-items: flex-start;
}

.how-we-do-left, .how-we-do-right {
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
}

/* .how-we-do-left styles unchanged */
.how-we-do-left h2 {
    color: #1869ea;
    font-size: 2rem;
    margin-bottom: 18px;
    font-weight: bold;
}
.how-we-do-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #434343;
}

/* Sticky right container stays the same */
.sticky-section {
    position: sticky;
    top: 32px;
}

/* Make sure the icon and headings never overlap */
.how-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 0; /* More padding for spacing */
}

.how-icon {
    width: 34px;   /* Increased for actual icon/images */
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-right: 0;
    flex-shrink: 0;
    /* If using <img> or SVG, add: */
}

@media{
  .how-icon{
    width: 24px;
    height: 24px;
  }
}

.how-item h3 {
    font-size: 1.16rem;
    color: #fa8218;
    margin-bottom: 3px;
    font-weight: bold;
    margin-top: 0;
}

.how-item p {
    color: #434343;
    margin: 0;
    font-size: 1rem;
}

.how-we-do-right hr {
    border: none;
    border-top: 1px solid #eaeaea;
    margin: 8px 0;
}

@media (max-width: 950px) {
    .how-we-do-container {
        flex-direction: column;
        gap: 24px;
    }
    .sticky-section {
        position: static;
    }
    .how-we-do-left{
      font-size: 14px;
    }
    .how-we-do-right p{
      font-size: 14px;
      padding-top: 14px;
    }
    .how-we-do-right h2 {
      padding-left: 8px;
    }
   
}

.contact-cta {
    background: #1869ea;
    color: #fff;
    padding: 38px 0 38px 0;
    text-align: center;
    margin-top: 40px;
}
.contact-cta h2 {
    margin-bottom: 22px;
}
.cta-form {
    display: inline-flex;
    gap: 10px;
    width: 100%;
    max-width: 480px;
    justify-content: center;
}
.cta-form input {
    padding: 10px 14px;
    border: none;
    border-radius: 4px;
    width: 45%;
    font-size: 1rem;
}
.cta-form button {
    background: #f58927;
    color: #fff;
    padding: 0 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
@media {
  .contact-cta {
    background: #1869ea;
    color: #fff;
    padding: 38px 0 38px 0;
    text-align: center;
    margin-top: 40px;
}
.contact-cta h2 {
    margin-bottom: 22px;
}
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 480px;
    padding-right: 24px ;
    padding-left: 24px;
    margin: 0 auto;
}
.cta-form input {
    padding: 10px 14px;
    border: none;
    border-radius: 4px;
    width: 100%;
    font-size: 1rem;
}
.cta-form button {
    background: #f58927;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

}

.connect {
  padding: 26px 0;
  background: #2874ef;
  display: flex;
  justify-content: center;
  align-items: center;
}

.connect-card {
  background: #2874ef;
  border-radius: 18px;
  padding: 40px 16px 36px 16px;
  width: 95%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.connect-card h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
}

.contact-form {
  display: flex;
  flex-direction: row;
  gap: 15px;
  width: 100%;
  max-width: 660px;
  justify-content: center;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  padding: 15px 18px;
  font-size: 1rem;
  border-radius: 7px;
  border: 1.5px solid #d1e1fc;
  width: 40%;
  background: #fff;
  color: #222;
  transition: border 0.2s;
  outline: none;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus {
  border: 1.5px solid #2874ef;
}

.contact-form input[type="hidden"] {
  display: none;
}

.connect-submit {
  padding: 14px 22px;
  font-size: 1rem;
  background: #ff680b;
  color: #fff;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
  min-width: 110px;
}

.connect-submit:hover {
  background: #de5700;
}

@media (max-width: 650px) {
  .connect-card h2 {
    font-size: 1.3rem;
    margin-bottom: 22px;
  }
  .contact-form {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .contact-form input[type="text"],
  .contact-form input[type="email"] {
    width: 90%;
    max-width: 350px;
    font-size: 0.96rem;
    padding: 13px 14px;
  }
  .connect-submit {
    width: 90%;
    max-width: 350px;
    padding: 13px 0;
    font-size: 0.99rem;
  }
}



/* ========== FOOTER ============ */
.footer-new {
  background: linear-gradient(180deg, #3A5F79 0%, #233441 100%);
  font-size: 15px;
  padding: 0;
  margin: 0;
  border: none;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

/* Layout main row */
.footer-new-main {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 34px 26px 10px 26px;
  justify-content: space-between;
  align-items: flex-start;
}

/* Brand, left column */
.footer-brand {
  min-width: 240px;
  flex: 1.7 1 300px;
  margin-right: 44px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  vertical-align: middle;
}
.footer-brand-name {
  font-size: 2.1rem;
  color: #b8dafd;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.footer-brand-desc {
  font-size: 1.09rem;
  color: #e6f8ff;
  margin: 14px 0 2px 0;
  line-height: 1.6;
}
.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.09rem;
  color: #fff;
  font-weight: 500;
}
.footer-contact-item svg { flex-shrink: 0; }

/* Footer links */
.footer-links-row {
  display: flex;
  flex: 4 1 0%;
  gap: 44px;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
}
.footer-links-col {
  min-width: 150px;
  flex: 1 1 0;
}
.footer-links-col h4 {
  color: #fff;
  font-size: 1.13rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.footer-links-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links-col ul li {
  margin-bottom: 8px;
}
.footer-links-col ul li a {
  color: #d7e8f7;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.footer-links-col ul li a:hover {
  color: #ff7700;
  text-decoration: underline;
}

/* Divider line */
.footer-divider {
  width: 100vw;
  height: 1.5px;
  background: #959595;
  margin-top: 16px;
  border: none;
  display: block;
  position: relative;
}

/* Address bar */
.footer-addresses-row {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  padding: 30px 0;
  background: transparent;
}
.footer-address-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 180px;
  max-width: 300px;
  margin: 0 22px;
  font-size: 1rem;
}
.footer-address-title {
  color: #ff7700;
  font-weight: bold;
  font-size: 1.06rem;
  margin-bottom: 2px;
}
.footer-address-info {
  color: #fff;
  line-height: 1.5;
  font-size: 0.97rem;
}
.footer-address-divider {
  display: inline-block;
  height: 90px;
  width: 1.7px;
  background: #f9f9f9;
  margin: 0 24px;
  align-self: center;
  border-radius: 2px;
}

/* Footer bar bottom */
.footer-new-bar {
  width: 100%;
  background: none;
  color: #d7e8f7;
  font-size: 15px;
  padding: 18px 0 10px 0;
  letter-spacing: 0.01em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
    gap: 4px;
}
.footer-brand-highlight {
  color: #ff7700;
  font-weight: bold;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1100px) {
  .footer-new-main {
    flex-direction: column;
    gap: 24px;
    padding: 34px 20px 0 20px;
    align-items: flex-start;
  }
  .footer-brand {
    margin-right: 0;
  }
  .footer-links-row {
    flex-direction: column;
    gap: 22px;
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 800px) {
  .footer-brand-name { font-size: 1.25rem; }
  .footer-new-main { padding: 22px 0 0 0; }
  .footer-links-col h4 { font-size: 15px; margin-bottom: 10px; }
  .footer-address-title { font-size: 1rem; }
  .footer-address-info { font-size: 0.97rem; }
  .footer-brand-desc { font-size: 0.94rem; }
  .footer-new-bar { font-size: 15px; }
}
@media (max-width: 700px) {
  .footer-new {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .footer-new-main {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 16px 0 0 0 !important;
    padding-bottom: 0 !important;
  }
  .footer-brand {
    margin-bottom: 0 !important;
    padding-bottom: 24px !important;
    flex: initial !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .footer-links-row {
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
    margin-top: 0 !important;
  }
  .footer-addresses-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 17px !important;
    padding: 18px 0 8px 0 !important;
  }
  .footer-address-divider {
    display: none !important;
  }
  .footer-address-block {
    margin: 5px 0 !important;
    max-width: 95vw !important;
  }
}
