 @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
 
 /* ════════════════════════════════════════
   ROOT & RESET
════════════════════════════════════════ */
    :root {
      --fp: 'Poppins', sans-serif;
      --navy: #0b1936;
      --blue: #163270;
      --blue-mid: #1e4ba8;
      --blue-light: #2d67d8;
      --blue-glow: #4a8af4;
      --red: #e84a3c;
      --red-hover: #c93a2e;
      --white: #ffffff;
      --hero-bg: #e6ecf8;
      --alt-bg: #f0f5fb;
      --gray: #5a6a85;
      --text: #111c35;
      --border: #cdd6e8;
      --card: #ffffff;
      --accent: #e6ecf8;
      --gold: #f5a623;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--fp);
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden
    }

    /* ════════════════════════════════════════
   PAGE PRELOADER
════════════════════════════════════════ */
    #rsl-preloader {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: var(--navy);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      transition: opacity .6s ease, visibility .6s ease;
    }

    #rsl-preloader.rsl-loaded {
      opacity: 0;
      visibility: hidden
    }

    .rsl-pre-logo {
      font-family: var(--fp);
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--white);
      letter-spacing: 2px;
      animation: rslPrePulse 1.2s ease-in-out infinite;
    }

    .rsl-pre-logo span {
      color: var(--red)
    }

    .rsl-pre-bar {
      width: 220px;
      height: 3px;
      background: rgba(255, 255, 255, .15);
      border-radius: 4px;
      overflow: hidden;
    }

    .rsl-pre-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(160deg, #071f30 0%, #0B3C5D 45%, #0e5088 100% 100%);
      border-radius: 4px;
      animation: rslPreFill 1.8s ease forwards;
    }

    .rsl-pre-text {
      font-family: var(--fp);
      font-size: .8rem;
      font-weight: 500;
      color: rgba(255, 255, 255, .5);
      letter-spacing: 3px;
      text-transform: uppercase;
      animation: rslPreFade 1.8s ease forwards;
    }

    @keyframes rslPrePulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .7;
        transform: scale(.97)
      }
    }

    @keyframes rslPreFill {
      0% {
        width: 0%
      }

      100% {
        width: 100%
      }
    }

    @keyframes rslPreFade {
      0% {
        opacity: 0
      }

      40% {
        opacity: 1
      }

      100% {
        opacity: .5
      }
    }

    /* ════════════════════════════════════════
   FLOATING PARTICLES (hero bg)
════════════════════════════════════════ */
    .rsl-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none
    }

    .rsl-particle {
      position: absolute;
      border-radius: 50%;
      animation: rslFloat linear infinite;
      opacity: .18;
    }

    @keyframes rslFloat {
      0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0
      }

      10% {
        opacity: .2
      }

      90% {
        opacity: .15
      }

      100% {
        transform: translateY(-120px) rotate(720deg);
        opacity: 0
      }
    }

    /* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
    .rsl-header {
      background: linear-gradient(95deg, var(--navy) 0%, var(--blue) 55%, var(--blue-mid) 100%);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 900;
      box-shadow: 0 4px 32px rgba(11, 25, 54, .6);
      animation: rslSlideDown .7s cubic-bezier(.22, 1, .36, 1) both;
    }

    @keyframes rslSlideDown {
      from {
        transform: translateY(-100%);
        opacity: 0
      }

      to {
        transform: translateY(0);
        opacity: 1
      }
    }

    .rsl-header-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      height: 72px;
    }

    .rsl-logo-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none
    }

    .rsl-logo-box {
      background: var(--white);
      border-radius: 10px;
      padding: 7px 14px;
      font-family: var(--fp);
      font-weight: 900;
      font-size: 1.2rem;
      color: var(--blue);
      line-height: 1.15;
      box-shadow: 0 2px 12px rgba(0, 0, 0, .25);
      transition: transform .25s;
    }

    .rsl-logo-box:hover {
      transform: scale(1.04)
    }

    .rsl-logo-box em {
      color: var(--red);
      font-style: normal
    }

    .rsl-logo-sub {
      font-size: .58rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .65);
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-top: 2px
    }

    .rsl-hd-center {
      display: flex;
      align-items: center;
      gap: 32px
    }

    .rsl-hd-contact {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, .88);
      font-size: .88rem;
      font-weight: 500;
      text-decoration: none;
      transition: color .2s
    }

    .rsl-hd-contact:hover {
      color: var(--white)
    }

    .rsl-hd-contact svg {
      opacity: .75;
      flex-shrink: 0
    }

    .rsl-hd-btns {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .rsl-btn-home {
      background: rgba(255, 255, 255, .12);
      border: 1.5px solid rgba(255, 255, 255, .25);
      color: var(--white);
      border-radius: 8px;
      padding: 9px 20px;
      font-family: var(--fp);
      font-weight: 600;
      font-size: .86rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all .25s;
      backdrop-filter: blur(8px);
    }

    .rsl-btn-home:hover {
      background: rgba(255, 255, 255, .22);
      border-color: rgba(255, 255, 255, .5)
    }

    .rsl-btn-register {
      background: var(--red);
      border: none;
      color: var(--white);
      border-radius: 8px;
      padding: 10px 22px;
      font-family: var(--fp);
      font-weight: 700;
      font-size: .86rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .25s;
      box-shadow: 0 4px 16px rgba(232, 74, 60, .4);
    }

    .rsl-btn-register:hover {
      background: var(--red-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(232, 74, 60, .55)
    }

    /* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
    .rsl-hero {
      background: linear-gradient(145deg, #dce8ff 0%, #e8f0fb 40%, #d8e6ff 100%);
      padding: 96px 28px 100px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .rsl-hero-inner {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2
    }

    /* big decorative blobs */
    .rsl-hero::before,
    .rsl-hero::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }

    .rsl-hero::before {
      width: 520px;
      height: 520px;
      background: rgba(30, 75, 168, .12);
      top: -120px;
      right: -100px;
    }

    .rsl-hero::after {
      width: 400px;
      height: 400px;
      background: rgba(232, 74, 60, .08);
      bottom: -80px;
      left: -80px;
    }

    .rsl-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--red);
      color: var(--white);
      border-radius: 50px;
      padding: 7px 20px;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 28px;
      animation: rslHeroIn .8s .3s cubic-bezier(.22, 1, .36, 1) both;
      box-shadow: 0 4px 20px rgba(232, 74, 60, .35);
    }

    .rsl-hero-eyebrow::before {
      content: '';
      width: 6px;
      height: 6px;
      background: rgba(255, 255, 255, .7);
      border-radius: 50%;
      animation: rslBlink 1.4s infinite
    }

    @keyframes rslBlink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .3
      }
    }

    .rsl-hero h1 {
      font-size: 50px;
      font-weight: 900;
      color: var(--navy);
      line-height: 1.18;
      margin-bottom: 32px;
      animation: rslHeroIn .8s .45s cubic-bezier(.22, 1, .36, 1) both;
    }

    .rsl-hero h1 strong {
      background: linear-gradient(135deg, #135785, #145687);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .rsl-benefit-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 44px;
      animation: rslHeroIn .8s .6s cubic-bezier(.22, 1, .36, 1) both;
    }

    .rsl-benefit-chip {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 50px;
      color: var(--blue);
      font-size: .8rem;
      font-weight: 600;
      padding: 8px 18px;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 2px 10px rgba(22, 50, 112, .08);
      transition: all .28s cubic-bezier(.22, 1, .36, 1);
    }

    .rsl-benefit-chip::before {
      content: '✓';
      color: var(--red);
      font-weight: 800
    }

    .rsl-benefit-chip:hover {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 10px 28px rgba(11, 25, 54, .22);
    }

    .rsl-benefit-chip:hover::before {
      color: #7fffb0
    }

    .rsl-hero-btns {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      animation: rslHeroIn .8s .75s cubic-bezier(.22, 1, .36, 1) both;
    }

    .rsl-cta-primary {
      background: linear-gradient(135deg, var(--red), #ff6b5b);
      color: var(--white);
      border: none;
      border-radius: 10px;
      padding: 16px 40px;
      font-family: var(--fp);
      font-weight: 800;
      font-size: 1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 6px 28px rgba(232, 74, 60, .45);
      transition: all .28s;
      position: relative;
      overflow: hidden;
    }

    .rsl-cta-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
      opacity: 0;
      transition: opacity .25s;
    }

    .rsl-cta-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(232, 74, 60, .55)
    }

    .rsl-cta-primary:hover::after {
      opacity: 1
    }

    .rsl-cta-secondary {
      background: transparent;
      color: var(--navy);
      border: 2px solid var(--blue-mid);
      border-radius: 10px;
      padding: 14px 36px;
      font-family: var(--fp);
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .28s;
    }

    .rsl-cta-secondary:hover {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(11, 25, 54, .2)
    }

    /* stats bar */
    .rsl-stats-bar {
      max-width: 800px;
      margin: 56px auto 0;
      background: var(--white);
      border-radius: 16px;
      padding: 28px 36px;
      display: flex;
      align-items: center;
      justify-content: space-around;
      gap: 24px;
      flex-wrap: wrap;
      box-shadow: 0 12px 48px rgba(11, 25, 54, .12);
      border: 1px solid var(--border);
      animation: rslHeroIn .8s .9s cubic-bezier(.22, 1, .36, 1) both;
    }

    .rsl-stat-item {
      text-align: center
    }

    .rsl-stat-num {
      font-size: 2rem;
      font-weight: 900;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 4px
    }

    .rsl-stat-num span {
      color: #1970ac;
    }

    .rsl-stat-label {
      font-size: .75rem;
      font-weight: 600;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 1px
    }

    .rsl-stat-div {
      width: 1px;
      height: 48px;
      background: var(--border)
    }

    @keyframes rslHeroIn {
      from {
        opacity: 0;
        transform: translateY(30px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* ════════════════════════════════════════
   SHARED SECTION
════════════════════════════════════════ */
    .rsl-sec {
      padding: 80px 28px
    }

    .rsl-sec--alt {
      background: var(--alt-bg)
    }

    .rsl-sec--dark {
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--blue-mid) 100%);
      position: relative;
      overflow: hidden;
    }

    .rsl-sec--dark::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10S50 55.5 50 50zM10 10c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10S10 15.5 10 10z'/%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

    .rsl-wrap {
      max-width: 1280px;
      margin: 0 auto
    }

    .rsl-sec-eyebrow {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
    }

    .rsl-sec-eyebrow::before {
      content: '';
      width: 22px;
      height: 2px;
      background: var(--red);
      border-radius: 2px
    }

    .rsl-sec--dark .rsl-sec-eyebrow {
      color: #ff9f9a
    }

    .rsl-sec--dark .rsl-sec-eyebrow::before {
      background: #ff9f9a
    }

    .rsl-sec-title {
      font-size: clamp(1.5rem, 2.8vw, 2.3rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.28;
      text-align: center;
    }

    .rsl-sec--dark .rsl-sec-title {
      color: var(--white)
    }

    .rsl-sec-body {
      font-size: .95rem;
      color: var(--gray);
      max-width: 700px;
          margin: 0 auto;
    text-align: center;
    }

    .rsl-sec--dark .rsl-sec-body {
      color: rgba(255, 255, 255, .78)
    }


    /* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
    .rsl-in {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .65s ease, transform .65s ease
    }

    .rsl-in.rsl-in--left {
      transform: translateX(-32px)
    }

    .rsl-in.rsl-in--right {
      transform: translateX(32px)
    }

    .rsl-in.rsl-in--scale {
      transform: scale(.92)
    }

    .rsl-in.shown {
      opacity: 1;
      transform: none
    }

    /* ════════════════════════════════════════
   PRODUCT GRID
════════════════════════════════════════ */
    .rsl-prod-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 12px;
      margin-top: 30px;
    }

    .rsl-prod-chip {
      background: var(--card);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 14px 16px;
      font-size: .83rem;
      font-weight: 600;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      transition: all .28s cubic-bezier(.22, 1, .36, 1);
      position: relative;
      overflow: hidden;
    }

    .rsl-prod-chip::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background:linear-gradient(180deg, #2196F3, #2196F3);
      transform: scaleY(0);
      transition: transform .28s;
      border-radius: 0 2px 2px 0;
    }

    .rsl-prod-chip:hover {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(11, 25, 54, .22);
    }

    .rsl-prod-chip:hover::before {
      transform: scaleY(1)
    }

    .rsl-prod-icon {
      width: 34px;
      height: 34px;
      background: var(--accent);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      transition: background .28s, transform .28s;
    }

    .rsl-prod-chip:hover .rsl-prod-icon {
      background: rgba(255, 255, 255, .15);
      transform: rotate(-8deg) scale(1.1)
    }

    /* ════════════════════════════════════════
   RESELLER TYPE CARDS
════════════════════════════════════════ */
    .rsl-type-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 24px
    }

    .rsl-type-card {
      background: var(--card);
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 36px 30px;
      transition: all .35s cubic-bezier(.22, 1, .36, 1);
      position: relative;
      overflow: hidden;
    }

    .rsl-type-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background:linear-gradient(272deg, #1676b6, #0b3e64);
      opacity: 0;
      transition: opacity .35s;
      z-index: 0;
    }

    .rsl-type-card>* {
      position: relative;
      z-index: 1
    }

    .rsl-type-card:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow: 0 20px 56px rgba(11, 25, 54, .2);
      border-color: transparent
    }

    .rsl-type-card:hover::after {
      opacity: 1
    }

    .rsl-type-card:hover .rsl-type-title,
    .rsl-type-card:hover .rsl-type-body {
      color: var(--white)
    }

    .rsl-type-icon {
      width: 60px;
      height: 60px;
      background: var(--accent);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 1.6rem;
      transition: background .35s, transform .35s;
      box-shadow: 0 4px 16px rgba(11, 25, 54, .08);
    }

    .rsl-type-card:hover .rsl-type-icon {
      background: #ffffff;
      transform: rotate(-6deg) scale(1.12)
    }

    .rsl-type-title {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 12px;
      transition: color .35s
    }

    .rsl-type-body {
      font-size: .87rem;
      color: var(--gray);
      line-height: 1.7;
      transition: color .35s
    }

    /* ════════════════════════════════════════
   WHY JOIN
════════════════════════════════════════ */
    .rsl-why-layout {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 48px;
      align-items: center
    }

    @media(max-width:860px) {
      .rsl-why-layout {
        grid-template-columns: 1fr
      }
    }

    .rsl-why-prose p {
      font-size: .95rem;
      color: var(--gray);
      margin-bottom: 16px;
      line-height: 1.75
    }

    .rsl-why-checks {
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .rsl-why-check {
      background: var(--card);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 16px 20px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: .9rem;
      color: var(--text);
      transition: all .28s;
    }

    .rsl-why-check:hover {
      border-color: var(--blue-mid);
      transform: translateX(6px);
      box-shadow: 0 4px 20px rgba(11, 25, 54, .1)
    }

    .rsl-why-dot {
      width: 28px;
      height: 28px;
      background: linear-gradient(135deg, var(--red), #ff7c6e);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--white);
      font-size: .75rem;
      font-weight: 800;
      box-shadow: 0 3px 10px rgba(232, 74, 60, .35);
      transition: transform .25s;
    }

    .rsl-why-check:hover .rsl-why-dot {
      transform: scale(1.15) rotate(-10deg)
    }

    /* ════════════════════════════════════════
   OFFER SECTION
════════════════════════════════════════ */
    .rsl-offer-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 8px
    }

    .rsl-offer-card {
      background: var(--card);
      border-radius: 16px;
      padding: 28px;
      border: 1.5px solid var(--border);
      transition: all .3s;
    }

    .rsl-offer-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 44px rgba(11, 25, 54, .13);
      border-color: #2787d1;
    }

    .rsl-offer-num {
      font-size: 3rem;
      font-weight: 900;
      background: linear-gradient(135deg, #15639e, #0d456f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 14px;
    }

    .rsl-offer-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px
    }

    .rsl-offer-body {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.7
    }

    /* ════════════════════════════════════════
   EXPERTISE DARK CARDS
════════════════════════════════════════ */
    .rsl-exp-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      position: relative;
      z-index: 1
    }

    .rsl-exp-card {
      background: rgba(255, 255, 255, .06);
      border: 1.5px solid rgba(255, 255, 255, .12);
      border-radius: 18px;
      padding: 32px 26px;
      transition: all .35s cubic-bezier(.22, 1, .36, 1);
      backdrop-filter: blur(6px);
    }

    .rsl-exp-card:hover {
      background: rgba(255, 255, 255, .14);
      border-color: rgba(255, 255, 255, .35);
      transform: translateY(-8px);
      box-shadow: 0 20px 48px rgba(0, 0, 0, .3);
    }

    .rsl-exp-icon {
      font-size: 2.2rem;
      margin-bottom: 16px;
      display: block;
      transition: transform .35s
    }

    .rsl-exp-card:hover .rsl-exp-icon {
      transform: scale(1.25) rotate(-8deg)
    }

    .rsl-exp-title {
      font-size: 1rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 10px
    }

    .rsl-exp-body {
      font-size: 15px;
      color: rgba(255, 255, 255, .72);
      line-height: 1.7
    }

    /* ════════════════════════════════════════
   WHY INDIA GRID
════════════════════════════════════════ */
    .rsl-india-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
      gap: 18px
    }

    .rsl-india-card {
      background: var(--card);
      border: 1.5px solid var(--border);
      border-radius: 16px;
      padding: 24px 22px;
      display: flex;
      align-items: flex-start;
      gap: 18px;
      transition: all .3s cubic-bezier(.22, 1, .36, 1);
      position: relative;
      overflow: hidden;
    }

    .rsl-india-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #0c4169, #135f99);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s;
    }

    .rsl-india-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 40px rgba(11, 25, 54, .14);
      border-color: transparent
    }

    .rsl-india-card:hover::before {
      transform: scaleX(1)
    }

    .rsl-india-bullet {
      width: 46px;
      height: 46px;
      background: linear-gradient(135deg, #3db2f9, #0c426a);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(11, 25, 54, .25);
      transition: transform .3s;
    }

    .rsl-india-card:hover .rsl-india-bullet {
      transform: rotate(-8deg) scale(1.1)
    }

    .rsl-india-title {
      font-size: .95rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 5px
    }

    .rsl-india-desc {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.65
    }

    /* ════════════════════════════════════════
   HOW IT WORKS — STEPS
════════════════════════════════════════ */
    .rsl-steps-wrap {
      position: relative
    }

    .rsl-steps-line {
      position: absolute;
      top: 56px;
      left: calc(10% + 28px);
      right: calc(10% + 28px);
      height: 2px;
      background: linear-gradient(90deg, var(--border), var(--blue-glow), var(--border));
      z-index: 0;
    }

    .rsl-steps-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      position: relative;
      z-index: 1
    }

    @media(max-width:900px) {
      .rsl-steps-line {
        display: none
      }

      .rsl-steps-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:480px) {
      .rsl-steps-grid {
        grid-template-columns: 1fr
      }
    }

    .rsl-step-card {
      background: var(--card);
      border: 1.5px solid var(--border);
      border-radius: 18px;
      padding: 30px 20px 26px;
      text-align: center;
      transition: all .35s cubic-bezier(.22, 1, .36, 1);
      position: relative;
      overflow: hidden;
    }

    .rsl-step-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
296deg, #16649f, #0c4470);
      opacity: 0;
      transition: opacity .35s;
      z-index: 0;
    }

    .rsl-step-card>* {
      position: relative;
      z-index: 1
    }

    .rsl-step-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 52px rgba(11, 25, 54, .25);
      border-color: transparent
    }

    .rsl-step-card:hover::after {
      opacity: 1
    }

    .rsl-step-num {
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 8px;
      transition: color .35s;
    }

    .rsl-step-card:hover .rsl-step-num {
      color: rgba(255, 255, 255, .15)
    }

    .rsl-step-emoji {
      font-size: 1.9rem;
      margin-bottom: 10px;
      display: block;
      transition: transform .35s
    }

    .rsl-step-card:hover .rsl-step-emoji {
      transform: scale(1.25) rotate(-6deg)
    }

    .rsl-step-title {
      font-size: .9rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 6px;
      transition: color .35s
    }

    .rsl-step-desc {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.6;
      transition: color .35s
    }

    .rsl-step-card:hover .rsl-step-title,
    .rsl-step-card:hover .rsl-step-desc {
      color: var(--white)
    }

    /* ════════════════════════════════════════
   REGISTER CTA
════════════════════════════════════════ */
    .rsl-reg-section {
      background: linear-gradient(135deg, #1b69a3 0%, #0d446e 55%, var(--blue-mid) 100%);
      padding: 90px 28px;
      position: relative;
      overflow: hidden;
    }

    .rsl-reg-section::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(74, 138, 244, .18), transparent 70%);
      top: -200px;
      right: -150px;
      pointer-events: none;
    }

    .rsl-reg-layout {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 440px;
      gap: 60px;
      align-items: center
    }

    @media(max-width:860px) {
      .rsl-reg-layout {
        grid-template-columns: 1fr
      }
    }

    .rsl-reg-left h2 {
      font-size: clamp(1.7rem, 3vw, 2.6rem);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.25
    }

    .rsl-reg-left p {
      font-size: .95rem;
      color: rgba(255, 255, 255, .78);
      max-width: 460px;
      margin-bottom: 28px
    }

    .rsl-reg-perks {
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .rsl-reg-perk {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, .88);
      font-size: .88rem;
      font-weight: 500
    }

    .rsl-reg-perk-dot {
      width: 22px;
      height: 22px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: .65rem;
      font-weight: 800;
      color: var(--white)
    }

    .rsl-form-card {
      background: var(--white);
      border-radius: 20px;
      padding: 38px 32px;
      box-shadow: 0 24px 72px rgba(0, 0, 0, .3);
      position: relative;
      z-index: 1;
    }

    .rsl-form-title {
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 24px;
      text-align: center
    }

    .rsl-form-field {
      margin-bottom: 14px
    }

    .rsl-form-field label {
      display: block;
      font-size: .78rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
      letter-spacing: .5px;
      text-transform: uppercase
    }

    .rsl-form-field input,
    .rsl-form-field select {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-family: var(--fp);
      font-size: .9rem;
      color: var(--text);
      outline: none;
      transition: border-color .22s, box-shadow .22s;
      background: var(--white);
    }

    .rsl-form-field input:focus,
    .rsl-form-field select:focus {
      border-color: var(--blue-mid);
      box-shadow: 0 0 0 3px rgba(30, 75, 168, .12);
    }

    .rsl-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px
    }

    .rsl-form-submit {
      width: 100%;
      margin-top: 8px;
      padding: 15px;
      background: linear-gradient(135deg, var(--red), #ff6b5b);
      color: var(--white);
      border: none;
      border-radius: 10px;
      font-family: var(--fp);
      font-weight: 800;
      font-size: .98rem;
      cursor: pointer;
      transition: all .28s;
      box-shadow: 0 6px 22px rgba(232, 74, 60, .4);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .rsl-form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(232, 74, 60, .55)
    }

    /* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
    .rsl-faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 960px;
      margin: auto;
    }

    .rsl-faq-item {
      border: 1.5px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color .25s, box-shadow .25s;
    }

    .rsl-faq-item:hover {
      border-color: var(--blue-mid);
      box-shadow: 0 4px 20px rgba(11, 25, 54, .08)
    }

    .rsl-faq-q {
      width: 100%;
      background: var(--card);
      border: none;
      text-align: left;
      padding: 20px 24px;
      font-family: var(--fp);
      font-size: .93rem;
      font-weight: 700;
      color: var(--navy);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      transition: background .22s;
    }

    .rsl-faq-q:hover {
      background: var(--accent)
    }

    .rsl-faq-toggle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      flex-shrink: 0;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      font-size: .9rem;
      font-weight: 700;
      transition: transform .35s, background .25s;
    }

    .rsl-faq-item.open .rsl-faq-toggle {
      transform: rotate(45deg);
      background: var(--navy);
      color: var(--white)
    }

    .rsl-faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .45s ease, padding .3s ease;
      padding: 0 24px;
      font-size: .88rem;
      color: var(--gray);
      line-height: 1.75;
      border-top: 0px solid var(--border);
    }

    .rsl-faq-item.open .rsl-faq-a {
      max-height: 500px;
      padding: 6px 24px 22px;
      border-top: 1px solid var(--border)
    }

    /* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
    .rsl-footer {
      background: var(--navy);
      padding: 48px 28px 28px;
    }

    .rsl-footer-inner {
      max-width: 1280px;
      margin: 0 auto
    }

    .rsl-footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 36px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    @media(max-width:768px) {
      .rsl-footer-top {
        grid-template-columns: 1fr
      }
    }

    .rsl-footer-logo {
      font-size: 1.3rem;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 12px
    }

    .rsl-footer-logo em {
      color: var(--red);
      font-style: normal
    }

    .rsl-footer-desc {
      font-size: .83rem;
      color: rgba(255, 255, 255, .55);
      line-height: 1.7;
      max-width: 280px
    }

    .rsl-footer-col-title {
      font-size: .78rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 16px
    }

    .rsl-footer-link {
      display: block;
      font-size: .83rem;
      color: rgba(255, 255, 255, .55);
      text-decoration: none;
      margin-bottom: 8px;
      transition: color .2s
    }

    .rsl-footer-link:hover {
      color: var(--white)
    }

    .rsl-footer-contact-row {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .83rem;
      color: rgba(255, 255, 255, .55);
      margin-bottom: 10px
    }

    .rsl-footer-contact-row a {
      color: rgba(255, 255, 255, .55);
      text-decoration: none;
      transition: color .2s
    }

    .rsl-footer-contact-row a:hover {
      color: var(--white)
    }

    .rsl-footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px
    }

    .rsl-footer-copy {
      font-size: .8rem;
      color: rgba(255, 255, 255, .4)
    }

    .rsl-footer-badge {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 50px;
      padding: 6px 18px;
      font-size: .75rem;
      font-weight: 600;
      color: rgba(255, 255, 255, .5);
    }

    /* ════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════ */
    #rsl-top {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 800;
      width: 46px;
      height: 46px;
      background: var(--navy);
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, .15);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all .3s;
      box-shadow: 0 6px 24px rgba(11, 25, 54, .4);
    }

    #rsl-top.show {
      opacity: 1;
      visibility: visible
    }

    #rsl-top:hover {
      background: var(--red);
      border-color: var(--red);
      transform: translateY(-3px)
    }

    /* ════════════════════════════════════════
   MOBILE
════════════════════════════════════════ */
    @media(max-width:768px) {
      .rsl-hd-center {
        display: none
      }

      .rsl-hero {
        padding: 64px 20px 72px
      }

      .rsl-sec {
        padding: 56px 20px
      }

      .rsl-stats-bar {
        padding: 20px 20px;
        gap: 16px
      }

      .rsl-stat-div {
        display: none
      }

      .rsl-reg-layout {
        gap: 36px
      }

      .rsl-form-card {
        padding: 28px 20px
      }

      .rsl-form-row {
        grid-template-columns: 1fr
      }
    }

    @media(max-width:480px) {
      .rsl-india-grid {
        grid-template-columns: 1fr
      }

      .rsl-type-grid {
        grid-template-columns: 1fr
      }
    }

    /* ════════════════════════════════════════
   NUMBER COUNTER
════════════════════════════════════════ */
    .rsl-count {
      display: inline
    }
    .rsl-hero-btns a:hover{color: #ffffff;
    text-decoration: none;}
    a:hover{text-decoration: none;}
    textarea{width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--fp);
    font-size: .9rem;
    color: var(--text);
    outline: none;
    transition: border-color .22s, box-shadow .22s;
    background: var(--white);}
    .rsl-faq-q span h3{ 
    font-size: .93rem;
    font-weight: 700;
    color: var(--navy);}
    .img-option{display: flex;
    justify-content: end;}
    .otp-v{border-radius: 25px;
    font-size: 12px;
    background: #0a324d;
    border: unset;
    color: #f1f1f1;width: 70%;}
    #otpSection{text-align: -webkit-center;display: flex;}
    .btn-success-add{font-size: 12px;
    padding: 1px 0px;
    width: 50%;}