/* ── VARIABLES ── */
:root {
  --navy: #0d2340;
  --navy-light: #1a3a5c;
  --teal: #1a6b72;
  --teal-light: #22919a;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f7f3ee;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: rgba(201,168,76,0.2);
  --shadow: rgba(13,35,64,0.12);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; }
img { max-width: 100%; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(13,35,64,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 18px; color: #fff; flex-shrink: 0;
}
.nav-brand-text .brand-name { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600; color: #fff; display: block; line-height: 1.2; }
.nav-brand-text .brand-sub  { font-size: 10px; color: var(--gold-light); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta { background: var(--gold); color: var(--navy) !important; padding: 8px 20px; border-radius: 5px; font-weight: 600 !important; transition: background .2s !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.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); }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: rgba(13,35,64,0.98); padding: 20px 5% 28px; flex-direction: column;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color .2s; }
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-cta { margin-top: 18px; background: var(--gold); color: var(--navy) !important; padding: 13px 24px; border-radius: 6px; text-align: center; font-weight: 700 !important; border: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy); padding: 140px 5% 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(26,107,114,0.3) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; display: block; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 64px); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.page-hero h1 span { color: var(--gold); font-weight: 600; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.8; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 13px 30px; border-radius: 6px; font-weight: 600; font-size: 14px; letter-spacing: 0.03em; transition: all .25s; cursor: pointer; border: none; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline-gold { border: 1.5px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.4); color: #fff; background: transparent; }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-light); transform: translateY(-2px); }

/* ── SECTION COMMON ── */
.section { padding: 96px 5%; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-navy  { background: var(--navy); }
.section-label { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.section-label-light { color: var(--gold-light); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 400; color: var(--navy); line-height: 1.15; margin-bottom: 18px; }
.section-title-light { color: #fff; }
.section-title em { font-style: italic; color: var(--teal); }
.section-title-light em { color: var(--gold-light); }
.section-desc { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 600px; }
.section-desc-light { color: rgba(255,255,255,0.55); }
.divider { width: 48px; height: 2px; background: linear-gradient(to right, var(--gold), var(--teal-light)); margin: 18px 0; }
.divider-light { background: linear-gradient(to right, var(--gold), transparent); }

/* ── CARDS ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all .3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px var(--shadow); }
.card-header { padding: 32px 28px 24px; background: linear-gradient(135deg, var(--navy), var(--teal)); position: relative; overflow: hidden; }
.card-header::after { content: ''; position: absolute; right: -20px; bottom: -20px; width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.card-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: #fff; margin-bottom: 4px; position: relative; z-index: 1; }
.card-header p { font-size: 13px; color: rgba(255,255,255,0.65); position: relative; z-index: 1; }
.card-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; position: relative; z-index: 1; }
.card-body { padding: 26px 28px; }

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

/* ── FOOTER ── */
footer { background: #081524; padding: 64px 5% 28px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.8; max-width: 280px; }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.52); }
.footer-contact-item span:first-child { color: var(--gold); flex-shrink: 0; }
footer h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.48); font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.28); flex-wrap: wrap; gap: 10px; }

/* ════════════════════════════
   HOME PAGE
════════════════════════════ */
.hero {
  min-height: 100vh; background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; position: relative; overflow: hidden;
  padding: 110px 5% 80px; gap: 40px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 75% 40%, rgba(26,107,114,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 5vw, 72px); font-weight: 300; line-height: 1.08; color: #fff; margin-bottom: 8px; animation: fadeUp .7s .1s ease both; }
.hero h1 span { color: var(--gold); font-weight: 600; }
.hero-sub { font-family: 'Cormorant Garamond', serif; font-size: clamp(17px, 2vw, 24px); color: var(--teal-light); margin-bottom: 20px; animation: fadeUp .7s .18s ease both; }
.hero p { font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.8; max-width: 460px; margin-bottom: 38px; animation: fadeUp .7s .26s ease both; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .7s .34s ease both; }
.hero-illustration { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; animation: fadeUp .8s .3s ease both; }
.hero-illustration svg { width: 100%; max-width: 460px; height: auto; filter: drop-shadow(0 20px 60px rgba(26,107,114,0.35)); }
.hero-illustration::before { content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.12); animation: pulse-ring 3s ease-out infinite; }
.hero-illustration::after  { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(26,107,114,0.1);  animation: pulse-ring 3s 1.2s ease-out infinite; }
.hero-stats { position: absolute; left: 5%; bottom: 36px; z-index: 2; display: flex; gap: 40px; animation: fadeUp .7s .42s ease both; }
.stat { text-align: center; }
.stat-num   { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 600; color: var(--gold); line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* home about strip */
.home-about { background: var(--white); }
.home-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-box { background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 14px; height: 400px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.about-img-box img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.about-img-overlay { position: relative; z-index: 2; text-align: center; color: #fff; font-family: 'Cormorant Garamond', serif; }
.about-img-overlay .big { font-size: 88px; line-height: 1; opacity: 0.85; }
.about-img-overlay .small { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.55; margin-top: 8px; }
.about-badge { position: absolute; bottom: -22px; right: -22px; background: var(--gold); color: var(--navy); border-radius: 10px; padding: 18px 22px; box-shadow: 0 12px 36px rgba(201,168,76,0.3); }
.about-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.about-tag { background: var(--cream); border: 1px solid var(--border); color: var(--navy); font-size: 12px; font-weight: 500; padding: 5px 13px; border-radius: 20px; }
.vm-cards { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.vm-card { border-left: 3px solid var(--teal); padding-left: 18px; }
.vm-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.vm-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* programs */
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; }
.program-detail { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.program-detail-icon { color: var(--teal); font-size: 15px; flex-shrink: 0; }
.program-detail-text { font-size: 14px; color: var(--text); }
.program-detail-text strong { color: var(--navy); }
.program-link { display: inline-flex; align-items: center; gap: 7px; color: var(--teal); font-size: 13px; font-weight: 600; margin-top: 10px; letter-spacing: 0.04em; text-transform: uppercase; transition: gap .2s; }
.program-link:hover { gap: 11px; color: var(--teal-light); }

/* why grid */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 52px; background: rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; }
.why-item { padding: 36px 28px; background: rgba(13,35,64,0.8); transition: background .3s; position: relative; overflow: hidden; }
.why-item:hover { background: rgba(26,107,114,0.25); }
.why-item-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: rgba(201,168,76,0.12); line-height: 1; position: absolute; top: 14px; right: 18px; }
.why-icon { font-size: 28px; margin-bottom: 16px; }
.why-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.why-item p  { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* notices home */
.notices-list { margin-top: 36px; display: flex; flex-direction: column; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.07); }
.notice-item { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.05); transition: background .2s; }
.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: rgba(26,107,114,0.2); }
.notice-left { display: flex; align-items: center; gap: 14px; }
.notice-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.notice-title { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }
.notice-date  { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 3px; }
.notices-view-all { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 13px; font-weight: 600; margin-top: 22px; letter-spacing: 0.06em; text-transform: uppercase; transition: gap .2s; }
.notices-view-all:hover { gap: 12px; }

/* accred */
/* Accreditation Strip */
.accred-strip { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; background: var(--white); border-radius: 14px; border: 1px solid var(--border); padding: 40px 48px; box-shadow: 0 4px 24px var(--shadow); }
.accred-item { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 8px 48px; text-align: center; }
.accred-item img { height: 64px; width: auto; object-fit: contain; filter: grayscale(20%); transition: filter .3s; }
.accred-item:hover img { filter: grayscale(0%); }
.accred-initials { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--teal)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0.05em; }
.accred-name { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.05em; }
.accred-desc { font-size: 11px; color: var(--muted); max-width: 140px; line-height: 1.5; }
.accred-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }
@media (max-width: 768px) {
  .accred-strip { padding: 28px 20px; gap: 8px; }
  .accred-item { padding: 8px 20px; }
  .accred-divider { display: none; }
}

/* facilities */
.facilities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.facility-card { border-radius: 10px; overflow: hidden; background: var(--cream); border: 1px solid var(--border); transition: transform .3s; }
.facility-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px var(--shadow); }
.facility-img { height: 170px; background: linear-gradient(135deg, var(--teal), var(--navy)); display: flex; align-items: center; justify-content: center; font-size: 44px; position: relative; overflow: hidden; }
.facility-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.facility-body { padding: 18px 20px; }
.facility-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.facility-body p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* admission banner */
.admission-banner { background: linear-gradient(135deg, var(--teal), var(--teal-light)); padding: 76px 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; position: relative; overflow: hidden; }
/* admission-banner-year removed */
.admission-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 400; color: #fff; margin-bottom: 8px; }
.admission-text p  { font-size: 14px; color: rgba(255,255,255,0.75); }
.admission-phones  { margin-top: 12px; display: flex; gap: 18px; flex-wrap: wrap; }
.admission-phone   { color: var(--gold-light); font-size: 15px; font-weight: 600; }

/* ════════════════════════════
   ABOUT PAGE
════════════════════════════ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-story-text p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 18px; }
.about-story-text p:last-child { margin-bottom: 0; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 36px; background: var(--border); border-radius: 10px; overflow: hidden; }
.about-stat-box { background: var(--white); padding: 28px 24px; text-align: center; }
.about-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 600; color: var(--teal); line-height: 1; }
.about-stat-lbl { font-size: 12px; color: var(--muted); margin-top: 5px; letter-spacing: 0.06em; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 24px; margin-top: 48px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px 22px; text-align: center; transition: all .3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px var(--shadow); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--teal)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: #fff; margin: 0 auto 14px; }
.team-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.team-card .role { font-size: 12px; color: var(--teal); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.team-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ════════════════════════════
   ADMISSION PAGE
════════════════════════════ */
.admission-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 2px; background: var(--border); border-radius: 12px; overflow: hidden; margin-top: 48px; }
.step-box { background: var(--white); padding: 36px 28px; position: relative; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: rgba(26,107,114,0.12); line-height: 1; margin-bottom: 16px; }
.step-box h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.step-box p  { font-size: 13px; color: var(--muted); line-height: 1.7; }
.eligibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.eligibility-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.eligibility-header { padding: 24px 28px; background: linear-gradient(135deg, var(--navy), var(--teal)); }
.eligibility-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: #fff; }
.eligibility-header p  { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.eligibility-body { padding: 24px 28px; }
.eligibility-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.eligibility-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.5; }
.eligibility-list li::before { content: '&#10003;'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.fees-table { width: 100%; border-collapse: collapse; margin-top: 32px; border-radius: 10px; overflow: hidden; }
.fees-table th { background: var(--navy); color: #fff; padding: 14px 20px; text-align: left; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; }
.fees-table td { padding: 14px 20px; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--border); }
.fees-table tr:nth-child(even) td { background: var(--cream); }
.fees-table tr:last-child td { border-bottom: none; }
.fees-table td:last-child { font-weight: 600; color: var(--teal); }

/* ════════════════════════════
   NOTICES PAGE
════════════════════════════ */
.notices-page-list { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }
.notice-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 24px 28px; display: flex; align-items: flex-start; gap: 20px; transition: all .3s; }
.notice-card:hover { transform: translateX(4px); box-shadow: 0 8px 28px var(--shadow); border-color: rgba(201,168,76,0.4); }
.notice-card-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }
.notice-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.notice-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 10px; }
.notice-card-meta { display: flex; align-items: center; gap: 16px; }
.notice-card-date { font-size: 12px; color: var(--muted); font-weight: 500; }
.notice-card-badge { background: var(--cream); border: 1px solid var(--border); color: var(--teal); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.no-notices { text-align: center; padding: 64px 20px; }
.no-notices p { font-size: 15px; color: var(--muted); margin-top: 12px; }

/* ════════════════════════════
   FACULTY PAGE
════════════════════════════ */
.faculty-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; margin-top: 48px; }
.faculty-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all .3s; text-align: center; }
.faculty-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px var(--shadow); }
.faculty-card-top { background: linear-gradient(135deg, var(--navy), var(--teal)); padding: 32px 20px 24px; }
.faculty-avatar { width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 3px solid rgba(201,168,76,0.4); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: #fff; margin: 0 auto 14px; }
.faculty-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.faculty-card .designation { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; }
.faculty-card-body { padding: 20px; }
.faculty-card .dept { font-size: 12px; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.faculty-card .qual { font-size: 13px; color: var(--muted); }
.faculty-empty { text-align: center; padding: 80px 20px; grid-column: 1/-1; }
.faculty-empty p { font-size: 15px; color: var(--muted); margin-top: 12px; }

/* ════════════════════════════
   CONTACT PAGE
════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-card { background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 14px; padding: 44px; }
.contact-info-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: #fff; margin-bottom: 28px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-info-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-info-text h5 { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.contact-info-text a { transition: color .2s; }
.contact-info-text a:hover { color: var(--gold-light); }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 44px; }
.contact-form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 7px; font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--text); background: var(--cream);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,107,114,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { background: rgba(26,107,114,0.1); border: 1px solid rgba(26,107,114,0.3); color: var(--teal); padding: 14px 18px; border-radius: 8px; font-size: 14px; margin-bottom: 20px; display: none; }

/* ════════════════════════════
   LOGIN PAGE
════════════════════════════ */
.login-page { min-height: 100vh; background: var(--navy); display: flex; align-items: center; justify-content: center; padding: 100px 5% 60px; position: relative; overflow: hidden; }
.login-page::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(26,107,114,0.3) 0%, transparent 70%);
}
.login-card { background: var(--white); border-radius: 16px; padding: 52px 48px; width: 100%; max-width: 440px; position: relative; z-index: 2; box-shadow: 0 24px 80px rgba(0,0,0,0.3); }
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo-circle { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--teal-light)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 24px; color: #fff; margin: 0 auto 12px; }
.login-logo h2 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--navy); }
.login-logo p  { font-size: 13px; color: var(--muted); margin-top: 3px; }
.login-error { background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.25); color: #dc2626; padding: 12px 16px; border-radius: 7px; font-size: 13px; margin-bottom: 20px; }

/* ════════════════════════════
   ANIMATIONS
════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: .3; } 50% { opacity: .8; } }
@keyframes pulse-ring { 0% { transform: scale(0.92); opacity: .6; } 100% { transform: scale(1.08); opacity: 0; } }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 108px 5% 100px; min-height: 100svh; }
  .hero-illustration { display: none; }
  .hero-stats { position: absolute; bottom: 32px; left: 5%; gap: 24px; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn { text-align: center; }
  .home-about-grid { grid-template-columns: 1fr; }
  .about-img-box { display: none; }
  .programs-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .eligibility-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .accred-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .login-card { padding: 40px 28px; }
}
@media (max-width: 600px) {
  .section { padding: 64px 5%; }
  .why-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 38px; }
  .stat-num { font-size: 32px; }
  .accred-inner { padding: 32px 20px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .admission-steps { grid-template-columns: 1fr; }
}

/* ── HERO DECORATIVE ELEMENTS ── */
.hero-circle-lg {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  pointer-events: none;
}
.hero-circle-sm {
  position: absolute; right: 80px; top: 8%;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  pointer-events: none;
}
.hero-scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; animation: fadeUp 1s .6s ease both;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2s infinite;
}

/* hide decorative circles on mobile */
@media (max-width: 900px) {
  .hero-circle-lg, .hero-circle-sm, .hero-scroll { display: none; }
}
