      *,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #10233d;
  background: #f5f8fc;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
  row-gap: 1.5rem;
}

.row > * {
  padding: 0 1rem;
}

.d-flex {
  display: flex;
}

.d-lg-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.align-items-stretch {
  align-items: stretch;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-lg-2 {
  gap: 1.35rem;
}

.g-3 {
  row-gap: 1rem;
}

.g-4 {
  row-gap: 1.5rem;
}

.g-5 {
  row-gap: 3rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.py-2 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.me-2 {
  margin-right: 0.75rem;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.position-relative {
  position: relative;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #fff !important;
}

.col-12,
.col-sm-6,
.col-md-6,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7 {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 14px;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-lg {
  min-height: 52px;
  padding: 0.95rem 1.35rem;
}

.site-shell {
  overflow-x: hidden;
}


      .navbar {
        backdrop-filter: blur(18px);
        background: rgba(248, 251, 255, 0.4);
        border-bottom: 1px solid rgba(16, 35, 61, 0.08);
        transition: all 0.25s ease;
        z-index: 1030;
      }

      .nav-inner,
      .navbar-collapse,
      .navbar-nav {
        display: flex;
        align-items: center;
      }

      .nav-inner {
        justify-content: space-between;
        gap: 1rem;
      }

      .navbar-collapse {
        flex: 1;
      }

      .navbar-nav {
        list-style: none;
        padding: 0;
        margin-top: 0;
        margin-bottom: 0;
      }

      .navbar-toggler,
      .nav-toggle {
        display: none;
      }

      .navbar-toggler {
        width: 46px;
        height: 46px;
        border: 1px solid rgba(16, 35, 61, 0.12);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.75);
        cursor: pointer;
        place-items: center;
      }

      .navbar-toggler-icon,
      .navbar-toggler-icon::before,
      .navbar-toggler-icon::after {
        display: block;
        width: 20px;
        height: 2px;
        background: #10233d;
        border-radius: 999px;
        content: '';
      }

      .navbar-toggler-icon {
        position: relative;
      }

      .navbar-toggler-icon::before,
      .navbar-toggler-icon::after {
        position: absolute;
        left: 0;
      }

      .navbar-toggler-icon::before {
        top: -6px;
      }

      .navbar-toggler-icon::after {
        top: 6px;
      }

      .navbar.scrolled {
        background: rgba(248, 251, 255, 0.92);
        box-shadow: 0 10px 30px rgba(16, 35, 61, 0.08);
      }

      .navbar-brand {
        text-decoration: none;
      }

      .brand-mark {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        color: #fff;
        font-weight: 800;
        background: linear-gradient(135deg, #083d77, #2a6ff2);
        box-shadow: 0 12px 30px rgba(42, 111, 242, 0.3);
      }

      .brand-name {
        font-size: 1rem;
        font-weight: 800;
        line-height: 1.1;
        color: #10233d;
      }

      .brand-sub {
        color: #5e7088;
      }

      .nav-link,
      .phone-link {
        color: #10233d;
        text-decoration: none;
        font-weight: 600;
      }

      .nav-link {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        padding: 0 0.15rem;
      }

      .nav-link:hover,
      .phone-link:hover,
      .footer-section a:hover,
      .service-link:hover,
      .contact-lines a:hover {
        color: #2a6ff2;
      }

      .btn-pill {
        border-radius: 999px;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
      }

      .btn-primary {
        background: linear-gradient(135deg, #083d77, #2a6ff2);
        border: 0;
        color: #fff;
        box-shadow: 0 14px 30px rgba(42, 111, 242, 0.22);
      }

      .btn-outline-primary {
        border-color: rgba(42, 111, 242, 0.3);
        color: #083d77;
      }
      .hero-section {
        position: relative;
        padding: 85px 0 90px;
        background:
          radial-gradient(circle at top left, rgba(42, 111, 242, 0.16), transparent 30%),
          radial-gradient(circle at top right, rgba(15, 163, 177, 0.12), transparent 25%),
          linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
      }

      .hero-bg {
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45));
        pointer-events: none;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 2rem;
        align-items: center;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        border: 1px solid rgba(42, 111, 242, 0.16);
        background: rgba(255, 255, 255, 0.8);
        color: #2a6ff2;
        padding: 0.5rem 0.9rem;
        border-radius: 999px;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        font-size: 0.78rem;
      }

      h1,
      h2,
      h3 {
        line-height: 1.15;
        letter-spacing: -0.03em;
      }

      .hero-copy h1 {
        font-size: clamp(2.6rem, 4vw, 4.9rem);
        margin-top: 1rem;
        max-width: 13ch;
        font-weight: 800;
      }

      .hero-copy p,
      .section-heading p,
      .service-card p,
      .feature-item p,
      .process-step p,
      .contact-card p,
      .footer-text,
      .hero-card p {
        color: #5e7088;
        font-size: 1.03rem;
        line-height: 1.8;
      }

      .trust-row {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
      }

      .trust-item {
        min-width: 120px;
        padding: 1rem 1.1rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.76);
        border: 1px solid rgba(16, 35, 61, 0.06);
        box-shadow: 0 14px 40px rgba(16, 35, 61, 0.05);
      }

      .trust-item strong,
      .mini-stats strong,
      .metric-value {
        display: block;
        color: #083d77;
        font-size: 1.15rem;
        font-weight: 800;
      }

      .trust-item span,
      .mini-stats span,
      .metric-label {
        color: #5e7088;
        font-size: 0.9rem;
      }

      .glass-card {
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(16, 35, 61, 0.08);
        box-shadow: 0 20px 55px rgba(16, 35, 61, 0.08);
        backdrop-filter: blur(18px);
        border-radius: 28px;
      }

      .hero-card {
        padding: 2rem;
        max-width: 520px;
        margin-left: auto;
      }

      .hero-video-card {
        position: relative;
        max-width: 720px;
        margin-left: auto;
        overflow: hidden;
        border-radius: 30px;
      }

      .hero-video {
        width: 100%;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        background: #071c33;
        border: 0;
      }

      .card-topline {
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #2a6ff2;
        margin-bottom: 0.75rem;
      }

      .hero-card h3 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
      }

      .hero-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
      }

      .hero-badges span,
      .area-card {
        background: #eef5ff;
        color: #083d77;
        padding: 0.65rem 0.9rem;
        border-radius: 999px;
        font-weight: 700;
        font-size: 0.92rem;
      }

      .mini-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(16, 35, 61, 0.08);
      }

      .metrics-section {
        margin-top: -30px;
        position: relative;
        z-index: 2;
      }

      .metrics-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
      }

      .metric-card {
        background: #fff;
        border-radius: 22px;
        padding: 1.25rem;
        text-align: center;
        box-shadow: 0 16px 40px rgba(16, 35, 61, 0.06);
        border: 1px solid rgba(16, 35, 61, 0.06);
      }

      .metric-value {
        font-size: 1.8rem;
        margin-bottom: 0.25rem;
      }

      .section-pad {
        padding: 95px 0;
      }

      .alt-section {
        background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
      }

      .section-heading {
        max-width: 760px;
        margin: 0 auto;
      }

      .section-heading h2,
      .career-banner h2,
      .contact-card h2 {
        font-size: clamp(2rem, 3vw, 3.2rem);
        margin: 1rem 0 0.7rem;
        font-weight: 800;
      }

      .service-card {
        padding: 1.7rem;
        border-radius: 26px;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
      }

      .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 26px 60px rgba(16, 35, 61, 0.12);
      }

      .service-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        font-size: 1.3rem;
        background: linear-gradient(135deg, rgba(42, 111, 242, 0.1), rgba(15, 163, 177, 0.12));
        margin-bottom: 1rem;
      }

      .service-card h3,
      .process-step h3,
      .feature-item h3 {
        font-size: 1.25rem;
        font-weight: 800;
      }

      .service-link {
        font-weight: 700;
        text-decoration: none;
      }

      .process-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
      }

      .process-step {
        padding: 1.6rem;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(16, 35, 61, 0.06);
        box-shadow: 0 16px 40px rgba(16, 35, 61, 0.05);
      }

      .process-number {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        font-weight: 800;
        color: #fff;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #083d77, #2a6ff2);
      }

      .image-frame {
        position: relative;
      }

      .image-placeholder {
        min-height: 520px;
        border-radius: 34px;
        background: url('https://images.unsplash.com/photo-1576765607924-3f7b8410a787?auto=format&fit=crop&w=1200&q=80') center/cover;
        padding: 2rem;
        color: #fff;
        display: flex;
        align-items: end;
        box-shadow: 0 30px 70px rgba(8, 61, 119, 0.25);
      }

      .placeholder-title {
        font-size: 1.1rem;
        font-weight: 800;
        text-shadow: 0 2px 14px rgba(4, 17, 31, 0.45);
      }

      .placeholder-text {
        opacity: 0.95;
        margin-top: 0.2rem;
        text-shadow: 0 2px 14px rgba(4, 17, 31, 0.45);
      }

      .feature-list {
        display: grid;
        gap: 1.2rem;
      }

      .feature-item {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        padding: 1.1rem 1.15rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(16, 35, 61, 0.06);
      }

      .feature-dot {
        width: 14px;
        height: 14px;
        margin-top: 0.5rem;
        border-radius: 50%;
        background: linear-gradient(135deg, #0fa3b1, #2a6ff2);
        flex: 0 0 auto;
      }

      .area-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
      }

      .area-card {
        text-align: center;
        border: 1px solid rgba(42, 111, 242, 0.12);
        box-shadow: 0 12px 30px rgba(16, 35, 61, 0.05);
        border-radius: 999px;
      }

      .career-banner {
        padding: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
      }

      .accordion-item {
        border-radius: 18px !important;
        overflow: hidden;
        border: 1px solid rgba(16, 35, 61, 0.08);
        box-shadow: 0 14px 32px rgba(16, 35, 61, 0.04);
        margin-bottom: 1rem;
      }

      .accordion-button {
        display: block;
        width: 100%;
        border: 0;
        padding: 1.2rem 1.35rem;
        cursor: pointer;
        list-style: none;
        background: #fff;
        font-weight: 700;
      }

      .accordion-button::-webkit-details-marker {
        display: none;
      }

      .accordion-item[open] .accordion-button {
        color: #083d77;
        background: #eef5ff;
        box-shadow: none;
      }

      .accordion-body {
        padding: 1.1rem 1.35rem 1.35rem;
        color: #5e7088;
        line-height: 1.7;
      }

      .contact-card,
      .form-card {
        padding: 2rem;
        border-radius: 30px;
      }

      .contact-lines {
        display: grid;
        gap: 0.55rem;
        margin-top: 1.2rem;
      }

      .contact-lines a {
        text-decoration: none;
        color: #10233d;
        font-weight: 700;
      }

      .form-control,
      .form-select {
        display: block;
        width: 100%;
        border-radius: 16px;
        border: 1px solid rgba(16, 35, 61, 0.12);
        padding: 0.9rem 1rem;
        color: #10233d;
        font: inherit;
        background: #fff;
      }

      .form-label {
        display: inline-block;
        margin-bottom: 0.45rem;
        font-weight: 700;
      }

      .form-control:focus,
      .form-select:focus {
        border-color: rgba(42, 111, 242, 0.35);
        box-shadow: 0 0 0 0.25rem rgba(42, 111, 242, 0.1);
      }

      .footer-section {
        background: linear-gradient(180deg, #071c33 0%, #04111f 100%);
        color: rgba(255, 255, 255, 0.8);
        padding: 70px 0;
      }

      .footer-section h3 {
        color: #fff;
        font-size: 1.1rem;
        font-weight: 800;
        margin-bottom: 1rem;
      }

      .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 0.55rem;
      }

      .footer-section a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
      }

      .mobile-menu {
        background: rgba(4, 17, 31, 0.35);
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
      }

      .mobile-menu-card {
        display: grid;
        gap: 0.75rem;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 24px;
        padding: 1rem;
        box-shadow: 0 20px 50px rgba(16, 35, 61, 0.12);
      }

      .mobile-menu-card a {
        color: #10233d;
        text-decoration: none;
        font-weight: 700;
        padding: 0.75rem 0.3rem;
        border-bottom: 1px solid rgba(16, 35, 61, 0.06);
      }

      @media (min-width: 576px) {
        .col-sm-6 {
          width: 50%;
        }
      }

      @media (min-width: 768px) {
        .col-md-6 {
          width: 50%;
        }
      }

      @media (min-width: 992px) {
        .col-lg-3 {
          width: 25%;
        }

        .col-lg-4 {
          width: 33.333333%;
        }

        .col-lg-5 {
          width: 41.666667%;
        }

        .col-lg-6 {
          width: 50%;
        }

        .col-lg-7 {
          width: 58.333333%;
        }
      }

      @media (max-width: 991px) {
        .d-lg-flex {
          display: none;
        }

        .navbar-toggler {
          display: grid;
          flex: 0 0 auto;
        }

        .navbar-collapse {
          position: absolute;
          left: 1rem;
          right: 1rem;
          top: calc(100% + 0.75rem);
          display: none;
          flex-direction: column;
          align-items: stretch;
          gap: 1rem;
          padding: 1rem;
          border: 1px solid rgba(16, 35, 61, 0.08);
          border-radius: 24px;
          background: rgba(255, 255, 255, 0.98);
          box-shadow: 0 20px 50px rgba(16, 35, 61, 0.12);
        }

        .nav-toggle:checked ~ .navbar-collapse {
          display: flex;
        }

        .navbar-nav {
          flex-direction: column;
          align-items: stretch;
          gap: 0;
          margin: 0;
        }

        .nav-link {
          display: block;
          min-height: auto;
          padding: 0.75rem 0.25rem;
          border-bottom: 1px solid rgba(16, 35, 61, 0.06);
        }

        .nav-actions {
          align-items: stretch;
          flex-direction: column;
          gap: 0.75rem;
        }

        .hero-grid,
        .career-banner,
        .process-grid,
        .metrics-grid,
        .area-grid {
          grid-template-columns: 1fr 1fr;
          display: grid;
        }

        .hero-section {
          padding-top: 105px;
        }

        .hero-copy h1 {
          max-width: none;
        }

        .hero-video-card {
          margin-left: 0;
          max-width: none;
        }
      }

      @media (max-width: 767px) {
        .hero-grid,
        .career-banner,
        .metrics-grid,
        .process-grid,
        .area-grid {
          grid-template-columns: 1fr;
        }

        .hero-section {
          padding: 85px 0 70px;
        }

        .section-pad {
          padding: 70px 0;
        }

        .hero-card,
        .contact-card,
        .form-card,
        .career-banner {
          padding: 1.3rem;
        }

        .image-placeholder {
          min-height: 340px;
        }

        .footer-section {
          text-align: left;
        }
      }
