/* ═══════════════ VARIABLES ═══════════════ */
:root {
  --navy: #0d1b35;
  --navy2: #152444;
  --navy3: #1e3260;
  --orange: #e8751a;
  --orange2: #f0892e;
  --orange3: #f5a23e;
  --cream: #faf6ef;
  --cream2: #f4ede0;
  --white: #ffffff;
  --text: #0d1b35;
  --muted: #64748b;
  --border: #e5ddd0;
  --shadow-sm: 0 2px 12px rgba(13,27,53,.08);
  --shadow-md: 0 8px 32px rgba(13,27,53,.12);
  --shadow-lg: 0 20px 60px rgba(13,27,53,.18);
  --shadow-xl: 0 32px 80px rgba(13,27,53,.22);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); overflow-x: hidden; background: #fff; }
h1,h2,h3,h4,.serif { font-family: 'Cormorant Garamond', serif; }
img { max-width: 100%; }

/* ═══════════════ SCROLL PROGRESS ═══════════════ */
#scroll-prog {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--orange), var(--orange3), #fff8);
  width: 0%; transition: width .1s linear;
  box-shadow: 0 0 8px rgba(232,117,26,.6);
}

/* ═══════════════ NAVBAR ═══════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0; transition: all .4s cubic-bezier(.4,0,.2,1);
}
#navbar.scrolled {
  background: rgba(13,27,53,.97);
  backdrop-filter: blur(20px);
  padding: 13px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: #fff; text-decoration: none; letter-spacing: .02em;
  display: flex; align-items: center; gap: 8px;
}
.nav-brand .logo-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
  box-shadow: 0 4px 14px rgba(232,117,26,.4);
}
.nav-link {
  color: rgba(255,255,255,.78) !important;
  font-weight: 500; font-size: .88rem; padding: 7px 15px !important;
  text-decoration: none; letter-spacing: .04em;
  position: relative; transition: color .2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 15px; right: 15px;
  height: 1.5px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav-link:hover { color: #fff !important; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff !important; border-radius: 7px; padding: 10px 24px !important;
  font-weight: 700; font-size: .82rem; letter-spacing: .07em; text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(232,117,26,.45);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(232,117,26,.6);
  color: #fff !important;
}
.nav-cta::after { display: none; }
.navbar-toggler-btn {
  background: transparent; border: 1px solid rgba(255,255,255,.3);
  padding: 7px 10px; border-radius: 7px; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px;
}
.t-bar { width: 22px; height: 2px; background: #fff; transition: all .3s; border-radius: 2px; }

/* ═══════════════ HERO ═══════════════ */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  background: var(--navy); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?w=1800&q=80') center/cover no-repeat;
  opacity: .18; transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(13,27,53,.97) 40%, rgba(232,117,26,.2) 100%);
}
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(ellipse 80% 50% at 70% 50%, rgba(232,117,26,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(255,255,255,.03) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-ring-1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(232,117,26,.12); right: -150px; top: -100px;
  animation: spin 40s linear infinite; pointer-events: none;
}
.hero-ring-2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(232,117,26,.08); right: -50px; top: 0px;
  animation: spin 28s linear infinite reverse; pointer-events: none;
}
.hero-dot-ring {
  position: absolute; width: 200px; height: 200px; right: 25%; bottom: 20%;
  pointer-events: none;
}
.hero-dot-ring::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed rgba(232,117,26,.25);
  animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-inner { position: relative; z-index: 2; padding: 155px 0 110px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,117,26,.15); border: 1px solid rgba(232,117,26,.35);
  color: var(--orange3); padding: 8px 18px; border-radius: 50px;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown .7s ease both;
}
.hero-badge .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange3);
  box-shadow: 0 0 0 0 rgba(240,137,46,.5);
  animation: pulseGlow 2s ease infinite;
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(240,137,46,.5); }
  50% { box-shadow: 0 0 0 6px rgba(240,137,46,.0); }
}
.hero-title {
  font-size: clamp(3rem, 5.5vw, 4.6rem);
  color: #fff; line-height: 1.08; margin-bottom: 22px;
  animation: fadeInUp .8s .1s ease both;
}
.hero-title .accent { color: var(--orange); font-style: italic; }
.hero-title .underline-accent {
  position: relative; display: inline-block;
}
.hero-title .underline-accent::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
}
.hero-sub {
  color: rgba(255,255,255,.7); font-size: 1.08rem; line-height: 1.85;
  max-width: 530px; margin-bottom: 42px;
  animation: fadeInUp .8s .2s ease both;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeInUp .8s .3s ease both;
}
.btn-primary-hero {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff; padding: 15px 34px; border-radius: 9px;
  font-weight: 700; font-size: .95rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 28px rgba(232,117,26,.5);
  transition: transform .25s, box-shadow .25s;
  border: none;
}
.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(232,117,26,.65);
  color: #fff;
}
.btn-secondary-hero {
  color: #fff; border: 2px solid rgba(255,255,255,.4);
  padding: 14px 32px; border-radius: 9px; font-weight: 600;
  font-size: .95rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  backdrop-filter: blur(8px); background: rgba(255,255,255,.06);
  transition: border-color .2s, background .2s;
}
.btn-secondary-hero:hover {
  border-color: #fff; background: rgba(255,255,255,.12); color: #fff;
}
/* hero floating cards */
.hero-cards-col { position: relative; }
.hero-float-wrap { position: relative; width: 340px; height: 420px; margin: 0 auto; }
.hf-card {
  position: absolute; backdrop-filter: blur(14px);
  border-radius: 18px; padding: 22px 20px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  animation: floatCard 6s ease-in-out infinite;
}
.hf-card.c1 { top: 0; right: 0; width: 220px; animation-delay: 0s; }
.hf-card.c2 { bottom: 80px; left: 0; width: 195px; animation-delay: -2s; }
.hf-card.c3 {
  bottom: 0; right: 24px; width: 165px; text-align: center;
  background: linear-gradient(135deg, var(--orange), #c0570e);
  border: none; animation-delay: -4s;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.hf-tag { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; color: var(--orange2); }
.hf-card.c3 .hf-tag { color: rgba(255,255,255,.75); }
.hf-val { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1.1; }
.hf-sub { font-size: .75rem; color: rgba(255,255,255,.55); margin-top: 5px; }
.hf-card.c3 .hf-val { font-size: 2.8rem; }
.hf-card.c3 .hf-sub { color: rgba(255,255,255,.75); }
.hf-icon-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hf-ico { width: 34px; height: 34px; border-radius: 50%; background: rgba(232,117,26,.25); display: flex; align-items: center; justify-content: center; }
.hf-ico i { color: var(--orange2); font-size: .85rem; }
.hf-icon-row span { color: #fff; font-weight: 700; font-size: .85rem; }
/* hero stats */
.hero-stats-bar {
  margin-top: 68px; padding-top: 38px;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeInUp .8s .4s ease both;
}
.hstat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 800; color: var(--orange); line-height: 1;
}
.hstat-lbl { color: rgba(255,255,255,.55); font-size: .75rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; margin-top: 5px; }
.hstat-sep { width: 1px; background: rgba(255,255,255,.1); height: 60px; align-self: center; }

@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px);} to {opacity:1;transform:translateY(0);} }
@keyframes fadeInUp { from { opacity:0; transform:translateY(28px);} to {opacity:1;transform:translateY(0);} }

/* ═══════════════ TICKER ═══════════════ */
.ticker-bar {
  background: linear-gradient(90deg, var(--orange) 0%, #c55e10 100%);
  overflow: hidden; padding: 11px 0; position: relative;
}
.ticker-label {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--navy); color: #fff; z-index: 2;
  padding: 0 22px; display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
}
.ticker-label::after {
  content: ''; position: absolute; right: -18px; top: 0; bottom: 0;
  width: 18px; background: var(--navy);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.ticker-track {
  display: flex; gap: 60px; white-space: nowrap;
  padding-left: 155px; animation: ticker 32s linear infinite;
}
.ticker-track span {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-size: .82rem; font-weight: 500;
}
.ticker-track span i { font-size: .6rem; opacity: .7; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════ SECTION UTILITY ═══════════════ */
.sec { padding: 100px 0; }
.sec-lg { padding: 120px 0; }
.sec-label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.sec-title { font-size: clamp(2.1rem, 4vw, 3.1rem); line-height: 1.14; margin-bottom: 16px; }
.sec-title .acc { color: var(--orange); }
.sec-sub { color: var(--muted); font-size: .95rem; line-height: 1.82; max-width: 580px; }
.ornament {
  display: flex; align-items: center; gap: 8px; margin-bottom: 52px;
}
.ornament.center { justify-content: center; }
.orn-line { flex: 1; height: 1px; background: var(--border); }
.orn-dots { display: flex; gap: 5px; align-items: center; }
.orn-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.orn-dots span:nth-child(2) { width: 14px; border-radius: 3px; }
.orn-dots span:nth-child(3) { opacity: .3; }

/* ═══════════════ WHY CHOOSE ═══════════════ */
#why { background: #fff; position: relative; overflow: hidden; }
.why-blob {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,117,26,.04) 0%, transparent 70%);
  right: -250px; top: -200px; pointer-events: none;
}
.why-card {
  background: #fff; border-radius: 18px; padding: 40px 30px 36px;
  height: 100%; border: 1.5px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s, border-color .35s;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange3));
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.why-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: transparent; }
.why-card:hover::before { transform: scaleX(1); }
.why-num {
  position: absolute; top: 18px; right: 22px;
  font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 800;
  color: rgba(13,27,53,.04); line-height: 1; pointer-events: none;
}
.why-icon {
  width: 68px; height: 68px; border-radius: 16px;
  background: linear-gradient(135deg, #fff8f0, #ffe6c8);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; box-shadow: 0 6px 20px rgba(232,117,26,.18);
  transition: transform .35s;
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }
.why-icon i { font-size: 1.7rem; color: var(--orange); }
.why-card h5 { font-size: 1.12rem; font-weight: 700; margin-bottom: 11px; }
.why-card p { font-size: .88rem; color: var(--muted); line-height: 1.8; margin: 0; }

/* ═══════════════ ABOUT ═══════════════ */
#about {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy3) 100%);
  position: relative; overflow: hidden;
}
.about-noise {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.about-glow1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,117,26,.12) 0%, transparent 65%);
  right: -150px; bottom: -150px; pointer-events: none;
}
.about-glow2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 65%);
  left: -100px; top: -80px; pointer-events: none;
}
.about-highlight {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 20px 22px; margin-bottom: 14px;
  backdrop-filter: blur(6px); transition: background .3s, transform .25s;
}
.about-highlight:hover { background: rgba(255,255,255,.11); transform: translateX(4px); }
.about-highlight-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(232,117,26,.22); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-highlight-icon i { color: var(--orange2); font-size: 1.1rem; }
.about-highlight strong { color: #fff; font-size: .88rem; display: block; margin-bottom: 5px; }
.about-highlight span { color: rgba(255,255,255,.62); font-size: .85rem; line-height: 1.72; }
.about-mini-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 30px 24px; height: 100%; text-align: center;
  backdrop-filter: blur(8px); transition: background .3s, transform .3s;
}
.about-mini-card:hover { background: rgba(255,255,255,.11); transform: translateY(-6px); }
.amc-ico {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(232,117,26,.2); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.amc-ico i { font-size: 1.4rem; color: var(--orange2); }
.about-mini-card h5 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 9px; }
.about-mini-card p { color: rgba(255,255,255,.6); font-size: .84rem; line-height: 1.75; margin: 0; }

/* ═══════════════ COURSES ═══════════════ */
#courses { background: var(--cream); position: relative; overflow: hidden; }
.courses-blob {
  position: absolute; width: 550px; height: 550px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,117,26,.07) 0%, transparent 70%);
  left: -180px; bottom: -180px; pointer-events: none;
}
.course-card {
  background: #fff; border-radius: 22px; overflow: hidden; height: 100%;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s;
}
.course-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-xl); }
.course-header {
  background: linear-gradient(145deg, var(--navy) 0%, #1d3470 45%, #8a390e 100%);
  padding: 36px 28px 30px; text-align: center; position: relative; overflow: hidden;
}
.course-header-glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,117,26,.28) 0%, transparent 65%);
}
.course-icon-ring {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 2px solid rgba(232,117,26,.45);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px rgba(232,117,26,.1);
}
.course-icon-ring i { font-size: 1.9rem; color: var(--orange3); }
.course-header h4 { color: #fff; font-size: 1.1rem; font-weight: 700; margin: 0; position: relative; z-index: 1; letter-spacing: .01em; }
.course-ribbon {
  position: absolute; top: 16px; right: -30px;
  background: var(--orange); color: #fff; font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; padding: 5px 46px; transform: rotate(35deg);
  text-transform: uppercase; z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.course-body { padding: 30px 26px; }
.course-section-lbl { font-size: .7rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; color: var(--navy); margin-bottom: 13px; }
.course-subjects { list-style: none; padding: 0; margin: 0 0 24px; }
.course-subjects li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; font-size: .89rem; color: var(--muted);
  border-bottom: 1px solid #f0ebe2;
}
.course-subjects li:last-child { border-bottom: none; }
.course-subjects li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.course-benefits { list-style: none; padding: 0; margin: 0 0 28px; }
.course-benefits li { display: flex; align-items: flex-start; gap: 10px; padding: 5px 0; font-size: .87rem; color: var(--muted); }
.course-benefits li i { color: var(--orange); font-size: .8rem; margin-top: 4px; flex-shrink: 0; }
.btn-enquire {
  display: block; width: 100%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff; border: none; padding: 15px; border-radius: 11px;
  font-weight: 700; font-size: .93rem; text-align: center;
  text-decoration: none; letter-spacing: .03em;
  box-shadow: 0 8px 22px rgba(232,117,26,.38);
  transition: transform .25s, box-shadow .25s;
}
.btn-enquire:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(232,117,26,.55); color: #fff; }

/* ═══════════════ RESULTS BANNER ═══════════════ */
#results-banner {
  background: linear-gradient(110deg, var(--orange) 0%, #c05510 100%);
  padding: 75px 0; position: relative; overflow: hidden;
}
.rb-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1.5px, transparent 1.5px);
  background-size: 24px 24px; pointer-events: none;
}
.rb-diag {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.04) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.04) 50%, rgba(255,255,255,.04) 75%, transparent 75%);
  background-size: 40px 40px;
}
.rb-stat { text-align: center; position: relative; z-index: 1; }
.rb-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem; font-weight: 800; color: #fff; line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.rb-lbl { color: rgba(255,255,255,.8); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-top: 7px; }
.rb-sep { width: 1px; height: 70px; background: rgba(255,255,255,.22); align-self: center; }

/* ═══════════════ GALLERY ═══════════════ */
#gallery { background: #fff; padding: 100px 0; }
.gallery-masonry { columns: 3; column-gap: 16px; }
@media(max-width:768px) { .gallery-masonry { columns: 2; } }
@media(max-width:480px) { .gallery-masonry { columns: 1; } }
.gallery-item {
  break-inside: avoid; margin-bottom: 16px; border-radius: 16px;
  overflow: hidden; position: relative; display: block; cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,53,.75) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s; display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.gallery-zoom {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.18); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s; color: #fff; font-size: .85rem;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* ═══════════════ FACULTY ═══════════════ */
#faculty { background: var(--cream); padding: 100px 0; }
.faculty-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border); text-align: center;
  transition: transform .35s, box-shadow .35s;
}
.faculty-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.faculty-img-wrap { position: relative; overflow: hidden; }
.faculty-img-wrap img { width: 100%; height: 210px; object-fit: cover; object-position: top; transition: transform .45s; }
.faculty-card:hover .faculty-img-wrap img { transform: scale(1.06); }
.faculty-subject-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, var(--navy), transparent);
  color: var(--orange2); font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: 22px 12px 10px;
}
.faculty-body { padding: 20px 18px 22px; }
.faculty-body h6 { font-weight: 700; font-size: .97rem; margin-bottom: 4px; }
.faculty-body p { font-size: .8rem; color: var(--muted); margin: 0; }
.faculty-exp {
  display: inline-block; background: #fff5eb; color: var(--orange);
  font-size: .73rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-top: 9px;
  border: 1px solid rgba(232,117,26,.2);
}

/* ═══════════════ REVIEWS ═══════════════ */
#reviews { background: var(--cream2); padding: 100px 0; }
.review-card {
  background: #fff; border-radius: 18px; padding: 32px 28px 28px;
  height: 100%; border: 1.5px solid var(--border); position: relative; overflow: hidden;
  transition: transform .35s, box-shadow .35s;
}
.review-card::before {
  content: '\201C'; position: absolute; top: -8px; left: 18px;
  font-family: 'Cormorant Garamond', serif; font-size: 8rem; font-weight: 800;
  color: rgba(232,117,26,.07); line-height: 1; pointer-events: none;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review-stars { color: #f5a623; font-size: .95rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-style: italic; color: var(--muted); font-size: .91rem; line-height: 1.82; margin-bottom: 20px; position: relative; z-index: 1; }
.review-sep { height: 1px; background: var(--border); margin-bottom: 16px; }
.reviewer-name { font-weight: 700; font-size: .96rem; margin-bottom: 3px; }
.reviewer-class { color: var(--orange); font-size: .78rem; font-weight: 700; letter-spacing: .05em; }

/* ═══════════════ CONTACT ═══════════════ */
#contact {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy3) 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
.contact-noise {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.contact-glow {
  position: absolute; left: -160px; top: 50%; transform: translateY(-50%);
  width: 550px; height: 550px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,117,26,.1) 0%, transparent 65%); pointer-events: none;
}
.contact-info-panel {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px; padding: 44px 36px; backdrop-filter: blur(10px); height: 100%;
}
.contact-info-row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.contact-info-row:last-of-type { border-bottom: none; }
.contact-ico-box {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(232,117,26,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-ico-box i { color: var(--orange2); font-size: 1.05rem; }
.contact-info-row strong { color: #fff; font-size: .85rem; display: block; margin-bottom: 4px; }
.contact-info-row p { color: rgba(255,255,255,.62); font-size: .87rem; line-height: 1.65; margin: 0; }
.hours-box {
  background: rgba(255,255,255,.06); border-radius: 14px;
  padding: 22px 24px; margin-top: 28px; border: 1px solid rgba(255,255,255,.1);
}
.hours-box h6 { color: #fff; font-weight: 700; font-size: .92rem; margin-bottom: 10px; }
.hours-box p { color: rgba(255,255,255,.58); font-size: .86rem; line-height: 1.9; margin: 0; }
.form-panel { background: #fff; border-radius: 22px; padding: 44px 40px; box-shadow: var(--shadow-xl); }
.form-panel h5 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; margin-bottom: 28px; }
.form-label-custom { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: 7px; display: block; }
.form-control, .form-select {
  border: 1.5px solid var(--border); border-radius: 11px;
  padding: 13px 16px; font-size: .88rem; color: var(--text); background: #faf8f4;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange); box-shadow: 0 0 0 4px rgba(232,117,26,.12);
  background: #fff; outline: none;
}
.btn-whatsapp {
  width: 100%; background: linear-gradient(135deg, #25d366, #1da856);
  color: #fff; border: none; padding: 16px; border-radius: 11px;
  font-weight: 700; font-size: .97rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  transition: transform .25s, box-shadow .25s;
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(37,211,102,.5); }
.form-note { font-size: .76rem; color: var(--muted); text-align: center; margin-top: 12px; }
.form-note i { color: var(--orange); }

/* ═══════════════ FOOTER ═══════════════ */
footer { background: #060c1a; padding: 72px 0 0; position: relative; overflow: hidden; }
.footer-glow {
  position: absolute; bottom: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,117,26,.07) 0%, transparent 65%); pointer-events: none;
}
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; color: #fff; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.footer-brand .f-logo { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, var(--orange), var(--orange2)); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; flex-shrink: 0; }
.footer-desc { color: rgba(255,255,255,.42); font-size: .85rem; line-height: 1.85; max-width: 260px; }
.footer-social { display: flex; gap: 9px; margin-top: 24px; }
.f-soc {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); text-decoration: none; font-size: .88rem;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.f-soc:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-3px); }
.footer-head { color: #fff; font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(255,255,255,.42); text-decoration: none; font-size: .86rem; transition: color .2s; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--orange); }
.footer-links a i { font-size: .56rem; color: var(--orange); }
.f-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 13px; }
.f-contact-item i { color: var(--orange); font-size: .88rem; margin-top: 3px; flex-shrink: 0; }
.f-contact-item span { color: rgba(255,255,255,.42); font-size: .85rem; line-height: 1.68; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; margin-top: 60px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,.28); font-size: .8rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: rgba(255,255,255,.28); font-size: .8rem; text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ═══════════════ FLOATING ELEMENTS ═══════════════ */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1da856);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5); text-decoration: none;
  animation: waPulse 2.5s ease infinite; transition: transform .2s;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa i { color: #fff; font-size: 1.65rem; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  50% { box-shadow: 0 6px 38px rgba(37,211,102,.75), 0 0 0 12px rgba(37,211,102,.1); }
}
#back-to-top {
  position: fixed; bottom: 98px; right: 30px; z-index: 998;
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--navy); border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer; opacity: 0;
  transform: translateY(14px); transition: opacity .3s, transform .3s, background .2s;
  text-decoration: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--orange); }

/* ═══════════════ LIGHTBOX ═══════════════ */
.lb-modal .modal-dialog { max-width: 880px; }
.lb-modal .modal-content { background: #000; border: none; border-radius: 14px; padding: 4px; }
.lb-modal img { width: 100%; border-radius: 12px; display: block; }
.lb-close-btn {
  position: absolute; top: -15px; right: -15px;
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.35); font-size: 1rem; z-index: 10;
}

/* ═══════════════ SCROLL REVEAL ═══════════════ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media(max-width:991px) {
  .hero-inner { padding: 130px 0 85px; }
  .hero-title { font-size: 2.8rem; }
  .hstat-sep { display: none; }
  .hero-cards-col { display: none !important; }
}
@media(max-width:575px) {
  .hero-title { font-size: 2.3rem; }
  .sec { padding: 72px 0; }
  .sec-lg { padding: 85px 0; }
  .form-panel { padding: 28px 20px; }
  .contact-info-panel { padding: 28px 22px; }
  .gallery-masonry { columns: 1; }
  .hero-btns { flex-direction: column; }
  .btn-primary-hero, .btn-secondary-hero { text-align: center; justify-content: center; }
}