/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: #0D0D0D; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; } 

/* ── VARIABLES ── */
:root {
  --navy: #0A1628;
  --blue: #1B3A8C;
  --teal: #3A8A85;
  --gold: #F5A623;
  --light-bg: #F8F9FC;
  --muted: #6B7280;
  --border: rgba(10,22,40,.08);
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   NAVIGATION (UNCHANGED)
══════════════════════════════ */
#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,.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,.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: 13px; font-weight: 500; color: rgba(255,255,255,.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,.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,.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,.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,.85);
  padding: 12px 28px; display: block;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color 0.2s, background 0.2s;
}
.drawer-link:hover { color: #fff; background: rgba(255,255,255,.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) {
  .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; }
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  text-align: center;
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  padding: 120px 20px 80px;
  position: relative; overflow: hidden;
}
.hero-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.breadcrumb-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.65);
  margin-bottom: 24px; background: rgba(255,255,255,.08);
  padding: 6px 14px; border-radius: 20px;
  backdrop-filter: blur(10px); flex-wrap: wrap; justify-content: center;
}
.breadcrumb-pill a { color: rgba(255,255,255,.85); transition: color .2s; }
.breadcrumb-pill a:hover { color: var(--gold); }
.breadcrumb-pill .sep { opacity: .5; }

.hero-badge {
  display: inline-block; background: rgba(245,166,35,.15); color: #F5A623;
  font-size: 11px; font-weight: 700; padding: 6px 14px;
  border-radius: 20px; text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 16px;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 800; color: #fff;
  margin-bottom: 14px; line-height: 1.1;
}
.hero-tagline {
  font-size: clamp(15px, 2.5vw, 20px);
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.btn-gold {
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 14px;
  padding: 13px 30px; border-radius: 8px;
  border: 2px solid transparent; display: inline-block;
  transition: all .3s ease;
}
.btn-gold:hover { background: #e08f1a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,.4); color: var(--navy); }
.btn-outline-w {
  border: 2px solid rgba(255,255,255,.7); color: #fff;
  font-weight: 600; font-size: 14px;
  padding: 13px 30px; border-radius: 8px;
  background: transparent; display: inline-block;
  transition: all .3s ease;
}
.btn-outline-w:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); color: #fff; }

/* ══════════════════════════════
   SECTIONS
══════════════════════════════ */
.sec { padding: 80px 0; }
.sec-light { background: var(--light-bg); }
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800; color: var(--navy);
  margin-bottom: 12px; line-height: 1.15;
}
.sec-sub { font-size: 16px; color: var(--muted); margin-bottom: 40px; }

/* ── OVERVIEW ── */
.overview-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800; color: var(--navy); margin-bottom: 20px;
}
.overview-text { font-size: 16px; line-height: 1.85; color: #4B5563; }

.info-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 26px 22px;
  box-shadow: 0 6px 28px rgba(10,22,40,.07);
}
.info-row {
  display: flex; flex-direction: column; gap: 5px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #9CA3AF; }
.info-value { font-size: 14px; color: var(--navy); line-height: 1.6; font-weight: 500; }

/* ── PROGRAM CARDS ── */
.program-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 26px 22px;
  transition: all .3s ease; height: 100%;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.program-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.program-card:hover { border-color: var(--gold); box-shadow: 0 14px 40px rgba(245,166,35,.14); transform: translateY(-5px); }
.program-card:hover::before { transform: scaleX(1); }
.program-icon { font-size: 36px; margin-bottom: 12px; }
.program-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.program-duration { font-size: 13px; color: var(--muted); margin-bottom: auto; padding-bottom: 4px; }
.program-link {
  font-size: 13px; color: var(--blue); font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 14px; transition: color .2s, gap .2s;
}
.program-link:hover { color: var(--gold); gap: 8px; }

/* ── FACILITY CARDS ── */
.facility-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 34px 22px;
  text-align: center; transition: all .3s ease; height: 100%;
}
.facility-card:hover { border-color: var(--gold); box-shadow: 0 14px 40px rgba(245,166,35,.14); transform: translateY(-5px); }
.facility-icon { font-size: 40px; margin-bottom: 14px; }
.facility-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.facility-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── REACH CARDS ── */
.reach-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 20px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all .3s ease; height: 100%;
}
.reach-card:hover { border-color: var(--teal); box-shadow: 0 8px 28px rgba(58,138,133,.12); transform: translateY(-3px); }
.reach-icon-wrap {
  font-size: 26px; flex-shrink: 0;
  background: var(--light-bg); border-radius: 12px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
}
.reach-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.reach-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── CONTACT ── */
.contact-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 18px; padding: 44px 40px; color: #fff;
  position: relative; overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(245,166,35,.08); border-radius: 50%;
}
.contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; opacity: .55; margin-bottom: 4px; }
.contact-value { font-size: 15px; color: #fff; font-weight: 500; line-height: 1.55; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: #fff;
  font-weight: 600; font-size: 13px;
  padding: 11px 20px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15); margin-top: 10px;
  transition: background .3s;
}
.wa-btn:hover { background: rgba(255,255,255,.22); color: #fff; }

.map-box {
  background: rgba(255,255,255,.06);
  border: 2px dashed rgba(245,166,35,.55);
  border-radius: 14px; 
  /*min-height: 210px;*/
  height: 300px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  cursor: pointer; 
  flex-direction: column; 
  gap: 10px;
  transition: background .3s, border-color .3s;
}
.map-box:hover { background: rgba(255,255,255,.12); border-color: var(--gold); }

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-lbl { font-size: 16px; font-weight: 600; color: var(--gold); }
.map-sub { font-size: 12px; color: rgba(255,255,255,.5); }

/* ── APPLY CTA ── */
.apply-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 90px 20px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.apply-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(58,138,133,.15) 0%, transparent 70%);
  pointer-events: none;
}
.apply-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5.5vw, 52px);
  font-weight: 800; margin-bottom: 14px;
}
.apply-sub { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,.7); margin-bottom: 36px; }

/* ── FLOAT WA ── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: #25D366; color: #fff; border-radius: 50px;
  padding: 12px 20px; display: flex; align-items: center; gap: 8px;
  cursor: pointer; box-shadow: 0 4px 24px rgba(0,0,0,.2);
  font-size: 13px; font-weight: 600; font-family: 'Inter', sans-serif;
  transition: transform .2s, box-shadow .2s;
}
.float-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,.4); color: #fff; }

/* ══════════════════════════════
   FOOTER (UNCHANGED)
══════════════════════════════ */
footer { background: #0A1628; padding: 56px 40px 28px; color: rgba(255,255,255,.65); font-family: 'Inter', sans-serif; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 991px) {
  .contact-card { padding: 34px 28px; }
}
@media (max-width: 767px) {
  .hero-section { padding: 100px 16px 64px; min-height: auto; }
  .sec { padding: 56px 0; }
  .contact-card { padding: 28px 20px; }
  footer { padding: 40px 20px 24px !important; }
}
@media (max-width: 576px) {
  .info-card, .program-card, .facility-card, .reach-card { padding: 18px 14px; }
  .float-wa .wa-label { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; bottom: 18px; right: 18px; }
}

/* footer grid collapse */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column !important; align-items: center !important; text-align: center !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;
}