/* ============================================================
   NTHMC – Main Stylesheet
   Nepal Tourism and Hotel Management College
   ============================================================ */

/* ── Variables ── */
:root {
  --primary:       #1b3666;
  --primary-dark:  #0f2444;
  --primary-light: #2a4a7f;
  --secondary:     #c09b2f;
  --secondary-dk:  #9a7a20;
  --accent:        #c0392b;
  --white:         #ffffff;
  --text:          #2d3748;
  --text-lt:       #718096;
  --text-md:       #a0aec0;
  --bg:            #f7f8fc;
  --border:        #e2e8f0;
  --sh-sm: 0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --sh:    0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --sh-lg: 0 10px 25px rgba(0,0,0,.10), 0 6px 10px rgba(0,0,0,.08);
  --sh-xl: 0 20px 40px rgba(0,0,0,.15);
  --r:     8px;
  --r-lg:  14px;
  --r-sm:  4px;
  --tr:    0.3s ease;
  --ff-body:    'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --ff-head:    'Outfit', 'Plus Jakarta Sans', sans-serif;
  --ff-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── Layout ── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 88px 0; }
.section-sm  { padding: 50px 0; }
.section-lg  { padding: 110px 0; }
.bg-light    { background: var(--bg); }
.bg-primary  { background: var(--primary); }
.bg-dark     { background: var(--primary-dark); }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .sub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}
.section-header .sub::before,
.section-header .sub::after {
  content: '';
  width: 22px; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}
.section-header h2 {
  font-family: var(--ff-head);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-header p { color: var(--text-lt); max-width: 620px; margin: 0 auto; font-size: 1.02rem; line-height: 1.8; }
.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--secondary), rgba(192,155,47,.25));
  border-radius: 2px;
  margin: 16px auto;
}
.section-header.left { text-align: left; }
.section-header.left .divider { margin-left: 0; }
.section-header.left .sub::before { display: none; }

/* ── Scroll Reveal ── */
/* reveal animations disabled — content shows instantly */
.reveal, .reveal.visible { opacity: 1; transform: none; }
.reveal-d1, .reveal-d2, .reveal-d3,
.reveal-d4, .reveal-d5, .reveal-d6 { transition-delay: 0s; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px;
  border-radius: var(--r-sm);
  font-weight: 600; font-size: .88rem;
  letter-spacing: .8px; text-transform: uppercase;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--tr);
  white-space: nowrap;
}
.btn-primary   { background: var(--primary);    color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-secondary { background: var(--secondary);  color: #fff; border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-dk); border-color: var(--secondary-dk); transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-outline   { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: #fff; color: var(--primary); }
.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-lg  { padding: 14px 36px; font-size: .95rem; }
.btn-sm  { padding: 7px 18px;  font-size: .78rem; }

/* ── Grid helpers ── */
.grid   { display: grid; gap: 28px; }
.g-2    { grid-template-columns: repeat(2,1fr); }
.g-3    { grid-template-columns: repeat(3,1fr); }
.g-4    { grid-template-columns: repeat(4,1fr); }
.g-5    { grid-template-columns: repeat(5,1fr); }
.g-auto { grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 20px;
  font-size: .72rem; font-weight: 700; letter-spacing: .5px;
}
.badge-new    { background: rgba(40,167,69,.12);  color: #1e8a41; }
.badge-urgent { background: rgba(192,57,43,.10);  color: var(--accent); }
.badge-exam   { background: rgba(27,54,102,.10);  color: var(--primary); }
.badge-primary{ background: rgba(27,54,102,.10);  color: var(--primary); }
.badge-gold   { background: rgba(192,155,47,.15); color: var(--secondary-dk); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  background: var(--primary-dark);
  color: #fff;
  padding: 8px 0;
  font-size: .78rem;
  overflow: hidden;
}
.announce-bar .inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.announce-bar .ticker-wrap {
  flex: 1; display: flex; align-items: center; gap: 0; overflow: hidden; position: relative;
}
.announce-bar .label {
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 2px 10px; border-radius: 3px;
  font-weight: 800; font-size: .72rem;
  text-transform: uppercase; letter-spacing: 1px;
  white-space: nowrap; flex-shrink: 0;
  position: relative; z-index: 2; margin-right: 16px;
}
.ticker-overflow { overflow: hidden; flex: 1; }
.ticker { display: flex; animation: ticker 35s linear infinite; width: max-content; }
.ticker span, .ticker a { padding-right: 80px; opacity: .9; white-space: nowrap; }
.ticker:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.announce-bar .socials { display: flex; gap: 14px; flex-shrink: 0; }
.announce-bar .socials a {
  color: rgba(255,255,255,.65); transition: color var(--tr); font-size: .85rem;
}
.announce-bar .socials a:hover { color: var(--secondary); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: #fff;
  box-shadow: var(--sh-sm);
  position: sticky; top: 0; z-index: 900;
  transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 58px; width: auto; }
.logo-txt h1 {
  font-family: var(--ff-head);
  font-size: 1.05rem; font-weight: 700;
  color: var(--primary); line-height: 1.2;
}
.logo-txt p { font-size: .65rem; color: var(--text-lt); letter-spacing: .3px; line-height: 1.3; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px;
  font-size: .84rem; font-weight: 600;
  color: var(--text);
  border-radius: var(--r-sm);
  transition: all var(--tr);
}
.main-nav > li > a:hover,
.main-nav > li.active > a { color: var(--primary); background: rgba(27,54,102,.06); }
.main-nav .has-drop > a::after { content: '▾'; font-size: .65rem; }
.drop-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 230px; background: #fff;
  box-shadow: var(--sh-xl); border-radius: var(--r); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--tr); border-top: 3px solid var(--secondary); z-index: 100;
}
.main-nav .has-drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu a {
  display: block; padding: 10px 20px;
  font-size: .83rem; color: var(--text); font-weight: 500;
  transition: all var(--tr);
}
.drop-menu a:hover { background: var(--bg); color: var(--primary); padding-left: 25px; }

/* Sub-dropdown Menu (Third Level) */
.drop-menu li { position: relative; }
.sub-drop-menu {
  position: absolute; top: -8px; left: 100%;
  min-width: 220px; background: #fff;
  box-shadow: var(--sh-xl); border-radius: var(--r); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateX(8px);
  transition: all var(--tr); border-top: 3px solid var(--primary); z-index: 101;
}
.drop-menu .has-sub-drop:hover .sub-drop-menu { opacity: 1; visibility: visible; transform: translateX(0); }
.sub-drop-menu a {
  display: block; padding: 10px 20px;
  font-size: .83rem; color: var(--text); font-weight: 500;
  transition: all var(--tr);
}
.sub-drop-menu a:hover { background: var(--bg); color: var(--primary); padding-left: 25px; }
.nav-cta {
  background: var(--secondary) !important; color: #fff !important;
  border-radius: var(--r-sm) !important; padding: 9px 20px !important;
  font-weight: 700 !important; margin-left: 6px;
}
.nav-cta:hover { background: var(--secondary-dk) !important; color: #fff !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all var(--tr); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mob-nav { display: none; background: var(--primary-dark); }
.mob-nav.open { display: block; }
.mob-nav a {
  display: block; color: rgba(255,255,255,.82);
  padding: 12px 24px; border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .88rem; font-weight: 500; transition: color var(--tr);
}
.mob-nav a:hover { color: var(--secondary); }
.mob-sub { padding-left: 14px; border-left: 2px solid var(--secondary); margin: 4px 24px 4px 38px; }
.mob-sub a { padding: 8px 0; border-bottom: none; font-size: .82rem; }
.mob-group > .mob-label {
  display: block; color: rgba(255,255,255,.5);
  padding: 10px 24px 2px; font-size: .72rem;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mob-apply-btn {
  display: block; text-align: center;
  background: var(--secondary); color: var(--primary-dark) !important;
  margin: 12px 24px; padding: 11px 0 !important;
  border-radius: var(--r-sm); font-weight: 700 !important;
  border-bottom: none !important;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
@keyframes slideContentIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-slider {
  position: relative; height: 680px; overflow: hidden;
  background: var(--primary-dark);
}
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .9s ease;
}
.slide.active { opacity: 1; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,25,55,.92) 0%, rgba(15,36,68,.68) 45%, rgba(15,36,68,.22) 100%);
}
.slide-content {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  text-align: center; color: #fff; z-index: 2;
  width: 90%; max-width: 860px;
}
.slide-tag {
  display: inline-block; background: var(--secondary);
  color: var(--primary-dark); padding: 5px 18px; border-radius: 3px;
  font-size: .72rem; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 20px;
}
.slide-content h2 {
  font-family: var(--ff-display);
  font-size: 3.2rem; font-weight: 800;
  line-height: 1.05; margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
  white-space: pre-line;
  letter-spacing: -0.5px;
}
.slide-content p { font-size: 1.1rem; opacity: .88; margin-bottom: 32px; line-height: 1.7; }
.slide-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Slide content animations */
.slide.active .slide-tag    { animation: slideContentIn .65s ease .10s both; }
.slide.active .slide-content h2  { animation: slideContentIn .65s ease .25s both; }
.slide.active .slide-content p   { animation: slideContentIn .65s ease .40s both; }
.slide.active .slide-btns   { animation: slideContentIn .65s ease .55s both; }

.slider-arrows { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.arrow-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.28); border-radius: 50%;
  color: #fff; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: all; transition: all var(--tr);
}
.arrow-btn:hover { background: var(--secondary); border-color: var(--secondary); transform: translateY(-50%) scale(1.08); }
.arrow-btn.prev { left: 24px; }
.arrow-btn.next { right: 24px; }
.slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 9px; z-index: 3;
}
.s-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer; border: none;
  transition: all var(--tr);
}
.s-dot.active { background: var(--secondary); width: 28px; border-radius: 5px; }

/* ============================================================
   QUICK INFO
   ============================================================ */
.quick-info { background: var(--primary); padding: 20px 0; }
.quick-info .inner {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.qi-item {
  display: flex; align-items: center; gap: 13px;
  padding: 8px 24px; color: #fff;
  border-right: 1px solid rgba(255,255,255,.13);
}
.qi-item:last-child { border-right: none; }
.qi-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  transition: background var(--tr);
}
.qi-item:hover .qi-icon { background: var(--secondary); color: var(--primary-dark); }
.qi-text em  { display: block; font-size: .68rem; font-style: normal; opacity: .65; text-transform: uppercase; letter-spacing: .8px; }
.qi-text strong { font-size: .82rem; font-weight: 600; line-height: 1.35; }
.qi-text a { color: #fff; }
.qi-text a:hover { color: var(--secondary); }

/* ============================================================
   ABOUT HOME SECTION
   ============================================================ */
.about-home .wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--sh-xl);
}
.est-badge {
  position: absolute; bottom: -24px; right: -24px;
  width: 118px; height: 118px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dk));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: var(--sh-lg); color: var(--primary-dark);
}
.est-badge strong { font-family: var(--ff-display); font-size: 2.1rem; font-weight: 800; line-height: 1; }
.est-badge span { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; line-height: 1.3; }
.about-feats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 32px;
}
.feat {
  display: flex; gap: 13px; align-items: flex-start;
}
.feat-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0; margin-top: 2px;
}
.feat h4 { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.feat p  { font-size: .78rem; color: var(--text-lt); line-height: 1.55; }

/* ============================================================
   WHY CHOOSE NTHMC
   ============================================================ */
.why-us { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all var(--tr);
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.why-card:hover {
  box-shadow: var(--sh-xl);
  transform: translateY(-7px);
}
.why-card:hover::after { transform: scaleX(1); }
.why-num {
  font-family: var(--ff-display);
  font-size: 4.5rem; font-weight: 900;
  color: rgba(27,54,102,.06);
  line-height: 1;
  position: absolute; top: 10px; right: 18px;
  user-select: none; letter-spacing: -2px;
}
.why-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(27,54,102,.30);
  transition: transform var(--tr);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-3deg); }
.why-card h3 {
  font-size: 1.02rem; font-weight: 700;
  color: var(--primary-dark); margin-bottom: 10px; line-height: 1.35;
}
.why-card p {
  font-size: .84rem; color: var(--text-lt); line-height: 1.80;
}

/* ============================================================
   PROGRAMS CARDS
   ============================================================ */
.prog-card {
  background: #fff; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh);
  display: flex; flex-direction: column;
  transition: all var(--tr);
}
.prog-card:hover { box-shadow: var(--sh-xl); transform: translateY(-7px); }
.prog-card-img { position: relative; height: 220px; overflow: hidden; }
.prog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prog-card:hover .prog-card-img img { transform: scale(1.07); }
.prog-card-img .prog-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary); color: #fff;
  padding: 4px 12px; border-radius: 20px;
  font-size: .7rem; font-weight: 700; letter-spacing: .5px;
}
.prog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.prog-card-body h3 {
  font-family: var(--ff-head); font-size: 1.18rem;
  color: var(--primary); margin-bottom: 10px;
}
.prog-card-body p {
  font-size: .86rem; color: var(--text-lt); line-height: 1.78;
  flex: 1; margin-bottom: 18px;
}
.prog-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.prog-meta span {
  font-size: .76rem; color: var(--text-lt);
  display: flex; align-items: center; gap: 5px;
}
.prog-meta strong { color: var(--text); }

.programs-flex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.programs-flex-grid .prog-card {
  flex: 0 1 calc(33.333% - 20px);
  min-width: 300px;
  max-width: 360px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-bar { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-display); font-size: 3.2rem; font-weight: 800;
  color: var(--secondary); line-height: 1; margin-bottom: 10px; display: block;
  letter-spacing: -1px;
}
.stat-lbl { font-size: .82rem; color: rgba(255,255,255,.78); text-transform: uppercase; letter-spacing: 1.2px; }

/* ============================================================
   CAREER OUTCOMES
   ============================================================ */
.career-outcomes {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3d78 100%);
  padding: 88px 0; position: relative; overflow: hidden;
}
.career-outcomes::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 450px; height: 450px;
  background: rgba(192,155,47,.07);
  border-radius: 50%;
  pointer-events: none;
}
.career-outcomes::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}
.career-outcomes .section-header h2 { color: #fff; }
.career-outcomes .section-header p  { color: rgba(255,255,255,.72); }
.career-outcomes .section-header .sub { color: var(--secondary); }
.career-outcomes .section-header .sub::before,
.career-outcomes .section-header .sub::after { background: var(--secondary); }
.career-outcomes .divider { background: linear-gradient(90deg, var(--secondary), transparent); margin: 16px auto; }
.co-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.co-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.co-stat {
  text-align: center;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-lg); padding: 30px 20px;
  border: 1px solid rgba(255,255,255,.1);
  transition: all var(--tr);
}
.co-stat:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); }
.co-stat span {
  font-family: var(--ff-display);
  font-size: 2.9rem; font-weight: 800;
  color: var(--secondary); line-height: 1;
  display: block; margin-bottom: 8px;
  letter-spacing: -1px;
}
.co-stat em {
  font-style: normal; font-size: .78rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: 1.2px;
}
.co-features h3 {
  font-family: var(--ff-head); font-size: 1.7rem;
  color: #fff; margin-bottom: 10px; line-height: 1.3;
}
.co-features > p { color: rgba(255,255,255,.72); margin-bottom: 26px; font-size: .93rem; line-height: 1.82; }
.co-list { display: flex; flex-direction: column; gap: 13px; }
.co-list-item {
  display: flex; align-items: flex-start; gap: 13px;
  color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.55;
}
.co-list-item i { color: var(--secondary); font-size: .95rem; margin-top: 3px; flex-shrink: 0; }

/* ============================================================
   NOTICE + NEWS
   ============================================================ */
.notice-news .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

/* Notice Board */
.n-board { background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh); overflow: hidden; }
.n-head {
  background: var(--primary); color: #fff;
  padding: 15px 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.n-head h3 { font-size: .95rem; font-weight: 700; }
.n-head a  { font-size: .78rem; color: var(--secondary); font-weight: 600; }
.n-head a:hover { color: #fff; }
.n-list { padding: 0; }
.n-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 20px; border-bottom: 1px solid var(--border);
  transition: background var(--tr);
}
.n-item:last-child { border-bottom: none; }
.n-item:hover { background: var(--bg); }
.n-ico {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  background: rgba(192,155,47,.12); color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0; margin-top: 3px;
}
.n-ico.urgent { background: rgba(192,57,43,.1); color: var(--accent); }
.n-ico.exam   { background: rgba(27,54,102,.1);  color: var(--primary); }
.n-txt a {
  font-size: .86rem; font-weight: 500; color: var(--text);
  display: block; line-height: 1.45; margin-bottom: 4px;
  transition: color var(--tr);
}
.n-txt a:hover { color: var(--primary); }
.n-meta { display: flex; align-items: center; gap: 8px; }
.n-date { font-size: .72rem; color: var(--text-md); }
.n-tag {
  font-size: .65rem; padding: 1px 7px; border-radius: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
}
.n-tag.new    { background: rgba(40,167,69,.12);  color: #1e8a41; }
.n-tag.urgent { background: rgba(192,57,43,.10);  color: var(--accent); }
.n-tag.exam   { background: rgba(27,54,102,.10);  color: var(--primary); }

/* News cards */
.news-col .n-head { border-radius: var(--r-lg) var(--r-lg) 0 0; }
.news-col > .n-head + .news-stack { border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--r-lg) var(--r-lg); }
.news-stack { background: #fff; }
.news-mini {
  display: flex; gap: 0; border-bottom: 1px solid var(--border);
  transition: background var(--tr);
}
.news-mini:last-child { border-bottom: none; }
.news-mini:hover { background: var(--bg); }
.news-mini img { width: 110px; height: 90px; flex-shrink: 0; object-fit: cover; }
.news-mini-body { padding: 12px 16px; flex: 1; }
.news-mini-body .dt {
  font-size: .72rem; color: var(--text-md); margin-bottom: 5px;
  display: flex; align-items: center; gap: 4px;
}
.news-mini-body h4 { font-size: .84rem; font-weight: 600; color: var(--text); line-height: 1.4; }
.news-mini-body h4 a { color: inherit; transition: color var(--tr); }
.news-mini-body h4 a:hover { color: var(--primary); }

/* ============================================================
   QUICK INQUIRY
   ============================================================ */
.inquiry-section { background: #fff; }
.inquiry-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 68px;
  align-items: center;
}
.inquiry-left .sub {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 700; letter-spacing: 2.8px;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 12px;
}
.inquiry-left .sub::before,
.inquiry-left .sub::after {
  content: ''; width: 22px; height: 2px;
  background: var(--secondary); border-radius: 2px; flex-shrink: 0;
}
.inquiry-left .sub::before { display: none; }
.inquiry-left h2 {
  font-family: var(--ff-head); font-size: 2.15rem; font-weight: 700;
  color: var(--primary-dark); line-height: 1.25; margin-bottom: 16px;
}
.inquiry-left > p { color: var(--text-lt); font-size: .95rem; line-height: 1.82; margin-bottom: 28px; }
.inq-bullets { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.inq-bullet { display: flex; align-items: flex-start; gap: 11px; font-size: .88rem; color: var(--text); line-height: 1.5; }
.inq-bullet i { color: var(--secondary); font-size: .95rem; margin-top: 3px; flex-shrink: 0; }
.inq-deadline {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border-radius: var(--r); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.inq-deadline i { font-size: 1.5rem; color: var(--secondary); flex-shrink: 0; }
.inq-deadline h4 { font-size: .9rem; font-weight: 700; margin-bottom: 3px; }
.inq-deadline p  { font-size: .8rem; opacity: .8; margin: 0; }

.inquiry-form-box {
  background: var(--bg);
  border-radius: var(--r-lg); padding: 42px;
  box-shadow: var(--sh-xl);
  border-top: 4px solid var(--secondary);
}
.inquiry-form-box h3 {
  font-family: var(--ff-head); font-size: 1.55rem;
  color: var(--primary); margin-bottom: 6px;
}
.inquiry-form-box > p { font-size: .85rem; color: var(--text-lt); margin-bottom: 26px; }
.inq-success {
  display: none;
  background: rgba(30,138,65,.1); border: 1px solid rgba(30,138,65,.3);
  border-radius: var(--r); padding: 14px 18px;
  color: #1e8a41; font-weight: 600; text-align: center;
  margin-bottom: 18px; font-size: .88rem;
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-preview .wrap {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: 200px 200px;
  gap: 14px;
}
.gal-item { border-radius: var(--r); overflow: hidden; position: relative; cursor: pointer; }
.gal-item:first-child { grid-row: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gal-item:hover img { transform: scale(1.08); }
.gal-overlay {
  position: absolute; inset: 0;
  background: rgba(27,54,102,.68);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--tr); color: #fff; font-size: 1.4rem;
}
.gal-item:hover .gal-overlay { opacity: 1; }

/* ============================================================
   PARTNER LOGOS
   ============================================================ */
.partners { background: var(--bg); padding: 52px 0; }
.partners-overflow { overflow: hidden; padding: 16px 0; }
.partners-track {
  display: flex; gap: 56px; align-items: center;
  animation: marquee 24s linear infinite; width: max-content;
}
.partners-track:hover { animation-play-state: paused; }
.p-logo {
  height: 52px; width: auto; flex-shrink: 0;
  filter: grayscale(100%); opacity: .5;
  transition: all var(--tr); object-fit: contain;
}
.p-logo:hover { filter: grayscale(0%); opacity: 1; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--primary-dark); padding: 88px 0; }
.testimonials .section-header h2 { color: #fff; }
.testimonials .section-header p  { color: rgba(255,255,255,.68); }
.testimonials .section-header .sub { color: var(--secondary); }
.testimonials .section-header .sub::before,
.testimonials .section-header .sub::after { background: var(--secondary); }
.testi-wrap { max-width: 740px; margin: 0 auto; }
.testi-slide { display: none; }
.testi-slide.active { display: block; animation: slideContentIn .5s ease both; }
.testi-card {
  background: rgba(255,255,255,.07); border-radius: var(--r-lg);
  padding: 44px 48px; border: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.testi-quote { font-size: 2.6rem; color: var(--secondary); margin-bottom: 16px; line-height: 1; }
.testi-text  { font-size: 1rem; line-height: 1.88; color: rgba(255,255,255,.88); font-style: italic; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testi-author img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 3px solid var(--secondary); }
.testi-info h4 { color: #fff; font-weight: 700; margin-bottom: 3px; }
.testi-info span { font-size: .82rem; color: rgba(255,255,255,.6); }
.testi-dots { display: flex; justify-content: center; gap: 9px; margin-top: 28px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.28); cursor: pointer; border: none; transition: all var(--tr); }
.t-dot.active { background: var(--secondary); width: 26px; border-radius: 4px; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--secondary-dk) 0%, var(--secondary) 100%);
  padding: 80px 0; text-align: center; color: var(--primary-dark);
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: 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='none' fill-rule='evenodd'%3E%3Cg fill='%231b3666' fill-opacity='0.04'%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/g%3E%3C/svg%3E");
}
.cta-strip h2 { font-family: var(--ff-display); font-size: 2.3rem; font-weight: 800; margin-bottom: 14px; position: relative; }
.cta-strip p  { font-size: 1.08rem; opacity: .85; margin-bottom: 32px; position: relative; }
.cta-strip .btn-primary { background: var(--primary); border-color: var(--primary); position: relative; }
.cta-strip .btn-outline  { color: var(--primary-dark); border-color: var(--primary-dark); position: relative; }
.cta-strip .btn-outline:hover { background: var(--primary-dark); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.75); }
.footer-top  { padding: 68px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 48px; }
.f-widget h4 {
  color: #fff; font-size: .95rem; font-weight: 700;
  margin-bottom: 20px; padding-bottom: 11px;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}
.f-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.f-logo img { height: 48px; width: auto; }
.f-logo-txt h2 { font-size: .96rem; font-weight: 700; color: #fff; line-height: 1.2; }
.f-logo-txt span { font-size: .68rem; opacity: .6; }
.f-about p { font-size: .84rem; line-height: 1.82; margin-bottom: 20px; }
.f-socials { display: flex; gap: 9px; }
.f-socials a {
  width: 36px; height: 36px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.75);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  font-size: .88rem; transition: all var(--tr);
}
.f-socials a:hover { background: var(--secondary); color: var(--primary-dark); }
.f-links li { margin-bottom: 10px; }
.f-links a {
  font-size: .84rem; color: rgba(255,255,255,.68);
  transition: all var(--tr); display: flex; align-items: center; gap: 7px;
}
.f-links a::before { content: '›'; color: var(--secondary); font-size: 1.1rem; line-height: 1; }
.f-links a:hover { color: var(--secondary); padding-left: 4px; }
.f-contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: .84rem; }
.f-ci-icon { color: var(--secondary); font-size: .9rem; margin-top: 3px; flex-shrink: 0; }
.f-ci-body { line-height: 1.55; }
.f-ci-body a { color: rgba(255,255,255,.68); transition: color var(--tr); }
.f-ci-body a:hover { color: var(--secondary); }
.footer-bottom {
  background: rgba(0,0,0,.3); padding: 18px 0;
}
.footer-bottom .inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: var(--secondary); }

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
  background: linear-gradient(110deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  color: #fff; padding: 66px 0; position: relative; overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--secondary), transparent 70%);
}
.page-banner h1 { font-family: var(--ff-head); font-size: 2.6rem; font-weight: 700; margin-bottom: 10px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .85rem; opacity: .78; }
.breadcrumb a { color: var(--secondary); }
.breadcrumb .sep { opacity: .5; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card {
  background: #fff; border-radius: var(--r-lg); padding: 36px;
  box-shadow: var(--sh); border-top: 4px solid;
}
.mv-card.mission { border-color: var(--primary); }
.mv-card.vision  { border-color: var(--secondary); }
.mv-card h3 {
  font-family: var(--ff-head); font-size: 1.35rem;
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.mv-card.mission h3 { color: var(--primary); }
.mv-card.vision  h3 { color: var(--secondary-dk); }
.mv-card p { color: var(--text-lt); line-height: 1.82; }
.mv-card ul { margin-top: 12px; }
.mv-card ul li { color: var(--text-lt); font-size: .9rem; padding: 5px 0; display: flex; gap: 8px; }
.mv-card ul li::before { content: '✓'; color: var(--secondary); font-weight: 700; }

.facilities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.fac-card {
  background: #fff; border-radius: var(--r); padding: 28px 24px;
  box-shadow: var(--sh); text-align: center; transition: all var(--tr);
}
.fac-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.fac-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(27,54,102,.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
}
.fac-card h4 { font-size: .95rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.fac-card p  { font-size: .82rem; color: var(--text-lt); line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh); text-align: center; transition: all var(--tr);
}
.team-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); }
.team-card img { width: 100%; height: 230px; object-fit: cover; object-position: top; }
.team-card-body { padding: 20px; }
.team-card-body h3 { font-size: .98rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.team-card-body .role { font-size: .8rem; color: var(--secondary-dk); font-weight: 600; }
.team-card-body p  { font-size: .78rem; color: var(--text-lt); margin-top: 8px; line-height: 1.6; }

.affil-logos { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: center; }
.affil-logo {
  height: 60px; width: auto; object-fit: contain;
  filter: grayscale(60%); opacity: .75;
  transition: all var(--tr);
}
.affil-logo:hover { filter: grayscale(0%); opacity: 1; }

/* ============================================================
   COURSE DETAIL
   ============================================================ */
.course-wrap { display: grid; grid-template-columns: 2fr 1fr; gap: 44px; align-items: start; }
.course-main h2 {
  font-family: var(--ff-head); font-size: 2rem; color: var(--primary);
  margin-bottom: 16px;
}
.course-main p  { color: var(--text-lt); line-height: 1.82; margin-bottom: 18px; }
.course-main h3 { font-size: 1.15rem; color: var(--primary); margin: 28px 0 12px; font-weight: 700; }
.course-main ul { margin-left: 0; }
.course-main ul li {
  padding: 7px 0; border-bottom: 1px dashed var(--border);
  font-size: .88rem; color: var(--text-lt);
  display: flex; align-items: center; gap: 9px;
}
.course-main ul li::before { content: '▪'; color: var(--secondary); }

.course-sidebar {
  background: #fff; border-radius: var(--r-lg); padding: 30px;
  box-shadow: var(--sh); position: sticky; top: 80px;
}
.course-sidebar h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 18px; border-bottom: 2px solid var(--secondary); padding-bottom: 10px; display: inline-block; }
.info-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: .86rem; }
.info-row:last-child { border-bottom: none; }
.info-row .lbl { color: var(--text-lt); }
.info-row .val { font-weight: 700; color: var(--primary); }

.acc-item { border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 10px; overflow: hidden; }
.acc-head {
  padding: 13px 18px; background: var(--bg);
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: .88rem; color: var(--primary); cursor: pointer;
  transition: all var(--tr);
}
.acc-head:hover { background: var(--primary); color: #fff; }
.acc-body { padding: 14px 18px; display: none; }
.acc-body.open { display: block; }
details.acc-item > summary { list-style: none; cursor: pointer; }
details.acc-item > summary::-webkit-details-marker { display: none; }
details.acc-item > summary::marker { display: none; }
details.acc-item > .acc-body { display: block; }
details.acc-item .acc-arrow { margin-left: auto; font-size: 1.1rem; font-weight: 700; flex-shrink: 0; transition: transform .2s; }
details.acc-item[open] .acc-arrow { transform: rotate(45deg); }
details.acc-item[open] > summary.acc-head { background: var(--primary); color: #fff; }
.acc-body li { padding: 6px 0; font-size: .84rem; color: var(--text-lt); border-bottom: 1px dashed var(--border); display: flex; gap: 8px; }
.acc-body li::before { content: '•'; color: var(--secondary); }
.acc-body li:last-child { border-bottom: none; }

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-full {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh); display: grid; grid-template-columns: 280px 1fr;
  margin-bottom: 26px; transition: all var(--tr);
}
.news-full:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.news-full img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; }
.news-full-body { padding: 28px; }
.news-full-body .cat {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--secondary); margin-bottom: 10px;
}
.news-full-body h3 { font-family: var(--ff-head); font-size: 1.28rem; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.news-full-body h3 a { color: inherit; transition: color var(--tr); }
.news-full-body h3 a:hover { color: var(--primary); }
.news-full-body p  { font-size: .87rem; color: var(--text-lt); line-height: 1.75; margin-bottom: 16px; }
.news-full-body .meta { font-size: .78rem; color: var(--text-md); display: flex; gap: 16px; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.gp-item { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; }
.gp-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gp-item:hover img { transform: scale(1.07); }
.gp-overlay {
  position: absolute; inset: 0; background: rgba(27,54,102,.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--tr); color: #fff; font-size: 1.6rem;
}
.gp-item:hover .gp-overlay { opacity: 1; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }
.contact-card {
  background: var(--primary); color: #fff;
  border-radius: var(--r-lg); padding: 40px;
}
.contact-card h3 { font-family: var(--ff-head); font-size: 1.6rem; margin-bottom: 8px; }
.contact-card > p { font-size: .88rem; opacity: .8; margin-bottom: 28px; line-height: 1.72; }
.c-item { display: flex; gap: 14px; margin-bottom: 20px; }
.c-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,.12);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  font-size: .98rem; color: var(--secondary); flex-shrink: 0;
}
.c-body em  { display: block; font-size: .72rem; font-style: normal; opacity: .65; text-transform: uppercase; letter-spacing: .6px; }
.c-body strong { font-size: .88rem; color: #fff; }
.c-body a { color: rgba(255,255,255,.8); font-size: .85rem; transition: color var(--tr); display: block; }
.c-body a:hover { color: var(--secondary); }
.campus-box {
  background: rgba(255,255,255,.08); border-radius: var(--r); padding: 20px; margin-top: 14px;
}
.campus-box + .campus-box { margin-top: 12px; }
.campus-box h4 { font-size: .88rem; font-weight: 700; color: var(--secondary); margin-bottom: 6px; }
.campus-box p  { font-size: .84rem; opacity: .8; line-height: 1.65; }

.contact-form-wrap { background: #fff; border-radius: var(--r-lg); padding: 40px; box-shadow: var(--sh); }
.contact-form-wrap h3 { font-family: var(--ff-head); font-size: 1.5rem; color: var(--primary); margin-bottom: 24px; }
.f-group { margin-bottom: 20px; }
.f-group label { display: block; font-size: .84rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.f-control {
  width: 100%; padding: 11px 15px;
  border: 2px solid var(--border); border-radius: var(--r-sm);
  font-size: .9rem; color: var(--text); outline: none;
  transition: border-color var(--tr); background: #fff;
}
.f-control:focus { border-color: var(--primary); }
.f-control::placeholder { color: var(--text-md); }
textarea.f-control { resize: vertical; min-height: 120px; }
select.f-control { cursor: pointer; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.map-box { margin-top: 40px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); }
.map-box iframe { width: 100%; height: 320px; border: none; display: block; }

/* ============================================================
   APPLY PAGE
   ============================================================ */
.apply-wrap { max-width: 760px; margin: 0 auto; }
.apply-steps {
  display: flex; justify-content: center; align-items: center; gap: 0; margin-bottom: 40px;
}
.a-step { display: flex; align-items: center; gap: 10px; font-size: .84rem; font-weight: 600; color: var(--text-md); }
.a-step.done { color: var(--primary); }
.step-n {
  width: 32px; height: 32px; border-radius: 50%; background: var(--border);
  color: var(--text-md); font-weight: 700; font-size: .84rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.a-step.done .step-n { background: var(--primary); color: #fff; }
.step-line { width: 50px; height: 2px; background: var(--border); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.92);
  z-index: 9999; display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--r); box-shadow: 0 0 60px rgba(0,0,0,.5); }
.lb-close {
  position: absolute; top: 20px; right: 26px;
  color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1;
  transition: color var(--tr);
}
.lb-close:hover { color: var(--secondary); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transition: all var(--tr); border: none; z-index: 800;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--secondary); transform: translateY(-3px); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center  { text-align: center; }
.text-primary { color: var(--primary); }
.text-gold    { color: var(--secondary); }
.text-muted   { color: var(--text-lt); }
.fw-700       { font-weight: 700; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.d-flex       { display: flex; }
.align-center { align-items: center; }
.gap-14       { gap: 14px; }
.gap-20       { gap: 20px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-slider { height: 560px; }
  .slide-content h2 { font-size: 2.7rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid .stat:nth-child(2) { border-right: none; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .g-5 { grid-template-columns: repeat(3,1fr); }
  .programs-flex-grid .prog-card { flex: 0 1 calc(50% - 15px); }
  .co-inner { gap: 44px; }
}

@media (max-width: 900px) {
  .about-home .wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { order: -1; }
  .about-img-main { height: 360px; }
  .est-badge { right: 10px; bottom: 10px; }
  .course-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .gallery-preview .wrap { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-preview .wrap .gal-item:first-child { grid-row: span 1; }
  .mv-grid { grid-template-columns: 1fr; }
  .news-full { grid-template-columns: 1fr; }
  .news-full img { height: 220px; }
  .co-inner { grid-template-columns: 1fr; gap: 40px; }
  .inquiry-wrap { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 1.9rem; }
  .announce-bar .socials { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-slider { height: 440px; }
  .slide-content h2 { font-size: 1.9rem; }
  .slide-content p { display: none; }
  .quick-info .inner { grid-template-columns: 1fr 1fr; }
  .qi-item:nth-child(2) { border-right: none; }
  .g-5, .g-4, .g-3 { grid-template-columns: 1fr 1fr; }
  .g-2 { grid-template-columns: 1fr; }
  .notice-news .wrap { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .inner { flex-direction: column; gap: 8px; text-align: center; }
  .page-banner h1 { font-size: 2rem; }
  .cta-strip h2 { font-size: 1.9rem; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .testi-card { padding: 30px 24px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .co-stats { grid-template-columns: 1fr 1fr; }
  .inquiry-form-box { padding: 28px 22px; }
  .inquiry-left h2 { font-size: 1.85rem; }
}

@media (max-width: 560px) {
  .hero-slider { height: 380px; }
  .slide-content h2 { font-size: 1.52rem; letter-spacing: -.3px; }
  .slide-tag { font-size: .65rem; }
  .quick-info .inner { grid-template-columns: 1fr; }
  .qi-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .qi-item:last-child { border-bottom: none; }
  .g-5, .g-4, .g-3, .g-2 { grid-template-columns: 1fr; }
  .programs-flex-grid .prog-card { flex: 0 1 100%; max-width: 100%; }
  .gallery-preview .wrap { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .arrow-btn { display: none; }
  .logo-txt { display: none; }
  .btn-lg { padding: 12px 22px; font-size: .88rem; }
  .f-row { grid-template-columns: 1fr; }
  .est-badge { width: 94px; height: 94px; }
  .est-badge strong { font-size: 1.6rem; }
  .facilities-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid .stat { border-right: none; }
  .stats-grid .stat:nth-child(1), .stats-grid .stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,.12); }
  .why-grid { grid-template-columns: 1fr; }
  .co-stats { grid-template-columns: 1fr 1fr; }
  .co-stat span { font-size: 2.2rem; }
  .cta-strip h2 { font-size: 1.6rem; }
}

/* ── News-Events Layout ── */
.ne-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .ne-layout { grid-template-columns: 1fr; }
  .ne-layout > div:last-child { position: static !important; }
}

/* ── Program Page Layout ── */
.prog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 44px;
  align-items: start;
}
@media (max-width: 1024px) {
  .prog-layout { grid-template-columns: 1fr 280px; gap: 32px; }
}
@media (max-width: 860px) {
  .prog-layout { grid-template-columns: 1fr; }
  .prog-layout > div:last-child, .prog-sidebar { position: static !important; }
}
/* ══════════════════════════════════════════
   PROGRAM PAGE – SECTIONS & SIDEBAR
══════════════════════════════════════════ */

/* Section headers */
.prog-section-head { margin: 44px 0 18px; }
.prog-section-head:first-child { margin-top: 0; }
.prog-section-label {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 6px;
}
.prog-section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem); color: var(--primary);
  font-weight: 800; margin: 0 0 4px; line-height: 1.25;
  border-left: 4px solid var(--secondary); padding-left: 14px;
}
.prog-section-h3 {
  font-size: 1.1rem; color: var(--primary); font-weight: 700; margin: 0;
  border-left: 4px solid var(--secondary); padding-left: 14px;
}
.prog-sem-count { font-size: .7rem; font-weight: 600; color: var(--text-lt); margin-left: 8px; text-transform: none; letter-spacing: 0; }
.prog-body-text { color: var(--text-lt); line-height: 1.85; margin-bottom: 16px; }

/* Eligibility box */
.prog-elig-box { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 8px 24px 0; margin-bottom: 8px; }
.prog-elig-note {
  display: flex; gap: 10px; align-items: flex-start; padding: 14px 0;
  border-top: 1px solid var(--border); font-size: .84rem; color: #7a6010; margin-top: 6px;
}
.prog-elig-note i { color: #b8860b; flex-shrink: 0; margin-top: 2px; }
.prog-elig-note a { color: #b8860b; font-weight: 600; }

/* Sidebar */
.prog-sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 90px; align-self: start; }
.prog-sidebar-card { border-radius: var(--r-lg); padding: 24px; overflow: hidden; }
.prog-sidebar-dark { background: var(--primary); color: #fff; position: relative; }
.prog-sidebar-dark::before { content: ''; position: absolute; top: -24px; right: -24px; width: 90px; height: 90px; background: rgba(255,255,255,.04); border-radius: 50%; }
.prog-sidebar-heading { font-size: .95rem; display: flex; align-items: center; gap: 8px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.15); }
.prog-sidebar-heading i { color: var(--secondary); }
.prog-sidebar-heading-dark { border-bottom-color: var(--border) !important; color: var(--primary); margin-bottom: 14px !important; }
.prog-sidebar-heading-dark i { color: var(--secondary); }
.prog-detail-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .83rem; }
.prog-detail-row:last-child { border-bottom: none; }
.prog-detail-key { opacity: .6; white-space: nowrap; flex-shrink: 0; }
.prog-detail-val { font-weight: 600; text-align: right; }
.prog-sidebar-pathway { background: linear-gradient(135deg,#1b3666,#2a4f96); color: #fff; }
.prog-pathway-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.prog-pathway-head i { font-size: 1.3rem; color: var(--secondary); }
.prog-pathway-head h4 { margin: 0; font-size: .95rem; }
.prog-sidebar-pathway p { font-size: .83rem; opacity: .88; line-height: 1.65; margin-bottom: 14px; }
.prog-sidebar-gold { background: linear-gradient(135deg,#c09b2f,#8a6d20); color: #fff; text-align: center; }
.prog-sidebar-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.prog-sidebar-gold h4 { font-size: .95rem; margin-bottom: 6px; }
.prog-sidebar-gold p { font-size: .82rem; opacity: .9; margin-bottom: 16px; line-height: 1.5; }
.prog-sidebar-btn { display: block; text-align: center; width: 100%; font-size: .86rem; background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.prog-sidebar-btn-white { background: #fff; color: #c09b2f; font-weight: 700; border: none; }
.prog-sidebar-light { background: var(--bg); border: 1px solid var(--border); }
.prog-contact-list { display: flex; flex-direction: column; gap: 10px; font-size: .83rem; color: var(--text-lt); margin-bottom: 16px; }
.prog-contact-row { display: flex; gap: 10px; align-items: flex-start; }
.prog-contact-row i { color: var(--secondary); width: 14px; flex-shrink: 0; margin-top: 2px; }
.prog-contact-row a { color: inherit; }
.prog-contact-btn { width: 100%; display: block; text-align: center; font-size: .86rem; }

/* ── Feature Cards (Highlights) ── */
.prog-feat-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 20px; margin-bottom: 8px;
}
.prog-feat-card {
  text-align: center; padding: 28px 18px 24px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); transition: all .25s;
}
.prog-feat-card:hover {
  border-color: var(--secondary); box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.prog-feat-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--primary) 0%, #2a4f96 100%);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px;
}
.prog-feat-icon i { font-size: 1.15rem; color: #fff; }
.prog-feat-card h4 { font-size: .88rem; color: var(--primary); margin-bottom: 8px; line-height: 1.3; }
.prog-feat-card p  { font-size: .79rem; color: var(--text-lt); line-height: 1.65; margin: 0; }

/* ── Eligibility ── */
.elig-list { list-style: none; padding: 0; margin: 0; counter-reset: elig; }
.elig-item {
  counter-increment: elig;
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.elig-item:last-child { border-bottom: none; }
.elig-num {
  width: 28px; height: 28px; background: var(--secondary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}
.elig-text { font-size: .91rem; color: var(--text-lt); line-height: 1.6; }

/* ── Curriculum Accordion ── */
.curriculum-acc { margin: 0; }
.sem-item {
  border: 1px solid var(--border); border-left: 4px solid var(--border);
  border-radius: var(--r); margin-bottom: 8px;
  overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.sem-item:hover { border-left-color: var(--secondary); box-shadow: var(--sh); }
.sem-item.open { border-left-color: var(--secondary); box-shadow: var(--sh); }
.sem-header {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 18px; cursor: pointer; background: #fff;
  user-select: none; transition: background .2s;
}
.sem-item.open > .sem-header { background: var(--primary); }
.sem-num {
  width: 32px; height: 32px; background: var(--bg); color: var(--primary);
  border: 2px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800; flex-shrink: 0;
}
.sem-item.open > .sem-header .sem-num {
  background: var(--secondary); color: #fff; border-color: var(--secondary);
}
.sem-title-wrap { flex: 1; min-width: 0; }
.sem-title { font-size: .89rem; font-weight: 700; color: var(--primary); }
.sem-item.open > .sem-header .sem-title { color: #fff; }
.sem-note {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .68rem; color: var(--secondary); font-weight: 700;
  background: rgba(192,155,47,.1); padding: 2px 8px; border-radius: 10px;
  margin-top: 4px; text-transform: uppercase; letter-spacing: .3px;
}
.sem-item.open > .sem-header .sem-note {
  background: rgba(255,255,255,.15); color: #fde68a;
}
.sem-count {
  font-size: .72rem; font-weight: 600; color: var(--text-lt);
  background: var(--bg); padding: 3px 10px; border-radius: 12px; white-space: nowrap; flex-shrink: 0;
}
.sem-item.open > .sem-header .sem-count { background: rgba(255,255,255,.15); color: rgba(255,255,255,.8); }
.sem-arrow { color: var(--text-lt); transition: transform .3s; font-size: .72rem; flex-shrink: 0; }
.sem-item.open > .sem-header .sem-arrow { transform: rotate(180deg); color: rgba(255,255,255,.7); }
.sem-body { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.sem-item.open .sem-body { max-height: 600px; }
.sem-body-inner { padding: 18px 20px 22px; background: #fafbfc; border-top: 1px solid var(--border); }
.sub-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.sub-pill {
  background: #fff; border: 1px solid #dde4ef; border-radius: 20px;
  padding: 5px 14px; font-size: .78rem; color: var(--text);
  font-weight: 500; transition: all .18s;
}
.sub-pill:hover { border-color: var(--secondary); color: var(--secondary); }

/* ── Career Cards ── */
.career-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.career-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 22px 12px; text-align: center;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); transition: all .22s; cursor: default;
}
.career-card:hover {
  background: var(--primary); border-color: var(--primary);
  transform: translateY(-3px); box-shadow: var(--sh-lg);
}
.career-card i { font-size: 1.5rem; color: var(--secondary); transition: color .22s; }
.career-card span { font-size: .81rem; font-weight: 600; color: var(--primary); transition: color .22s; line-height: 1.3; }
.career-card:hover i, .career-card:hover span { color: #fff; }
.career-card:hover i { color: var(--secondary); }

/* Responsive */
@media (max-width: 768px) { .prog-feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .prog-feat-grid { grid-template-columns: 1fr; } .career-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 860px) { .prog-sidebar { position: static; } }

/* Courses page: big program split-cards collapse on mobile */
@media (max-width: 768px) {
  .prog-split-card { grid-template-columns: 1fr !important; }
  .prog-split-card .prog-img { min-height: 220px !important; order: 0 !important; }
  .prog-split-card .prog-text { order: 1 !important; }
  .prog-pair-cards { grid-template-columns: 1fr !important; }
}

/* ── Popup Overlay ── */
.site-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.site-popup-box {
  background: #fff;
  border-radius: 12px;
  max-width: 410px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  animation: popupIn .3s ease;
}
@keyframes popupIn {
  from { transform: scale(.85); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.site-popup-box img { width: 100%; max-height: 75vh; object-fit: contain; display: block; }
.site-popup-box .btn { display: block; margin: 18px; text-align: center; }
.site-popup-close {
  position: absolute;
  top: 10px; right: 12px;
  background: rgba(0,0,0,.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.site-popup-close:hover { background: rgba(0,0,0,.8); }
.site-popup-text { padding: 24px; text-align: center; }

/* ============================================================
   Prose / Rich Content (CMS Page Content)
   ============================================================ */
.prose { color: var(--text); line-height: 1.9; }
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5 {
  color: var(--primary); margin-top: 2rem; margin-bottom: .75rem; font-weight: 700; line-height: 1.3;
}
.prose h2 { font-size: 1.55rem; padding-bottom: 10px; border-bottom: 2px solid var(--secondary); }
.prose h3 { font-size: 1.2rem; }
.prose h4 { font-size: 1rem; }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: .75rem 0 1.25rem 1.5rem; }
.prose ul li { list-style: disc; margin-bottom: .35rem; }
.prose ol li { list-style: decimal; margin-bottom: .35rem; }
.prose a { color: var(--secondary); font-weight: 600; text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--primary); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .9rem; }
.prose table th { background: var(--primary); color: #fff; padding: 10px 14px; text-align: left; font-weight: 700; }
.prose table td { padding: 10px 14px; border: 1px solid var(--border); }
.prose table tr:nth-child(even) td { background: var(--bg); }
.prose table tr:first-child th:first-child { border-radius: 6px 0 0 0; }
.prose table tr:first-child th:last-child { border-radius: 0 6px 0 0; }
.prose blockquote { border-left: 4px solid var(--secondary); padding: 12px 20px; margin: 1.5rem 0; background: var(--bg); border-radius: 0 6px 6px 0; color: var(--text-lt); font-style: italic; }
.prose img { max-width: 100%; border-radius: var(--r-lg); margin: 1rem 0; }
