:root {
      --primary: #0a0f3d;
      --accent: #1f7cff;
      --text: #1c1c1c;
      --muted: #5a5a5a;
      --card-bg: #0a0f3d;
      --card-bg2: radial-gradient(circle at top center, #009cff -100%, #0046c7 -10%, #3b0a78 115%);
      --white: #ffffff;
      --border-light: rgba(255, 255, 255, 0.5);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      color: var(--text);
      background: linear-gradient(160deg, #f8fbff 0%, #eef4ff 40%, #ffffff 100%);
      min-height: 100vh;
      line-height: 1.5;
      padding-top: 86px;
    }

    .site-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1200;
      background: rgba(248, 252, 255, 0.93);
      border-bottom: 1px solid rgba(0, 22, 105, 0.09);
      backdrop-filter: blur(8px);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .site-nav.nav-hidden {
      transform: translateY(-100%);
    }

    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 10px 0 4px;

    }

    .nav-logo {
      text-decoration: none;
    }
    .nav-logo img{
      width: 120px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 26px;
    }

    .nav-menu a {
      text-decoration: none;
      color: #233557;
      font-size: 14px;
      font-weight: 500;
      transition: color 0.2s ease;
    }

    .nav-menu a:hover {
      color: #001f86;
    }

    .nav-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: none;
      background: #ffffff;
      border-radius: 10px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap:4px;
      cursor: pointer;
      padding: 0;
    }

    .nav-toggle span {
      width: 20px;
      height: 2px;
      border-radius: 3px;
      background: #0a1e4f;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    body.menu-open .nav-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    body.menu-open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }

    body.menu-open .nav-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .container {
      width: min(1160px, 92%);
      margin: 0 auto;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      will-change: transform, opacity;
    }

    .reveal.in-view {
      animation: fade-up 0.68s ease-out forwards;
      animation-delay: var(--reveal-delay, 0ms);
    }

    @keyframes fade-up {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal,
      .reveal.in-view {
        opacity: 1;
        transform: none;
        animation: none;
      }
    }

    .hero {
      margin-top: -18px;
    }

    .lead-shell {
      border-radius:0;
      padding-bottom: 50px;
    }

    .lead-layout {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 18px;
      align-items: stretch;
    }

    .lead-content {
      padding: 12px 0 0;
      display: flex;
      flex-direction: column;
      min-height: 520px;
    }

    .lead-subtitle {
        font-size: 22px !important;
        line-height: 1.1 !important;
        color: #001669 !important;
        font-weight: 300 !important;
        margin-bottom: 15px !important;
    }

    .lead-content h1 {
      font-size: clamp(30px, 3.4vw, 48px);
        line-height: 1.1;
        color: #001669;
        letter-spacing: \.5px;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .lead-content p {
      max-width: 60ch;
      font-size: 14px;
      line-height: 1.5;
      color: #111;
      margin-bottom: 6px;
    }

    .model-wrap {
      flex: 1;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      margin-top: 4px;
      min-height: 250px;
    }

    .model-wrap img {
      max-height: 300px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
    }

    .cta-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      padding: 0 0 6px;
    }

    .btn-main,
    .btn-alt {
      text-decoration: none;
      text-align: center;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 600;
      padding: 12px 10px;
      transition: transform 0.2s ease;
      display: inline-block;
    }

    .btn-main {
      background: #001669;
      color: #ffffff;
    }

    .btn-alt {
      background: #d7e5f7;
      color: #001669;
      border: 1px solid #c7d8ee;
    }

    .btn-main:hover,
    .btn-alt:hover {
      transform: translateY(-2px);
    }

    .lead-card {
        background: linear-gradient(40deg,rgba(201, 226, 248, 1) 0%, rgba(239, 244, 249, 1) 100%);
        border: 1px solid #fff;
        border-radius: 16px;
        padding: 30px 25px;
        display: flex;
        flex-direction: column;
    }

    .lead-card h2 {
      font-size: 18px;
      color: #202020;
      margin-bottom: 20px;
      line-height: 1.1;
      font-weight: 700;
    }

    .lead-form {
      display: grid;
      gap: 22px;
      margin-top: 2px;
    }

    .field {
      position: relative;
    }

    .field input,
    .field select {
      width: 100%;
      border: 1px solid #fff;
      border-radius: 12px;
      padding: 16px 15px;
      font-family: inherit;
      font-size: 14px;
      color: #1c1c1c;
      background: #fff;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .field input:focus,
    .field select:focus {
      border-color: #3e67c5;
      box-shadow: 0 0 0 3px rgba(62, 103, 197, 0.16);
      background: #f7f9fc;
    }
    .field input::placeholder,
    .field select::placeholder {
      color: #222;
    }

    .field.select::after {
      content: "\25BE";
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 14px;
      color: #001669;
      pointer-events: none;
    }

    .cta-btn {
      border: none;
      border-radius: 12px;
      background: #001669;
      color: #fff;
      font-weight: 600;
      font-size: 16px;
      line-height: 1.1;
      padding: 16px 12px;
      margin-top: 8px;
      cursor: pointer;
      transition: transform 0.2s ease;
      margin-top: -28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .cta-btn:hover {
      transform: translateY(-2px);
    }

    .cta-btn .btn-loader {
      width: 16px;
      height: 16px;
      border: 2px solid rgba(255, 255, 255, 0.4);
      border-top-color: #ffffff;
      border-radius: 50%;
      display: none;
      animation: cta-spin 0.7s linear infinite;
    }

    .cta-btn.is-loading {
      opacity: 0.92;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .cta-btn.is-loading .btn-loader {
      display: inline-block;
    }

    .cta-btn:disabled {
      cursor: not-allowed;
    }

    @keyframes cta-spin {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    .recaptcha-wrap {
      margin: 0 auto;
      max-width: 304px;
    }

    .form-message {
      min-height: 20px;
      margin-top: -15px;
      margin-bottom: 10px;
      font-size: 13px;
      line-height: 1.3;
      color: #222;
      text-align: center;
    }

    .form-message.error {
      color: #b42318;
    }

    .form-message.success {
      color: #067647;
    }

    body.modal-open {
      overflow: hidden;
    }

    .thankyou-modal {
      position: fixed;
      inset: 0;
      background: rgba(8, 18, 48, 0.28);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .thankyou-modal.is-open {
      opacity: 1;
      visibility: visible;
    }

    .thankyou-card {
      width: min(640px, 100%);
      background: #dfe6f2;
      border-radius: 22px;
      text-align: center;
      padding: 40px 24px 34px;
      position: relative;
      box-shadow: 0 18px 48px rgba(8, 22, 53, 0.22);
      transform: translateY(10px) scale(0.98);
      transition: transform 0.25s ease;
    }

    .thankyou-modal.is-open .thankyou-card {
      transform: translateY(0) scale(1);
    }

    .thankyou-close {
      position: absolute;
      top: 8px;
      right: 14px;
      border: none;
      background: transparent;
      color: #223061;
      font-size: 30px;
      line-height: 1;
      cursor: pointer;
    }

    .thankyou-icon-wrap {
      width: 112px;
      height: 112px;
      border-radius: 50%;
      border: 2px solid #d0dcf6;
      background: #e7eef9;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }

    .thankyou-icon {
      width: 62px;
      height: 62px;
      object-fit: contain;
    }

    .thankyou-card h1,
    .thankyou-card h3 {
      font-size: clamp(28px, 5vw, 32px);
      line-height: 1.05;
      letter-spacing: -0.3px;
      color: #22258f;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .thankyou-card p {
      font-size: clamp(14px, 2.8vw, 15px);
      color: #1d2431;
      margin-bottom: 28px;
      font-weight: 400;
    }

    .thankyou-home-btn {
          display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 200px;
      height: 50px;
      border-radius: 10px;
      background: #26229a;
      color: #ffffff;
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: transform 0.2s ease;
    }

    .thankyou-home-btn:hover {
      transform: translateY(-2px);
    }

    .thankyou-page {
      padding-top: 0;
      background:
        radial-gradient(circle at top left, rgba(31, 124, 255, 0.16), transparent 32%),
        radial-gradient(circle at bottom right, rgba(0, 70, 199, 0.12), transparent 28%),
        linear-gradient(160deg, #f8fbff 0%, #eef4ff 42%, #ffffff 100%);
    }

    .thankyou-page-shell {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px 16px;
    }

    .thankyou-card--page {
      width: min(720px, 100%);
      padding: 48px 32px 40px;
    }

    .thankyou-kicker {
      display: inline-block;
      margin-bottom: 12px;
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #40518b;
      font-weight: 600;
    }

    .thankyou-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .thankyou-secondary-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 200px;
      height: 50px;
      border-radius: 10px;
      background: #ffffff;
      color: #26229a;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      border: 1px solid rgba(38, 34, 154, 0.15);
      transition: transform 0.2s ease;
    }

    .thankyou-secondary-btn:hover {
      transform: translateY(-2px);
    }

    @media (max-width: 767px) {
      .thankyou-card {
        padding: 28px 16px 24px;
      }

      .thankyou-icon-wrap {
        width: 88px;
        height: 88px;
      }

      .thankyou-icon {
        width: 48px;
        height: 48px;
      }

      .thankyou-home-btn {
        min-width: 190px;
        height: 50px;
        font-size: 18px;
      }

      .thankyou-card--page {
        padding: 36px 20px 32px;
      }

      .thankyou-actions {
        flex-direction: column;
      }

      .thankyou-secondary-btn,
      .thankyou-home-btn {
        width: 100%;
      }
    }

    .trusted-section {
      padding: 0;
    }

    .trusted-shell {
      background: #ffffff;
      border-radius: 0;
      padding: 40px 0;
      overflow: hidden;
    }

    .trusted-row {
      display: grid;
      grid-template-columns: 180px 1fr;
      align-items: center;
      gap: 18px;
    }

    .trusted-title {
      font-size: 22px;
      font-weight: 700;
      color: #001669;
      padding-right: 16px;
      border-right: 2px solid #cfd8e6;
      text-align: left;
      white-space: nowrap;
    }

    .logo-slider {
      display: flex;
      flex-direction: column;
      gap:36px 18px;
      width: 100%;
      overflow: hidden;
    }

    .logo-row {
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    .logo-track {
      display: flex;
      align-items: center;
      gap: 38px;
      width: max-content;
    }

    .logo-track--forward {
      animation: trusted-scroll-left 30s linear infinite;
    }

    .logo-track--reverse {
      animation: trusted-scroll-right 30s linear infinite;
    }

    .logo-item {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0;
      line-height: 0;
    }

    .logo-item img {
      width: 120px;
      height: auto;
      display: block;
      object-fit: contain;
      filter: saturate(0.95);
    }

    @keyframes trusted-scroll-left {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }

    @keyframes trusted-scroll-right {
      from {
        transform: translateX(-50%);
      }
      to {
        transform: translateX(0);
      }
    }

    .offerings-section {
      padding:0px 0 20px;
    }

    .offerings-shell {
      border-radius: 0;
      padding: 50px 0;
    }

    .offerings-header {
      margin-bottom: 50px;
    }

    .offerings-header h2 {
      font-size: clamp(22px, 2.1vw, 26px);
      line-height: 1.2;
      color: #24335f;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .offerings-header p {
      font-size: 15px;
      line-height: 1.55;
      color: #2d374a;
    }

    .offerings-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .offering-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      min-height: 310px;
      display: flex;
      align-items: flex-end;
      padding: 22px;
      background-size: cover;
      background-position: center;
      isolation: isolate;
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

    .offering-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 26px rgba(10, 21, 46, 0.2);
    }

    .offering-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(170deg, rgba(6, 19, 43, 0.35) 0%, rgba(6, 19, 43, 0.72) 65%, rgba(6, 19, 43, 0.84) 100%);
      z-index: -1;
    }

    .offering-card .tag {
      display: block;
      color: #4ff2d8;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .offering-card h3 {
      color: #ffffff;
      font-size: 19px;
      line-height: 1.4;
      font-weight: 600;
      margin-bottom: 10px;
      max-width: 20ch;
    }

    .offering-card p {
      color: rgba(255, 255, 255, 0.92);
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 16px;
      max-width: 46ch;
    }

    .know-more {
      display: none;
      text-decoration: none;
      color: #ffffff;
      background: rgba(196, 205, 220, 0.28);
      border: 1px solid rgba(234, 238, 245, 0.65);
      border-radius: 10px;
      padding: 9px 16px;
      font-size: 14px;
      font-weight: 400;
      backdrop-filter: blur(2px);
      transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
    }

    .know-more:hover {
      background: rgba(225, 232, 243, 0.38);
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, 0.9);
    }

    .stats-strip {
      margin-top: 80px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .stat-card {
      background: linear-gradient(40deg,rgba(201, 226, 248, 1) 0%, rgba(239, 244, 249, 1) 100%);
      border: 1px solid #fff;
      border-radius: 18px;
      min-height: 138px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 14px 12px;
    }

    .stat-card h3 {
      font-size: 52px;
      line-height: 1;
      color: #001669;
      margin-bottom: 8px;
      font-weight: 700;
    }

    .stat-card p {
      color: #1f2a44;
      font-size: 14px;
      line-height: 1.35;
      max-width: 20ch;
    }

    .partner-section {
      background: #ffffff;
      padding: 60px 0 70px;
    }

    .partner-shell {
      max-width: 1220px;
      margin: 0 auto;
    }

    .partner-header {
      margin-bottom: 50px;
    }

    .partner-header h2 {
      color: #223563;
      font-size: clamp(22px, 2.1vw, 26px);
      line-height: 1.2;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .partner-header p {
      color: #262f3b;
      font-size: 15px;
      line-height: 1.55;
    }

    .partner-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .partner-card {
      border-radius: 20px;
      background: #e8f1fb;
      border: 1px solid #d7e5f4;
      min-height: 214px;
      padding: 22px 26px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      transition: transform 0.28s ease, box-shadow 0.28s ease;
      padding-top: 100px;
    }
    .partner-card img{
        width: 100px;
        position: absolute;
        top: 5px;
        right: 10px;
    }

    .partner-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 26px rgba(27, 49, 80, 0.14);
    }

    .partner-icon {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(74, 117, 255, 0.2) 0%, rgba(74, 117, 255, 0.08) 45%, rgba(74, 117, 255, 0) 75%);
      color: #3f61d6;
      position: absolute;
      top: 18px;
      right: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 34px;
      font-weight: 700;
    }

    .partner-card h3 {
      color: #101827;
      font-size:18px;
      line-height: 1.3;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .partner-card p {
      color: #263241;
      font-size: 14px;
      line-height: 1.6;
      max-width: 48ch;
    }

    .ecosystem-section {
      background: #ffffff;
      padding: 70px 0 70px;
    }

    .ecosystem-shell {
      max-width: 1220px;
      margin: 0 auto;
      padding: 0 10px;
    }

    .ecosystem-header {
      margin-bottom: 26px;
    }

    .ecosystem-header h2 {
      color: #24335f;
      font-size: clamp(22px, 2.1vw, 26px);
      line-height: 1.2;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .ecosystem-header p {
      color: #262f3b;
      font-size: 15px;
      line-height: 1.55;

    }

    .ecosystem-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 14px;
    }

    .tech-pill {
      background: #d9e7f5;
      border-radius: 16px;
      padding: 18px 22px;
      color: #1e293b;
      font-size: 17px;
      font-weight: 500;
      min-height: 72px;
      display: flex;
      align-items: center;
      grid-column: span 3;
      position: relative;
      transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
      cursor: default;
    }

    .tech-pill:hover {
      transform: translateY(-3px);
      background: #001f86;
      color: #ffffff;
      box-shadow: 0 10px 18px rgba(30, 58, 96, 0.14);
    }

    .tech-pill--active {
      background: #001f86;
      color: #ffffff;
      box-shadow: 0 10px 20px rgba(0, 31, 134, 0.25);
    }

    .tech-pill--active::after {
      content: "";
      position: absolute;
      top: 10px;
      right: 12px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: radial-gradient(circle, #7f96db 0%, #5f77bf 55%, #3c55a8 100%);
      opacity: 0.95;
    }

    .ecosystem-grid:hover .tech-pill--active {
      background: #d9e7f5;
      color: #1e293b;
      box-shadow: none;
    }

    .ecosystem-grid:hover .tech-pill--active::after {
      opacity: 0;
    }

    .tech-pill--lg {
      grid-column: span 4;
    }

    .tech-pill--md {
      grid-column: span 3;
    }

    .tech-pill--sm {
      grid-column: span 2;
    }

    .testimonial-section-wrapper {
      position: relative;
      padding: 70px 0 60px;
      background: var(--card-bg2);
      overflow: hidden;
    }

    .testimonial-section-wrapper .design-element {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 320px;
      opacity: 0.95;
      pointer-events: none;
      transform-origin: bottom right;
      will-change: transform;
    }

    .testimonial-layout {
      display: flex;
      align-items: center;
      gap: 50px;
      padding-left: 10px;
      position: relative;
      z-index: 1;
    }

    .testimonial-title-container {
      flex: 0 0 20%;
    }

    .testimonial-title-container .section-title {
      color: #fff;
      text-align: right;
      margin-bottom: 0;
      font-size: 34px;
      font-weight: 700;
      line-height: 1.2;
    }

    .testimonial-slider-container {
      flex: 1;
      max-width: 80%;
      overflow: hidden;
      padding-bottom: 50px;
      position: relative;
    }

    .testimonial-track {
      display: flex;
    }

    .testimonial-slide {
      flex: 0 0 50%;
      padding: 0 14px;
    }

    .testimonial-card {
      background-color: rgba(255, 255, 255, 0.95);
      border-radius: 18px;
      padding: 28px;
      margin-bottom: 22px;
      position: relative;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
      min-height: 210px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .testimonial-card::after {
      content: '';
      position: absolute;
      bottom: -16px;
      left: 50px;
      width: 0;
      height: 0;
      border-left: 16px solid transparent;
      border-right: 16px solid transparent;
      border-top: 16px solid rgba(255, 255, 255, 0.95);
    }

    .testimonial-card p {
      font-size: 15px;
      line-height: 1.7;
      color: #222;
      margin: 0;
    }

    .testimonial-author-info {
      display: flex;
      align-items: center;
      padding-left: 16px;
    }

    .testimonial-author-image {
      width: 66px;
      height: 66px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 16px;
      border: 2px solid rgba(255, 255, 255, 0.9);
      flex-shrink: 0;
    }

    .testimonial-author-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .testimonial-author-details h3 {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      margin: 0 0 4px;
    }

    .testimonial-author-details h4 {
      font-size: 13px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.86);
      margin: 0;
      line-height: 1.4;
    }

    .testimonial-dots-container {
      position: absolute;
      bottom: 0;
      left: 14px;
      display: flex;
      gap: 8px;
    }

    .testimonial-dot {
      width: 10px;
      height: 8px;
      background-color: rgba(255, 255, 255, 0.45);
      border-radius: 6px;
      border: none;
      cursor: pointer;
      padding: 0;
    }

    .testimonial-dot.active {
      background-color: #fff;
      width: 34px;
    }

    .capabilities-grid {
      margin-top: 70px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .capability-card {
      background: #ffffff;
      border: 1px solid #eef2f6;
      border-radius: 22px;
      min-height: 420px;
      padding: 30px 24px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: 0 14px 30px rgba(23, 34, 56, 0.08);
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }
    .capability-card img{
        width: 140px;
        margin-bottom: 30px;
    }

    .capability-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 34px rgba(23, 34, 56, 0.13);
    }

    .capability-image-placeholder {
      width: 180px;
      height: 170px;
      border-radius: 14px;
      background: linear-gradient(140deg, #e7eef8 0%, #d7e4f5 100%);
      border: 1px dashed #9eb4d0;
      color: #4b5f83;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 26px;
    }

    .capability-card h3 {
      color: #111827;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.3;
      text-transform: uppercase;
    }

    .capability-card h4 {
      color: #111827;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 10px;
      line-height: 1.35;
    }

    .capability-card p {
      color: #2a3443;
      font-size: 14px;
      line-height: 1.55;
      max-width: 30ch;
    }

    .final-cta-section {
      background: #ffffff;
      padding:  0 0 80px;
    }

    .final-cta-shell {
      max-width: 1220px;
      margin: 0 auto;
      border-radius: 18px;
      background: linear-gradient(150deg, #0037ac 0%, #173fbe 44%, #2636ab 100%);
      border: 1px solid rgba(18, 43, 138, 0.5);
      box-shadow: 0 14px 34px rgba(19, 45, 144, 0.22);
      padding: 22px;
      overflow: hidden;
    }

    .final-cta-inner {
      background: linear-gradient(150deg, rgba(130, 164, 255, 0.24) 0%, rgba(78, 114, 217, 0.35) 60%);
      border: 1px solid rgba(172, 197, 255, 0.25);
      border-radius: 16px;
      min-height: 220px;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      align-items: center;
      gap: 10px;
      padding: 20px 24px;
      position: relative;
    }

    .final-cta-content h2 {
      color: #ffffff;
      font-size: clamp(24px, 2.6vw, 24px);
      line-height: 1.2;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .final-cta-content p {
      color: rgba(255, 255, 255, 0.88);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .final-cta-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .final-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      border-radius: 10px;
      padding: 11px 20px;
      font-size: 14px;
      font-weight: 500;
      transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    }

    .final-cta-btn.primary {
      color: #ffffff;
      border: 1px solid rgba(220, 231, 255, 0.6);
      background: rgba(87, 123, 226, 0.28);
    }

    .final-cta-btn.secondary {
      color: #ffffff;
      border: 1px solid #031963;
      background: #041f7b;
    }

    .final-cta-btn:hover {
      transform: translateY(-2px);
    }

    .final-cta-btn.primary:hover {
      background: rgba(101, 138, 241, 0.38);
      border-color: rgba(233, 239, 255, 0.9);
    }

    .final-cta-btn.secondary:hover {
      background: #072896;
      border-color: #0a2fa8;
    }

    .final-cta-visual {
      align-self: end;
      justify-self: end;
      margin-bottom: -20px;
      margin-right: 10px;
    }

    .final-cta-visual img {
      width: min(100%, 250px);
      height: auto;
      display: block;
      object-fit: contain;
    }

    .site-footer {
      background: radial-gradient(circle at top center, #009cff -100%, #0046c7 40%, #3b0a78 100%);
      color: white;
      font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-top {
      position: relative;
      overflow: hidden;
    }

    .newsletter-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 1px solid var(--border-light);
      border-radius: 0 0 15px 15px;
      padding: 90px 50px 30px;
      gap: 70px;
    }

    .newsletter-content,
    .newsletter-form {
      width: 50%;
    }

    .newsletter-content h3 {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .newsletter-content p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }

    .newsletter-form form {
      display: flex;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border-light);
    }

    .newsletter-form input {
      background: transparent;
      border: none;
      color: white;
      padding: 15px;
      font-size: 16px;
      width: 100%;
      outline: none;
    }

    .newsletter-form input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-form button {
      background-color: white;
      color: var(--primary);
      border: none;
      padding: 15px 34px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
    }

    .newsletter-form button:disabled {
      opacity: 0.75;
      cursor: not-allowed;
    }

    .newsletter-message {
      margin-top: 10px;
      font-size: 13px;
      line-height: 1.35;
      min-height: 18px;
      color: rgba(255, 255, 255, 0.85);
    }

    .newsletter-message.success {
      color: #b7ffd4;
    }

    .newsletter-message.error {
      color: #ffd2d2;
    }

    .footer-main {
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }

    .footer-columns {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      max-width: 1500px;
      padding: 0 20px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .footer-column {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .footer-column h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 15px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.85);
    }

    .footer-column ul li img {
      width: 20px;
      position: relative;
      top: 2px;
    }

    .footer-column ul a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
    }

    .footer-column ul a:hover {
      color: white;
    }

    .contact-info li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .footer-bottom {
      border: 1px solid var(--border-light);
      border-bottom: none;
      padding: 20px 50px;
      border-radius: 10px 10px 0 0;
    }

    .footer-bottom-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .footer-bottom p {
      margin: 0;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
    }

    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-links a {
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
    }

    .social-links a img {
      width: 24px;
    }

    .design-element-foot1 {
      position: absolute;
      right: 0;
      width: 100%;
      max-width: 200px;
      z-index: 0;
    }

    .design-element-foot2 {
      position: absolute;
      top: 0;
      width: 100%;
      max-width: 180px;
      z-index: 0;
      opacity: 0.9;
      left: 50%;
      transform: translateX(-50%);
    }

    @media (max-width: 1600px) {
         .tech-pill{
        font-size: 15px;
      }
      .lead-form{
        gap: 20px;
      }
       .lead-content h1 {
        font-size: clamp(28px, 3.8vw, 42px);
      }
    }

    @media (max-width: 1300px) {

   
      .lead-content h1 {
        font-size: clamp(26px, 3.8vw, 40px);
      }

      .lead-content p {
        font-size: 16px;
      }

      .btn-main,
      .btn-alt {
        font-size: 15px;
        padding: 11px 10px;
      }

      .lead-card h2 {
        font-size: 18px;
      }

      .field input,
      .field select {
        font-size: 16px;
        padding: 14px 13px;
      }

      .cta-btn {
        font-size: 16px;
      }

      .offering-card h3 {
        font-size: 18px;
      }

      .offering-card p {
        font-size: 14px;
      }

      .stat-card h3 {
        font-size: 44px;
      }

      .partner-card h3 {
        font-size: 22px;
      }

      .capability-card {
        min-height: 390px;
      }

      .capability-card h4 {
        font-size: 20px;
      }
    }

    @media (max-width: 992px) {

      body {
        padding-top: 74px;
      }

   

      .nav-toggle {
        display: inline-flex;
      }

      .nav-menu {
        position: fixed;
        top: 60px;
        right: 0;
        width: min(320px, 80vw);
        height: calc(100vh - 74px);
        background: #ffffff;
        border-left: 1px solid #d6e1f2;
        box-shadow: -14px 0 30px rgba(13, 29, 68, 0.12);
        padding: 26px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        transform: translateX(100%);
        transition: transform 0.28s ease;
      }

      .nav-menu a {
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        color: #102854;
        padding: 10px 0;
        border-bottom: 1px solid #edf2f9;
      }

      body.menu-open .nav-menu {
        transform: translateX(0);
      }

      body.menu-open {
        overflow: hidden;
      }
  

      .lead-layout {
        grid-template-columns: 1fr;
      }

      .lead-content h1 {
        max-width: none;
      }

      .lead-content {
        min-height: unset;
      }

      .model-wrap {
        min-height: 220px;
      }

  

    

      .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

   

      .final-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px 16px;
      }

      .final-cta-content h2,
      .final-cta-content p {
        max-width: none;
      }

      .final-cta-actions {
        justify-content: center;
      }

      .final-cta-visual {
        margin: 15px auto -20px;
        justify-self: center;
      }

      .ecosystem-grid {
        grid-template-columns: repeat(9, minmax(0, 1fr));
      }

      .tech-pill,
      .tech-pill--lg,
      .tech-pill--md,
      .tech-pill--sm {
        grid-column: span 3;
      }

      .testimonial-layout {
        flex-direction: column;
        gap: 26px;
        padding-left: 0;
      }

      .testimonial-title-container {
        flex: 0 0 auto;
      }

      .testimonial-title-container .section-title {
        text-align: center;
      }

      .testimonial-slider-container {
        max-width: 100%;
        width: 100%;
      }

      .testimonial-slide {
        flex-basis: 100%;
      }

      .testimonial-card::after {
        left: 50%;
        transform: translateX(-50%);
      }

      .testimonial-author-info {
        justify-content: center;
      }

      .testimonial-dots-container {
        left: 50%;
        transform: translateX(-50%);
      }

      .capabilities-grid {
        grid-template-columns: 1fr;
      }

      .newsletter-section {
        gap: 30px;
        flex-direction: column;
      }

      .newsletter-content,
      .newsletter-form {
        width: 100%;
      }

      .footer-columns {
        flex-wrap: wrap;
      }

      .footer-column {
        align-items: flex-start;
        min-width: 250px;
      }
    }

    @media (max-width: 768px) {
    .offerings-grid {
        grid-template-columns: 1fr;
      }
         .partner-grid {
        grid-template-columns: 1fr;
      }

      .trusted-row {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .trusted-title {
        border-right: none;
        padding-right: 0;
        text-align: center;
      }

      .logo-slider {
        gap: 22px;
      }

      .logo-track {
        gap: 24px;
      }

    


      .logo-track--forward {
        animation-duration: 24s;
      }

      .logo-track--reverse {
        animation-duration: 24s;
      }
    }

    @media (max-width: 576px) {
      .hero {
        padding: 0 0 0;
      }
      .form-message{
        margin-top: -10px;
        margin-bottom: 18px;
      }
    .capability-card img{
        width: 120px;
        margin-bottom: 20px;
    }
        .trusted-row {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .trusted-title {
        border-right: none;
        padding-right: 0;
      }

      .lead-shell {
        width: 100%;
        margin: 0 auto;
        padding: 12px;
      }

      .offerings-shell {
        width: 100%;
        margin: 0 auto;
        padding: 50px 15px;
      }

      .trusted-section {
        padding: 0;
      }

      .trusted-shell {
        padding: 30px 0;
      }

      .trusted-title {
        font-size: 18px;
        margin-bottom: 20px;
      }

      .logo-track {
        gap: 18px;
      }

    

      .logo-track--forward {
        animation-duration: 20s;
      }

      .logo-track--reverse {
        animation-duration: 20s;
      }

     
   

      .offerings-header h2 {
        font-size: 21px;
      }

      .offerings-header p {
        font-size: 14px;
      }

      .offering-card {
        min-height: 250px;
        border-radius: 14px;
        padding: 14px;
      }

      .offering-card h3 {
        font-size: 18px;
      }

      .offering-card p {
        font-size: 14px;
      }

      .stats-strip {
        margin-top: 50px;
      }

      .stats-grid {
        gap: 12px;
      }

      .stat-card {
        min-height: 116px;
      }

      .stat-card h3 {
        font-size: 38px;
      }

      .partner-section {
        padding: 50px 0 60px;
      }

      .partner-header h2 {
        font-size: 21px;
      }

      .partner-header p {
        font-size: 14px;
      }

      .partner-card {
        min-height: 190px;
        padding: 100px 15px;
        border-radius: 14px;
      }

      .partner-card h3 {
        font-size: 18px;
      }

      .partner-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
      }

      .final-cta-section {
        padding: 0 0 60px;
      }

      .final-cta-shell {
        width: 100%;
        border-radius: 14px;
        padding: 10px;
      }

      .final-cta-inner {
        border-radius: 14px;
      }

      .final-cta-content h2 {
        font-size: 18px;
      }

      .final-cta-content p {
        font-size: 14px;
      }
   

      .final-cta-btn {
        width: 100%;
      }

      .final-cta-visual img {
        width: 180px;
      }

      .ecosystem-section {
        padding: 50px 0 50px;
      }

      .ecosystem-header h2 {
        font-size: 21px;
      }

      .ecosystem-header p {
        font-size: 14px;
      }

      .ecosystem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        
      }
    .ecosystem-shell{
      padding: 0;
    }

      .tech-pill,
      .tech-pill--lg,
      .tech-pill--md,
      .tech-pill--sm {
        grid-column: span 1;
        min-height: 58px;
        font-size: 12px;
        border-radius: 12px;
        padding: 14px 8px;
      }

      .testimonial-title-container .section-title {
        font-size: 28px;
      }

      .testimonial-card {
        padding: 22px;
        min-height: 190px;
      }

      .testimonial-card p {
        font-size: 14px;
      }

      .testimonial-author-image {
        width: 56px;
        height: 56px;
      }

      .capability-card {
        min-height: 350px;
        padding: 22px 16px;
        border-radius: 16px;
      }

      .capability-image-placeholder {
        width: 140px;
        height: 120px;
        margin-bottom: 18px;
      }

      .capability-card h3 {
        font-size: 15px;
      }

      .capability-card h4 {
        font-size: 18px;
      }

      .capability-card p {
        font-size: 13px;
      }

      .lead-content {
        padding: 15px 0 15px;
      }

      .lead-subtitle {
        font-size: 16px;
      }

      .lead-content h1 {
        font-size: 28px;
        margin-bottom: 10px;
      }

      .lead-content p {
        font-size: 14px;
      }

      .cta-row {
        grid-template-columns: 1fr;
      }

      .btn-main,
      .btn-alt {
        font-size: 15px;
      }

      .lead-card {
        padding: 35px 20px;
      }
      .lead-form{
        gap: 20px;
      }
   

      .field input,
      .field select {
        font-size: 14px;
        border-radius: 12px;
      }



      .newsletter-section {
        padding: 80px 20px 30px;
      }

      .newsletter-form button {
        padding: 15px 20px;
        font-size: 14px;
      }

      .footer-bottom {
        padding: 15px;
      }

      .footer-bottom-content {
        flex-direction: column;
      }

      .footer-bottom p {
        text-align: center;
      }
    }