/* =============================================
   LM SCHOOL - Main Stylesheet
   Fonts: Montserrat, Poppins
   Colors: White #FFFFFF, Navy #0A1628, Accent #1E3A5F, Gold #C9A84C
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --navy: #0A1628;
  --navy-mid: #1E3A5F;
  --navy-light: #2C5282;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --light-gray: #EEF1F7;
  --text-dark: #0A1628;
  --text-mid: #4A5568;
  --text-light: #718096;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 4px 20px rgba(10,22,40,0.12);
  --shadow-lg: 0 8px 40px rgba(10,22,40,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.82rem;
  font-family: var(--font-body);
  overflow: hidden;
  position: relative;
  z-index: 1000;
}
.announcement-bar .bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}
.announcement-bar .ticker-wrap {
  flex: 1;
  overflow: hidden;
}
.announcement-bar .ticker {
  display: flex;
  gap: 60px;
  animation: ticker-scroll 10s linear infinite;
  white-space: nowrap;
}
.announcement-bar .ticker span { color: var(--gold-light); margin-right: 8px; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announcement-bar .bar-social { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.announcement-bar .bar-social a {
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  opacity: 0.8;
}
.announcement-bar .bar-social a:hover { color: var(--gold); opacity: 1; }

/* ---- HEADER / NAV ---- */
header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 8px;
}
.logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-wrap img { height: 56px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text .school-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.logo-text .school-tagline {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ---- Logo image wrap — header ---- */
.logo-img-wrap {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .nav-container { height: 76px; }
  .logo-img-wrap { width: 56px; height: 56px; }
  .logo-text .school-name { font-size: 1.6rem; }
  .logo-text .school-tagline { font-size: 0.74rem; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .nav-container { height: 68px; }
  .logo-img-wrap { width: 48px; height: 48px; }
  .logo-text .school-name { font-size: 1.3rem; }
  .logo-text .school-tagline { font-size: 0.65rem; }
}
nav ul { list-style: none; display: flex; gap: 2px; align-items: center; }
nav ul li a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 7px 9px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
nav ul li a:hover, nav ul li a.active {
  color: var(--navy-mid);
  background: var(--light-gray);
}
nav ul li a.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
}
nav ul li a.nav-cta:hover { background: var(--navy-mid); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ---- HERO SECTION ---- */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::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='%23ffffff' fill-opacity='0.03'%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");
}
.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--white);
}
.hero-shapes .shape-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-shapes .shape-2 { width: 300px; height: 300px; bottom: -80px; left: 10%; }
.hero-shapes .shape-3 { width: 150px; height: 150px; top: 30%; right: 25%; }
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-text h1 span { color: var(--gold); }
.hero-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.stat-card .stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.stat-card .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(10px);
  text-align: center;
  width: 100%;
  max-width: 380px;
}
.hero-img-card .school-emblem {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-img-card h3 { color: var(--white); font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 8px; }
.hero-img-card p { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.hero-img-card .motto {
  margin-top: 20px;
  padding: 12px 20px;
  background: rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-style: italic;
  font-size: 0.9rem;
}

/* ---- SECTIONS COMMON ---- */
section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-subtitle { font-size: 1rem; color: var(--text-mid); max-width: 560px; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }
.bg-off-white { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.bg-light { background: var(--light-gray); }

/* ---- FEATURES / WHY US ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* always 3 per row = 2 even rows for 6 cards */
  gap: 24px;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.feature-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ---- NEWS & EVENTS CARDS ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
/* Prevent a lone card from stretching full width */
.news-grid .news-card { max-width: 420px; }
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex; align-items:center; justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card-img .news-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.news-card-body { padding: 24px; }
.news-date { font-size: 0.78rem; color: var(--text-light); margin-bottom: 8px; }
.news-card-body h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.news-card-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
.news-card-body .read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--navy-mid); font-size: 0.85rem; font-weight: 600; text-decoration: none; margin-top: 14px; transition: var(--transition); }
.news-card-body .read-more:hover { color: var(--gold); gap: 10px; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 16px; right: 24px;
  font-size: 5rem; color: var(--light-gray);
  font-family: Georgia, serif; line-height: 1;
}
.testimonial-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.author-info .name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.author-info .role { font-size: 0.78rem; color: var(--text-light); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::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'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%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-banner h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 32px; position: relative; }
.cta-banner .btn { position: relative; }

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand .logo-text .school-name { color: var(--white); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.85rem;
  text-decoration: none; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item .icon { color: var(--gold); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::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'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%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");
}
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 12px; position: relative; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; position: relative; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; position: relative; }
.breadcrumb a { color: var(--gold-light); text-decoration: none; font-size: 0.85rem; }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ---- CARDS GENERIC ---- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

/* ---- GRID UTILITIES ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---- GALLERY ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  color: var(--white); font-size: 1.5rem;
}
.gallery-item:hover .overlay { opacity: 1; }

/* ---- FACULTY CARDS ---- */
.faculty-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.faculty-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.faculty-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.faculty-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white); font-weight: 700;
  font-family: var(--font-heading);
  border: 3px solid var(--light-gray);
}
.faculty-card h3 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.faculty-card .role { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.faculty-card .dept { font-size: 0.8rem; color: var(--text-light); }

/* ---- CONTACT FORM ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
}
.contact-info-item h4 { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- PNPL PAGE ---- */
.pnpl-hero {
  background: linear-gradient(135deg, #0A1628 0%, #1a2a4a 50%, #0d2137 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pnpl-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px; border-radius: 50px;
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px;
}
.pnpl-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.pnpl-title span { color: var(--gold); }
.event-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 48px; }
.event-info-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 20px; text-align: center;
  backdrop-filter: blur(10px);
}
.event-info-card .ei-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  color: var(--gold);
}
.event-info-card .ei-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.event-info-card .ei-value { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--white); }

/* ---- CAREERS PAGE ---- */
.job-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  border-left: 4px solid var(--navy);
  transition: var(--transition);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
}
.job-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--gold); transform: translateX(4px); }
.job-info h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }
.job-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.78rem; color: var(--text-mid);
  background: var(--light-gray); padding: 4px 10px; border-radius: 50px;
}
.job-tag.type { background: rgba(10,22,40,0.08); color: var(--navy); font-weight: 600; }
.job-info p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
.job-action { flex-shrink: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  nav ul { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 16px; box-shadow: var(--shadow-md); gap: 4px; }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .job-card { flex-direction: column; }
  .announcement-bar .bar-social { display: none; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { justify-content: center; }
}

/* ---- LOGO IMAGE ---- */
.logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
/* Fallback text shown when image fails */
.logo-img-wrap .logo-fallback {
  display: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
}
.logo-img-wrap img.error { display: none; }
.logo-img-wrap img.error + .logo-fallback { display: block; }

/* Footer variant — slightly smaller */
.logo-img-wrap.sm {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
}
.logo-img-wrap.sm .logo-fallback { font-size: 1rem; }

/* ---- WHATSAPP FLOAT BUTTON ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.whatsapp-float .wa-bubble {
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}
.whatsapp-float:hover .wa-bubble {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}
.whatsapp-float .wa-tooltip {
  background: #fff;
  color: #111;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
/* Pulse ring animation */
.whatsapp-float .wa-bubble::after {
  content: '';
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 480px) {
  .whatsapp-float { bottom: 18px; right: 18px; }
  .whatsapp-float .wa-tooltip { display: none; }
}

/* ---- TESTIMONIALS CAROUSEL (Swiper) ---- */
.t-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  padding: 32px 28px;
  height: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.t-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.t-qi { font-size: 1.5rem; color: var(--light-gray); margin-bottom: 10px; }
.t-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.t-text {
  font-size: 0.92rem; color: var(--text-mid);
  line-height: 1.85; font-style: italic;
  margin-bottom: 20px; flex: 1;
}
.t-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tPagination { margin-top: 28px !important; position: relative !important; }
.tPagination .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: var(--light-gray); opacity: 1;
  transition: var(--transition);
}
.tPagination .swiper-pagination-bullet-active {
  background: var(--navy); width: 24px; border-radius: 4px;
}
.t-nav { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.tc-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--light-gray);
  background: var(--white); color: var(--navy);
  font-size: 0.85rem; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.tc-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.tSwiper .swiper-slide { height: auto; }

/* ---- PAY FEES BUTTON (header) ---- */
.pay-fees-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #16a34a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s;
  margin-left: 12px;
}
.pay-fees-btn:hover {
  background: #15803d;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .pay-fees-btn { display: none; }
}
