* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --navy: #0A1628;
    --royal: #1B3A8C;
    --gold: #F5A623;
    --teal: #3A8A85;
    --green: #1DB07A;
    --offwhite: #F8F9FC;
    --charcoal: #0D0D0D;
    --gray: #6B7280;
    --font-display: 'Playfair Display', serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease: cubic-bezier(0.4,0,0.2,1);
  }

  html,body {
      font-family: var(--font-body);
    color: var(--charcoal);
    background: #fff;
  overflow-x: hidden;
    scroll-behavior: smooth;
  }
  
  a { text-decoration: none; }

  /* =============================================
     NAVIGATION
  ============================================= */
  #nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 2vw, 48px);
    transition: background 0.4s, box-shadow 0.4s;
    background-color: transparent;
  }

  #nav.scrolled {
    background: var(--navy);
    box-shadow: 0 2px 24px rgba(0,0,0,0.4);
    border-bottom: 1px solid white;
  }

  #nav.scrolled .hamburger span { background: #ffffff; }

  .hamburger span {
    width: 24px; height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .nav-logo-wrap {
    background: #fff;
    border-radius: 8px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }

  .nav-logo-wrap img { height: 44px; width: auto; }

  .nav-logo-wrap .logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    color: var(--navy);
    letter-spacing: -0.02em;
  }

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

  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 7px 10px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
  }

  .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }

  .nav-right { display: flex; align-items: center; gap: 12px; }

  .btn-apply {
    background: var(--gold);
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 7px;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
  }

  .btn-apply:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 20px rgba(245,166,35,0.5);
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* DRAWER */
  #drawer {
    position: fixed;
    top: 0; right: 0;
    width: min(340px, 90vw);
    height: 100vh;
    background: var(--navy);
    z-index: 1100;
    padding: 20px 0 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.45s ease-in-out;
    will-change: transform;
  }

  #drawer.open { transform: translateX(0); }

  #drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  #drawer-overlay.open { opacity: 1; visibility: visible; }

  .drawer-link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 12px 28px;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s, background 0.2s;
  }

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

  .drawer-cta { margin: 24px 28px 0; }

  .drawer-cta a {
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
    border-radius: 8px;
  }
  .nav-logo-pill{
  /* background:#ffffff; */
  border-radius:10px;
  padding:6px 16px;
  display:flex;
  align-items:center;
  /*box-shadow:0 2px 12px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.6);*/
}
.nav-logo-pill img{height:70px;width:auto;display:block;}
.scrolled > .nav-logo-pill img{height:60px;}
.scrolled > .nav-logo-pill.logo {
    height: 50px;
}
footer{background:var(--navy);padding:60px 40px 32px;color:rgba(255,255,255,.65);}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 2fr;gap:40px;margin-bottom:40px;}
.footer-brand .nav-logo{margin-bottom:16px;}
.footer-brand p{font-size:14px;line-height:1.7;max-width:280px;}
.footer-col h4{font-size:13px;font-weight:700;color:#fff;letter-spacing:.08em;text-transform:uppercase;margin-bottom:16px;}
.footer-col a{display:block;font-size:14px;color:rgba(255,255,255,.55);margin-bottom:10px;transition:color .2s;}
.footer-col a:hover{color:#fff;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;font-size:13px;}
.footer-bottom a{color:rgba(255,255,255,.4);transition:color .2s;}
.footer-bottom a:hover{color:#fff;}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:580px){
  .footer-grid{grid-template-columns:1fr;}
  footer{padding:48px 20px 24px;}
}

   /* Tablets */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .btn-apply { padding: 9px 14px !important; }
  }
  /* Phones */
  @media (max-width: 600px) {
    .btn-apply { display: none !important; }
    .nav-logo-wrap img { height: 36px !important; }
    
  }

  @media (max-width: 640px) {
      #nav{ height: 90px; }
  }


  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  .step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
  }

  .step-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s var(--ease);
  }

  .step-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
    transform: translateY(-4px);
  }

  .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--royal), var(--navy));
    color: white;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
  }

  .step-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .step-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
  }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .eligibility-box {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, rgba(58, 138, 133, 0.08) 100%);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
  }

  .eligibility-box h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
  }

  .eligibility-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
  }

  .highlight {
    color: var(--gold);
    font-weight: 700;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }

  th {
    background: linear-gradient(135deg, #0A1628 0%, #1B3A8C 100%);
    color: white;
    padding: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-align: left;
  }

  td {
    padding: 16px;
    border-bottom: 1px solid #E5E7EB;
    font-size: 14px;
  }

  tr:last-child td {
    border-bottom: none;
  }

  tr:nth-child(even) {
    background: #F9FAFB;
  }

  .checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #555;
    padding: 8px 0;
  }

  .checklist-item:before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--green), #16926F);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 14px;
  }

  .accordion {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }

  .accordion-item {
    border-bottom: 1px solid #E5E7EB;
  }

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

  .accordion-header {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s var(--ease);
    background: white;
    font-weight: 600;
    color: var(--navy);
  }

  .accordion-header:hover {
    background: #F9FAFB;
  }

  .accordion-header.active {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(27, 58, 140, 0.1) 100%);
    color: var(--royal);
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
    padding: 0 24px;
  }

  .accordion-content.active {
    max-height: 400px;
    padding: 0 24px 20px;
  }

  .accordion-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
  }

  .toggle-icon {
    display: inline-block;
    transition: transform 0.3s var(--ease);
    font-size: 20px;
  }

  .accordion-header.active .toggle-icon {
    transform: rotate(180deg);
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 14px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: border 0.3s ease;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--royal);
    box-shadow: 0 0 0 3px rgba(27, 58, 140, 0.1);
  }

  .submit-btn {
    background: linear-gradient(135deg, var(--gold), #FF9E42);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s var(--ease);
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
  }

  .cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s var(--ease);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
  }

  .btn-secondary {
    background: transparent;
    color: var(--navy);
    padding: 16px 40px;
    border: 2px solid var(--navy);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s var(--ease);
  }

  .btn-secondary:hover {
    background: var(--navy);
    color: white;
  }

  @media (max-width: 900px) {
    .two-col {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .step-grid {
      grid-template-columns: 1fr;
    }

    table {
      font-size: 12px;
    }

    th, td {
      padding: 12px;
    }

    .cta-buttons {
      flex-direction: column;
    }

    .btn-primary, .btn-secondary {
      width: 100%;
      text-align: center;
    }
  }

  /* ≤ 768px: footer grid collapses, footer padding shrinks */
  @media (max-width: 768px) {
    footer { padding: 40px 20px 24px !important; }
    footer div[style*="2fr 1fr 1fr 1fr"],
    footer div[style*="2fr 1fr 1fr"],
    footer div[style*="1fr 1fr 1fr 1fr"],
    footer div[style*="1fr 1fr 1fr"] {
      grid-template-columns: 1fr !important;
      gap: 32px !important;
    }
  }

  /* ≤ 600px: hero, section padding, footer bottom bar */
  @media (max-width: 600px) {
    section[style*="padding:140px 40px 80px"] {
      padding: 100px 20px 60px !important;
    }
    section[style*="padding:140px 40px 80px"] p[style*="font-size:18px"] {
      font-size: 16px !important;
    }
    section[style*="padding:80px 40px"] {
      padding: 60px 20px !important;
    }
    footer div[style*="justify-content:space-between"] {
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
    }
  }

  /* ≤ 480px: auto-fit grids force single column */
  @media (max-width: 480px) {
    div[style*="minmax(320px"],
    div[style*="minmax(280px"],
    div[style*="minmax(240px"] {
      grid-template-columns: 1fr !important;
    }
  }

  /* ≤ 360px: WhatsApp floating button shrinks */
  @media (max-width: 360px) {
    div[onclick*="wa.me"] {
      padding: 10px 14px !important;
      font-size: 12px !important;
      bottom: 16px !important;
      right: 16px !important;
    }
  }


  /*****************Footer Social Links*******************/

.footer-social h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #fff;
    color: #000;
}
