 /* ─── CSS CUSTOM PROPERTIES (Design Tokens) ─── */


    @font-face {
      font-family: 'PP Editorial New';
      src: url('./fonts/PPEditorialNew-Regular.ttf') format('truetype');
    }
    :root {
      --primary-100: #b2d6f8;
      --primary-500: #1884ea;
      --primary-700: #0e59a0;
      --primary-800: #0b447a;
      --primary-900: #083259;
      --primary-1000: #051f38;

      --secondary-100: #d3f1f9;
      --secondary-400: #50c7e7;
      --secondary-500: #31bde3;
      --secondary-700: #1993b3;
      --secondary-800: #147994;
      --secondary-900: #105f75;

      --neutral-100: #ffffff;
      --neutral-200: #e5e5e5;
      --neutral-600: #7b7b7b;
      --neutral-800: #464646;
      --neutral-900: #2b2b2b;
      --neutral-1000: #111111;

      --font-heading: 'PP Editorial New', Georgia, serif;
      --font-body: 'Roboto', sans-serif;

      --card-bg: #e5faff;
      --accent-orange: #fb923c;
      --text-gray: #94a3b8;
      --border-color: #1f2937;
      --aritar-card-height: 520px;
    }

    /* ─── BASE ─── */
    *, *::before, *::after { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; font-family: var(--font-body); color: var(--neutral-900); overflow-x: clip;scroll-behavior: smooth;}
    
   
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; display: block; }



    /*Custom*/
    .footer-text-cast{
      color: var(--Color-Primary-900, #083259);
      text-align: center;
      font-family: Roboto;
      font-size: 12px;
      font-style: normal;
      font-weight: 400;
      line-height: 16px; /* 160% */
    }
    /*Custom end*/
  

    /* ─── TYPOGRAPHY HELPERS ─── */
    .heading-display {
      font-family: var(--font-heading);
      font-weight: 400;
      font-size: clamp(28px, 5vw, 60px);
      line-height: 1.2;
      letter-spacing: 0;
    }
    .heading-h3 {
      font-family: var(--font-heading);
      font-weight: 400;
      font-size: clamp(28px, 3.5vw, 40px);
      line-height: 1.3;
    }
    .heading-h4 {
      font-family: var(--font-heading);
      font-weight: 400;
      font-size: clamp(22px, 2.5vw, 32px);
      line-height: 1.25;
    }
    .label-caps {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 11px;
      letter-spacing: 2.2px;
      text-transform: uppercase;
    }
    .body-base { font-size: 14px; line-height: 20px; font-weight: 400; }
    .body-sm   { font-size: 12px; line-height: 18px; font-weight: 400; }
    .body-xs   { font-size: 10px; line-height: 14px; font-weight: 400; }

    /* ─── GRADIENT TEXT UTILITY ─── */
    .gradient-text {
      background: linear-gradient(135deg, #105f75 0%, #083259 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ─── ITALIC SERIF SPAN ─── */
    .italic-serif { font-family: var(--font-heading); font-style: italic; font-weight: 400; }
    .roboto-serif { font-family: var(--font-body); font-style: italic; font-weight: 600; }


    .footer-top {
      max-width: 93%;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 24px;
    }

    /* ════════════════════════════════════════
       NAVBAR
    ════════════════════════════════════════ */
    .site-navbar {
      position: absolute;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: transparent;

      /* backdrop-filter: blur(50px); */
      -webkit-backdrop-filter: blur(50px);
      padding: 1px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      transition: background 0.3s ease; /* smooth effect */

    }

    .site-navbar.scrolled {
        /* background: transparent; */
        background: #105f75;
        position: fixed;

        opacity: 0.40;
         /* backdrop-filter: blur(10px); */
      }
    .fixed-position{
      position: fixed;
    }





    .site-navbar .brand img {  width: 150px; height: auto; }
    .nav-pill-wrap {
      display: flex;
      align-items: center;
      gap: 4px;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      /* border-radius: 43px; */
      padding: 6px 10px;
    }
    .nav-pill-wrap .nav-link {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 400;
      color: var(--neutral-100);
      padding: 10px 17px;
      /* border-radius: 30px; */
      white-space: nowrap;
      transition: background 0.2s;
    }
    /* .nav-pill-wrap .nav-link:hover { background: rgba(255,255,255,0.12); } */

    .nav-pill-wrap .nav-link {
  position: relative;
  text-decoration: none;
}

.nav-pill-wrap .nav-link::after {
  content: "";
  position: absolute;
  left: 17px;
  bottom: 4px;
  width: 0;
  height: 0.5px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-pill-wrap .nav-link:hover {
  font-style: italic;
}

.nav-pill-wrap .nav-link:hover::after {
  width: calc(100% - 34px);
}
    .btn-open-account {
      background: var(--neutral-100);
      color: var(--secondary-800);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 14px;
      border: none;
      border-radius: 4px;
      padding: 12px 24px;
      white-space: nowrap;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .btn-open-account:hover {
      opacity: 1;
      transform: scale(1.05);
      box-shadow: 0 8px 16px rgba(24, 132, 234, 0.25);
    }
    .btn-open-account:active {
      transform: scale(0.98);
    }

    /* Mobile nav toggle */
    .navbar-toggler-icon-custom {
      display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
    }
    .navbar-toggler-icon-custom span {
      display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px;
    }

    /* ════════════════════════════════════════
       HERO SECTION
    ════════════════════════════════════════ */
    .line-gap{
      display: inline-block;
      margin-top: 12px; /* adjust this value */
    }

    .hero {
      position: relative;
      min-height: calc(100vh - 100px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 67px;
      overflow: hidden;
      background-image: url('../Asset/Gradient bg_header_new.png');
      /* background-size: cover; */
      background-size: 100% 85%;
       background-position: top center;
        background-repeat: no-repeat;
      /* background-position: center;
      background-repeat: no-repeat; */
      /* background: var(--primary-700); */
    }
    /* Gradient blobs */
    .hero-blob { position: absolute; pointer-events: none; }
    .hero-blob-base{
      background-color:black ;
    }
    /* .hero-blob-0 {
      top: 0; left: 50%; transform: translateX(-50%);
      width: 145%; height: 25%;
      border-radius: 50%;
      border-radius: 0 0 20px 20px;
      filter: blur(68px);
      background: linear-gradient(180deg, #0e59a0 0%, #1761a4 100%);

      opacity: 10; 
      z-index: 1;
    } */
    /* .hero-blob-1 {
      top:12%; left: 50%; transform: translateX(-50%);
      width: 145%; height: 50%;
      border-radius: 50%;
        border-radius: 0 0 20px 20px; 
      filter: blur(150px);
      background:#34abc6; ;

      opacity: 0.9;
    } */
     /* .hero-blob-2 {
      top: 25%; left: 50%; transform: translateX(-50%);
      width: 145%; height: 30%;
      border-radius: 50%;
      filter: blur(150px);
       background: #34abc6; 

      opacity: 0.7;
    }  */



    /* .hero-blob-3 {
      top: 35%; left: 50%; transform: translateX(-50%);
      width: 145%; height: 89%;
      border-radius: 50%;
      filter: blur(150px);
      background: radial-gradient(50% 50% at 50% 50%, rgba(80,199,231,1) 0%, rgba(179,237,252,1) 100%);
      opacity: 0.6;
    } */ 




    /* ════════ MOBILE NAV — SLIDE UP ════════ */

/* Overlay backdrop */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 31, 56, 0);
  z-index: 200;
  pointer-events: none;
  transition: background 0.4s ease;
}
.mobile-overlay.open {
  background: rgba(5, 31, 56, 0.5);
  pointer-events: all;
}

/* The slide-up panel */
.mobile-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 100vh;
  background: linear-gradient(170deg, #0b447a 0%, #051f38 100%);
  z-index: 2011;
  border-radius: 24px 24px 0 0;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mobile-nav.open { transform: translateY(0); }

/* Header row inside panel */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 0;
}
.mobile-nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* Animated cross close button */
.close-btn {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.close-btn svg { width: 18px; height: 18px; overflow: visible; }
.cross-line {
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  transform-origin: 12px 12px;
}
.line-h { transform: rotate(0deg) scaleX(0); opacity: 0; }
.line-v { transform: rotate(0deg) scaleY(0); opacity: 0; }
.mobile-nav.open .line-h {
  transform: rotate(45deg) scaleX(1); opacity: 1;
  transition-delay: 0.18s;
}
.mobile-nav.open .line-v {
  transform: rotate(-45deg) scaleY(1); opacity: 1;
  transition-delay: 0.18s;
}

/* Nav links list */
.mobile-nav-links {
  list-style: none;
  padding: 40px 28px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.mobile-nav.open .mobile-nav-links li:nth-child(1) { transition-delay: 0.22s; }
.mobile-nav.open .mobile-nav-links li:nth-child(2) { transition-delay: 0.28s; }
.mobile-nav.open .mobile-nav-links li:nth-child(3) { transition-delay: 0.34s; }
.mobile-nav.open .mobile-nav-links li:nth-child(4) { transition-delay: 0.40s; }
.mobile-nav.open .mobile-nav-links li:nth-child(5) { transition-delay: 0.46s; }
.mobile-nav.open .mobile-nav-links li { transform: translateY(0); opacity: 1; }

.mobile-nav-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-size: 22px; font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-nav-links a:hover { color: #fff; padding-left: 6px; }
.mobile-nav-links a.active { color: #31bde3; font-style: italic; }
.mobile-nav-links a svg { width: 16px; height: 16px; opacity: 0.3; stroke: #fff; fill: none; }

/* Footer CTA */
.mobile-nav-footer {
  padding: 24px 28px 40px;
  transform: translateY(20px); opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.mobile-nav.open .mobile-nav-footer {
  transform: translateY(0); opacity: 1;
  transition-delay: 0.52s;
}
.login-btn-mobile {
  display: block; width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff; font-size: 14px; font-weight: 600;
  text-align: center; text-decoration: none;
  transition: background 0.2s ease;
}
.login-btn-mobile:hover { background: rgba(255, 255, 255, 0.18); }
















  .foot-blob { position: absolute; pointer-events: none; }
    .foot-blob-0 {
      bottom:0; left: 50%; transform: translateX(-50%);
      width: 145%; height: 30%;
      
      filter: blur(40px);
     
      background:#0b447a;

      opacity:10;
    }
    .foot-blob-1 {
      bottom:20%; left: 50%; transform: translateX(-50%);
      width: 145%; height: 40%;
      border-radius: 50%;
      filter: blur(150px);
      background:#34abc6; ;

      opacity: 10;
    }


    .card-container {
      display: flex;
      flex-direction: column;
      gap: 50px;
      position: relative;
      overflow: visible;
    }

    .watermarkdiv{height:400px; position: relative;}
    .watermark{
      width:75%; height:60%; opacity:0.85; justify-self: center;bottom:0; position: absolute;
    }


    .hero-content { position: relative; z-index: 2; text-align: center; width: 100%; }

    /* Live pill */
    @keyframes breathe {
      0%, 100% {
        opacity: 0.6;
        transform: scale(1);
      }
      50% {
        opacity: 1;
        transform: scale(1.3);
      }
    }

    @keyframes breatheBorder {
      0%, 100% {
        border-color: rgba(80,199,231,0.2);
        box-shadow: 0 0 0 0 rgba(80,199,231,0);
      }
      50% {
        border-color: rgba(80,199,231,0.6);
        box-shadow: 0 0 12px 0 rgba(80,199,231,0.4);
      }
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 6px 16px;
      border-radius: 100px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(80,199,231,0.2);
      margin-bottom: 48px;
      animation: breatheBorder 2s ease-in-out infinite;
    }
    .hero-pill .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--secondary-500);
      flex-shrink: 0;
      animation: breathe 2s ease-in-out infinite;
    }
    .hero-pill span {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 400;
      color: var(--secondary-500);
    }

    /* Hero heading */
    .hero-heading {
      font-family: var(--font-heading);
      font-weight: 400;
      font-size: clamp(40px, 6vw, 58px);
      line-height: 1.2;
      color: #eef9ff;
      margin-bottom: 0;
    }
    .hero-sub {
      font-family: var(--font-body);
      font-size: 20px;
      font-weight: 400;
      color: #eef9ff;
      margin-top: 12px;
      margin-bottom: 40px;
    }

    /* Hero CTAs */
    .hero-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
    .btn-hero-outline {
      border: 2px solid var(--neutral-100);
      background: rgba(0,0,0,0);
      color: var(--neutral-100);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 16px;
      line-height: 24px;
      padding: 16px 36px;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .btn-hero-outline:hover {
      background: rgba(255,255,255,0.15);
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(49, 189, 227, 0.2);
      border-color: rgba(255,255,255,0.9);
    }
    .btn-hero-outline:active {
      transform: scale(0.98);
    }
    .btn-hero-solid {
      background: var(--neutral-100);
      color: var(--secondary-800);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 16px;
      line-height: 24px;
      padding: 16px 36px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .btn-hero-solid:hover {
      opacity: 1;
      transform: scale(1.05);
      box-shadow: 0 12px 24px rgba(8, 50, 89, 0.3);
      background: #f0f8ff;
    }
    .btn-hero-solid:active {
      transform: scale(0.98);
    }

    /* Hero phone mockup */
    .hero-phone {
      position: relative; z-index: 2;
      max-width: 600px;
      width: 80%;
      margin: 0 auto;
      
    }
    .hero-phone img { width: 100%;  transform: translateX(50px); }

    /* Hero fade overlay at bottom */
    .hero-fade {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 200px;
      background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
      pointer-events: none;
    }

    /* ════════════════════════════════════════
       NUMBERS / STATS BAR
    ════════════════════════════════════════ */
    .stats-bar {
      background: var(--neutral-100);
      padding: 40px 0;
    }
    .stats-bar .stat-item { text-align: center; padding: 8px 16px; }
    .stat-number {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1;
      background: linear-gradient(135deg, #105f75 0%, #083259 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 6px;
    }

    .stat-label {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 400;
      color: var(--neutral-800);
      line-height: 24px;
    }

    /* ════════════════════════════════════════
       SECTION: WHY / FEATURE CARDS
    ════════════════════════════════════════ */
    .section-why { background: var(--neutral-100); padding: 160px 0px 35px 0px }

    .section-label {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      color: var(--secondary-500);
      margin-bottom: 16px;
      margin-top: 10px;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }

    .section-label.show {
        opacity: 1;
        transform: translateY(0);
    }

    .heading-h3 {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease;
    }

    .heading-h3.show {
        opacity: 1;
        transform: translateY(0);
    }

    .section-why h2 {
      color: var(--primary-800);
    }

    .feature-card {
      background: #e5faff;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 0;
      min-height: 400px;
      position: sticky;
      top: 90px;
      display: flex;
      align-items: center;
      opacity: 0;
      transform: translateY(60px) scale(0.97);
      transition: all 0.9s ease;
      will-change: transform, opacity;
      /* box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.45); */

      
    }

    .feature-card.show {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .feature-card:hover {
        transform: translateY(-6px) scale(1.01);
        /* box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4); */
    }

    .feature-card:nth-child(1) {
      z-index: 1;
      margin-top: 0;
    }

    .feature-card:nth-child(2) {
      z-index: 2;
      margin-top: 0px;
    }

    .feature-card:nth-child(3) {
      z-index: 3;
      margin-top: 40px;
    }

    .feature-card:nth-child(4) {
      z-index: 4;
      margin-top: 60px;
    }

     .feature-card-body {
      /* padding: 48px 56px; */
      padding: 48px 10px 48px 48px;
      max-width: 620px;
      z-index: 2;
      position: relative;
       transition: padding 0.3s cubic-bezier(0.22, 1, 0.36, 1);
       
    }

    .feature-card-eyebrow {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--primary-800);
      margin-bottom: 12px;
    }
    .feature-card-title {
      /* font-family: var(--font-heading); */
      font-family: var(--font-body);
      font-weight: 600;
      font-size: clamp(22px, 2.5vw, 28px);
      line-height: 1.4;
      color: var(--neutral-900);
      margin-bottom: 12px;
    }
    .feature-card-desc {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 400;
      color: var(--neutral-600);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
    .pill-tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 16px;
      background: var(--secondary-100);
      border-radius: 4px;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 12px;
      color: var(--secondary-800);
      line-height: 1.4;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease;
    }

    .feature-card.show .pill-tag {
        opacity: 1;
        transform: translateY(0);
    }

        .feature-card.show .pill-tag:nth-child(1) {
            transition-delay: 0.15s;
        }

        .feature-card.show .pill-tag:nth-child(2) {
            transition-delay: 0.25s;
        }

        .feature-card.show .pill-tag:nth-child(3) {
            transition-delay: 0.35s;
        }

        .feature-card.show .pill-tag:nth-child(4) {
            transition-delay: 0.45s;
        }
   .feature-card-img {
      position: absolute;
      padding:10px 0px 10px 10px;
      right: 0; bottom: -60px;
      height: 100%;
      max-width: 65%;
      object-fit: contain;
      object-position: right bottom;
    }

    @media (max-width: 767px) {
      .feature-card { flex-direction: column; min-height: auto; max-height:450px;}
      .feature-card-body { padding: 32px 24px 0px 24px; max-width: 100%; }
      /* .feature-card-img {
        position: relative; right: auto; bottom: auto;
        max-width: 100%; height: auto;
        width: 100%;
        object-position: center;
      } */

      .feature-card-img {
        position: relative; right: -20px;left:-20px; bottom: 0px;
        /* max-width: 140%;  */
        height: 380px;
        width: 380%;
        object-position: center bottom;
        padding:0px;
        
      }


       /*  .feature-card{
          max-height:520px;
        }

        .feature-card-img {
        position: relative; right: -20px;left:-20px; bottom: 25px;
        
        height: 350px;
        width: 350%;
        object-position: center bottom;
        padding:0px;
        
      }  */






      .section-why{padding: 80px 0px 35px 0px;
      }
      .heading-h3{padding: 40px 0px 35px 0px;}
    }

    /* Section card images (full-bleed) */
    .section-card-image img {
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 8px 48px rgba(0,0,0,0.10);
    }

    /* ════════════════════════════════════════
       SECTION: PLATFORM / EVERY DEVICE
    ════════════════════════════════════════ */
    .section-platform {
      background: linear-gradient(180deg, #fff 0%, rgba(211,240,248,0.5) 60%, #f8fdff 100%);
      padding: 70px 0 0;
      text-align: center;
      overflow: hidden;
    }
    .section-platform .section-label { color: var(--secondary-500); }
    /* .section-platform .devices-img { width: 100%; max-width: 960px; margin: 40px auto 0; display: block; } */

    .section-platform .devices-img {
  width: 100%;
  /*max-width: 1300px;  increase this */
  max-width: 1000px; 
  margin: 40px auto 0;
  display: block;
}

    /* ════════════════════════════════════════
       SECTION: HOW IT WORKS
    ════════════════════════════════════════ */
    .section-how {
      background: linear-gradient(180deg, #f8fdff 74%, #fff 100%);
      padding: 100px 0px 0px 0px;
    }
    .how-header { max-width: 300px; }
    .sticky-header {
      position: sticky;
      
    }
    .steps-scroll-region {
      position: relative;
      
    }
    .steps-sticky {
      position: sticky;
      top: 50px;
      overflow: visible;
    }
    .steps-track {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: stretch;
      will-change: auto;
    }
    .step-item {
      flex: 1 1 auto;
      max-width: 100%;
    }
    .step-card {
      background: var(--neutral-100);
      width: 100%;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      /* margin-bottom: 24px; */






     position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
    }
    .step-card-body { padding: 24px 24px 18px; flex-shrink: 0; width: 100%;}
    .step-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 12px;
      background: rgba(80,199,231,0.05);
      border: 1px solid rgba(80,199,231,0.4);
      border-radius: 100px;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 12px;
      color: var(--secondary-500);
      margin-bottom: 12px;
    }
    .step-card-title {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: clamp(20px, 2.2vw, 28px);
      line-height: 1.4;
      color: var(--neutral-900);
      margin-bottom: 10px;
    }
    .step-card-desc {
      font-size: 12px;
      font-weight: 400;
      color: var(--neutral-600);
      line-height: 1.7;
    }
    .step-card-img {
      padding: 20px;
      /* width: 100%;
      height: 380px; */
      object-fit: cover;
      display: block;

       position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
    }
    @media (max-width: 767px) {
      .how-header { max-width: 100%; margin-bottom: 40px; }
      .steps-sticky {
        top: 205px;
      }
    }

    /* ════════════════════════════════════════
       SECTION: CTA / EMPOWERING INDIA
    ════════════════════════════════════════ */
    .section-cta {
      margin-top: 110px;
      background: var(--neutral-100);
      padding: 0px 0 60px;
      text-align: center;
    }
    .section-cta .heading-display { color: var(--primary-800); }

    /* App download badges */
    .app-badges { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
    .app-badge {
      background: var(--neutral-1000);
      border-radius: 8px;
      padding: 14px 20px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 160px;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .app-badge:hover { opacity: 0.85; }
    .app-badge-icon { width: 28px; flex-shrink: 0; }
    .app-badge-text { text-align: left; }
    .app-badge-text .badge-upper {
      font-size: 7px;
      font-weight: 500;
      color: #fff;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 3px;
    }
    .app-badge-text .badge-lower {
      font-size: 18px;
      font-weight: 500;
      color: #fff;
      line-height: 1;
    }




  
    
   
    





    /* Phone mockup section */
    .phones-section {
      background: var(--neutral-100);
      padding: 0 0 0px;
      overflow: hidden;
      position: relative;
    }
    .phones-img-wrap {
      position: relative;
      max-width: 960px;
      margin: 0 auto;
    }
    .phones-img-wrap img { width: 100%; }
    .phones-fade {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 50%;
      background: linear-gradient(to top, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%);
      pointer-events: none;
    }

    /* ════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════ */
    .site-footer {
      position: relative;
      background: var(--neutral-100);
      background-image: url('../Asset/Gradient bg_footer_1.png');
      background-size: 100% 100%;
     background-position: center bottom;
      background-repeat: no-repeat;
      padding: 0px 0 0px;
    }
    .footer-logo-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
    .footer-logo-wrap img { height: 40px; width: auto; }
    .footer-tagline {
      font-size: 10px;
      font-weight: 400;
      color: var(--primary-1000);
      line-height: 16px;
      max-width: 200px;
    }
    .footer-col-title {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 14px;
      color: var(--primary-900);
      margin-bottom: 16px;
      line-height: 20px;
    }
    .footer-link {
      display: block;
      font-size: 12px;
      font-weight: 400;
      color: var(--primary-900);
      line-height: 19.5px;
      margin-bottom: 4px;
      transition: opacity 0.2s;
    }
    .footer-link:hover { opacity: 0.7; font-style: italic; }
    .footer-divider {
      border: none;
      border-top: 1px solid var(--neutral-200);
      margin: 32px 0;
    }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copyright {
      font-size: 12px;
      font-weight: 400;
      color: #000000;
      line-height: 18px;
    }
    .footer-socials { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
    .footer-socials a {
      font-size: 10px;
      font-weight: 600;
      color: #000000;
      line-height: 18px;
      transition: opacity 0.2s;
    }
    .footer-socials a:hover { opacity: 0.65; font-style: italic; }
    .footer-seo {
      font-size: 10px;
      font-weight: 600;
      color: #000000;
      line-height: 18px;
      margin-top: 24px;
    }
    .footer-seo a { color: #000000; text-decoration: underline; }
    .footer-seo a:hover { font-style: italic; }
    .footer-house {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
    }
    .footer-house span { font-size: 10px; font-weight: 600; color: #000000; }
    .footer-house img { height: 80px; width: auto; }

    /* =========================
       ARITAR FEATURES SECTION
    ========================= */
    .aritar-features-section {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 20px 100px;
        overflow: visible;
    }

    .aritar-section-header {
        text-align: center;
        margin-bottom: 60px;
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease;
    }

        .aritar-section-header.show {
            opacity: 1;
            transform: translateY(0);
        }

    .aritar-label {
        color: var(--accent-orange);
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 0.78rem;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .aritar-section-title {
        font-size: clamp(2rem, 5vw, 3.2rem);
        font-weight: 500;
        line-height: 1.2;
    }

        .aritar-section-title i {
            font-family: serif;
            color: var(--text-gray);
        }

    /* =========================
       ARITAR STACKING CARDS
    ========================= */
    #aritar-cards-list {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 50px;
        overflow: visible;
    }

    .aritar-card {
        position: sticky;
        top: 90px;
        min-height: var(--aritar-card-height);
        background: var(--card-bg);
        border-radius: 28px;
        border: 1px solid var(--border-color);
        box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.45);
        overflow: hidden;
        opacity: 0;
        transform: translateY(60px) scale(0.97);
        transition: all 0.9s ease;
        will-change: transform, opacity;
        backdrop-filter: blur(2px);
    }

        .aritar-card.show {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .aritar-card:hover {
            transform: translateY(-6px) scale(1.01);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
        }

    #aritar-card-1 {
        z-index: 1;
        margin-top: 0;
    }

    #aritar-card-2 {
        z-index: 2;
        margin-top: 20px;
    }

    #aritar-card-3 {
        z-index: 3;
        margin-top: 40px;
    }

    #aritar-card-4 {
        z-index: 4;
        margin-top: 60px;
    }

    .aritar-card-content {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
        min-height: var(--aritar-card-height);
        padding: 50px;
        gap: 40px;
    }

    .aritar-info-side h3 {
        font-size: clamp(2rem, 4vw, 2.7rem);
        margin: 14px 0 18px;
        line-height: 1.15;
        font-weight: 500;
    }

        .aritar-info-side h3 i {
            font-family: serif;
            color: var(--text-gray);
        }

    .aritar-info-side p {
        color: var(--text-gray);
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 30px;
        max-width: 540px;
    }

    .aritar-pill-container {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .aritar-pill {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid #374151;
        padding: 10px 18px;
        border-radius: 999px;
        font-size: 0.9rem;
        color: white;
        white-space: nowrap;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
    }

    .aritar-card.show .aritar-pill {
        opacity: 1;
        transform: translateY(0);
    }

        .aritar-card.show .aritar-pill:nth-child(1) {
            transition-delay: 0.15s;
        }

        .aritar-card.show .aritar-pill:nth-child(2) {
            transition-delay: 0.25s;
        }

        .aritar-card.show .aritar-pill:nth-child(3) {
            transition-delay: 0.35s;
        }

        .aritar-card.show .aritar-pill:nth-child(4) {
            transition-delay: 0.45s;
        }

    .aritar-image-side {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .aritar-image-side img {
            width: 100%;
            max-width: 460px;
            height: auto;
            border-radius: 20px;
           /* box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);*/
            object-fit: cover;
            transition: transform 0.5s ease;
        }

    .aritar-card:hover .aritar-image-side img {
        transform: scale(1.03);
    }

    /* =========================
       LARGE TABLETS
    ========================= */
    @media (max-width: 1024px) {

        
       .step-card-img {
    max-width: 100%;
  }




        .aritar-features-section {
            padding: 70px 20px 90px;
        }

        .aritar-card-content {
            grid-template-columns: 1fr;
            text-align: center;
            padding: 40px 35px;
        }

        .aritar-info-side p {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .aritar-pill-container {
            justify-content: center;
        }

        .aritar-image-side img {
            max-width: 420px;
        }

        .aritar-card {
            min-height: auto;
        }

        .aritar-card-content {
            min-height: auto;
        }
    }

    /* =========================
       TABLETS / MOBILE
    ========================= */
    @media (max-width: 768px) {
        :root {
            --aritar-card-height: auto;
        }



        .step-card-img {
          max-width: 100%;
        }




        .aritar-features-section {
            padding: 60px 16px 80px;
        }

        .aritar-section-header {
            margin-bottom: 40px;
        }

        #aritar-cards-list {
            gap: 18px;
        }

        .aritar-card {
            position: sticky;
            top: 70px;
            border-radius: 24px;
            min-height: auto;
            transform: translateY(50px) scale(0.98);
        }

            .aritar-card.show {
                transform: translateY(0) scale(1);
            }

            .aritar-card:hover {
                transform: translateY(0) scale(1);
            }

        #aritar-card-1 {
            margin-top: 0;
        }

        #aritar-card-2 {
            margin-top: 12px;
        }

        #aritar-card-3 {
            margin-top: 24px;
        }

        #aritar-card-4 {
            margin-top: 36px;
        }

        .aritar-card-content {
            grid-template-columns: 1fr;
            text-align: center;
            padding: 26px 20px;
            gap: 22px;
            min-height: auto;
        }

        .aritar-info-side h3 {
            font-size: clamp(1.7rem, 7vw, 2.2rem);
        }

        .aritar-info-side p {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 22px;
            max-width: 100%;
        }

        .aritar-pill-container {
            gap: 10px;
            justify-content: center;
        }

        .aritar-pill {
            font-size: 0.84rem;
            padding: 8px 14px;
        }

        .aritar-image-side img {
            max-width: 100%;
            width: 100%;
            border-radius: 16px;
        }

        .sticky-header {
          position: static; /* or relative */
        }

        .hh{
          padding: 10px 0px 10px 0px;
        }
        
    }

    /* =========================
       SMALL MOBILE
    ========================= */
    @media (max-width: 480px) {
        .aritar-section-title {
            font-size: 1.9rem;
        }


        .step-card-img {
          max-width: 100%;
        }


        .feature-card{
          max-height:430px;
        }

        .feature-card-img {
        position: relative; right: -20px;left:-20px; bottom: 25px;
        /* max-width: 140%;  */
        height: 350px;
        width: 350%;
        object-position: center bottom;
        padding:0px;
        
      }

      
        /* .aritar-label {
            font-size: 0.72rem;
            letter-spacing: 1.5px;
        }

        #aritar-cards-list {
            gap: 14px;
        }

        .aritar-card {
            top: 55px;
            border-radius: 20px;
        }

        #aritar-card-1 {
            margin-top: 0;
        }

        #aritar-card-2 {
            margin-top: 10px;
        }

        #aritar-card-3 {
            margin-top: 20px;
        }

        #aritar-card-4 {
            margin-top: 30px;
        }

        .aritar-card-content {
            padding: 22px 16px;
            gap: 18px;
        }

        .aritar-info-side h3 {
            font-size: 1.55rem;
        }

        .aritar-info-side p {
            font-size: 0.92rem;
        }

        .aritar-pill {
            font-size: 0.8rem;
            padding: 8px 12px;
        } */

        .hero-heading { font-size: 28px; }
        
        
    }





     @media (max-width: 344px) {
        .aritar-section-title {
            font-size: 1.9rem;
        }


        .step-card-img {
          max-width: 100%;
        }


        .feature-card{
          max-height:480px;
        }

        .feature-card-img {
        position: relative; right: -20px;left:-20px; bottom: 15px;
        /* max-width: 140%;  */
        height: 400px;
        width: 400%;
        object-position: center bottom;
        padding:0px;
        
      }


        /* .aritar-label {
            font-size: 0.72rem;
            letter-spacing: 1.5px;
        }

        #aritar-cards-list {
            gap: 14px;
        }

        .aritar-card {
            top: 55px;
            border-radius: 20px;
        }

        #aritar-card-1 {
            margin-top: 0;
        }

        #aritar-card-2 {
            margin-top: 10px;
        }

        #aritar-card-3 {
            margin-top: 20px;
        }

        #aritar-card-4 {
            margin-top: 30px;
        }

        .aritar-card-content {
            padding: 22px 16px;
            gap: 18px;
        }

        .aritar-info-side h3 {
            font-size: 1.55rem;
        }

        .aritar-info-side p {
            font-size: 0.92rem;
        }

        .aritar-pill {
            font-size: 0.8rem;
            padding: 8px 12px;
        } */


        
        
    }











    /* ════════════════════════════════════════
       RESPONSIVE OVERRIDES
    ════════════════════════════════════════ */
    @media (max-width: 991px) {
      .site-navbar { padding: 1px 24px; }
      .nav-pill-wrap { display: none; }
      .nav-pill-wrap.open { display: flex; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: rgba(5,31,56,0.97); padding: 16px; border-radius: 0 0 16px 16px; z-index: 999; }
      .nav-pill-wrap.open .nav-link { color: #fff; border-radius: 8px; }
      .mobile-menu-toggle { display: flex !important; }
    }
    @media (min-width: 992px) {
      .mobile-menu-toggle { display: none !important; }
      .login{display:none;}
      
     
    }
    @media (max-width: 576px) {
      .hero { padding-top: 120px; }
      .hero-heading { font-size: 28px; }
      .hero-sub { font-size: 16px; }
      .btn-hero-outline, .btn-hero-solid { padding: 12px 24px; font-size: 14px; }
      .feature-card-body { padding: 24px 20px; }
      .section-platform, .section-how, .section-cta, .site-footer { padding-left: 16px; padding-right: 16px; }
      
      
    }