/*:root { --navy: #0A1628; --royal: #1B3A8C; --gold: #F5A623; --teal: #3A8A85; --offwhite: #F8F9FC; --charcoal: #0D0D0D; --gray: #6B7280; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: #333; line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }*/

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%); color: white; padding: 120px 40px 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,166,35,.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; }
.quick-info { display: flex; gap: 16px; margin: 32px 0; flex-wrap: wrap; }
.info-pill { background: rgba(255,255,255,.15); backdrop-filter: blur(10px); padding: 12px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; /*border: 1px solid rgba(255,255,255,.2);*/  color: #fff; }
.cta-buttons { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.btn { padding: 14px 28px; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; cursor: pointer; border: none; transition: all .3s ease; font-family: 'Plus Jakarta Sans', sans-serif; display: inline-block; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #f0961a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,.3); }
.btn-secondary { background: transparent; color: white; border: 2px solid white; }
.btn-secondary:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline-white:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245, 166, 35, 0.08);
}
.stats-strip {
    background: var(--navy);
    padding: 40px 0;
}
.stat-item {
    text-align: center;
    padding: 8px;
}
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--gold);
    display: block;
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
    display: block;
}

/* ===== SECTIONS ===== */
section { padding: 80px 40px; }
section.alt-bg { background: var(--offwhite); }

/* ===== OVERVIEW ===== */
.overview { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.overview-text { font-size: 16px; line-height: 1.8; color: #555; }
.overview-text h2 { font-size: 32px; color: var(--navy); margin-bottom: 20px; }
.highlights-box { background: white; padding: 32px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.highlights-box h3 { font-size: 18px; color: var(--navy); margin-bottom: 20px; }
/*.highlight-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14px; color: #555; }*/
.highlight-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #444;
    align-items: flex-start;
    line-height: 1.5;
}
.highlight-item .check {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
/*.highlight-item::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }*/

/* ===== CURRICULUM ===== */
.curriculum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.semester-box { background: white; padding: 28px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.semester-box h3 { font-size: 16px; color: var(--royal); margin-bottom: 16px; font-weight: 700; }
.subject-list { display: flex; flex-direction: column; gap: 10px; }
.subject { font-size: 13px; padding: 8px 12px; background: var(--offwhite); border-radius: 6px; border-left: 3px solid var(--gold); }

/* ===== CAREER ===== */
.career-roles { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
/*.role-card { background: white; padding: 28px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,.08); border-top: 4px solid var(--gold); text-align: center; transition: all .3s ease; }*/
.role-card {
    background: white;
    padding: 28px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border-top: 4px solid var(--gold);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}
.role-card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(0,0,0,.15); }
.role-icon { font-size: 40px; margin-bottom: 12px; }
.role-card h4 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.role-card p { font-size: 13px; color: var(--gold); font-weight: 700; }

/* ===== ELIGIBILITY / FEE ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.info-card { background: white; padding: 36px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.info-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 20px; }
.info-list { display: flex; flex-direction: column; gap: 14px; list-style: none; padding: 0; }
.info-list li { font-size: 14px; color: #555; padding-left: 20px; position: relative; }
.info-list li::before { content: '•'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 40px; }
/*.feature-card { background: white; padding: 28px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,.08); text-align: center; }*/
.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    transform: scaleX(0);
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.feature-icon { font-size: 48px; margin-bottom: 16px; }
.feature-card h4 { font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: #666; line-height: 1.6; }

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%); color: white; text-align: center; padding: 80px 40px; border-radius: 12px; margin: 60px 40px; }
.cta-section h2 { font-size: 36px; margin-bottom: 24px; }
.cta-section p { font-size: 16px; margin-bottom: 32px; opacity: .9; max-width: 500px; margin-left: auto; margin-right: auto; }

a{
text-decoration: none;
}
/* =============================================
   NAVIGATION
============================================= */
  #nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    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: 2px;
  }

  .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;
  }

  .cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
    color: white;
    text-align: center;
    padding: 72px 24px;
    border-radius: 20px;
    margin: 0 0 60px;
    position: relative;
    overflow: hidden;
  }

  @media (max-width: 900px) {
    .nav-links {
      display: none;
    }
    .hamburger {
      display: flex;
    }
    .btn-apply {
      padding: 9px 14px !important;
    }
  }

  @media (max-width: 600px) {
    .btn-apply {
      display: none !important;
    }
    .nav-logo-wrap img {
      height: 36px !important;
    }
  }

/* Large tablet */
@media (max-width: 992px) {
  .overview { grid-template-columns: 1fr; gap: 32px; }
  .career-roles { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 42px; }
}

/* Tablet */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .hero h1 { font-size: 34px; }
  section { padding: 56px 24px; }
  .container { padding: 0 24px; }
  nav { padding: 0 16px; }
  .curriculum-grid { grid-template-columns: 1fr; gap: 20px; }
  .two-col { grid-template-columns: 1fr; gap: 20px; }
  .career-roles { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cta-section { margin: 40px 24px; padding: 56px 24px; }
  .cta-section h2 { font-size: 28px; }
  .cta-section p { font-size: 15px; }
}

/* Phone */
@media (max-width: 600px) {
  .hero { padding: 88px 16px 48px; }
  .hero h1 { font-size: 28px; line-height: 1.25; }
  .info-pill { font-size: 12px; padding: 9px 13px; }
  .btn { padding: 12px 20px; font-size: 13px; }
  section { padding: 48px 16px; }
  .container { padding: 0 16px; }
  section h2 { font-size: 24px !important; }
  .highlights-box, .semester-box, .info-card, .role-card, .feature-card { padding: 20px !important; }
  .role-icon { font-size: 32px; }
  .role-card h4 { font-size: 13px; }
  .cta-section { margin: 32px 16px; padding: 48px 20px; border-radius: 10px; }
  .cta-section h2 { font-size: 24px; }
}

/* Small phone */
@media (max-width: 420px) {
  .hero h1 { font-size: 24px; }
  .career-roles { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .curriculum-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .quick-info { gap: 8px; }
  .cta-buttons { gap: 10px; flex-direction: column; }
  .cta-buttons .btn { text-align: center; }
  div[onclick*="wa.me"] { padding: 10px 14px !important; font-size: 12px !important; bottom: 16px !important; right: 16px !important; }
}

.bg-light-orange{ background: #FFF8E8;  }
/* ── FOOTER — FULLY RESPONSIVE ── */
/*.site-footer { background: #0A1628; padding: 60px 0 32px; color: rgba(255,255,255,0.65); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo-box { background: #fff; border-radius: 10px; padding: 8px 18px; display: inline-flex; align-items: center; margin-bottom: 16px; }
.footer-logo-box img { height: 48px; display: block; width: auto; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 18px; color: var(--navy); }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 9px; transition: color 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-col a:hover { color: var(--gold); }
.footer-col a.gold-link { color: var(--gold); font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 13px; font-family: 'Plus Jakarta Sans', sans-serif; }*/

/* Footer tablet */
/*@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-desc { max-width: 100%; }
  .site-footer { padding: 48px 0 28px; }
}*/
/* Footer mobile */
/*@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .site-footer { padding: 40px 0 24px; }
}*/