
    :root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --secondary: #7c3aed;
      --accent: #06b6d4;
      --dark: #0f172a;
      --light-bg: #faf9fc;
      --card-bg: rgba(255, 255, 255, 0.75);
      --glass-border: rgba(255, 255, 255, 0.8);
      --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.05);
      --shadow-lg: 0 25px 50px rgba(37, 99, 235, 0.15);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--light-bg);
      color: #334155;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /*==================================================
                    HERO — REFERENCE LAYOUT
    ==================================================*/
    .hero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(90deg, #0b1f6e 0%, #0d2b8a 45%, #0a3d9e 100%);
      color: #fff;
      padding: 0;
    }

    .hero-waves {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .hero-waves::before,
    .hero-waves::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
    }

    .hero-waves::before {
      width: 700px;
      height: 700px;
      top: -280px;
      right: -180px;
    }

    .hero-waves::after {
      width: 500px;
      height: 500px;
      bottom: -200px;
      left: -120px;
      background: rgba(6, 182, 212, 0.08);
    }

    .hero-wave-svg {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: auto;
      opacity: 0.12;
    }

    /* Nav inside hero */
    .hero-header {
      z-index: 10;
      padding: 12px 0;
    }

    .hero-header .nav-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      text-decoration: none;
      color: #fff;
      font-size: 1.15rem;
    }
    .hero-header .nav-brand img {
      max-height: 60px;
    }

    .hero-header .nav-brand i {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .hero-nav-links a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.92rem;
      transition: color 0.2s;
      position: relative;
    }

    .hero-nav-links a:hover,
    .hero-nav-links a.active {
      color: #fff;
    }

    .hero-nav-links a.active::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -6px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
    }

    .hero-nav-cta {
      padding: 10px 24px;
      border-radius: 50px;
      background: #06b6d4;
      color: #fff;
      border: none;
      font-weight: 700;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .hero-nav-cta:hover {
      background: #0891b2;
      color: #fff;
      transform: translateY(-2px);
    }

    .hero-body {
      position: relative;
      z-index: 5;
      padding: 48px 0 80px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      color: #a5f3fc;
      font-weight: 600;
      font-size: 0.82rem;
      margin-bottom: 22px;
    }

    .hero-content h1 {
      font-size: clamp(2.4rem, 4.8vw, 3.6rem);
      font-weight: 800;
      line-height: 1.12;
      color: #fff;
      margin-bottom: 22px;
      letter-spacing: -0.02em;
    }

    .hero-content h1 span {
      color: #67e8f9;
      -webkit-text-fill-color: #67e8f9;
      background: none;
      animation: none;
    }

    .hero-content p.lead-text {
      color: rgba(255, 255, 255, 0.92);
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 14px;
      line-height: 1.35;
    }

    .hero-content p.sub-text {
      color: rgba(255, 255, 255, 0.78);
      font-size: 1.05rem;
      line-height: 1.75;
      max-width: 702px;
      margin-bottom: 0;
    }

    .hero-cta-group {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 34px;
    }

    .hero-btn-primary,
    .hero-btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 30px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.25s ease;
      border: 2px solid transparent;
    }

    .hero-btn-primary {
      background: #06b6d4;
      color: #fff;
      border-color: #06b6d4;
    }

    .hero-btn-primary:hover {
      background: #0891b2;
      border-color: #0891b2;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(6, 182, 212, 0.35);
    }

    .hero-btn-outline {
      background: transparent;
      color: #fff;
      border-color: rgba(255, 255, 255, 0.55);
    }

    .hero-btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #fff;
      color: #fff;
      transform: translateY(-2px);
    }

    .hero-stats {
      display: flex;
      gap: 28px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .hero-stat-item {
      background: none;
      border: none;
      box-shadow: none;
      backdrop-filter: none;
      padding: 0;
      text-align: left;
    }

    .hero-stat-item strong {
      font-size: 2rem;
      color: #fff;
      -webkit-text-fill-color: #fff;
      background: none;
      margin-bottom: 4px;
    }

    .hero-stat-item span {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .trust-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 32px;
    }

    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 40px;
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.85);
      box-shadow: none;
    }

    .trust-badge i {
      color: #34d399;
    }

    .trust-badge:hover {
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.3);
      transform: none;
    }

    /* Registration form — right column */
    .hero-register-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px 28px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
      border: 1px solid rgba(255, 255, 255, 0.9);
    }

    .hero-register-card h3 {
      color: var(--dark);
      font-size: 1.35rem;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .hero-register-card .register-sub {
      color: #64748b;
      font-size: 0.88rem;
      margin-bottom: 22px;
    }

    .hero-register-card .form-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: #475569;
      margin-bottom: 6px;
    }

    .hero-register-card .form-control-custom,
    .hero-register-card .form-select {
      height: 48px;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      padding: 0 16px;
      font-size: 0.92rem;
      background: #f8fafc;
      width: 100%;
    }

    .hero-register-card .form-control-custom:focus,
    .hero-register-card .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
      outline: none;
      background: #fff;
    }

    .hero-register-card .btn-register {
      width: 100%;
      margin-top: 8px;
      padding: 14px;
      border-radius: 50px;
      border: none;
      background: linear-gradient(135deg, #06b6d4, #2563eb);
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .hero-register-card .btn-register:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
    }

    .hero-register-thanks {
      text-align: center;
      padding: 0 12px;
      color: #333;
      font-size: 14px;
    }

    .hero-register-thanks h5 {
      font-size: 15px;
      color: #059669;
    }

    .hero-register-thanks i {
      font-size: 2.5rem;
      /* margin-bottom: 12px; */
    }

    /* Buttons (rest of page) */
    .cta-group {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 32px;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
      cursor: pointer;
    }

    .btn-primary-custom {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
    }

    .btn-primary-custom:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
      color: #fff;
    }

    .btn-secondary-custom {
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(8px);
      color: var(--dark);
      border: 2px solid rgba(226, 232, 240, 0.8);
      box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    }

    .btn-secondary-custom:hover {
      background: #ffffff;
      color: var(--primary);
      border-color: var(--primary);
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(37,99,235,0.12);
    }

    /* Form Card */
    .hero-form-wrapper {
      position: relative;
      padding: 36px;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.9);
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
      transition: transform 0.3s ease;
    }

    .hero-form-wrapper h3 {
      color: var(--dark);
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .form-control-custom {
      height: 52px;
      border-radius: 14px;
      border: 1px solid #e2e8f0;
      padding: 0 18px;
      font-size: 0.95rem;
      transition: all 0.2s ease;
      background: rgba(255,255,255,0.7);
    }

    .form-control-custom:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
      outline: none;
      background: #fff;
    }

    /*==================================================
                    SECTIONS — ENHANCED LAYOUT
    ==================================================*/
    section:not(.hero) {
      padding: 88px 0;
      position: relative;
    }

    .section-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 56px;
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 50px;
      background: rgba(37, 99, 235, 0.08);
      color: var(--primary);
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 14px;
    }

    .section-title {
      font-size: 24px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 14px;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .section-title::after {
      content: "";
      width: 64px;
      height: 4px;
      border-radius: 50px;
      background: linear-gradient(90deg, #2563eb, #06b6d4);
      display: block;
      margin: 16px auto 0;
    }

    .section-sub {
      color: #64748b;
      font-size: 1.05rem;
      line-height: 1.75;
      margin: 0;
    }

    /* Feature Cards */
    .feature-card {
      background: #fff;
      border-radius: 20px;
      padding: 28px 24px 26px;
      border: 1px solid #e8eef5;
      box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #2563eb, #7c3aed, #06b6d4);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }

    .feature-card:hover::before {
      transform: scaleX(1);
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
      border-color: rgba(37, 99, 235, 0.15);
    }

    .feature-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 18px;
    }

    .feature-num {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1;
      color: #e2e8f0;
      transition: color 0.3s;
    }

    .feature-card:hover .feature-num {
      color: rgba(37, 99, 235, 0.15);
    }

    .icon-box {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(6,182,212,0.12));
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      flex-shrink: 0;
      transition: all 0.35s ease;
    }

    .feature-card:hover .icon-box {
      background: linear-gradient(135deg, #2563eb, #06b6d4);
      color: #fff;
      transform: scale(1.08);
    }

    .feature-card h5 {
      color: var(--dark);
      font-size: 1.05rem;
    }

    /* Stats + Learning Model */
    .stats-section-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .learning-bars {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .learning-bar-item label {
      display: flex;
      justify-content: space-between;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .learning-bar-item label span {
      color: var(--primary);
    }

    .learning-bar-track {
      height: 12px;
      background: #e8eef5;
      border-radius: 50px;
      overflow: hidden;
    }

    .learning-bar-fill {
      height: 100%;
      border-radius: 50px;
      background: linear-gradient(90deg, #2563eb, #06b6d4);
      transition: width 1s ease;
    }

    .learning-bar-fill--purple {
      background: linear-gradient(90deg, #7c3aed, #a78bfa);
    }

    .learning-bar-fill--slate {
      background: linear-gradient(90deg, #64748b, #94a3b8);
    }

    .stat-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px 24px;
      text-align: center;
      box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
      border: 1px solid #e8eef5;
      transition: all 0.3s;
      height: 100%;
    }

    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(37, 99, 235, 0.1);
    }

    .stat-number {
      font-size: 3.2rem;
      font-weight: 800;
      background: linear-gradient(135deg, #2563eb, #06b6d4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1;
      margin-bottom: 10px;
    }

    .quote-card {
      background: linear-gradient(135deg, #0b1f6e 0%, #0d2b8a 100%);
      border-radius: 24px;
      padding: 40px 36px;
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
      margin-top: 48px;
    }

    .quote-card::before {
      content: '\201C';
      position: absolute;
      top: -10px;
      left: 24px;
      font-size: 8rem;
      color: rgba(255,255,255,0.06);
      font-family: Georgia, serif;
      line-height: 1;
    }

    .quote-card blockquote {
      font-size: 1.2rem;
      font-style: italic;
      color: rgba(255,255,255,0.92);
      margin: 0;
      position: relative;
      z-index: 1;
    }

    .quote-card figcaption {
      color: #67e8f9;
      font-weight: 600;
      margin-top: 16px;
      font-size: 0.9rem;
    }

    /* Journey / Phase Cards */
    .journey-grid {
      position: relative;
    }

    .timeline-card {
      background: #fff;
      border-radius: 20px;
      padding: 28px 26px;
      border: 1px solid #e8eef5;
      box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
      transition: all 0.35s ease;
      height: 100%;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .timeline-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(37,99,235,0.03), rgba(6,182,212,0.05));
      opacity: 0;
      transition: opacity 0.3s;
    }

    .timeline-card:hover::after {
      opacity: 1;
    }

    .timeline-card:hover {
      transform: translateY(-6px);
      border-color: rgba(37,99,235,0.2);
      box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    }

    .timeline-card > * {
      position: relative;
      z-index: 1;
    }

    .phase-num {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, #2563eb, #06b6d4);
      color: #fff;
      font-weight: 800;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .phase-tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #2563eb;
      background: rgba(37,99,235,0.08);
      padding: 5px 12px;
      border-radius: 50px;
      margin-bottom: 12px;
    }

    .timeline-card h4 {
      font-size: 1.15rem;
      color: var(--dark);
    }

    .timeline-card .learn-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.85rem;
      margin-top: 14px;
      transition: gap 0.2s;
    }

    .timeline-card:hover .learn-more {
      gap: 10px;
    }

    /* Table */
    .custom-table-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
      border: 1px solid #e8eef5;
    }

    .table {
      margin: 0;
    }

    .table thead th {
      background: linear-gradient(135deg, #0b1f6e, #0d2b8a);
      color: #fff;
      font-weight: 600;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      padding: 18px 24px;
      border: none;
    }

    .table tbody tr {
      transition: background 0.2s;
    }

    .table tbody tr:hover {
      background: #f8faff;
    }

    .table tbody td {
      padding: 18px 24px;
      vertical-align: middle;
      color: #475569;
      border-color: #f1f5f9;
    }

    .table tbody td:first-child {
      font-weight: 700;
      color: var(--dark);
    }

    .phase-badge {
      display: inline-block;
      padding: 5px 14px;
      border-radius: 50px;
      background: rgba(37,99,235,0.1);
      color: #2563eb;
      font-weight: 600;
      font-size: 0.8rem;
    }

    /* Associations */
    .assoc-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .assoc-card {
      background: #fff;
      border: 1px solid #e8eef5;
      border-radius: 16px;
      padding: 22px 16px;
      text-align: center;
      font-weight: 700;
      font-size: 0.82rem;
      color: #334155;
      box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
      transition: all 0.3s;
    }

    .assoc-card i {
      display: block;
      font-size: 1.5rem;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .assoc-card:hover {
      transform: translateY(-4px);
      border-color: rgba(37,99,235,0.2);
      box-shadow: 0 12px 28px rgba(37,99,235,0.1);
    }

    /* CTA Banner */
    .cta-banner {
      background: linear-gradient(135deg, #0b1f6e 0%, #0d2b8a 50%, #0a3d9e 100%);
      border-radius: 28px;
      padding: 64px 40px;
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(11, 31, 110, 0.25);
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      top: -40%;
      right: -15%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(6,182,212,0.2) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .cta-banner h2 {
      position: relative;
      z-index: 1;
    }

    .cta-banner p {
      position: relative;
      z-index: 1;
    }

    .cta-banner .d-flex {
      position: relative;
      z-index: 1;
    }

    /* Footer */
    .site-footer {
      background: #0f172a;
      color: rgba(255,255,255,0.7);
      padding: 48px 0 24px;
    }

    .site-footer h5 {
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 16px;
    }

    .site-footer a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s;
    }

    .site-footer a:hover {
      color: #67e8f9;
    }

    .footer-brand {
      font-size: 1.1rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 36px;
      padding-top: 20px;
      text-align: center;
      font-size: 0.82rem;
    }

    .badge-primary-subtle {
      background: rgba(37,99,235,0.12);
      color: #2563eb;
    }

    /* Modal improvements */
    .modal-content {
      border-radius: 28px;
      border: none;
      box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
      overflow: hidden;
    }

    .modal-header {
      background: linear-gradient(135deg, #f8fbff, #eef6ff);
      border-bottom: 1px solid #e2e8f0;
      padding: 24px 32px;
    }

    /* Misc */
    .bg-soft-gradient {
      background: linear-gradient(135deg, #faf9fc 0%, #f0f5ff 100%);
    }

    .rounded-4 {
      border-radius: 20px;
    }

    .text-gradient {
      background: linear-gradient(135deg, #2563eb, #7c3aed);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .bg-light-custom {
      background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    }

    .fee-section{
    background:linear-gradient(135deg, #0b1f6e 0%, #0d2b8a 45%, #0a3d9e 100%);
    position:relative;
}

.fee-badge{
    display:inline-block;
    padding:8px 18px;
    background:#eef2ff;
    color:#4f46e5;
    border-radius:30px;
    font-weight:600;
}

.fee-total-card{
    background:linear-gradient(135deg,#4338ca,#2563eb);
    color:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.fee-total-card h3{
    font-weight:700;
    margin-bottom:10px;
}

.fee-price{
    font-size:32px;
    font-weight:800;
    line-height:1;
}

.fee-card{
    position:relative;
    background:#fff;
    border-radius:20px;
    padding:35px 28px;
    height:100%;
    text-align:center;
    border:1px solid #edf1f7;
    transition:.35s;
    overflow:hidden;
}

.fee-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 45px rgba(0,0,0,.12);
}

.featured{
    border:2px solid #4f46e5;
    transform:scale(1.04);
}

.featured:hover{
    transform:translateY(-8px) scale(1.04);
}

.recommended{
    position:absolute;
    top:18px;
    right:-40px;
    width:170px;
    background:#4f46e5;
    color:#fff;
    transform:rotate(45deg);
    font-size:12px;
    padding:5px;
    font-weight:600;
}

.phase-number{
    position:absolute;
    top:20px;
    left:22px;
    font-size:48px;
    font-weight:800;
    color:#edf2f7;
}

.fee-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;
}

.phase-label{
    display:inline-block;
    background:#eef2ff;
    color:#4f46e5;
    padding:6px 16px;
    border-radius:25px;
    font-weight:600;
    margin-bottom:18px;
}

.fee-card h4{
    font-size:32px;
    font-weight:800;
    color:#111827;
}

.phase-time{
    font-weight:600;
    color:#2563eb;
    margin-bottom:18px;
}

.fee-note{
    background:#fff;
    padding:28px;
    border-radius:18px;
    border-left:5px solid #4f46e5;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.note-icon{
    width:50px;
    height:50px;
    background:#eef2ff;
    color:#4f46e5;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-right:18px;
    flex-shrink:0;
}
.navbar{
      background: linear-gradient(90deg, #0b1f6e 0%, #0d2b8a 45%, #0a3d9e 100%);
}
@media(max-width:991px){

    .featured{
        transform:none;
    }

    .featured:hover{
        transform:translateY(-8px);
    }

    .fee-price{
        font-size:24px;
    }
    .stat-number{
      font-size: 20px;
    }
    .hero-nav-cta{
          padding: 6px 13px;
    }
    .hero-btn-primary, .hero-btn-outline{
          padding: 9px 10px;
    }
    .hero-register-card{
      margin-top: 24px !important;
    }

}

    @media (max-width: 991.98px) {
      .hero-body {
        padding: 32px 0 56px;
      }
      .hero-nav-links a{
                margin-right: auto;
      }
      .hero-register-card {
        max-width: 480px;
        margin: 0 auto;
      }

      .stats-section-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .assoc-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .hero-header .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(320px, 90vw);
        max-width: 320px;
        padding: 24px 20px;
        background: rgba(15, 23, 42, 0.96);
        backdrop-filter: blur(18px);
        /* box-shadow: -12px 0 28px rgba(0, 0, 0, 0.3); */
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 1050;
      }

      .hero-header .navbar-collapse.show {
        transform: translateX(0);
      }

      .hero-header .collapse { 
        display: block !important;
      }

      .mobile-nav-header {
        margin-bottom: 22px;
      }

      .mobile-nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        cursor: pointer;
      }

      .mobile-nav-close i {
        font-size: 0.95rem;
      }

      .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.65);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
        z-index: 1040;
      }

      .hero-header .navbar-collapse.show ~ .mobile-nav-overlay,
      .hero-header .navbar-collapse.show + .mobile-nav-overlay {
        opacity: 1;
        pointer-events: auto;
      }

      .hero-nav-links {
        gap: 18px;
      }

      .hero-nav-links a {
        color: #ffffff;
        font-size: 1rem;
      }

      .hero-nav-links a:hover {
        color: #cffafe;
      }
    }

    @media (max-width: 575.98px) {
      .hero-stats {
        gap: 12px;
      }

      section:not(.hero) {
        padding: 64px 0;
      }

      .assoc-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .navbar-toggler {
      font-size: 1.15rem;
      color: #fff;
      background: rgba(255, 255, 255, 0.12);
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .navbar-toggler:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-1px);
    }

    .navbar-toggler:focus {
      outline: none;
      box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.18);
    }

    .hero-nav-links a {
      white-space: nowrap;
    }

    @media (max-width: 991.98px) {
      .hero-header {
        padding: 14px 0;
      }

      .hero-header .container {
        flex-wrap: wrap;
      }

      .hero-nav-links {
        gap: 18px;
        margin-top: 16px;
        width: 100%;
      }

      .hero-nav-links a {
        padding: 10px 0;
        color: rgba(255, 255, 255, 0.95);
      }

      .hero-body {
        padding: 32px 0 56px;
      }

      .hero-register-card {
        margin: 24px auto 0;
        max-width: 560px; 
      }

      .stats-section-inner {
        grid-template-columns: 1fr;
            /* padding-right: 16px; */
      }

      .assoc-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 767.98px) {
      .hero-body {
        padding: 24px 0 40px;
      }

      .hero-content h1 {
        font-size: 2.3rem;
      }

      .hero-content p.lead-text {
        font-size: 1.1rem;
      }

      .hero-content p.sub-text {
        font-size: 1rem;
        max-width: 100%;
      }

      .hero-stats {
        flex-direction: column;
        gap: 16px;
      }

      .trust-strip {
        justify-content: center;
      }

      .trust-badge {
        flex: 1 1 45%;
        min-width: 140px;
        justify-content: center;
      }

      .hero-register-card {
        padding: 28px 22px;
      }

      .hero-nav-cta {
        padding: 8px 18px;
        font-size: 0.85rem;
      }

      .feature-card,
      .timeline-card,
      .fee-card,
      .fee-total-card,
      .custom-table-card,
      .quote-card,
      .fee-note {
        padding-left: 20px;
        padding-right: 20px;
      }

      .cta-banner {
        padding: 42px 22px;
      }
    }

    @media (max-width: 575.98px) {
      .hero-body {
        padding: 18px 0 32px;
      }

      .hero-header .container {
        justify-content: space-between;
      }

      .hero-nav-cta {
        width: 100%;
        text-align: center;
      }

      .hero-register-card {
        padding: 22px 18px;
      }

      .hero-nav-links {
        margin-top: 12px;
        gap: 14px;
      }

      .hero-nav-links a {
        padding: 10px 0;
      }

      .section-header {
        margin-bottom: 40px;
      }

      .section-title {
        font-size: 20px;
      }

      .section-sub {
        font-size: 0.98rem;
      }

      .cta-banner {
        padding: 32px 18px;
      }

      .cta-banner h2 {
        font-size: 20px;
      }

      .footer-bottom {
        font-size: 0.78rem;
      }

      .assoc-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .table thead th,
      .table tbody td {
        padding: 12px 14px;
        font-size: 0.85rem;
      }
    }