/* ============================================================
   RESET & BASE
   ============================================================ */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --blue-dark: #0D3A7A;
      --blue-mid: #134DAC;
      --blue-light: #1A63D8;
      --blue-pale: #EEF4FF;
      --blue-border: #C2D9FF;
      --accent-gold: #F59E0B;
      --accent-green: #16A34A;
      --accent-red: #DC2626;
      --accent-teal: #0891B2;
      --text-dark: #111827;
      --text-mid: #374151;
      --text-light: #6B7280;
      --text-xlight: #9CA3AF;
      --bg-white: #FFFFFF;
      --bg-grey: #F8FAFC;
      --bg-grey2: #F1F5F9;
      --border: #E5E7EB;
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .05);
      --shadow-md: 0 4px 12px rgba(0, 0, 0, .10), 0 2px 4px rgba(0, 0, 0, .06);
      --shadow-lg: 0 10px 28px rgba(0, 0, 0, .12), 0 4px 8px rgba(0, 0, 0, .06);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --font-head: 'Sora', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --transition: 0.25s ease;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.7;
      color: var(--text-mid);
      background: var(--bg-white);
      -webkit-font-smoothing: antialiased;
    }

    /* ============================================================
   LAYOUT
   ============================================================ */
    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section {
      padding: 56px 0;
    }

    .section-alt {
      background: var(--bg-grey);
    }

    /* ============================================================
   HEADER
   ============================================================ */
    .header {
      background: linear-gradient(135deg, #134DAC 0%, #0F3E8A 100%);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 16px rgba(13, 58, 122, .35);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 9px 0;
      gap: 16px;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-icon {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      object-fit: contain;
      transform: translateY(-2.5px);
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-title {
      font-family: var(--font-head);
      font-size: 1.18rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.15;
      letter-spacing: -.01em;
    }

    .logo-sub {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, .72);
      font-weight: 400;
      letter-spacing: .02em;
    }

    /* Nav */
    .nav {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-link {
      color: rgba(255, 255, 255, .88);
      text-decoration: none;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: .9rem;
      padding: 7px 14px;
      border-radius: 6px;
      transition: background var(--transition), color var(--transition);
    }

    .nav-link:hover {
      background: rgba(255, 255, 255, .15);
      color: #fff;
    }

    .nav-link.active {
      background: rgba(255, 255, 255, .18);
      color: #fff;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      border-radius: 6px;
      transition: background var(--transition);
    }

    .hamburger:hover {
      background: rgba(255, 255, 255, .15);
    }

    .hamburger span {
      display: block;
      width: 23px;
      height: 2.5px;
      background: #fff;
      border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7.5px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7.5px) rotate(-45deg);
    }

    /* Mobile nav drawer */
    .mobile-nav {
      display: none;
      flex-direction: column;
      background: #0D3A7A;
      padding: 12px 20px 20px;
      border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .mobile-nav.open {
      display: flex;
    }

    .mobile-nav .nav-link {
      display: block;
      padding: 11px 14px;
      border-radius: 7px;
    }

    /* ============================================================
   NEWS TICKER
   ============================================================ */
    .ticker-wrap {
      background: #fff;
      border-bottom: 1px solid var(--border);
    }

    .ticker-container {
      display: flex;
      align-items: center;
      overflow: hidden;
      height: 36px;
    }

    .ticker-scroll {
      flex: 1;
      overflow: hidden;
      position: relative;
    }

    .ticker-track {
      display: inline-flex;
      white-space: nowrap;
      animation: tickerMove 38s linear infinite;
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      font-size: .82rem;
      color: var(--text-mid);
      padding: 0 40px;
      gap: 8px;
    }

    .ticker-item::before {
      content: '●';
      color: var(--blue-mid);
      font-size: .55rem;
    }

    @keyframes tickerMove {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ============================================================
   HERO
   ============================================================ */
    .hero {
      background: linear-gradient(140deg, #0D3A7A 0%, #1559C4 55%, #1A6DD8 100%);
      padding: 56px 0 64px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: transparent;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .22);
      color: rgba(255, 255, 255, .9);
      font-size: .78rem;
      font-weight: 500;
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 18px;
      backdrop-filter: blur(4px);
    }

    .hero-badge svg {
      width: 13px;
      height: 13px;
    }

    .hero h1 {
      font-family: var(--font-head);
      font-size: clamp(1.7rem, 3.5vw, 2.5rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.25;
      letter-spacing: -.02em;
      margin-bottom: 16px;
    }

    .hero h1 span {
      color: #93C5FD;
    }

    .hero-desc {
      font-size: 1rem;
      color: rgba(255, 255, 255, .78);
      max-width: 520px;
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.9rem;
      padding: 10px 22px;
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      transition: all var(--transition);
      border: 2px solid transparent;
    }

    .btn-white {
      background: #ffffff;
      color: var(--blue-dark);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .btn-white:hover {
      background: #f8fafc;
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .btn-outline-white {
      background: transparent;
      color: #ffffff;
      border-color: rgba(255, 255, 255, 0.5);
    }

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

    .btn-primary {
      background: var(--blue-mid);
      color: #fff;
      border-color: var(--blue-mid);
    }

    .btn-primary:hover {
      background: var(--blue-dark);
      border-color: var(--blue-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    /* Hero stats */
    .hero-stats {
      display: flex;
      gap: 28px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .18);
      backdrop-filter: blur(8px);
      padding: 20px 24px;
      border-radius: var(--radius-lg);
      flex-direction: column;
    }

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

    .hero-stat-num {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      line-height: 1;
    }

    .hero-stat-label {
      font-size: .72rem;
      color: rgba(255, 255, 255, .68);
      margin-top: 4px;
      white-space: nowrap;
    }

    .hero-stat+.hero-stat {
      border-top: 1px solid rgba(255, 255, 255, .15);
      padding-top: 18px;
    }

    /* ============================================================
   SECTION HEADERS
   ============================================================ */
    .sec-header {
      margin-bottom: 36px;
    }

    .sec-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .75rem;
      font-weight: 600;
      color: var(--blue-mid);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 10px;
    }

    .sec-tag::before {
      content: '';
      display: block;
      width: 18px;
      height: 3px;
      background: var(--blue-mid);
      border-radius: 2px;
    }

    .sec-title {
      font-family: var(--font-head);
      font-size: clamp(1.4rem, 2.5vw, 1.9rem);
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: -.02em;
      line-height: 1.25;
      margin-bottom: 12px;
    }

    .sec-desc {
      font-size: .97rem;
      color: var(--text-light);
      max-width: 580px;
      line-height: 1.7;
    }

    /* ============================================================
   QUICK LINKS STRIP
   ============================================================ */
    .quick-strip {
      background: var(--blue-pale);
      border-top: 1px solid var(--blue-border);
      border-bottom: 1px solid var(--blue-border);
      padding: 16px 0;
    }

    .quick-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .quick-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #fff;
      border: 1px solid var(--blue-border);
      color: var(--blue-mid);
      font-size: .82rem;
      font-weight: 600;
      padding: 7px 15px;
      border-radius: 50px;
      text-decoration: none;
      transition: all var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .quick-chip:hover {
      background: var(--blue-mid);
      color: #fff;
      border-color: var(--blue-mid);
      transform: translateY(-1px);
    }

    .quick-chip svg {
      width: 14px;
      height: 14px;
    }

    /* ============================================================
   SERVICE CARDS
   ============================================================ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .svc-btn-card {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px;
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      text-decoration: none;
      transition: all var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .svc-btn-card:hover {
      border-color: var(--blue-mid);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .svc-btn-icon {
      width: 48px;
      height: 48px;
      background: #F0F5FF;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .svc-btn-icon svg {
      width: 24px;
      height: 24px;
      color: var(--blue-mid);
    }

    .svc-btn-content {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .svc-btn-content h3 {
      font-family: var(--font-head);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-dark);
      margin: 0;
      line-height: 1.2;
    }

    .svc-btn-content p {
      font-size: 0.8rem;
      color: var(--text-light);
      margin: 0;
      line-height: 1.3;
    }

    /* ============================================================
   INFO BLOCK (What is Parivahan)
   ============================================================ */
    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .info-body p {
      font-size: .97rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .info-body p:last-child {
      margin-bottom: 0;
    }

    .info-highlights {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .info-highlight {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 16px 18px;
      box-shadow: var(--shadow-sm);
      transition: box-shadow var(--transition);
    }

    .info-highlight:hover {
      box-shadow: var(--shadow-md);
    }

    .info-hl-icon {
      width: 42px;
      height: 42px;
      flex-shrink: 0;
      background: var(--blue-pale);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .info-hl-icon svg {
      width: 22px;
      height: 22px;
    }

    .info-hl-text h4 {
      font-family: var(--font-head);
      font-size: .9rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 3px;
    }

    .info-hl-text p {
      font-size: .83rem;
      color: var(--text-light);
      line-height: 1.55;
    }

    /* ============================================================
   PORTAL CARDS (Sarathi / Vahan)
   ============================================================ */
    .portal-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .portal-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .portal-card-head {
      padding: 22px 24px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .portal-card.sarathi .portal-card-head {
      background: linear-gradient(135deg, #1559C4, #1A73E8);
    }

    .portal-card.vahan .portal-card-head {
      background: linear-gradient(135deg, #0D7A6E, #10A89A);
    }

    .portal-card-head-icon {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, .2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .portal-card-head-icon svg {
      width: 28px;
      height: 28px;
      color: #fff;
    }

    .portal-card-head-text h3 {
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
    }

    .portal-card-head-text p {
      font-size: .8rem;
      color: rgba(255, 255, 255, .78);
      margin-top: 2px;
    }

    .portal-card-body {
      padding: 22px 24px;
    }

    .portal-services {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .portal-services li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .9rem;
      color: var(--text-mid);
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border);
    }

    .portal-services li:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .ps-icon {
      width: 30px;
      height: 30px;
      flex-shrink: 0;
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .portal-card.sarathi .ps-icon {
      background: #EEF4FF;
    }

    .portal-card.vahan .ps-icon {
      background: #ECFDF5;
    }

    .ps-icon svg {
      width: 15px;
      height: 15px;
    }

    .portal-card.sarathi .ps-icon svg {
      color: var(--blue-mid);
    }

    .portal-card.vahan .ps-icon svg {
      color: var(--accent-green);
    }

    .portal-card-foot {
      padding: 16px 24px;
      border-top: 1px solid var(--border);
      background: var(--bg-grey);
    }

    .portal-card-foot a {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: .88rem;
      font-weight: 600;
      color: var(--blue-mid);
      text-decoration: none;
      transition: gap var(--transition);
    }

    .portal-card.vahan .portal-card-foot a {
      color: #0D7A6E;
    }

    .portal-card-foot a:hover {
      gap: 12px;
    }

    .portal-card-foot a svg {
      width: 15px;
      height: 15px;
    }

    /* ============================================================
   STEPS / HOW-TO
   ============================================================ */
    .howto-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .howto-panel h3 {
      font-family: var(--font-head);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--border);
    }

    .steps-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .step-item {
      display: flex;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }

    .step-item:last-child {
      border-bottom: none;
    }

    .step-num {
      width: 30px;
      height: 30px;
      flex-shrink: 0;
      background: var(--blue-mid);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: .8rem;
      font-weight: 700;
      margin-top: 2px;
    }

    .step-content h4 {
      font-family: var(--font-head);
      font-size: .9rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 4px;
    }

    .step-content p {
      font-size: .85rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* Docs required box */
    .docs-box {
      background: var(--blue-pale);
      border: 1px solid var(--blue-border);
      border-radius: var(--radius-md);
      padding: 20px 22px;
      margin-top: 20px;
    }

    .docs-box h4 {
      font-family: var(--font-head);
      font-size: .9rem;
      font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .docs-box h4 svg {
      width: 16px;
      height: 16px;
    }

    .docs-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .docs-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: .85rem;
      color: var(--text-mid);
    }

    .docs-list li::before {
      content: '✓';
      color: var(--blue-mid);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ============================================================
   ELIGIBILITY TABLE
   ============================================================ */
    .table-wrap {
      overflow-x: auto;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
    }

    .dl-table {
      width: 100%;
      border-collapse: collapse;
      font-size: .9rem;
      background: var(--bg-white);
    }

    .dl-table thead th {
      background: var(--blue-mid);
      color: #fff;
      font-family: var(--font-head);
      font-weight: 600;
      padding: 13px 16px;
      text-align: left;
      font-size: .85rem;
      letter-spacing: .01em;
    }

    .dl-table thead th:first-child {
      border-radius: var(--radius-sm) 0 0 0;
    }

    .dl-table thead th:last-child {
      border-radius: 0 var(--radius-sm) 0 0;
    }

    .dl-table tbody tr:nth-child(even) {
      background: var(--bg-grey);
    }

    .dl-table tbody td {
      padding: 12px 16px;
      color: var(--text-mid);
      border-bottom: 1px solid var(--border);
    }

    .dl-table tbody tr:last-child td {
      border-bottom: none;
    }

    .tag-age {
      display: inline-block;
      background: var(--blue-pale);
      color: var(--blue-mid);
      font-weight: 700;
      font-size: .8rem;
      padding: 2px 9px;
      border-radius: 20px;
    }

    /* ============================================================
   ECHALLAN SECTION
   ============================================================ */
    .challan-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .challan-steps .step-item .step-num {
      background: #DC2626;
    }

    .challan-info {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .challan-info-head {
      background: linear-gradient(135deg, #DC2626, #B91C1C);
      padding: 20px 24px;
    }

    .challan-info-head h3 {
      font-family: var(--font-head);
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
    }

    .challan-info-head p {
      font-size: .82rem;
      color: rgba(255, 255, 255, .78);
      margin-top: 4px;
    }

    .challan-info-body {
      padding: 20px 24px;
    }

    .challan-tip {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
    }

    .challan-tip:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .ct-icon {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
      background: #FEF2F2;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ct-icon svg {
      width: 16px;
      height: 16px;
      color: #DC2626;
    }

    .challan-tip h5 {
      font-family: var(--font-head);
      font-size: .87rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 2px;
    }

    .challan-tip p {
      font-size: .82rem;
      color: var(--text-light);
    }

    /* ============================================================
   MPARIVAHAN
   ============================================================ */
    .mpariv-wrap {
      background: linear-gradient(135deg, #0D3A7A, #1A63D8);
      border-radius: var(--radius-lg);
      padding: 44px 40px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 32px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .mpariv-wrap::after {
      content: '';
      position: absolute;
      right: -40px;
      top: -40px;
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, .06);
      border-radius: 50%;
    }

    .mpariv-text h2 {
      font-family: var(--font-head);
      font-size: 1.6rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
      letter-spacing: -.02em;
    }

    .mpariv-text p {
      font-size: .95rem;
      color: rgba(255, 255, 255, .78);
      line-height: 1.7;
      max-width: 500px;
    }

    .mpariv-features {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .mpariv-feat {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .9);
      font-size: .8rem;
      font-weight: 500;
      padding: 5px 12px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, .18);
    }

    .mpariv-feat svg {
      width: 12px;
      height: 12px;
    }

    .mpariv-card {
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .22);
      backdrop-filter: blur(8px);
      border-radius: var(--radius-lg);
      padding: 24px 28px;
      text-align: center;
      min-width: 180px;
    }

    .mpariv-card-icon {
      width: 64px;
      height: 64px;
      background: rgba(255, 255, 255, .18);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
    }

    .mpariv-card-icon svg {
      width: 34px;
      height: 34px;
      color: #fff;
    }

    .mpariv-card h4 {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .mpariv-card p {
      font-size: .8rem;
      color: rgba(255, 255, 255, .7);
    }

    .mpariv-card .btn {
      margin-top: 14px;
      font-size: .8rem;
      padding: 8px 18px;
    }

    /* ============================================================
   FAQ
   ============================================================ */
    .faq-wrap {
      max-width: 780px;
      margin: 0 auto;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      margin-bottom: 10px;
      overflow: hidden;
      transition: box-shadow var(--transition);
    }

    .faq-item.open {
      box-shadow: var(--shadow-md);
    }

    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 18px 20px;
      cursor: pointer;
      background: var(--bg-white);
      transition: background var(--transition);
    }

    .faq-q:hover {
      background: var(--bg-grey);
    }

    .faq-q-text {
      font-family: var(--font-head);
      font-size: .95rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.4;
    }

    .faq-toggle {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      background: var(--blue-pale);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition), transform var(--transition);
    }

    .faq-toggle svg {
      width: 14px;
      height: 14px;
      color: var(--blue-mid);
      transition: transform .3s;
    }

    .faq-item.open .faq-toggle {
      background: var(--blue-mid);
    }

    .faq-item.open .faq-toggle svg {
      color: #fff;
      transform: rotate(180deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
      background: var(--bg-grey);
    }

    .faq-item.open .faq-a {
      max-height: 400px;
    }

    .faq-a-inner {
      padding: 0 20px 18px;
      font-size: .9rem;
      color: var(--text-mid);
      line-height: 1.75;
      border-top: 1px solid var(--border);
      padding-top: 14px;
    }

    /* ============================================================
   IMPORTANT NOTICE
   ============================================================ */
    .notice-box {
      background: #FFFBEB;
      border: 1px solid #FCD34D;
      border-left: 4px solid var(--accent-gold);
      border-radius: var(--radius-md);
      padding: 18px 20px;
      margin-bottom: 36px;
      display: flex;
      gap: 13px;
      align-items: flex-start;
    }

    .notice-box svg {
      width: 20px;
      height: 20px;
      color: #B45309;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .notice-box p {
      font-size: .88rem;
      color: #78350F;
      line-height: 1.6;
    }

    .notice-box strong {
      color: #92400E;
    }

    /* ============================================================
   FOOTER
   ============================================================ */
    .footer {
      background: #0A2444;
      color: rgba(255, 255, 255, .75);
    }

    .footer-top {
      padding: 52px 0 40px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.4fr;
      gap: 40px;
    }

    .footer-brand .logo {
      margin-bottom: 14px;
    }

    .footer-brand .logo-title,
    .footer-brand .logo-sub {
      color: rgba(255, 255, 255, .9);
    }

    .footer-brand p {
      font-size: .85rem;
      line-height: 1.75;
      color: rgba(255, 255, 255, .55);
      max-width: 280px;
    }

    .footer-col h4 {
      font-family: var(--font-head);
      font-size: .85rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .9);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 16px;
    }

    .footer-links-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .footer-links-list a {
      font-size: .86rem;
      color: rgba(255, 255, 255, .55);
      text-decoration: none;
      transition: color var(--transition);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .footer-links-list a:hover {
      color: rgba(255, 255, 255, .9);
    }

    .footer-links-list a svg {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 13px;
    }

    .footer-contact-item svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      color: rgba(255, 255, 255, .4);
      margin-top: 2px;
    }

    .footer-contact-item p {
      font-size: .84rem;
      color: rgba(255, 255, 255, .55);
      line-height: 1.5;
    }

    .footer-contact-item strong {
      color: rgba(255, 255, 255, .8);
    }

    .footer-bottom {
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      font-size: .8rem;
      color: rgba(255, 255, 255, .38);
    }

    .footer-bottom-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 20px;
    }

    .footer-bottom-links a {
      font-size: .8rem;
      color: rgba(255, 255, 255, .38);
      text-decoration: none;
      transition: color var(--transition);
      white-space: nowrap;
    }

    .footer-bottom-links a:hover {
      color: rgba(255, 255, 255, .7);
    }

    .disclaimer-strip {
      background: #071D38;
      padding: 12px 0;
      border-top: 1px solid rgba(255, 255, 255, .05);
    }

    .disclaimer-strip p {
      font-size: .77rem;
      color: rgba(255, 255, 255, .3);
      text-align: center;
      line-height: 1.5;
    }

    /* ============================================================
   BACK TO TOP
   ============================================================ */
    .btt {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 42px;
      height: 42px;
      background: var(--blue-mid);
      color: #fff;
      border: none;
      cursor: pointer;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(19, 77, 172, .45);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all var(--transition);
      z-index: 900;
    }

    .btt.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .btt:hover {
      background: var(--blue-dark);
      transform: translateY(-2px);
    }

    .btt svg {
      width: 18px;
      height: 18px;
    }

    /* ============================================================
   UTILITY CLASSES
   ============================================================ */
    .text-center {
      text-align: center;
    }

    .text-link {
      color: var(--blue-mid);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .text-link:hover {
      color: var(--blue-dark);
    }

    .mb-0 {
      margin-bottom: 0;
    }

    .mt-24 {
      margin-top: 24px;
    }

    /* ============================================================
   RESPONSIVE
   ============================================================ */
    @media (max-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .footer-grid {
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .nav {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      .hero-inner {
        grid-template-columns: 1fr;
      }
      .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
      }
      .hero-stat + .hero-stat {
        border-top: none;
        border-left: none;
        padding-top: 0;
        padding-left: 0;
      }
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .info-grid,
      .portal-grid,
      .howto-wrap,
      .challan-grid,
      .mpariv-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
      .mpariv-wrap {
        padding: 30px 22px;
      }
    }

    @media (max-width: 480px) {
      .section {
        padding: 40px 0;
      }
      .hero {
        padding: 32px 0 40px;
      }
      .hero h1 {
        font-size: 1.6rem;
      }
      .section-title h2 {
        font-size: 1.5rem;
      }
      .services-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
    }

/* ============================================================
   DROPDOWN MENU
   ============================================================ */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, .88);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  padding: 7px 14px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
}
.nav-dropdown-btn svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,.9);
  transition: transform var(--transition);
}
.nav-dropdown-btn:hover, .nav-dropdown:hover .nav-dropdown-btn {
  color: #fff;
  background: rgba(255, 255, 255, .15);
}
.nav-dropdown:hover .nav-dropdown-btn svg {
  transform: rotate(90deg);
}
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(13, 58, 122, 0.15);
  border-radius: 12px;
  padding: 12px;
  min-width: 250px;
  z-index: 100;
  border: 1px solid rgba(13, 58, 122, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: var(--text-mid);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  background: #EEF4FF;
  color: var(--blue-mid);
  padding-left: 22px;
}

