*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: #0D0D0D; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
html,body{
  overflow-x: hidden;
}
/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── CSS VARIABLES ── */
:root {
  --navy: #0A1628;
  --blue: #1B3A8C;
  --teal: #3A8A85;
  --gold: #F5A623;
  --light-bg: #F8F9FC;
  --text-muted: #6B7280;
  --border: rgba(10,22,40,.07);
}
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: 10px;
  }

  .nav-links a {
    font-size: 13px;
    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) {
    .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%);
  padding: 120px 40px 80px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(58,138,133,.18) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(58,138,133,.18);
  color: #5BC8C3;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-tagline {
  font-size: clamp(15px, 2.5vw, 20px);
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all .3s ease;
  display: inline-block;
}
.btn-gold:hover { background: #e08f1a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,.35); color: var(--navy); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 8px;
  background: transparent;
  transition: all .3s ease;
  display: inline-block;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); color: #fff; }

/* ══════════════════════════════════
   SECTION SHARED
══════════════════════════════════ */
.section-pad { padding: 72px 0; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.15;
}
.section-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 36px; }

/* ══════════════════════════════════
   OVERVIEW
══════════════════════════════════ */
.overview-section { background: var(--light-bg); }
.overview-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}
.overview-body {
  font-size: 15px;
  line-height: 1.85;
  color: #4B5563;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(10,22,40,.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: fit-content;
}
.info-row { display: flex; flex-direction: column; gap: 4px; }
.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.55; }

/* ══════════════════════════════════
   PROGRAMS
══════════════════════════════════ */
.program-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  border-color: var(--gold);
  box-shadow: 0 14px 36px rgba(245,166,35,.13);
  transform: translateY(-5px);
}
.program-icon { font-size: 34px; 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(--text-muted); margin-bottom: auto; padding-bottom: 14px; }
.program-link { font-size: 13px; color: var(--blue); font-weight: 600; transition: color .3s; display: inline-block; margin-top: 12px; }
.program-link:hover { color: var(--gold); }

/* ══════════════════════════════════
   FACILITIES
══════════════════════════════════ */
.facilities-section { background: var(--light-bg); }
.facility-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 20px;
  text-align: center;
  transition: all .3s ease;
  height: 100%;
}
.facility-card:hover {
  border-color: var(--gold);
  box-shadow: 0 14px 36px rgba(245,166,35,.13);
  transform: translateY(-5px);
}
.facility-icon { font-size: 38px; margin-bottom: 12px; }
.facility-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.facility-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════
   HOW TO REACH
══════════════════════════════════ */
.reach-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  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 24px rgba(58,138,133,.1); }
.reach-icon { font-size: 28px; flex-shrink: 0; }
.reach-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.reach-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-section { background: var(--light-bg); }
.contact-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 16px;
  padding: 44px 40px;
  color: #fff;
}
.contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; opacity: .6; margin-bottom: 4px; }
.contact-value { font-size: 15px; color: #fff; }
.map-placeholder {
  background: rgba(255,255,255,.07);
  border: 2px dashed rgba(245,166,35,.6);
  border-radius: 12px;
  /*min-height: 200px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all .3s ease;
  height: 300px;
}
.map-placeholder:hover { background: rgba(255,255,255,.12); }

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

.map-text { font-size: 16px; font-weight: 600; color: var(--gold); }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 8px;
  margin-top: 8px;
  transition: background .3s;
}
.whatsapp-btn:hover { background: rgba(255,255,255,.22); color: #fff; }

/* ══════════════════════════════════
   APPLY CTA
══════════════════════════════════ */
.apply-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 80px 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(30px, 5.5vw, 52px);
  font-weight: 800;
  margin-bottom: 12px;
}
.apply-sub { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 32px; }
.apply-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }



/* ══════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 18px;
  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;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.float-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,.35); color: #fff; }

/* ══════════════════════════════════
   RESPONSIVE OVERRIDES
══════════════════════════════════ */
@media (max-width: 991px) {
  .contact-card { padding: 32px 24px; }
}
@media (max-width: 767px) {
  .hero-section { padding: 110px 16px 64px; }
  .section-pad { padding: 54px 0; }
  .contact-card { padding: 28px 20px; }
  .float-wa span.label { display: none; }
  .float-wa { padding: 13px; border-radius: 50%; }
}
@media (max-width: 480px) {
  .info-card { padding: 20px; }
  .program-card, .facility-card, .reach-card { padding: 20px 16px; }
}
 
/* ≤ 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) {

  footer div[style*="justify-content:space-between"] {
    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;
}