/* ============================================================
   INTERNATIONAL COMMUNITY COLLEGE — Main Stylesheet
   Theme: Warm Academic Elegance | Navy + Gold + Cream
   ============================================================ */

:root {
  --navy:       #0d1b3e;
  --navy-light: #1a2f5e;
  --gold:       #c9922f;
  --gold-light: #e8b053;
  --gold-pale:  #fdf3e3;
  --cream:      #f9f5ef;
  --white:      #ffffff;
  --text:       #2c2c2c;
  --text-muted: #6b7280;
  --border:     #e8e0d0;
  --section-pad: 5rem 0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  padding: 0.45rem 0;
  font-family: 'Lato', sans-serif;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar i { color: var(--gold-light); margin-right: 0.35rem; }
.topbar-right { display: flex; gap: 1.5rem; }
.topbar-right a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.topbar-right a:hover { color: var(--gold-light); }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 3px solid var(--gold);
  transition: box-shadow 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.brand { display: flex; align-items: center; gap: 1rem; }
.brand-logo {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.brand-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  padding: 3px;
  flex-shrink: 0;
  display: block;
}
.footer-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--white);
  padding: 4px;
  display: block;
  margin-bottom: 1rem;
}
.brand-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.brand-tagline {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.5px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0a1629 0%, #0d1b3e 40%, #162246 70%, #1a2a50 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,146,47,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,146,47,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,146,47,0.2);
  border: 1px solid rgba(201,146,47,0.5);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
  font-family: 'Lato', sans-serif;
  animation: fadeInDown 0.6s ease;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 1.2rem;
  line-height: 1.15;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 1rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 2.25rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 3.5rem;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2rem;
  animation: fadeInUp 0.7s ease 0.5s both;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}
.hero-scroll a:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,146,47,0.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13,27,62,0.3);
}
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  font-family: 'Lato', sans-serif;
  overflow: hidden;
}
.announcement-bar .container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ann-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

/* ===== SECTIONS ===== */
.section { padding: var(--section-pad); }
.section-cream { background: var(--cream); }
.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.7); }
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  background: var(--gold-pale);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(201,146,47,0.3);
}
.section-dark .section-eyebrow {
  background: rgba(201,146,47,0.15);
  color: var(--gold-light);
  border-color: rgba(201,146,47,0.3);
}

/* ===== PROGRAMS GRID ===== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.program-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.program-card.featured { border-color: var(--gold); }
.program-card.featured::before { transform: scaleX(1); }
.program-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,146,47,0.15);
  transform: translateY(-4px);
}
.program-card:hover::before { transform: scaleX(1); }
.pc-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--gold);
  transition: background 0.3s;
}
.program-card:hover .pc-icon { background: var(--gold); color: var(--white); }
.pc-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-family: 'Lato', sans-serif;
}
.program-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.program-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1rem;
}
.pc-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  margin-bottom: 1rem;
}
.pc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  margin-top: auto;
}

/* ===== PARTNERS ===== */
.partners-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.partner-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.partner-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(201,146,47,0.12);
  transform: translateY(-4px);
}
.partner-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--white);
}
.partner-card h4 {
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}
.partner-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== FEATURES GRID (dark bg) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.feature-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.feature-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,146,47,0.4);
}
.fi-icon {
  width: 46px; height: 46px;
  background: rgba(201,146,47,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.feature-item h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.feature-item p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* ===== TESTIMONIALS ===== */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}
.testi-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,146,47,0.12);
}
.testi-quote {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1rem;
}
.testi-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-avatar {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testi-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.news-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.news-card.featured { border-color: var(--gold); }
.news-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,146,47,0.12);
  transform: translateY(-4px);
}
.news-icon-wrap {
  height: 120px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--gold-light);
}
.news-card.featured .news-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
}
.news-body { padding: 1.5rem; flex-grow: 1; }
.news-date {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: 'Lato', sans-serif;
}
.news-body h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.news-body p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #c9922f 0%, #a07020 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 30px);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ===== FOOTER ===== */
.footer {
  background: #080f1f;
  color: rgba(255,255,255,0.65);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1rem;
  background: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 10px;
  letter-spacing: 1px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.25s;
  font-size: 0.9rem;
}
.social-links a:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.6);
  align-items: flex-start;
}
.footer-contact i { color: var(--gold-light); width: 16px; flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  text-align: center;
  padding: 1.25rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #0a1629 0%, #0d1b3e 50%, #162246 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px),
              repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  font-family: 'Lato', sans-serif;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; }

/* ===== ABOUT PAGE ===== */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.vm-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--gold);
}
.vm-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.vm-card p { color: var(--text-muted); line-height: 1.8; }
.vm-icon {
  width: 50px; height: 50px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.value-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(201,146,47,0.1);
  transform: translateY(-3px);
}
.value-icon {
  width: 54px; height: 54px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 1rem;
}
.value-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--text-muted); font-size: 0.88rem; }

.stats-banner {
  background: var(--navy);
  padding: 3.5rem 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stats-item { border-right: 1px solid rgba(255,255,255,0.1); }
.stats-item:last-child { border-right: none; }
.stats-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}
.stats-item .lbl {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  font-family: 'Lato', sans-serif;
}

/* ===== PROGRAMS PAGE ===== */
.prog-detail-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.prog-detail-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,146,47,0.12);
}
.prog-header {
  background: var(--navy);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.prog-header-icon {
  width: 56px; height: 56px;
  background: rgba(201,146,47,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.prog-header h3 { color: var(--white); font-size: 1.35rem; }
.prog-header .prog-meta {
  margin-top: 0.3rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-family: 'Lato', sans-serif;
  display: flex; gap: 1rem;
}
.prog-body { padding: 2rem; }
.prog-body p { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.75; }
.prog-info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.prog-info-item {
  background: var(--cream);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.prog-info-item i { color: var(--gold); font-size: 1rem; }
.prog-info-item div { display: flex; flex-direction: column; }
.prog-info-item strong { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); font-family: 'Lato', sans-serif; }
.prog-info-item span { font-size: 0.95rem; color: var(--navy); font-weight: 700; }
.prog-subjects { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.prog-subjects li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; color: var(--text-muted);
}
.prog-subjects li i { color: var(--gold); font-size: 0.75rem; }
.prog-type-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(201,146,47,0.3);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  margin-top: 0.35rem;
  display: block;
  width: fit-content;
}

/* ===== FACULTY PAGE ===== */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}
.leader-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
}
.leader-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,146,47,0.12);
  transform: translateY(-4px);
}
.leader-photo {
  height: 160px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
  position: relative;
}
.leader-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--gold), transparent);
  opacity: 0.3;
}
.leader-info { padding: 1.5rem; }
.leader-info h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: 0.25rem; }
.leader-role {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  margin-bottom: 0.5rem;
}
.leader-quals { font-size: 0.85rem; color: var(--text-muted); }

/* ===== ADMISSIONS PAGE ===== */
.timeline { position: relative; padding-left: 3rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 1.1rem;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy));
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline-num {
  position: absolute;
  left: -3rem;
  width: 2.2rem; height: 2.2rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 0 0 4px rgba(201,146,47,0.2);
  z-index: 1;
}
.timeline-content {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.timeline-content:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(201,146,47,0.1);
}
.timeline-content h4 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.5rem; }
.timeline-content p { color: var(--text-muted); font-size: 0.92rem; }

.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.req-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.req-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.req-icon {
  width: 54px; height: 54px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 1rem;
}
.req-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 0.4rem; }
.req-card p { color: var(--text-muted); font-size: 0.85rem; }

.fees-table { overflow-x: auto; }
.fees-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.fees-table thead tr {
  background: var(--navy);
  color: var(--white);
}
.fees-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fees-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.fees-table tbody tr:hover { background: var(--cream); }
.fees-table strong { color: var(--navy); }
.fees-table .fee-price { color: var(--gold); font-weight: 700; font-size: 1rem; }

/* ===== CONTACT PAGE ===== */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.contact-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(201,146,47,0.1);
  transform: translateY(-3px);
}
.contact-icon {
  width: 60px; height: 60px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin: 0 auto 1.25rem;
}
.contact-card h4 { color: var(--navy); margin-bottom: 0.75rem; }
.contact-card p, .contact-card a {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}
.contact-card a:hover { color: var(--gold); }

.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem;
}
.contact-form-card h3 { color: var(--navy); margin-bottom: 2rem; font-size: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-family: 'Lato', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--text);
  font-family: 'Lato', sans-serif;
  transition: border-color 0.2s;
  outline: none;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.office-hours {
  background: var(--cream);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border-left: 4px solid var(--gold);
}
.office-hours h5 { color: var(--navy); margin-bottom: 0.75rem; }
.office-hours p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.35rem; }

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}

/* ===== HELPERS ===== */
.text-center { text-align: center; }
.mt-40 { margin-top: 2.5rem; }
.mt-60 { margin-top: 3.75rem; }
.mb-30 { margin-bottom: 1.875rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.intro-image {
  height: 420px;
  background: linear-gradient(135deg, var(--gold-pale), var(--cream));
  border-radius: 14px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.5;
}
.intro-text h2 { color: var(--navy); font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 1.25rem; }
.intro-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }

.hindi-quote {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hindi-quote strong { color: var(--navy); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .two-col { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stats-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .topbar .container { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .topbar-right { gap: 1rem; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.35s ease;
    z-index: 999;
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: rgba(255,255,255,0.8); font-size: 1rem; width: 100%; padding: 0.75rem 0; }
  .nav-links a.active, .nav-links a:hover { color: var(--gold-light); }
  .nav-links a::after { background: var(--gold-light); }
  .hamburger { display: flex; z-index: 1000; position: relative; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .prog-subjects { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.25rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ===== HERO LOGO ===== */
.hero-logo-wrap {
  margin-bottom: 1.75rem;
  animation: fadeInDown 0.5s ease;
}
.hero-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255,255,255,0.95);
  padding: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 0 2px rgba(201,146,47,0.4);
  display: block;
}

/* ===== PAGE HERO LOGO ===== */
.page-hero-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  padding: 5px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  display: block;
  margin-bottom: 1.25rem;
}
