/* Navex consolidated styles */

:root {
      --navex-primary: #1d56a3;
      --navex-primary-dark: #143a70;
      --navex-secondary: #047939;
      --navex-dark: #111111;
      --navex-text: #1f1f1f;
      --navex-muted: #6c757d;
      --navex-bg: #ffffff;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--navex-text);
      background-color: var(--navex-bg);
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: "Overpass", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--navex-dark);
      letter-spacing: 0.02em;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:hover {
      text-decoration: none;
    }

    /* BUTTON SYSTEM */
    .btn {
      border-radius: 0;
      font-weight: 500;
    }

    .btn-primary,
    .btn-hero-primary,
    .btn-submit {
      background-color: var(--navex-primary);
      border-color: var(--navex-primary);
      color: #ffffff;
    }

    .btn-primary:hover,
    .btn-hero-primary:hover,
    .btn-submit:hover {
      background-color: var(--navex-primary-dark);
      border-color: var(--navex-primary-dark);
      color: #ffffff;
    }

    .btn-outline-primary,
    .btn-contact,
    .btn-hero-secondary {
      border-color: var(--navex-primary);
      color: var(--navex-primary);
      background-color: transparent;
    }

    .btn-outline-primary:hover,
    .btn-contact:hover {
      background-color: rgba(29, 86, 163, 0.06);
      color: var(--navex-primary-dark);
      border-color: var(--navex-primary-dark);
    }

    .btn-whatsapp {
      background-color: var(--navex-secondary);
      border-color: var(--navex-secondary);
      color: #ffffff;
      font-weight: 600;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      font-size: 0.82rem;
      padding: 0.55rem 1.15rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .btn-whatsapp:hover {
      background-color: #03572a;
      border-color: #03572a;
      color: #ffffff;
    }

    /* HEADER / NAVBAR */
    .main-header {
      position: sticky;
      top: 0;
      z-index: 1030;
      transition: box-shadow 0.25s ease, background-color 0.25s ease, padding 0.25s ease;
      background-color: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
    }

    .main-header.scrolled {
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
      background-color: #ffffff;
    }

    .navbar {
      padding-top: 0.3rem;
      padding-bottom: 0.3rem;
    }

    .navbar-brand img {
      height: 48px;
      width: auto;
      display: block;
    }

    .navbar-nav {
      gap: 0.9rem;
    }

    .navbar-nav .nav-link {
      font-size: 1rem;
      font-weight: 500;
      padding: 0.25rem 0;
      color: var(--navex-dark);
      position: relative;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
      color: var(--navex-primary);
    }

    .navbar-nav .nav-link.active {
      color: var(--navex-primary);
    }

    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -0.25rem;
      height: 2px;
      background: linear-gradient(to right, var(--navex-primary), var(--navex-secondary));
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.2s ease;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      transform: scaleX(1);
    }

    /* Mega Dropdown */
    .mega-dropdown {
      position: static;
    }

    .dropdown-menu {
      border-radius: 0;
      border-color: rgba(0, 0, 0, 0.05);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
      padding: 1.25rem 1.5rem;
      min-width: 270px;
      font-size: 0.92rem;
    }

    .mega-dropdown .dropdown-menu {
      left: 50%;
      transform: translateX(-50%);
      max-width: min(960px, calc(100vw - 3rem));
      width: 100%;
      margin-top: 0;
    }

    .dropdown-menu .dropdown-title {
      font-family: "Overpass", sans-serif;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--navex-muted);
      margin-bottom: 0.35rem;
    }

    .dropdown-menu .dropdown-item {
      padding: 0.25rem 0;
      font-weight: 500;
      color: var(--navex-dark);
      white-space: normal;
    }

    .dropdown-menu .dropdown-item:hover {
      color: var(--navex-primary);
      background-color: transparent;
    }

    .dropdown-menu .dropdown-divider {
      margin: 0.25rem 0.5rem 0.75rem;
      opacity: 0.1;
    }

    /* Desktop hover dropdown */
    @media (min-width: 992px) {
      .navbar .dropdown:hover > .dropdown-menu {
        display: block;
      }

      .navbar .dropdown:hover > .nav-link {
        color: var(--navex-primary);
      }

      .navbar .dropdown:hover > .nav-link::after {
        transform: scaleX(1);
      }
    }

    /* Mobile Navbar */
    @media (max-width: 991.98px) {
      .navbar {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
      }

      .navbar-nav {
        gap: 0.25rem;
      }

      .navbar-collapse {
        position: fixed;
        inset: 0;
        top: 64px;
        background-color: #ffffff;
        padding: 1.6rem 1.25rem 2rem;
        overflow-y: auto;
        transform-origin: top;
        z-index: 1020;
        height: fit-content;
      }

      .navbar-collapse.collapsing {
        transition: height 0s ease;
      }

      .navbar-nav .nav-link::after {
        display: none;
      }

      .navbar-nav .nav-item {
        margin-bottom: 0.25rem;
      }

      .navbar-nav .nav-link {
        padding: 0.5rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
      }

      .navbar-nav .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 0.25rem 0 0.75rem 0.75rem;
        min-width: 100%;
        margin-top: 0;
      }

      .mega-dropdown .dropdown-menu {
        max-width: 100%;
      }

      .navbar-extra {
        margin-top: 1rem;
      }

      .btn-whatsapp {
        width: 100%;
        justify-content: center;
      }
    }

    /* Toggler Button */
    .navbar-toggler {
      border: none;
      padding: 0;
      width: 42px;
      height: 42px;
      border-radius: 0;
      background: rgba(29, 86, 163, 0.06);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, box-shadow 0.2s ease;
    }

    .navbar-toggler:focus {
      box-shadow: none;
      outline: none;
    }

    .navbar-toggler:hover {
      background: rgba(29, 86, 163, 0.12);
      box-shadow: 0 0 0 1px rgba(29, 86, 163, 0.2);
    }

    .navbar-toggler-icon-custom {
      width: 20px;
      height: 16px;
      position: relative;
    }

    .navbar-toggler-icon-custom span {
      position: absolute;
      left: 0;
      right: 0;
      height: 2px;
      border-radius: 1px;
      background: var(--navex-dark);
      transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, bottom 0.2s ease;
    }

    .navbar-toggler-icon-custom span:nth-child(1) {
      top: 0;
    }

    .navbar-toggler-icon-custom span:nth-child(2) {
      top: 7px;
    }

    .navbar-toggler-icon-custom span:nth-child(3) {
      bottom: 0;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
      top: 7px;
      transform: rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
      opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
      bottom: 7px;
      transform: rotate(-45deg);
    }

    /* HERO SECTION */
    .hero-section {
      position: relative;
      min-height: calc(100vh - 80px);
      display: flex;
      align-items: center;
      color: #ffffff;
      background-image: url("../img/hero-bg.jpg");
      background-size: cover;
      background-position: center center;
      isolation: isolate;
    }

    .hero-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(100, 181, 246, 0.65), transparent 60%),
        radial-gradient(circle at 80% 10%, rgba(4, 121, 57, 0.6), transparent 55%),
        linear-gradient(120deg, rgba(6, 26, 60, 0.93), rgba(9, 40, 84, 0.95));
      mix-blend-mode: multiply;
      z-index: -1;
    }

    .hero-overlay-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.12) 1px, transparent 0);
      background-size: 26px 26px;
      opacity: 0.2;
      pointer-events: none;
      z-index: -1;
    }

    .hero-content {
      position: relative;
      padding-block: 4.5rem;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.15rem 0.6rem;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 55%);
      backdrop-filter: blur(8px);
      margin-bottom: 1.25rem;
    }

    .hero-badge i {
      font-size: 0.9rem;
    }

    .hero-title {
      font-size: clamp(2.6rem, 3.2vw + 1.8rem, 2.8rem);
      line-height: 1.12;
      margin-bottom: 0.9rem;
      color: #f7f9ff;
    }

    .hero-title span.highlight {
      color: #ffeb3b;
    }

    .hero-tagline {
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 0.8rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .hero-text {
      font-size: 0.98rem;
      max-width: 520px;
      margin-bottom: 1.4rem;
      color: rgba(230, 238, 248, 0.94);
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.3rem;
      margin-top: 0.5rem;
      font-size: 0.85rem;
      color: rgba(235, 241, 248, 0.9);
    }

    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: 0.45rem;
    }

    .hero-meta-item i {
      font-size: 1rem;
      color: #c9e4ff;
    }

    /* CTA BUTTONS */
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
    }

    .btn-hero-primary {
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 0.92rem;
      padding: 0.8rem 1.9rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #ffffff;
    }

    .btn-hero-secondary {
      border: 1px solid rgba(255, 255, 255, 0.45);
      color: #f5f9ff;
      font-size: 0.9rem;
      padding: 0.75rem 1.4rem;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      background-color: transparent;
    }

    .btn-hero-secondary i {
      font-size: 1.05rem;
    }

    .btn-hero-secondary:hover {
      background-color: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      border-color: rgba(255, 255, 255, 0.7);
    }

    /* Hero Right Panel */
    .hero-card {
      background: rgba(5, 16, 36, 0.96);
      border-radius: 0;
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 1.4rem 1.4rem 1.1rem;
      max-width: 360px;
      margin-left: auto;
    }

    .hero-card-title {
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255, 255, 255, 0.82);
      margin-bottom: 0.35rem;
    }

    .hero-card-highlight {
      font-size: 1rem;
      font-weight: 600;
      color: #f5f9ff;
      margin-bottom: 0.75rem;
    }

    .hero-card-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0.75rem;
      font-size: 0.86rem;
      color: rgba(225, 232, 242, 0.9);
    }

    .hero-card-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0.35rem;
    }

    .hero-card-list i {
      margin-top: 0.15rem;
      font-size: 0.9rem;
      color: #8cd7a7;
    }

    .hero-card-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.1rem 0.5rem;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: rgba(240, 244, 251, 0.88);
      white-space: nowrap;
    }

    .hero-card-tag i {
      font-size: 0.86rem;
    }

    @media (max-width: 991.98px) {
      .hero-section {
        text-align: left;
        padding-top: 0.75rem;
      }

      .hero-content {
        padding-block: 3.8rem 3.1rem;
      }

      .hero-title {
        font-size: clamp(2.3rem, 3vw + 1.5rem, 2.8rem);
      }

      .hero-card {
        margin: 2rem 0 0;
      }
    }

    @media (max-width: 575.98px) {
      .hero-section {
        min-height: 100vh;
      }

      .hero-card {
        max-width: 100%;
      }

      .hero-meta {
        gap: 0.95rem;
      }
    }

   
    /* MODAL */
    .modal-content {
      border-radius: 0;
    }

    .modal-header {
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .modal-title {
      font-family: "Overpass", sans-serif;
      font-size: 1.1rem;
    }

    .form-label {
      font-size: 0.86rem;
      font-weight: 500;
      color: var(--navex-dark);
    }

    .form-control,
    .form-select {
      border-radius: 0;
      font-size: 0.9rem;
    }

    .badge-accent {
      background-color: rgba(4, 121, 57, 0.06);
      color: var(--navex-secondary);
      border-radius: 999px;
      font-size: 0.7rem;
      padding: 0.18rem 0.55rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 600;
    }
    
    
    .nav-link .dropdown-caret i {
  font-size: 0.75rem;      /* smaller, subtle arrow */
  transition: transform 0.2s ease;
}

/* Rotate arrow when dropdown is open */
.nav-link.dropdown-toggle[aria-expanded="true"] .dropdown-caret i {
  transform: rotate(180deg);
}

/* ABOUT SECTION */
.about-section {
  padding: 4.8rem 0;
  background: #ffffff;
}

.about-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navex-muted);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.about-title {
  font-size: clamp(2rem, 1.3vw + 1.5rem, 2.4rem);
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navex-dark);
}

.about-title span {
  color: var(--navex-primary);
}

.about-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--navex-text);
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  color: #333;
}

.about-list i {
  color: var(--navex-primary);
  font-size: 1.05rem;
  margin-top: 0.15rem;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #f5f7fb;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

/* MOBILE RESPONSIVE */
@media (max-width: 767.98px) {
  .about-section {
    padding: 3.8rem 0;
  }
  .about-title {
    font-size: 1.9rem;
  }
  
}


@media (min-width: 767.98px) {
    .about-image{
      height: 600px;
  }
}

/* LOGO SECTION */
.network-section {
  padding: 4.5rem 0;
  background-color: #f1faff;
}

.network-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navex-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.network-title {
  font-family: "Overpass", sans-serif;
  font-size: clamp(1.9rem, 1.4vw + 1.4rem, 2.3rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--navex-dark);
}

.network-logo {
  max-height: 48px;
  width: auto;
  filter: grayscale(0%);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.network-logo:hover {
  transform: translateY(-4px);
  filter: grayscale(0);
}

.network-logos-row > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* MOBILE */
@media (max-width: 576px) {
  .network-logo {
    max-height: 40px;
  }
}

/* DOOR TO DOOR DELIVERY */
.door-section {
  padding: 4.8rem 0;
  background: #ffffff;
}

.door-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navex-muted);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.door-title {
  font-size: clamp(2rem, 1.3vw + 1.5rem, 2.4rem);
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navex-dark);
}

.door-title span {
  color: var(--navex-primary);
}

.door-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--navex-text);
}

.door-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.door-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  color: #333;
}

.door-list i {
  color: var(--navex-primary);
  font-size: 1.05rem;
  margin-top: 0.15rem;
}

.door-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #f7fbff;
}

.door-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 767.98px) {
  .door-section {
    padding: 3.8rem 0;
  }
  .door-title {
    font-size: 1.9rem;
  }
}

/* INXPRESS PARTNER SECTION */
.inxpress-section {
  width: 100%;
  background-color: #022f65;
  color: #ffffff;
  padding: 5rem 0;
}

.inxpress-logo-wrap {
  margin-bottom: 1.8rem;
}

.inxpress-logo {
  height: 75px;
  width: auto;
  filter: brightness(0) invert(1); /* ensures visibility on dark bg */
}

.inxpress-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.inxpress-title {
  font-family: "Overpass", sans-serif;
  font-size: clamp(2.2rem, 1.5vw + 1.5rem, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.inxpress-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 1rem auto;
  color: rgba(255,255,255,0.9);
}

/* MOBILE */
@media (max-width: 767.98px) {
  .inxpress-section {
    padding: 3.8rem 0;
  }
  .inxpress-logo {
    height: 60px;
  }
  .inxpress-title {
    font-size: 2rem;
  }
}

/* DOCUMENTATION SECTION */
.docs-section {
  padding: 4.8rem 0;
  background: #f9fbff;
}

.docs-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navex-muted);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.docs-title {
  font-size: clamp(2rem, 1.3vw + 1.5rem, 2.4rem);
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navex-dark);
}

.docs-title span {
  color: var(--navex-primary);
}

.docs-text {
  font-size: 1rem;
  color: var(--navex-text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.docs-highlight {
  background: #e8f2ff;
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--navex-primary);
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navex-dark);
  margin-bottom: 1.2rem;
}

.docs-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.2rem;
}

.docs-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #333;
}

.docs-list i {
  color: var(--navex-primary);
  font-size: 1.05rem;
  margin-top: 0.15rem;
}

/* RIGHT BOX */
.docs-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}

.docs-box-title {
  font-size: 1.2rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--navex-dark);
}

.docs-box-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.2rem;
}

.docs-box-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.93rem;
  border-bottom: 1px dashed rgba(0,0,0,0.07);
}

.docs-box-list li:last-child {
  border-bottom: none;
}

.docs-box-list i {
  font-size: 1.05rem;
  color: var(--navex-primary);
}

.docs-box-note {
  font-size: 0.85rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.docs-box-note i {
  color: var(--navex-primary);
}

/* MOBILE */
@media (max-width: 767.98px) {
  .docs-section {
    padding: 3.8rem 0;
  }
  .docs-title {
    font-size: 1.9rem;
  }
}

/* OUR PROCESS */
.process-section {
  padding: 4.8rem 0;
  background: #ffffff;
}

.process-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navex-muted);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.process-title {
  font-size: clamp(2rem, 1.3vw + 1.5rem, 2.4rem);
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--navex-dark);
}

.process-text {
  font-size: 0.98rem;
  color: var(--navex-text);
  margin: 0 auto;
  max-width: 560px;
}

.process-steps-row {
  margin-top: 1.5rem;
}

.process-step {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.process-step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.process-step-number {
  font-family: "Overpass", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navex-muted);
}

.process-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1faff;
  color: var(--navex-primary);
  font-size: 1.1rem;
}

.process-step-title {
  font-size: 1.05rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navex-dark);
}

.process-step-text {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 767.98px) {
  .process-section {
    padding: 3.8rem 0;
  }
  .process-title {
    font-size: 1.9rem;
  }
}

/* TESTIMONIAL SECTION */
.testimonial-section {
  padding: 4.8rem 0;
  background-color: #f9fbff;
}

.testimonial-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navex-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.testimonial-title {
  font-family: "Overpass", sans-serif;
  font-size: clamp(2rem, 1.3vw + 1.5rem, 2.4rem);
  font-weight: 700;
  color: var(--navex-dark);
  margin-bottom: 0.6rem;
}

.testimonial-sub {
  font-size: 0.95rem;
  color: var(--navex-text);
}

.testimonial-card {
  background: #ffffff;
  padding: 2rem 1.6rem;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #fabb05;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  margin-top: auto;
}

.author-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navex-dark);
}

.author-role {
  font-size: 0.85rem;
  color: var(--navex-muted);
  margin-top: 0.2rem;
}

@media (max-width: 767.98px) {
  .testimonial-section {
    padding: 3.8rem 0;
  }
  .testimonial-title {
    font-size: 1.9rem;
  }
}

/* CONTACT SECTION */
.contact-section {
  padding: 4.8rem 0;
  background-color: #ffffff;
}

.contact-info-block {
  padding-right: 0.5rem;
}

.contact-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navex-muted);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.contact-title {
  font-size: clamp(2rem, 1.3vw + 1.5rem, 2.4rem);
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: var(--navex-dark);
}

.contact-text {
  font-size: 0.98rem;
  color: var(--navex-text);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.contact-list {
  list-style: none;
  padding-left: 0;
  margin: 1.2rem 0 0.8rem 0;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: #f1faff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navex-primary);
  font-size: 1.1rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navex-muted);
  margin-bottom: 0.1rem;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navex-dark);
}

.contact-note {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-note i {
  color: var(--navex-primary);
}

/* FORM SIDE */
.contact-form-wrapper {
  background-color: #f9fbff;
  border-radius: 8px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(0,0,0,0.04);
}

.contact-form-title {
  font-family: "Overpass", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--navex-dark);
}

.contact-form-sub {
  font-size: 0.9rem;
  color: var(--navex-muted);
  margin-bottom: 1.3rem;
}

.contact-label-input {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navex-dark);
  margin-bottom: 0.2rem;
}

.contact-input.form-control,
.contact-input.form-select {
  border-radius: 0;
  font-size: 0.9rem;
  border-color: rgba(0,0,0,0.12);
}

.contact-input:focus {
  border-color: var(--navex-primary);
  box-shadow: 0 0 0 0.12rem rgba(29, 86, 163, 0.2);
}

.contact-btn-submit {
  background-color: var(--navex-primary);
  border-color: var(--navex-primary);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.8rem 1.8rem;
  border-radius: 0;
}

.contact-btn-submit:hover {
  background-color: var(--navex-primary-dark);
  border-color: var(--navex-primary-dark);
  color: #ffffff;
}

.contact-small-note {
  font-size: 0.8rem;
  color: #777;
  max-width: 260px;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .contact-info-block {
    padding-right: 0;
  }
  .contact-form-wrapper {
    margin-top: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .contact-section {
    padding: 3.8rem 0;
  }
  .contact-title {
    font-size: 1.9rem;
  }
  .contact-form-wrapper {
    padding: 1.6rem 1.3rem;
  }
  .contact-small-note {
    max-width: 100%;
  }
}

/* FOOTER */
.navex-footer {
  background-color: #fafbff;
  padding: 3.5rem 0 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.92rem;
}

/* Brand */
.footer-logo {
  height: 52px;
  margin-bottom: 1rem;
}

.footer-brand-text {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 1rem;
}

.footer-social a {
  font-size: 1rem;
  margin-right: 0.7rem;
  color: #555;
}
.footer-social a:hover {
  color: var(--navex-primary);
}

/* Headings */
.footer-heading {
  font-size: 1rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--navex-dark);
}

/* Links */
.footer-list,
.footer-contact-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-list li a {
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-list li a:hover {
  color: var(--navex-primary);
}

/* Contact List */
.footer-contact-list li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
  font-size: 0.9rem;
}
.footer-contact-list li i {
  color: var(--navex-primary);
  font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  color: #666;
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 767.98px) {
 
  .footer-social a {
    margin-right: 0.45rem;
  }
  
  .g-5, .gx-5 {
    --bs-gutter-x: 0!important;
}
}

/* Floating Buttons Wrapper */
.fab-wrapper {
  position: fixed;
  bottom: 26px;
  right: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99999;
}

/* Button Base */
.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.25s ease;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.16);
}

/* Call Button */
.fab-call {
  background: var(--navex-primary);
}
.fab-call:hover {
  background: #154683;
  transform: translateY(-3px);
}

/* WhatsApp Button */
.fab-whatsapp {
  background: #25D366;
}
.fab-whatsapp:hover {
  background: #1eb654;
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 576px) {
  .fab-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .fab-wrapper {
    right: 18px;
    bottom: 18px;
    gap: 10px;
  }
}


/* ABOUT PAGE */
.about-page-hero {
  background: linear-gradient(135deg, #f5f9ff 0%, #eef6ff 45%, #f7fbff 100%);
  padding: 2rem 0 2.6rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.about-page-breadcrumb {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
  margin-bottom: 1.4rem;
  font-size: 0.88rem;
}

.about-crumbs a {
  color: var(--navex-primary);
  font-weight: 500;
}

.about-crumbs span {
  margin: 0 0.45rem;
  color: #7a7a7a;
}

.about-page-intro h1 {
  font-family: "Overpass", sans-serif;
  font-size: clamp(1.9rem, 1.2vw + 1.4rem, 2.5rem);
  margin-bottom: 0.75rem;
}

.about-page-intro p {
  max-width: 850px;
  margin: 0;
  color: #2f2f2f;
  font-size: 1rem;
  line-height: 1.75;
}

.about-intro-badge {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(29, 86, 163, 0.1);
  color: var(--navex-primary);
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.about-page-block {
  padding: 3.4rem 0;
}

.about-page-light {
  background: #fafcff;
}

.about-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.about-card h2 {
  font-family: "Overpass", sans-serif;
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.about-mv-icon {
  display: inline-block;
  font-size: 2.1rem;
  color: var(--navex-primary);
  margin-bottom: 0.65rem;
}

.about-card p {
  margin: 0;
  color: #2f2f2f;
  line-height: 1.75;
}

.about-section-head h2 {
  font-family: "Overpass", sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about-section-head p {
  color: #4b4b4b;
  margin-bottom: 1.4rem;
}

.value-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 1.35rem 1.2rem;
  height: 100%;
}

.value-card i {
  font-size: 1.2rem;
  color: var(--navex-primary);
}

.value-card h3 {
  font-family: "Overpass", sans-serif;
  font-size: 1.12rem;
  margin: 0.6rem 0 0.45rem;
}

.value-card p {
  margin: 0;
  color: #3f3f3f;
  line-height: 1.65;
}

.about-work-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #232323;
  line-height: 1.8;
}

.about-work-list li + li {
  margin-top: 0.45rem;
}

.about-cta-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

@media (max-width: 767.98px) {
  .about-page-hero {
    padding-top: 1.45rem;
  }

  .about-page-block {
    padding: 2.4rem 0;
  }

  .about-cta-actions {
    flex-direction: column;
  }
}

/* BLOG */
.blog-grid-section {
  padding: 3.2rem 0;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 1rem 1rem 1.2rem;
}

.blog-card-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #667085;
  margin-bottom: 0.45rem;
}

.blog-card h2 {
  font-family: "Overpass", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.blog-card h2 a {
  color: var(--navex-dark);
}

.blog-card p {
  color: #374151;
  margin-bottom: 0.8rem;
}

.blog-read-more {
  color: var(--navex-primary);
  font-weight: 600;
  font-size: 0.92rem;
}

.blog-post-section {
  padding: 3rem 0;
}

.blog-post-main h1 {
  font-family: "Overpass", sans-serif;
  font-size: clamp(1.8rem, 1.1vw + 1.4rem, 2.4rem);
  margin: 0.7rem 0 1rem;
}

.blog-post-main h2 {
  font-family: "Overpass", sans-serif;
  font-size: 1.35rem;
  margin: 1.25rem 0 0.55rem;
}

.blog-post-main p {
  color: #222;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.blog-post-featured {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 0.9rem;
  max-height: 420px;
  object-fit: cover;
}

.blog-post-meta {
  font-size: 0.82rem;
  color: #667085;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-sidebar-card {
  background: #f8fbff;
  border: 1px solid rgba(29, 86, 163, 0.12);
  border-radius: 8px;
  padding: 1rem;
  position: sticky;
  top: 92px;
}

.blog-sidebar-card h3 {
  font-family: "Overpass", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.blog-sidebar-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.blog-sidebar-card li + li {
  margin-top: 0.35rem;
}

.blog-sidebar-card a {
  color: #1f2937;
  font-size: 0.93rem;
}

.blog-sidebar-card a:hover {
  color: var(--navex-primary);
}

@media (max-width: 991.98px) {
  .blog-sidebar-card {
    position: static;
  }
}

/* SERVICE PAGE */
.service-page-section {
  padding: 3rem 0;
}

.service-page-section .col-lg-8 {
  overflow: hidden;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.service-card + .service-card {
  margin-top: 1rem;
}

.service-card h2 {
  font-family: "Overpass", sans-serif;
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.service-card p {
  margin-bottom: 0.7rem;
  line-height: 1.75;
  color: #222;
}

.service-feature-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 0.7rem 0.75rem;
  font-size: 0.95rem;
  color: #1f2937;
  background: #fbfdff;
}

.service-feature-item i {
  color: var(--navex-primary);
  margin-right: 0.4rem;
}

.service-steps {
  margin: 0;
  padding-left: 1.1rem;
}

.service-steps li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.service-image-card {
  padding: 0;
  overflow: hidden;
  max-width: 100%;
}

.service-cover-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.service-cta-btn {
  width: 100%;
  text-align: center;
  font-weight: 600;
  padding: 0.62rem 0.85rem;
  border-radius: 4px;
  border-width: 1px;
}

.service-cta-primary {
  background: var(--navex-primary);
  border-color: var(--navex-primary);
  color: #ffffff;
}

.service-cta-primary:hover {
  background: #154683;
  border-color: #154683;
  color: #ffffff;
}

.service-cta-secondary {
  background: #ffffff;
  border-color: var(--navex-primary);
  color: var(--navex-primary);
}

.service-cta-secondary:hover {
  background: rgba(29, 86, 163, 0.08);
  border-color: var(--navex-primary-dark);
  color: var(--navex-primary-dark);
}

.service-sidebar-card .service-link-active {
  color: var(--navex-primary);
  font-weight: 700;
}

.blog-sidebar-card .service-cta-btn {
  width: 100%;
  text-align: center;
  font-weight: 600;
  padding: 0.62rem 0.85rem;
  border-radius: 4px;
  border-width: 1px;
}

.blog-sidebar-card a.service-cta-primary,
.blog-sidebar-card a.service-cta-primary:visited {
  background: var(--navex-primary);
  border-color: var(--navex-primary);
  color: #ffffff;
}

.blog-sidebar-card a.service-cta-primary:hover,
.blog-sidebar-card a.service-cta-primary:focus {
  background: #154683;
  border-color: #154683;
  color: #ffffff;
}

.blog-sidebar-card a.service-cta-secondary,
.blog-sidebar-card a.service-cta-secondary:visited {
  background: #ffffff;
  border-color: var(--navex-primary);
  color: var(--navex-primary);
}

.blog-sidebar-card a.service-cta-secondary:hover,
.blog-sidebar-card a.service-cta-secondary:focus {
  background: rgba(29, 86, 163, 0.08);
  border-color: var(--navex-primary-dark);
  color: var(--navex-primary-dark);
}
