@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* Zenith Academy Main Styles - CSS Variables */
:root {
  /* Colors */
  --color-emerald-green: #14532D;
  --color-sand-gold: #C9A227;
  --color-soft-sage: #E8F3EC;
  --color-muted-teal: #2F6F64;
  --color-white: #FFFFFF;
  --color-light-mint: #F5FAF7;
  --color-dark-emerald: #0F3D21;
  --color-light-gold: #E5D07E;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  margin: 0 0 1rem 0;
}

html {
  scroll-behavior: smooth;
}

/* Section Styles */
.section {
  padding: var(--spacing-xl) 0;
}

@media (max-width: 767px) {
  .section {
    padding: var(--spacing-lg) 0;
  }
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (max-width: 767px) {
  .section-container {
    padding: 0 var(--spacing-sm);
  }
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title .subtitle {
  color: var(--color-sand-gold);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--spacing-xs);
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--color-emerald-green);
  margin-bottom: var(--spacing-sm);
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 1.8rem;
  }
}

.section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-bg-light {
  background: var(--color-light-mint);
}

.section-bg-pattern {
  background-image: 
    radial-gradient(circle at 20px 20px, rgba(20, 83, 45, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 60px 60px, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: 0 0, 40px 40px;
}

.section-bg-dark {
  background: var(--color-dark-emerald);
  color: var(--color-white);
}

.section-bg-dark .section-title h2,
.section-bg-dark .section-title p {
  color: var(--color-white);
}

.section-bg-dark .section-title .subtitle {
  color: var(--color-sand-gold);
}

/* Buttons */
.btn {
  padding: 12px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-base);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 83, 45, 0.2);
}

.btn-primary {
    border-color: var(--color-emerald-green) !important;
    background: var(--color-emerald-green) !important;
    color: var(--color-white) !important;
}
.btn{
    border-radius: 12px !important;
    padding: 8px 20px !important; 
}

.btn-primary:hover {
  background: var(--color-dark-emerald) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--color-sand-gold) !important;
  color: var(--color-white);
}

.btn-secondary:hover {
  background: #a88620 !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-emerald-green);
  color: var(--color-emerald-green);
}

.btn-outline:hover {
  background: var(--color-emerald-green);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-emerald-green);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.125rem;
}

/* Cards */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  padding: var(--spacing-md);
}

.card:hover,
.card-hover:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-hover {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  cursor: pointer;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  padding: var(--spacing-md);
  text-align: center;
}

.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.feature-card .icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  background: var(--color-soft-sage);
  border-radius: var(--radius-md);
  color: var(--color-emerald-green);
  font-size: 2rem;
}

.feature-card h3 {
  color: var(--color-emerald-green);
  margin-bottom: var(--spacing-xs);
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.stat-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-sand-gold);
  font-family: var(--font-heading);
  margin-bottom: var(--spacing-xs);
}

.stat-card .stat-label {
  color: var(--color-emerald-green);
  font-weight: 600;
  font-size: 0.9rem;
}

.event-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  overflow: hidden;
}

.event-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.event-card .event-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: calc(var(--spacing-md) * -1) calc(var(--spacing-md) * -1) var(--spacing-sm);
}

.event-card .event-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-soft-sage);
  color: var(--color-emerald-green);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.event-card h3 {
  color: var(--color-emerald-green);
  margin-bottom: var(--spacing-xs);
}

.event-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.teacher-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  text-align: center;
}

.teacher-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.teacher-card .teacher-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--spacing-sm);
  border: 4px solid var(--color-soft-sage);
}

.teacher-card .teacher-name {
  color: var(--color-emerald-green);
  font-weight: 600;
  margin-bottom: 4px;
}

.teacher-card .teacher-subject {
  color: var(--color-sand-gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.teacher-card .teacher-qualification {
  color: #666;
  font-size: 0.85rem;
}

.info-card {
  background: var(--color-light-mint);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  border-left: 4px solid var(--color-emerald-green);
}

.info-card h3 {
  color: var(--color-emerald-green);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card ul li {
  padding: 8px 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info-card ul li::before {
  content: '✓';
  color: var(--color-sand-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* Header */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-base);
}

.header-wrapper.scrolled .top-bar {
  display: none;
}

.header-wrapper.scrolled .main-navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.top-bar {
  background: var(--color-emerald-green);
  color: var(--color-white);
  padding: 10px 0;
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .top-bar {
    padding: 8px 0;
    font-size: 0.8rem;
  }
}

.top-bar .top-bar-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 767px) {
  .top-bar .top-bar-content {
    padding: 0 var(--spacing-sm);
  }
}

.top-bar .motto {
  font-style: italic;
  opacity: 0.95;
}

@media (max-width: 767px) {
  .top-bar .motto {
    display: none;
  }
}

.top-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 767px) {
  .top-bar .contact-info {
    gap: 12px;
    font-size: 0.75rem;
    justify-content: center;
  }
}

.top-bar .contact-info a {
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-base);
}

.top-bar .contact-info a:hover {
  opacity: 0.8;
}

.top-bar .admission-badge {
  background: var(--color-sand-gold);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  animation: pulse 2s infinite;
}

@media (max-width: 767px) {
  .top-bar .admission-badge {
    padding: 3px 8px;
    font-size: 0.7rem;
  }
}

.main-navbar {
  background: transparent;
  padding: 16px 0;
  transition: var(--transition-base);
}

.main-navbar .navbar-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .main-navbar .navbar-content {
    padding: 0 var(--spacing-sm);
  }
}

.main-navbar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.main-navbar .logo img {
  height: 65px;
}

@media (max-width: 767px) {
  .main-navbar .logo img {
    height: 50px;
  }
}

.main-navbar .logo .logo-text .school-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-emerald-green);
  line-height: 1.2;
}

@media (max-width: 767px) {
  .main-navbar .logo .logo-text .school-name {
    font-size: 1.2rem;
  }
}

.main-navbar .logo .logo-text .school-tagline {
  font-size: 0.75rem;
  color: var(--color-muted-teal);
  font-weight: 500;
}

@media (max-width: 767px) {
  .main-navbar .logo .logo-text .school-tagline {
    font-size: 0.65rem;
  }
}

.main-navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .main-navbar .nav-links {
    display: none;
  }
}

.main-navbar .nav-links a {
  color: var(--color-emerald-green);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-base);
  position: relative;
}

.main-navbar .nav-links .dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 8px !important;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  vertical-align: middle;
  border-top: none;
  border-left: none;
  transition: transform 0.2s ease;
}

/* Rotate arrow when dropdown is open */
.main-navbar .nav-links .dropdown:hover .dropdown-toggle::after {
  transform: rotate(225deg) translateY(2px);
}

.main-navbar .nav-links a:hover {
  color: var(--color-sand-gold);
}

.main-navbar .nav-links a:hover::after {
  width: 100%;
}

.main-navbar .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-emerald-green);
  cursor: pointer;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .main-navbar .mobile-menu-btn {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-md);
  transition: var(--transition-base);
  z-index: 1001;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu .close-btn {
  background: none;
  border: none;
  color: var(--color-emerald-green);
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: var(--spacing-md);
}
.main-navbar .mobile-menu-btn:focus,
.main-navbar .mobile-menu-btn:focus-visible{
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.offcanvas-header .btn-close:focus,
.offcanvas-header .btn-close:focus-visible{
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.mobile-menu .mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu .mobile-nav-links a {
  display: block;
  color: var(--color-emerald-green);
  text-decoration: none;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-soft-sage);
  transition: var(--transition-base);
}

.mobile-menu .mobile-nav-links a:hover {
  color: var(--color-sand-gold);
  padding-left: 8px;
}

.mobile-menu .mobile-cta {
  margin-top: var(--spacing-md);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
}

.overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* Footer */
.footer {
  background: var(--color-dark-emerald);
  color: var(--color-white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer .footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (max-width: 767px) {
  .footer .footer-content {
    padding: 0 var(--spacing-sm);
  }
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

@media (max-width: 767px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

.footer .footer-column h3 {
  color: var(--color-sand-gold);
  font-family: var(--font-heading);
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
}

.footer .footer-column p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-column ul li {
  margin-bottom: 10px;
}

.footer .footer-column ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer .footer-column ul li a:hover {
  color: var(--color-sand-gold);
  padding-left: 4px;
}

.footer .footer-column .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.footer .footer-column .contact-item svg {
  color: var(--color-sand-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: var(--spacing-sm);
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  transition: var(--transition-base);
}

.footer .social-links a:hover {
  background: var(--color-sand-gold);
  transform: translateY(-3px);
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer .footer-bottom a {
  color: var(--color-sand-gold);
  text-decoration: none;
}

.footer .footer-bottom a:hover {
  text-decoration: underline;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-emerald-green), var(--color-muted-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-md {
  margin-top: var(--spacing-md);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Form Styles */
.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-group label {
  display: block;
  color: var(--color-emerald-green);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-soft-sage);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-emerald-green);
  box-shadow: 0 0 0 3px rgba(20, 83, 45, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Hero responsive grid */
@media (max-width: 767px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .hero-grid h1 {
    font-size: 2rem !important;
  }
  
  .hero-grid .stat-card {
    display: none;
  }
  
  .hero-grid > div:last-child {
    position: relative !important;
  }
  
  .hero-grid > div:last-child > div:last-child {
    position: static !important;
    width: 100% !important;
    margin-top: 20px;
  }
}

/* Director Message responsive */
@media (max-width: 767px) {
  section > div > div[style*="gridTemplateColumns: '300px 1fr'"] {
    grid-template-columns: 1fr !important;
  }
  
  section > div > div[style*="gridTemplateColumns: '300px 1fr'"] > div:first-child {
    max-width: 250px;
    margin: 0 auto;
  }
}


/* Show dropdown on hover (desktop only) */
@media (min-width: 992px) {

  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .dropdown-menu {
    border-radius: 10px;
    border: 0.5px solid #e0e0e0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 6px;
    min-width: 220px;
    animation: fadeIn 0.15s ease;
  }

  .dropdown-item {
    border-radius: 6px;
    font-size: 13.5px;
    padding: 8px 14px;
    color: #333;
  }

  .dropdown-item:hover {
    background-color: #f0f4ff;
    color: #1a3c6e;
  }

  /* Remove the gap between nav link and dropdown so hover doesn't break */
  .dropdown-menu {
    top: 100%;
    margin-top: 0 !important;
  }

  /* Tiny bridge so mouse moving down doesn't lose hover */
  .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
  }

}

.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, #14532D 0%, #2F6F64 100%);
    /* With background image: */
    /* background: linear-gradient(rgba(20,83,45,0.85), rgba(20,83,45,0.85)), url('YOUR_IMAGE_URL');
       background-size: cover;
       background-position: center; */
           margin-top: 130px;
  }

  .page-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 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='1'%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-breadcrumb .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
  }
  .page-hero-breadcrumb .breadcrumb-item a:hover {
    color: var(--color-sand-gold);
  }
  .page-hero-breadcrumb .breadcrumb-item.active {
    color: var(--color-sand-gold);
  }

  .page-hero-divider {
    width: 96px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--color-sand-gold), transparent);
    margin: 2rem auto 0;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }
  .animation-delay-100 { animation-delay: 0.1s; opacity: 0; }

  /* Why Choose Us Cards */
.why-card {
  background-color: var(--color-light-mint);
  border: 1px solid var(--color-soft-sage);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.3s ease;
}
.why-card:hover { border-color: var(--color-muted-teal); }

.why-card-icon {
  width: 48px; height: 48px;
  background-color: var(--color-emerald-green);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.why-card h3 { color: var(--color-emerald-green); font-size: 1.2rem; margin-bottom: 0.75rem; }
.why-card p  { color: #6b7280; margin: 0; }

/* Accreditation Cards */
.accred-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.accred-icon {
  width: 64px; height: 64px;
  background-color: var(--color-emerald-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.accred-card h4 { color: var(--color-emerald-green); font-size: 1rem; margin-bottom: 0.5rem; }
.accred-card p  { color: #6b7280; font-size: 0.875rem; margin: 0; }

.section-heading { color: var(--color-emerald-green); }


.staff-card {
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .staff-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(20,83,45,.13);
  }
  .staff-card::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(90deg, var(--color-emerald-green), var(--color-muted-teal), var(--color-sand-gold));
  }
  .staff-avatar-wrap {
    padding: 1.6rem 1.6rem .8rem;
    display: flex; align-items: flex-end; gap: 1rem;
  }
  .staff-avatar-placeholder {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, var(--color-emerald-green), var(--color-muted-teal));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff; font-weight: 700;
    border: 3px solid var(--color-soft-sage);
    flex-shrink: 0;
  }
  .staff-badge {
    font-size: .68rem; font-weight: 500;
    padding: .25rem .7rem; border-radius: 2rem;
    background: #F5E9BE; color: #92650a;
    display: inline-block;
  }
  .staff-body { padding: 0 1.6rem 1.6rem; }
  .staff-name { font-size: 1.1rem; font-weight: 700; color: var(--color-emerald-green); margin-bottom: .1rem; }
  .staff-role { font-size: .82rem; color: var(--color-muted-teal); font-weight: 500; margin-bottom: .7rem; }
  .staff-desc { font-size: .82rem; color: #6b7280; line-height: 1.55; margin-bottom: 1rem; }
  .staff-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
  .staff-tag {
    font-size: .7rem; font-weight: 500;
    padding: .2rem .65rem; border-radius: 2rem;
    background: var(--color-soft-sage); color: var(--color-emerald-green);
  }
  .filter-btn {
    font-size: .8rem; font-weight: 500;
    padding: .4rem 1.1rem; border-radius: 2rem;
    border: 1.5px solid #d1d5db;
    background: #fff; color: #4b5563;
    cursor: pointer; transition: all .25s;
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--color-emerald-green);
    border-color: var(--color-emerald-green);
    color: #fff;
  }
  .stats-strip {
    background: linear-gradient(135deg, var(--color-emerald-green), var(--color-muted-teal));
    border-radius: 1.25rem; padding: 2rem;
  }
  .stat-num {
    font-size: 2rem; font-weight: 700;
    color: var(--color-sand-gold); display: block;
  }
  .stat-lbl { font-size: .78rem; color: rgba(255,255,255,.85); }
  .section-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--color-emerald-green), var(--color-sand-gold));
    border-radius: 2px; margin: .75rem auto 0;
  }
  @keyframes fadeUp {
    from { opacity:0; transform:translateY(22px); }
    to   { opacity:1; transform:translateY(0); }
  }
  .fade-up { animation: fadeUp .55s ease forwards; opacity:0; }

  

  /* ─── Shared tokens ─────────────────────────────────────────── */
:root {
  --ac-primary:       #1b6b4a;   /* deep green  */
  --ac-primary-mid:   #2d8a62;
  --ac-primary-soft:  #e8f5ee;
  --ac-primary-xsoft: #f3faf6;
  --ac-ink:           #111827;
  --ac-ink-muted:     #6b7280;
  --ac-ink-faint:     #9ca3af;
  --ac-border:        #e5e7eb;
  --ac-radius-sm:     6px;
  --ac-radius-md:     12px;
  --ac-radius-lg:     18px;
  --ac-transition:    0.18s ease;
}
 
/* ─── Eyebrow / heading utilities ───────────────────────────── */
.ac-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ac-primary);
  margin-bottom: 0.6rem;
}
.ac-eyebrow--light { color: rgba(255,255,255,0.65); }
 
.ac-heading {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--ac-ink);
  margin: 0 0 1rem;
}
.ac-heading em { font-style: normal; color: var(--ac-primary); }
.ac-heading--light { color: #fff; }
 
.ac-subhead {
  font-size: 1rem;
  color: var(--ac-ink-muted);
  max-width: 40rem;
  margin: 0 auto 0;
}
 
.ac-body { font-size: 1rem; color: var(--ac-ink-muted); line-height: 1.75; margin: 0 0 1.5rem; }
.ac-body--light { color: rgba(255,255,255,0.72); }
 
.ac-section-header { margin-bottom: 3rem; }
 
 
/* ════════════════════════════════════════════
   SECTION 1 · OVERVIEW
════════════════════════════════════════════ */
.ac-overview {
  padding: 5rem 0 4rem;
}
 
.ac-overview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
 
@media (max-width: 900px) {
  .ac-overview__inner { grid-template-columns: 1fr; gap: 2rem; }
}
 
.ac-overview__pillars {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
 
.ac-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1rem;
  background: var(--ac-primary-xsoft);
  border: 1px solid var(--ac-primary-soft);
  border-radius: var(--ac-radius-md);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  color: var(--ac-primary);
  flex: 1 1 80px;
  min-width: 80px;
  transition: background var(--ac-transition), transform var(--ac-transition);
}
.ac-pillar:hover { background: var(--ac-primary-soft); transform: translateY(-2px); }
 
.ac-pillar__icon {
  font-size: 1.1rem;
  color: var(--ac-primary-mid);
  line-height: 1;
}
 
.ac-overview__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
}
 
.ac-stat {
  padding: 1.5rem;
  border-radius: var(--ac-radius-lg);
  background: #fff;
  border: 1px solid var(--ac-border);
  text-align: center;
  transition: box-shadow var(--ac-transition), transform var(--ac-transition);
}
.ac-stat:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); transform: translateY(-2px); }
 
.ac-stat--accent {
  background: var(--ac-primary);
  border-color: var(--ac-primary);
}
.ac-stat--accent .ac-stat__num { color: #fff; }
.ac-stat--accent .ac-stat__lbl { color: rgba(255,255,255,0.65); }
 
.ac-stat__num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--ac-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.ac-stat__lbl {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ac-ink-muted);
}
 
 
/* ════════════════════════════════════════════
   SECTION 2 · CURRICULUM STAGES
════════════════════════════════════════════ */
.ac-stages {
  padding: 4rem 0 5rem;
  background: #f9fafb;
  border-top: 1px solid var(--ac-border);
  border-bottom: 1px solid var(--ac-border);
}
 
.ac-stages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
 
.ac-stage-card {
  background: #fff;
  border-radius: var(--ac-radius-lg);
  border: 1px solid var(--ac-border);
  padding: 1.6rem 1.4rem;
  transition: box-shadow var(--ac-transition), transform var(--ac-transition);
  position: relative;
  overflow: hidden;
}
 
.ac-stage-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--ac-radius-lg) var(--ac-radius-lg) 0 0;
}
 
.ac-stage-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-3px); }
 
.ac-stage-card--sage::before  { background: #1b6b4a; }
.ac-stage-card--sky::before   { background: #2563eb; }
.ac-stage-card--amber::before { background: #d97706; }
.ac-stage-card--rose::before  { background: #dc2626; }
 
.ac-stage-card__header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
 
.ac-stage-card__icon {
  width: 40px; height: 40px;
  border-radius: var(--ac-radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
 
.ac-stage-card--sage  .ac-stage-card__icon { background: #e8f5ee; color: #1b6b4a; }
.ac-stage-card--sky   .ac-stage-card__icon { background: #eff6ff; color: #2563eb; }
.ac-stage-card--amber .ac-stage-card__icon { background: #fffbeb; color: #d97706; }
.ac-stage-card--rose  .ac-stage-card__icon { background: #fef2f2; color: #dc2626; }
 
.ac-stage-card__label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ac-ink-faint);
  margin-bottom: 0.1rem;
}
 
.ac-stage-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ac-ink);
  margin: 0;
}
 
.ac-stage-card__badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50rem;
  white-space: nowrap;
  flex-shrink: 0;
}
 
.ac-stage-card--sage  .ac-stage-card__badge { background: #e8f5ee; color: #1b6b4a; }
.ac-stage-card--sky   .ac-stage-card__badge { background: #eff6ff; color: #1e40af; }
.ac-stage-card--amber .ac-stage-card__badge { background: #fffbeb; color: #92400e; }
.ac-stage-card--rose  .ac-stage-card__badge { background: #fef2f2; color: #991b1b; }
 
.ac-stage-card__desc {
  font-size: 0.88rem;
  color: var(--ac-ink-muted);
  line-height: 1.65;
  margin: 0 0 1.1rem;
}
 
.ac-stage-card__tags {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
 
.ac-stage-card__tags li {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.22rem 0.6rem;
  background: #f3f4f6;
  color: #374151;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
}
 
 
/* ════════════════════════════════════════════
   SECTION 3 · ASSESSMENT
════════════════════════════════════════════ */
.ac-assessment {
  padding: 5rem 0;
}
 
.ac-assessment__inner {}
 
.ac-assessment__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border: 1px solid var(--ac-border);
  border-radius: var(--ac-radius-lg);
  overflow: hidden;
  margin-top: 0.5rem;
}
 
.ac-assess-item {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--ac-border);
  transition: background var(--ac-transition);
  position: relative;
}
.ac-assess-item:last-child { border-right: none; }
.ac-assess-item:hover { background: var(--ac-primary-xsoft); }
 
@media (max-width: 768px) {
  .ac-assess-item {
    border-right: none;
    border-bottom: 1px solid var(--ac-border);
  }
  .ac-assess-item:last-child { border-bottom: none; }
}
 
.ac-assess-item__num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ac-primary-soft);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}
 
.ac-assess-item:hover .ac-assess-item__num {
  color: var(--ac-primary-soft);
}
 
.ac-assess-item__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ac-ink);
  margin: 0 0 0.6rem;
}
 
.ac-assess-item__desc {
  font-size: 0.83rem;
  color: var(--ac-ink-muted);
  line-height: 1.65;
  margin: 0;
}
 
 
/* ════════════════════════════════════════════
   SECTION 4 · NEP 2020
════════════════════════════════════════════ */
.ac-nep {
  background: var(--ac-primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
 
.ac-nep::before {
  content: "NEP 2020";
  position: absolute;
  top: -0.5rem; right: -1rem;
  font-size: 9rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}
 
.ac-nep__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
 
@media (max-width: 900px) {
  .ac-nep__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
 
.ac-nep__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
 
.ac-nep__check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
 
.ac-nep__check span {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
 
.ac-nep__check span::after {
  content: "";
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
}
 
.ac-nep__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}
 
.ac-nep__tile {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--ac-radius-md);
  padding: 1.2rem 1rem;
  text-align: center;
  transition: background var(--ac-transition), transform var(--ac-transition);
}
.ac-nep__tile:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
 
.ac-nep__tile-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.6rem;
  color: #fff;
}
 
.ac-nep__tile-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  line-height: 1.3;
}
 
 
/* ════════════════════════════════════════════
   SECTION 5 · CTA
════════════════════════════════════════════ */
.ac-cta {
  padding: 4rem 0 5rem;
  background: #f9fafb;
  border-top: 1px solid var(--ac-border);
}
 
.ac-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
 
.ac-cta__heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ac-ink);
  margin: 0 0 0.35rem;
}
 
.ac-cta__sub {
  font-size: 0.9rem;
  color: var(--ac-ink-muted);
  margin: 0;
}
 
.ac-cta__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
 
.ac-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--ac-radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--ac-transition);
  white-space: nowrap;
}
 
.ac-btn--primary {
  background: var(--ac-primary);
  color: #fff;
  border: 1.5px solid var(--ac-primary);
}
.ac-btn--primary:hover { background: var(--ac-primary-mid); border-color: var(--ac-primary-mid); color: #fff; }
 
.ac-btn--outline {
  background: transparent;
  color: var(--ac-ink);
  border: 1.5px solid var(--ac-border);
}
.ac-btn--outline:hover { background: #fff; border-color: #d1d5db; color: var(--ac-ink); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }



/* ─── Tokens ──────────────────────────────────────────────────── */
:root {
  --eu-primary:      #1b6b4a;
  --eu-primary-mid:  #2d8a62;
  --eu-primary-soft: #e8f5ee;
  --eu-primary-xs:   #f3faf6;
  --eu-gold:         #b07d2b;
  --eu-gold-soft:    #fdf3dc;
  --eu-ink:          #111827;
  --eu-ink-muted:    #6b7280;
  --eu-ink-faint:    #9ca3af;
  --eu-border:       #e5e7eb;
  --eu-rmd:          6px;
  --eu-rlg:          14px;
  --eu-tr:           .18s ease;
  /* category colours */
  --cat-cultural:    #7c3aed;
  --cat-cultural-bg: #f5f3ff;
  --cat-science:     #0369a1;
  --cat-science-bg:  #e0f2fe;
  --cat-sports:      #b45309;
  --cat-sports-bg:   #fef3c7;
  --cat-academic:    #1b6b4a;
  --cat-academic-bg: #e8f5ee;
}
 
/* ─── Shared ──────────────────────────────────────────────────── */
.eu-eyebrow {
  display: block;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--eu-primary);
  margin-bottom: .5rem;
}
.eu-heading {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--eu-ink);
  margin: 0 0 .5rem;
}
.eu-heading--sm { font-size: 1.15rem; }
.eu-subhead { font-size: .9rem; color: var(--eu-ink-muted); margin: .5rem 0 0; }
 
.eu-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.eu-section-header--center { flex-direction: column; align-items: center; text-align: center; margin-bottom: 2.25rem; }
 
/* ════════════════════════
   S1 · STATS STRIP
════════════════════════ */
.eu-stats-strip {
  background: var(--eu-primary);
  padding: 2rem 0;
}
.eu-stats-strip__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.eu-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .75rem 2.5rem;
  text-align: center;
}
.eu-stat-item__num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
}
.eu-stat-item__lbl {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.6);
  margin-top: .25rem;
}
.eu-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,.2);
}
@media (max-width: 600px) {
  .eu-stat-divider { display: none; }
  .eu-stat-item { padding: .6rem 1.5rem; }
}
 
/* ════════════════════════
   S2 · EVENTS GRID
════════════════════════ */
.eu-events-section {
  padding: 4rem 0 5rem;
}
 
/* Filter tabs */
.eu-filter-tabs {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.eu-filter-tab {
  padding: .38rem .9rem;
  border-radius: 50rem;
  font-size: .75rem;
  font-weight: 700;
  border: 1.5px solid var(--eu-border);
  background: #fff;
  color: var(--eu-ink-muted);
  cursor: pointer;
  transition: all var(--eu-tr);
}
.eu-filter-tab:hover { border-color: var(--eu-primary);}
.eu-filter-tab--active {
  background: var(--eu-primary);
  border-color: var(--eu-primary);
  color: #fff;
}
 
/* Cards */
.eu-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
 
.eu-ev-card {
  background: #fff;
  border: 1px solid var(--eu-border);
  border-radius: var(--eu-rlg);
  overflow: hidden;
  transition: box-shadow var(--eu-tr), transform var(--eu-tr);
  display: flex;
  flex-direction: column;
}
.eu-ev-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,.1); transform: translateY(-4px); }
 
.eu-ev-card__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.eu-ev-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.eu-ev-card:hover .eu-ev-card__img { transform: scale(1.04); }
 
.eu-ev-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,.5) 100%);
}
 
/* Category badge */
.eu-ev-card__cat {
  position: absolute;
  top: .85rem; left: .85rem;
  font-size: .65rem;
  font-weight: 700;
  padding: .28rem .7rem;
  border-radius: 50rem;
  display: flex;
  align-items: center;
  gap: .35rem;
  backdrop-filter: blur(6px);
}
.eu-ev-card__cat--cultural  { background: rgba(124,58,237,.15); color: #fff; border: 1px solid rgba(124,58,237,.4); }
.eu-ev-card__cat--science   { background: rgba(3,105,161,.15);  color: #fff; border: 1px solid rgba(3,105,161,.4); }
.eu-ev-card__cat--sports    { background: rgba(180,83,9,.15);   color: #fff; border: 1px solid rgba(180,83,9,.4); }
.eu-ev-card__cat--academic  { background: rgba(27,107,74,.15);  color: #fff; border: 1px solid rgba(27,107,74,.4); }
 
/* Status badge */
.eu-ev-card__status {
  position: absolute;
  top: .85rem; right: .85rem;
  font-size: .6rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 50rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.eu-ev-card__status--upcoming { background: #fff; color: var(--eu-primary); }
.eu-ev-card__status--past     { background: rgba(0,0,0,.4); color: rgba(255,255,255,.7); }
 
/* Card body */
.eu-ev-card__body {
  padding: 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
 
.eu-ev-card__meta {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  font-size: .7rem;
  color: var(--eu-ink-muted);
  font-weight: 600;
  margin-bottom: .7rem;
}
.eu-ev-card__meta span { display: flex; align-items: center; gap: .3rem; }
.eu-ev-card__meta i { color: var(--eu-primary); font-size: .75rem; }
 
.eu-ev-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--eu-ink);
  margin: 0 0 .55rem;
  line-height: 1.3;
}
.eu-ev-card__desc {
  font-size: .8rem;
  color: var(--eu-ink-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
}
 
.eu-ev-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .9rem;
  border-top: 1px solid var(--eu-border);
  margin-top: auto;
}
 
.eu-ev-card__countdown {
  display: flex;
  align-items: baseline;
  gap: .3rem;
}
.eu-ev-card__countdown-val {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--eu-primary);
  line-height: 1;
  letter-spacing: -.02em;
}
.eu-ev-card__countdown-lbl {
  font-size: .65rem;
  color: var(--eu-ink-faint);
  font-weight: 600;
}
 
.eu-ev-card__link {
  font-size: .75rem;
  font-weight: 700;
  color: var(--eu-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--eu-tr);
}
.eu-ev-card__link:hover { gap: .55rem; }
 
/* ════════════════════════
   S3 · UPDATES + CALENDAR
════════════════════════ */
.eu-updates {
  padding: 4rem 0 5rem;
  background: #f9fafb;
  border-top: 1px solid var(--eu-border);
  border-bottom: 1px solid var(--eu-border);
}
 
.eu-updates__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .eu-updates__inner { grid-template-columns: 1fr; gap: 3rem; } }
 
/* News list */
.eu-news-list { display: flex; flex-direction: column; margin: 1.5rem 0; }
 
.eu-news-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--eu-border);
  transition: background var(--eu-tr);
}
.eu-news-item:first-child { padding-top: 0; }
.eu-news-item:last-child  { border-bottom: none; }
 
.eu-news-item__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .45rem;
}
.eu-news-item__dot--green { background: var(--eu-primary); }
.eu-news-item__dot--gold  { background: var(--eu-gold); }
.eu-news-item__dot--blue  { background: #2563eb; }
 
.eu-news-item__meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .35rem;
}
.eu-news-item__tag {
  font-size: .6rem;
  font-weight: 700;
  padding: .18rem .55rem;
  border-radius: 50rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.eu-news-item__tag--green { background: var(--eu-primary-soft); color: var(--eu-primary); }
.eu-news-item__tag--gold  { background: var(--eu-gold-soft);    color: var(--eu-gold); }
.eu-news-item__tag--blue  { background: #dbeafe;                color: #1e40af; }
 
.eu-news-item__date {
  font-size: .68rem;
  color: var(--eu-ink-faint);
  font-weight: 500;
}
.eu-news-item__title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--eu-ink);
  margin: 0 0 .3rem;
  line-height: 1.3;
}
.eu-news-item__desc {
  font-size: .78rem;
  color: var(--eu-ink-muted);
  line-height: 1.6;
  margin: 0 0 .5rem;
}
.eu-news-item__link {
  font-size: .73rem;
  font-weight: 700;
  color: var(--eu-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--eu-tr);
}
.eu-news-item__link:hover { gap: .5rem; }
 
.eu-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--eu-primary);
  border: 1.5px solid var(--eu-primary);
  padding: .55rem 1.25rem;
  border-radius: var(--eu-rmd);
  text-decoration: none;
  transition: all var(--eu-tr);
  margin-top: .5rem;
}
.eu-view-all-btn:hover { background: var(--eu-primary); color: #fff; }
 
/* Calendar snapshot */
.eu-updates__calendar {
  background: #fff;
  border: 1px solid var(--eu-border);
  border-radius: var(--eu-rlg);
  padding: 1.75rem;
}
 
.eu-cal-list { display: flex; flex-direction: column; margin: 1.25rem 0; gap: 0; }
 
.eu-cal-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: .9rem 0;
  border-bottom: 1px solid var(--eu-border);
  transition: background var(--eu-tr);
}
.eu-cal-item:last-child { border-bottom: none; padding-bottom: 0; }
.eu-cal-item:first-child { padding-top: 0; }
 
.eu-cal-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--eu-primary-xs);
  border: 1px solid var(--eu-primary-soft);
  border-radius: 8px;
  flex-shrink: 0;
  text-align: center;
}
.eu-cal-item__day  { font-size: 1rem; font-weight: 900; color: var(--eu-primary); line-height: 1; }
.eu-cal-item__month { font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--eu-ink-muted); margin-top: .05rem; }
 
.eu-cal-item__tag {
  font-size: .58rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 50rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  display: inline-block;
  margin-bottom: .25rem;
}
.eu-cal-item__tag--cultural { background: var(--cat-cultural-bg); color: var(--cat-cultural); }
.eu-cal-item__tag--science  { background: var(--cat-science-bg);  color: var(--cat-science); }
.eu-cal-item__tag--sports   { background: var(--cat-sports-bg);   color: var(--cat-sports); }
.eu-cal-item__tag--academic { background: var(--cat-academic-bg); color: var(--cat-academic); }
 
.eu-cal-item__name { font-size: .82rem; font-weight: 700; color: var(--eu-ink); line-height: 1.2; }
.eu-cal-item__time { font-size: .7rem; color: var(--eu-ink-muted); margin-top: .2rem; display: flex; align-items: center; gap: .3rem; }
.eu-cal-item__time i { font-size: .7rem; color: var(--eu-primary); }
 
.eu-cal-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  padding: .65rem;
  background: var(--eu-primary-xs);
  border: 1.5px solid var(--eu-primary-soft);
  border-radius: var(--eu-rmd);
  font-size: .78rem;
  font-weight: 700;
  color: var(--eu-primary);
  text-decoration: none;
  margin-top: .5rem;
  transition: background var(--eu-tr);
}
.eu-cal-download-btn:hover { background: var(--eu-primary-soft); color: var(--eu-primary); }
 
/* ════════════════════════
   S4 · HIGHLIGHTS GALLERY
════════════════════════ */
.eu-highlights {
  padding: 5rem 0;
}
 
.eu-highlights__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 280px;
  gap: 1rem;
}
 
@media (max-width: 900px) {
  .eu-highlights__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .eu-highlight-card--tall { grid-column: span 2; }
}
@media (max-width: 580px) {
  .eu-highlights__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .eu-highlights__grid .eu-highlight-card { height: 220px; }
  .eu-highlight-card--tall { grid-column: span 1; }
}
 
.eu-highlight-card {
  position: relative;
  border-radius: var(--eu-rlg);
  overflow: hidden;
  cursor: pointer;
}
.eu-highlight-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.eu-highlight-card:hover .eu-highlight-card__img { transform: scale(1.05); }
 
.eu-highlight-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.35rem;
  transition: background var(--eu-tr);
}
 
.eu-highlight-card__cat {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  margin-bottom: .3rem;
}
.eu-highlight-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .2rem;
  line-height: 1.25;
}
.eu-highlight-card__sub {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  margin: 0;
}
 
.eu-gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.5rem;
  background: var(--eu-primary);
  color: #fff;
  border-radius: var(--eu-rmd);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--eu-tr);
}
.eu-gallery-btn:hover { background: var(--eu-primary-mid); color: #fff; }
 
/* ════════════════════════
   S5 · CTA
════════════════════════ */
.eu-cta {
  padding: 4rem 0 5rem;
  background: #f9fafb;
  border-top: 1px solid var(--eu-border);
}
.eu-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.eu-cta__heading { font-size: 1.3rem; font-weight: 800; color: var(--eu-ink); margin: 0 0 .3rem; }
.eu-cta__sub     { font-size: .88rem; color: var(--eu-ink-muted); margin: 0; }
.eu-cta__actions { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }
 
.eu-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .62rem 1.3rem;
  border-radius: var(--eu-rmd);
  font-size: .83rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--eu-tr);
  white-space: nowrap;
}
.eu-btn--primary  { background: var(--eu-primary); color: #fff; border: 1.5px solid var(--eu-primary); }
.eu-btn--primary:hover  { background: var(--eu-primary-mid); border-color: var(--eu-primary-mid); color: #fff; }
.eu-btn--outline  { background: transparent; color: var(--eu-ink); border: 1.5px solid var(--eu-border); }
.eu-btn--outline:hover  { background: #fff; border-color: #d1d5db; box-shadow: 0 2px 8px rgba(0,0,0,.06); color: var(--eu-ink); }

:root {
      --green-50:  #EAF3DE;
      --green-100: #C0DD97;
      --green-400: #639922;
      --green-600: #3B6D11;
      --green-800: #27500A;
      --amber-400: #BA7517;
      --gray-50:   #F8F9FA;
      --gray-200:  #E9ECEF;
    }

    * { box-sizing: border-box; }

    
    /* ── Navbar ────────────────────────────────── */
    .site-nav {
      background: #fff;
      border-bottom: 1px solid #E5E7EB;
      padding: 14px 0;
    }
    .site-nav .brand {
      font-size: 15px;
      font-weight: 700;
      color: var(--green-600);
      text-decoration: none;
    }
    .site-nav .brand span { color: #1a1a1a; }

    /* ── Breadcrumb ─────────────────────────────── */
    .breadcrumb-wrap {
      background: #fff;
      border-bottom: 1px solid #E5E7EB;
      padding: 10px 0;
    }
    .breadcrumb { margin: 0; font-size: 12px; }
    .breadcrumb-item a { color: #6B7280; text-decoration: none; }
    .breadcrumb-item a:hover { color: var(--green-600); }
    .breadcrumb-item.active { color: #1a1a1a; font-weight: 500; }
    .breadcrumb-item + .breadcrumb-item::before { color: #D1D5DB; }

    /* ── Page wrapper ───────────────────────────── */
    .page-body { padding: 32px 0 64px; }

    /* ── Hero card ──────────────────────────────── */
    .hero-card {
      background: #fff;
      border-radius: 16px;
      border: 1px solid #E5E7EB;
      overflow: hidden;
      margin-bottom: 24px;
    }
    .hero-banner {
      background: var(--green-50);
      border-bottom: 1px solid var(--green-100);
      padding: 28px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .hero-banner-left {}
    .event-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--green-100);
      color: var(--green-800);
      font-size: 11px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 12px;
    }
    .event-pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green-600);
    }
    .hero-title {
      font-size: 26px;
      font-weight: 700;
      color: var(--green-800);
      margin: 0 0 8px;
      line-height: 1.25;
    }
    .hero-subtitle {
      font-size: 13px;
      color: var(--green-600);
      margin: 0;
      max-width: 480px;
      line-height: 1.6;
    }
    .house-badges { display: flex; gap: 6px; flex-wrap: wrap; }
    .house-badge {
      background: var(--green-800);
      color: var(--green-100);
      font-size: 11px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
    }
    .hero-meta {
      padding: 16px 32px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .meta-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #F9FAFB;
      border: 1px solid #E5E7EB;
      border-radius: 20px;
      padding: 6px 14px;
      font-size: 12.5px;
      color: #374151;
      font-weight: 500;
    }
    .meta-chip i { color: var(--green-400); font-size: 13px; }

    /* ── Section card ───────────────────────────── */
    .section-card {
      background: #fff;
      border-radius: 14px;
      border: 1px solid #E5E7EB;
      padding: 24px;
      margin-bottom: 20px;
    }
    .section-label {
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: #9CA3AF;
      margin-bottom: 16px;
    }
    .about-text {
      font-size: 13.5px;
      color: #4B5563;
      line-height: 1.8;
      margin: 0;
    }

    /* ── Timeline ───────────────────────────────── */
    .timeline { display: flex; flex-direction: column; }
    .tl-item { display: grid; grid-template-columns: 70px 24px 1fr; gap: 0 12px; }
    .tl-time {
      font-size: 11px;
      color: #9CA3AF;
      font-weight: 500;
      padding-top: 13px;
      text-align: right;
    }
    .tl-spine {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .tl-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--green-400);
      margin-top: 13px;
      flex-shrink: 0;
    }
    .tl-dot--neutral { background: #D1D5DB; }
    .tl-dot--gold    { background: var(--amber-400); }
    .tl-line {
      flex: 1;
      width: 1.5px;
      background: #E5E7EB;
      margin-top: 4px;
    }
    .tl-item:last-child .tl-line { background: transparent; }
    .tl-content { padding: 8px 0 20px; }
    .tl-name {
      font-size: 13.5px;
      font-weight: 600;
      color: #111827;
      margin-bottom: 2px;
    }
    .tl-loc { font-size: 12px; color: #6B7280; }

    /* ── Category tiles ─────────────────────────── */
    .cat-tile {
      background: #F9FAFB;
      border: 1px solid #E5E7EB;
      border-radius: 12px;
      padding: 16px;
      height: 100%;
    }
    .cat-icon {
      width: 36px;
      height: 36px;
      background: var(--green-50);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }
    .cat-icon i { color: var(--green-600); font-size: 17px; }
    .cat-name { font-size: 13px; font-weight: 600; color: #111827; margin-bottom: 3px; }
    .cat-sub  { font-size: 11.5px; color: #6B7280; line-height: 1.5; }

    /* ── Sidebar ────────────────────────────────── */
    .sidebar-card {
      background: #fff;
      border-radius: 14px;
      border: 1px solid #E5E7EB;
      padding: 22px;
      margin-bottom: 20px;
    }
    .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
    .stat-box {
      background: #F9FAFB;
      border-radius: 10px;
      padding: 14px 12px;
    }
    .stat-num { font-size: 42px; font-weight: 700;   }
    .stat-lbl { font-size: 15px; color: #9CA3AF; margin-top: 1px; }

    .btn-register {
      width: 100%;
      background: var(--green-600);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 12px;
       
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      margin-bottom: 10px;
      transition: background .15s;
    }
    .btn-register:hover { background: var(--green-800); color: #fff; }
    .btn-dl {
      width: 100%;
      background: transparent;
      color: #374151;
      border: 1px solid #D1D5DB;
      border-radius: 10px;
      padding: 11px;
       
      font-size: 13px;
      cursor: pointer;
      transition: background .15s;
    }
    .btn-dl:hover { background: #F3F4F6; }

    .detail-list { display: flex; flex-direction: column; gap: 12px; }
    .dl-row { display: flex; align-items: flex-start; gap: 10px; }
    .dl-icon {
      width: 34px;
      height: 34px;
      flex-shrink: 0;
      background: #F9FAFB;
      border: 1px solid #E5E7EB;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .dl-icon i { color: #6B7280; font-size: 14px; }
    .dl-lbl { font-size: 10.5px; color: #9CA3AF; }
    .dl-val  { font-size: 13px; font-weight: 600; color: #111827; }

    .divider { height: 1px; background: #F3F4F6; margin: 16px 0; }

    .bring-list { display: flex; flex-direction: column; gap: 8px; }
    .bring-item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: #4B5563; }
    .bring-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--green-400); flex-shrink: 0; }

    /* ── Event image ────────────────────────────── */
    .event-img-card {
      background: #fff;
      border-radius: 14px;
      border: 1px solid #E5E7EB;
      overflow: hidden;
      margin-bottom: 20px;
    }
    .event-img-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
    }
    .event-img-caption {
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }
    .event-img-caption-text {
      font-size: 12.5px;
      color: #6B7280;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .event-img-caption-text i { color: #9CA3AF; font-size: 13px; }
    .img-tag {
      background: var(--green-50);
      color: var(--green-800);
      font-size: 11px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
    }

    /* ── Status banner ──────────────────────────── */
    .status-banner {
      background: var(--green-50);
      border: 1px solid var(--green-100);
      border-radius: 10px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      font-size: 12.5px;
      color: var(--green-800);
      font-weight: 500;
    }
    .status-banner i { font-size: 15px; color: var(--green-600); }

    /* ── Responsive tweaks ──────────────────────── */
    @media (max-width: 768px) {
      .hero-banner { padding: 20px; }
      .hero-title  { font-size: 20px; }
      .hero-meta   { padding: 14px 20px; }
      .section-card, .sidebar-card { padding: 18px; }
    }

    :root {
      --gold:       #C49A2A;
      --gold-light: #F5E6B8;
      --gold-pale:  #FBF6E8;
      --navy:       #0F2341;
      --navy-mid:   #1A3560;
      --navy-soft:  #EEF2F8;
      --green:      #2D6A4F;
      --green-light:#D8EDDF;
      --red:        #8B2635;
      --red-light:  #F5DDE0;
      --blue:       #1D4E89;
      --blue-light: #D6E4F7;
      --teal:       #1B6CA8;
      --teal-light: #D4EAF7;
      --purple:     #553C7B;
      --purple-light:#E8E2F5;
    }

    /* ═══════════════════════════════════════════
       HERO BANNER
    ═══════════════════════════════════════════ */
    .ach-hero {
      background: var(--navy);
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
    }
    .ach-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 15% 50%, rgba(196,154,42,0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(196,154,42,0.10) 0%, transparent 45%);
    }
    .ach-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(196,154,42,0.18);
      border: 1px solid rgba(196,154,42,0.35);
      color: var(--gold);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 20px;
    }
    .ach-hero-eyebrow span {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--gold);
      display: inline-block;
    }
    .ach-hero-title {
        
      font-size: clamp(28px, 5vw, 46px);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .ach-hero-title em {
      font-style: italic;
      color: var(--gold);
    }
    .ach-hero-desc {
      font-size: 14.5px;
      color: rgba(255,255,255,0.7);
      line-height: 1.8;
      max-width: 600px;
      margin-bottom: 0;
    }
    .ach-hero-img {
      border-radius: 16px;
      overflow: hidden;
      height: 280px;
      position: relative;
      border: 3px solid rgba(196,154,42,0.3);
    }
    .ach-hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .ach-hero-img-badge {
      position: absolute;
      bottom: 14px;
      left: 14px;
      background: var(--navy);
      border: 1px solid rgba(196,154,42,0.4);
      color: var(--gold);
      font-size: 11px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 20px;
    }
 
    /* ═══════════════════════════════════════════
       STATS STRIP
    ═══════════════════════════════════════════ */
    .ach-stats {
      background: var(--navy-mid);
      padding: 0;
    }
    .stats-inner {
      display: flex;
      flex-wrap: wrap;
    }
    .stat-item {
      flex: 1;
      min-width: 150px;
      padding: 28px 20px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .stat-item:last-child { border-right: none; }
    .stat-item-num {
        
      font-size: 32px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-item-lbl {
      font-size: 11.5px;
      color: rgba(255,255,255,0.55);
      font-weight: 500;
    }
 
    /* ═══════════════════════════════════════════
       SECTION COMMON
    ═══════════════════════════════════════════ */
    .ach-section { padding: 72px 0; }
    .ach-section + .ach-section { padding-top: 0; }
 
    .section-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .section-title {
        
      font-size: clamp(22px, 4vw, 32px);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.25;
      margin-bottom: 12px;
    }
    .section-desc {
      font-size: 14px;
      color: #5A6272;
      line-height: 1.75;
      max-width: 540px;
    }
 
    /* ═══════════════════════════════════════════
       ACHIEVEMENT CARDS (icon + list style)
    ═══════════════════════════════════════════ */
    .ach-card {
      background: #fff;
      border-radius: 16px;
      border: 1px solid #E8EBF0;
      padding: 28px;
      height: 100%;
      transition: transform .2s, border-color .2s;
    }
    .ach-card:hover {
      transform: translateY(-3px);
      border-color: #D0D5E0;
    }
    .ach-card-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-size: 22px;
    }
    .ach-card-title {
      font-size: 15.5px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 16px;
    }
    .ach-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .ach-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: #4A5568;
      line-height: 1.55;
    }
    .ach-list li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      margin-top: 5px;
      flex-shrink: 0;
    }
 
    /* Colour variants */
    .ach-card--gold   .ach-card-icon-wrap { background: var(--gold-pale); }
    .ach-card--gold   .ach-card-icon-wrap i { color: var(--gold); }
    .ach-card--gold   .ach-list li::before { background: var(--gold); }
 
    .ach-card--green  .ach-card-icon-wrap { background: var(--green-light); }
    .ach-card--green  .ach-card-icon-wrap i { color: var(--green); }
    .ach-card--green  .ach-list li::before { background: var(--green); }
 
    .ach-card--red    .ach-card-icon-wrap { background: var(--red-light); }
    .ach-card--red    .ach-card-icon-wrap i { color: var(--red); }
    .ach-card--red    .ach-list li::before { background: var(--red); }
 
    .ach-card--blue   .ach-card-icon-wrap { background: var(--blue-light); }
    .ach-card--blue   .ach-card-icon-wrap i { color: var(--blue); }
    .ach-card--blue   .ach-list li::before { background: var(--blue); }
 
    .ach-card--teal   .ach-card-icon-wrap { background: var(--teal-light); }
    .ach-card--teal   .ach-card-icon-wrap i { color: var(--teal); }
    .ach-card--teal   .ach-list li::before { background: var(--teal); }
 
    .ach-card--purple .ach-card-icon-wrap { background: var(--purple-light); }
    .ach-card--purple .ach-card-icon-wrap i { color: var(--purple); }
    .ach-card--purple .ach-list li::before { background: var(--purple); }
 
    /* ═══════════════════════════════════════════
       APPRECIATION CULTURE STRIP
    ═══════════════════════════════════════════ */
    .appreciation-section {
      background: var(--navy);
      padding: 72px 0;
      position: relative;
      overflow: hidden;
    }
    .appreciation-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 80% 80%, rgba(196,154,42,0.12) 0%, transparent 50%);
    }
    .appreciation-section .section-title { color: #fff; }
    .appreciation-section .section-desc  { color: rgba(255,255,255,0.6); }
    .appreciation-section .section-eyebrow { color: var(--gold); }
 
    .appr-tile {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px;
      padding: 24px 20px;
      text-align: center;
      height: 100%;
      transition: background .2s;
    }
    .appr-tile:hover {
      background: rgba(255,255,255,0.10);
    }
    .appr-tile-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(196,154,42,0.15);
      border: 1px solid rgba(196,154,42,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }
    .appr-tile-icon i { color: var(--gold); font-size: 20px; }
    .appr-tile-name {
      font-size: 13.5px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 6px;
    }
    .appr-tile-desc {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      line-height: 1.6;
    }
 
    /* ═══════════════════════════════════════════
       COMMITMENT BANNER
    ═══════════════════════════════════════════ */
    .commitment-section {
      background: var(--gold-pale);
      border-top: 4px solid var(--gold);
      padding: 64px 0;
    }
    .commitment-icon-ring {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--gold-light);
      border: 2px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }
    .commitment-icon-ring i { color: var(--gold); font-size: 28px; }
    .commitment-title {
        
      font-size: clamp(20px, 3.5vw, 28px);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 14px;
    }
    .commitment-text {
      font-size: 14.5px;
      color: #5A4A1A;
      line-height: 1.8;
      max-width: 620px;
      margin: 0 auto;
    }
    .commitment-pills {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 28px;
    }
    .commitment-pill {
      background: #fff;
      border: 1px solid var(--gold);
      color: var(--navy);
      font-size: 12.5px;
      font-weight: 600;
      padding: 7px 18px;
      border-radius: 20px;
    }
 
    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    @media (max-width: 768px) {
      .ach-hero { padding: 48px 0 40px; }
      .ach-hero-img { height: 200px; margin-top: 32px; }
      .stat-item { padding: 20px 16px; }
      .ach-section { padding: 48px 0; }
    }

    :root {
      --emerald:   #0d6e4f;
      --emerald-light: #e6f5ef;
      --emerald-mid: #1a8a63;
      --gold:      #c9913a;
      --gold-light:#fdf3e3;
      --dark:      #12201a;
      --muted:     #5a6e65;
      --surface:   #f7faf8;
      --white:     #ffffff;
      --radius:    14px;
      --shadow:    0 4px 28px rgba(13,110,79,.09);
    }
 
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
    h1, h2, h3, h4 {    }
 
    /* ── BREADCRUMB ── */
    .breadcrumb-bar {
      background: var(--emerald);
      padding: .6rem 0;
    }
    .breadcrumb-bar .breadcrumb { margin: 0; }
    .breadcrumb-bar .breadcrumb-item a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 13px; }
    .breadcrumb-bar .breadcrumb-item.active { color: #fff; font-size: 13px; }
    .breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }
 
    /* ── HERO ── */
    .admission-hero {
      background: linear-gradient(135deg, var(--emerald) 0%, #09503a 60%, #072e22 100%);
      padding: 80px 0 70px;
      position: relative;
      overflow: hidden;
    }
    .admission-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.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");
    }
    .admission-hero .badge-pill {
      background: var(--gold-light);
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 5px 16px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .05em;
      display: inline-block;
      margin-bottom: 1rem;
    }
    .admission-hero h1 {
      color: #fff;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .admission-hero p {
      color: rgba(255,255,255,.8);
      font-size: 1.05rem;
      max-width: 560px;
    }
    .hero-stat {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: var(--radius);
      padding: 1rem 1.4rem;
      color: #fff;
      text-align: center;
      backdrop-filter: blur(6px);
    }
    .hero-stat .num { font-size: 1.8rem; font-weight: 700;    }
    .hero-stat .lbl { font-size: 12px; opacity: .75; }
 
    /* ── SECTION TITLES ── */
    .section-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--emerald);
      border-left: 3px solid var(--gold);
      padding-left: 10px;
      margin-bottom: .6rem;
    }
    .section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--dark); }
 
    /* ── PROCESS STEPS ── */
    .steps-section { padding: 80px 0; background: var(--surface); }
    .step-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem 1.6rem;
      box-shadow: var(--shadow);
      position: relative;
      border-top: 3px solid var(--emerald);
      height: 100%;
      transition: transform .25s;
    }
    .step-card:hover { transform: translateY(-4px); }
    .step-num {
      width: 42px; height: 42px;
      background: var(--emerald);
      color: #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 15px;
      margin-bottom: 1rem;
    }
    .step-card h5 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: .4rem; }
    .step-card p { font-size: 14px; color: var(--muted); margin: 0; }
    .step-connector {
      position: absolute; top: 50%; right: -18px;
      width: 36px; height: 2px;
      background: var(--emerald-light);
      z-index: 1;
    }
    .step-connector::after {
      content: '';
      position: absolute; right: -5px; top: -4px;
      border: 5px solid transparent;
      border-left-color: var(--emerald);
    }
 
    /* ── CLASSES TABLE ── */
    .classes-section { padding: 80px 0; }
    .cls-table { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
    .cls-table thead { background: var(--emerald); color: #fff; }
    .cls-table thead th { font-weight: 500; font-size: 14px; padding: .85rem 1.2rem; border: none; }
    .cls-table tbody td { padding: .75rem 1.2rem; font-size: 14px; vertical-align: middle; }
    .cls-table tbody tr:hover td { background: var(--emerald-light); }
    .cls-table .badge-open { background: #d4edda; color: #155724; border-radius: 20px; padding: 3px 12px; font-size: 12px; }
    .cls-table .badge-limited { background: #fff3cd; color: #856404; border-radius: 20px; padding: 3px 12px; font-size: 12px; }
    .cls-table .badge-closed { background: #f8d7da; color: #721c24; border-radius: 20px; padding: 3px 12px; font-size: 12px; }
 
    /* ── FORM ── */
    .form-section { padding: 80px 0; background: var(--dark); }
    .form-card {
      background: var(--white);
      border-radius: 20px;
      padding: 2.5rem;
      box-shadow: 0 20px 60px rgba(0,0,0,.25);
    }
    .form-card .form-label { font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 5px; }
    .form-card .form-control, .form-card .form-select {
      border: 1.5px solid #dde5e0;
      border-radius: 9px;
      padding: .65rem 1rem;
      font-size: 14px;
      color: var(--dark);
      transition: border-color .2s, box-shadow .2s;
    }
    .form-card .form-control:focus, .form-card .form-select:focus {
      border-color: var(--emerald);
      box-shadow: 0 0 0 3px rgba(13,110,79,.12);
    }
    .btn-apply {
      background: var(--emerald);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: .75rem 2rem;
      font-weight: 500;
      font-size: 15px;
      transition: background .2s, transform .15s;
      width: 100%;
    }
    .btn-apply:hover { background: var(--emerald-mid); transform: translateY(-1px); color: #fff; }
    .form-info-panel {
      background: linear-gradient(145deg, var(--emerald) 0%, #07503a 100%);
      border-radius: 20px;
      padding: 2.5rem;
      color: #fff;
      height: 100%;
    }
    .form-info-panel h3 { font-size: 1.6rem; margin-bottom: 1rem; }
    .info-item { display: flex; gap: 12px; margin-bottom: 1.2rem; }
    .info-item .icon {
      width: 38px; height: 38px; min-width: 38px;
      background: rgba(255,255,255,.15);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
    }
    .info-item .txt strong { display: block; font-size: 13px; font-weight: 600; }
    .info-item .txt span { font-size: 12px; opacity: .8; }
    .deadline-box {
      background: var(--gold);
      border-radius: 10px;
      padding: 1rem 1.2rem;
      margin-top: 1.5rem;
      display: flex; align-items: center; gap: 12px;
    }
    .deadline-box i { font-size: 22px; }
    .deadline-box strong { display: block; font-size: 13px; }
    .deadline-box span { font-size: 12px; opacity: .9; }
 
    /* ── DOCUMENTS ── */
    .docs-section { padding: 80px 0; background: var(--surface); }
    .doc-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.2rem 1.4rem;
      display: flex; align-items: center; gap: 14px;
      box-shadow: var(--shadow);
      transition: transform .2s;
    }
    .doc-card:hover { transform: translateX(4px); }
    .doc-icon {
      width: 44px; height: 44px; min-width: 44px;
      background: var(--emerald-light);
      color: var(--emerald);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }
    .doc-card h6 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14px; margin: 0 0 2px; }
    .doc-card p { font-size: 12px; color: var(--muted); margin: 0; }
 
    /* ── FAQ ── */
    .faq-section { padding: 80px 0; }
    .accordion-button { font-size: 15px; font-weight: 500; color: var(--dark); }
    .accordion-button:not(.collapsed) { color: var(--emerald); background: var(--emerald-light); box-shadow: none; }
    .accordion-button::after { filter: none; }
    .accordion-item { border: 1.5px solid #dde5e0; border-radius: var(--radius) !important; margin-bottom: 10px; overflow: hidden; }
    .accordion-button:focus { box-shadow: none; }
    .accordion-body { font-size: 14px; color: var(--muted); }
 
    /* ── CTA ── */
    .cta-section {
      /* background: linear-gradient(135deg, var(--gold) 0%, #b07a28 100%); */
      padding: 60px 0;
      text-align: center;
    }
    .cta-section h2 { color: #fff; margin-bottom: .8rem; }
    .cta-section p { color: rgba(255,255,255,.9); margin-bottom: 1.5rem; }
    .btn-cta-white {
      background: #fff !important; 
      color: var(--gold);
      border: none; border-radius: 10px;
      padding: .75rem 2rem; font-weight: 600;
      transition: transform .2s;
    }
    .btn-cta-white:hover { transform: scale(1.03); color: var(--gold); }
    .btn-cta-outline {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,.6);
      border-radius: 10px; padding: .75rem 2rem;
      font-weight: 500; margin-left: 12px;
      transition: background .2s;
    }
    .btn-cta-outline:hover { background: rgba(255,255,255,.15); color: #fff; }
 
    @media (max-width: 767px) {
      .step-connector { display: none; }
      .form-info-panel { margin-top: 2rem; }
    }

    /* ── Breadcrumb nav ─────────────────────────────────── */
    .breadcrumb-bar {
      background: var(--emerald);
      padding: 10px 0;
      font-size: 0.82rem;
      letter-spacing: .04em;
    }
    .breadcrumb-bar a { color: var(--gold-light); text-decoration: none; }
    .breadcrumb-bar a:hover { color: #fff; }
    .breadcrumb-bar .sep { color: rgba(255,255,255,.4); margin: 0 6px; }
    .breadcrumb-bar .current { color: rgba(255,255,255,.7); }
 
    /* ── Hero banner ────────────────────────────────────── */
    .contact-hero {
      background: linear-gradient(135deg, var(--emerald) 0%, #0f3d2c 100%);
      padding: 72px 0 60px;
      position: relative;
      overflow: hidden;
    }
    .contact-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 80% 20%, rgba(201,168,76,.18) 0%, transparent 55%),
        radial-gradient(circle at 10% 80%, rgba(201,168,76,.10) 0%, transparent 45%);
    }
    .contact-hero .label {
      font-family: 'DM Sans', sans-serif;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .contact-hero h1 {
        
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .contact-hero h1 em { color: var(--gold); font-style: normal; }
    .contact-hero p {
      color: rgba(255,255,255,.72);
      font-size: 1.05rem;
      max-width: 480px;
      line-height: 1.7;
    }
 
    /* ── Quick-info pills ───────────────────────────────── */
    .info-pills { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
    .info-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 50px;
      padding: 8px 18px;
      color: #fff;
      font-size: .88rem;
    }
    .info-pill i { color: var(--gold); font-size: 1rem; }
 
    /* ── Section wrapper ────────────────────────────────── */
    .contact-section { padding: 72px 0 80px; }
 
    /* ── Card shell ─────────────────────────────────────── */
    .contact-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 4px 32px rgba(26,92,69,.08), 0 1px 4px rgba(0,0,0,.04);
      overflow: hidden;
    }
 
    /* ── Form side ──────────────────────────────────────── */
    .form-side { padding: 44px 40px; }
    .form-side .section-tag {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--emerald);
      margin-bottom: 6px;
    }
    .form-side h2 {
        
      font-size: 2rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 24px;
    }
 
    .form-group { margin-bottom: 20px; }
    label.form-label {
      font-size: .82rem;
      font-weight: 600;
      color: #374151;
      margin-bottom: 6px;
      letter-spacing: .02em;
    }
    .form-control, .form-select {
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 11px 14px;
      font-family: 'DM Sans', sans-serif;
      font-size: .93rem;
      color: var(--ink);
      background: var(--cream);
      transition: border-color .2s, box-shadow .2s;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--emerald);
      box-shadow: 0 0 0 3px rgba(26,92,69,.10);
      background: #fff;
    }
    textarea.form-control { resize: none; min-height: 120px; }
 
    .btn-submit {
      background: var(--emerald);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 13px 32px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: .95rem;
      letter-spacing: .02em;
      transition: background .2s, transform .15s, box-shadow .2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-submit:hover {
      background: var(--emerald-mid);
      box-shadow: 0 6px 20px rgba(26,92,69,.28);
      transform: translateY(-1px);
      color: #fff;
    }
    .btn-submit i { font-size: 1rem; }
 
    /* ── Info side ──────────────────────────────────────── */
    .info-side {
      background: linear-gradient(160deg, var(--emerald) 0%, #0f3d2c 100%);
      padding: 44px 36px;
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
    }
    .info-side::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: rgba(201,168,76,.12);
      pointer-events: none;
    }
    .info-side .section-tag {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .info-side h3 {
        
      font-size: 1.8rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 28px;
    }
 
    .contact-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 24px;
    }
    .contact-item .icon-box {
      width: 42px; height: 42px;
      border-radius: 10px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-item .icon-box i { color: var(--gold); font-size: 1.1rem; }
    .contact-item .detail-title {
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
      margin-bottom: 3px;
    }
    .contact-item .detail-val {
      color: #fff;
      font-size: .93rem;
      line-height: 1.55;
    }
    .contact-item .detail-val a { color: var(--gold-light); text-decoration: none; }
    .contact-item .detail-val a:hover { color: #fff; }
 
    .divider-line {
      border-top: 1px solid rgba(255,255,255,.12);
      margin: 28px 0;
    }
 
    /* social */
    .social-title {
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
      margin-bottom: 14px;
    }
    .social-links { display: flex; gap: 10px; }
    .social-btn {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.14);
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 1rem;
      text-decoration: none;
      transition: background .2s, transform .15s;
    }
    .social-btn:hover {
      background: var(--gold);
      color: var(--ink);
      transform: translateY(-2px);
    }
 
    /* ── Campus cards ───────────────────────────────────── */
    .campus-section { padding: 0 0 72px; }
    .campus-label {
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--emerald);
      margin-bottom: 8px;
    }
    .campus-section h2 {
        
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 36px;
    }
 
    .campus-card {
      background: #fff;
      border-radius: 16px;
      border: 1.5px solid var(--border);
      overflow: hidden;
      transition: box-shadow .2s, transform .2s;
    }
    .campus-card:hover {
      box-shadow: 0 8px 32px rgba(26,92,69,.12);
      transform: translateY(-3px);
    }
    .campus-map {
      height: 200px;
      background: #e8f0ec;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .campus-map iframe {
      width: 100%; height: 100%;
      border: none;
      filter: saturate(.8);
    }
    .campus-badge {
      position: absolute;
      top: 12px; left: 12px;
      background: var(--emerald);
      color: #fff;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .08em;
      padding: 4px 12px;
      border-radius: 50px;
    }
    .campus-body { padding: 22px 24px 26px; }
    .campus-body h5 {
        
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--ink);
    }
    .campus-meta { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
    .campus-meta-item {
      display: flex; gap: 8px; align-items: flex-start;
      font-size: .86rem; color: var(--muted);
    }
    .campus-meta-item i { color: var(--emerald); margin-top: 2px; flex-shrink: 0; }
    .btn-dir {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--cream);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 8px 18px;
      font-size: .84rem;
      font-weight: 600;
      color: var(--emerald);
      text-decoration: none;
      transition: background .2s, border-color .2s;
    }
    .btn-dir:hover { background: var(--emerald); color: #fff; border-color: var(--emerald); }
 
    /* ── FAQ strip ──────────────────────────────────────── */
    .faq-strip {
      background: var(--emerald);
      padding: 52px 0;
    }
    .faq-strip .label {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .faq-strip h2 {
        
      font-size: 1.9rem;
      color: #fff;
      font-weight: 700;
      margin-bottom: 32px;
    }
    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,.12);
      padding: 16px 0;
    }
    .faq-q {
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .95rem;
      user-select: none;
    }
    .faq-q i { color: var(--gold); transition: transform .25s; flex-shrink: 0; }
    .faq-q.open i { transform: rotate(45deg); }
    .faq-a {
      color: rgba(255,255,255,.68);
      font-size: .9rem;
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease, padding .3s;
    }
    .faq-a.open { max-height: 200px; padding-top: 10px; }
 
    /* ── Responsive tweaks ──────────────────────────────── */
    @media (max-width: 768px) {
      .form-side { padding: 30px 22px; }
      .info-side  { padding: 30px 22px; }
    }

    :root {
      --emerald:    #1a5c45;
      --emerald-dk: #0f3d2c;
      --gold:       #c9a84c;
      --gold-light: #e8c97e;
      --cream:      #faf8f3;
      --ink:        #1a1a1a;
      --muted:      #6b7280;
      --border:     #e4ddd0;
    }
 
     
 
    /* ── Modal backdrop ─────────────────────── */
    .modal-backdrop.show { backdrop-filter: blur(4px); background: rgba(15,30,22,.55); }
 
    /* ── Modal dialog ───────────────────────── */
    .modal-dialog {
      max-width: 520px;
      margin: auto;
    }
    .modal.fade .modal-dialog {
      transform: translateY(24px) scale(.97);
      transition: transform .28s cubic-bezier(.34,1.3,.64,1), opacity .22s;
    }
    .modal.show .modal-dialog {
      transform: translateY(0) scale(1);
    }
 
    /* ── Modal content shell ────────────────── */
    .modal-content {
      border: none;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0,0,0,.22);
    }
 
    /* ── Left accent strip + header ────────── */
    .modal-header-custom {
      background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dk) 100%);
      padding: 28px 30px 26px;
      position: relative;
      overflow: hidden;
    }
    .modal-header-custom::before {
      content: '';
      position: absolute;
      top: -50px; right: -50px;
      width: 180px; height: 180px;
      border-radius: 50%;
      background: rgba(201,168,76,.14);
      pointer-events: none;
    }
    .modal-header-custom::after {
      content: '';
      position: absolute;
      bottom: -30px; left: 30px;
      width: 100px; height: 100px;
      border-radius: 50%;
      background: rgba(255,255,255,.05);
      pointer-events: none;
    }
 
    .mh-eyebrow {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 5px;
    }
    .mh-title {
        
      font-size: 1.65rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 0;
    }
    .mh-sub {
      font-size: .83rem;
      color: rgba(255,255,255,.65);
      margin-top: 6px;
      line-height: 1.5;
    }
 
    .btn-close-custom {
      position: absolute;
      top: 16px; right: 16px;
      width: 32px; height: 32px;
      border-radius: 8px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: .95rem;
      cursor: pointer;
      transition: background .18s;
      line-height: 1;
      padding: 0;
    }
    .btn-close-custom:hover { background: rgba(255,255,255,.25); }
 
    /* ── Form body ──────────────────────────── */
    .modal-body-custom {
      background: var(--cream);
      padding: 28px 30px 30px;
    }
 
    .qe-label {
      font-size: .78rem;
      font-weight: 600;
      color: #374151;
      letter-spacing: .02em;
      margin-bottom: 5px;
      display: block;
    }
    .qe-control {
      width: 100%;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 10px 13px;
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem;
      color: var(--ink);
      background: #fff;
      transition: border-color .2s, box-shadow .2s;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
    }
    .qe-control:focus {
      border-color: var(--emerald);
      box-shadow: 0 0 0 3px rgba(26,92,69,.10);
    }
    .qe-select-wrap {
      position: relative;
    }
    .qe-select-wrap::after {
      content: '\F282';
      font-family: 'bootstrap-icons';
      position: absolute;
      right: 12px; top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      font-size: .85rem;
      pointer-events: none;
    }
    .qe-group { margin-bottom: 16px; }
    .qe-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
 
    /* phone prefix */
    .qe-phone-wrap { position: relative; }
    .qe-phone-prefix {
      position: absolute;
      left: 12px; top: 50%;
      transform: translateY(-50%);
      font-size: .88rem;
      font-weight: 600;
      color: var(--muted);
      pointer-events: none;
      user-select: none;
    }
    .qe-phone-wrap .qe-control { padding-left: 38px; }
 
    /* grade radio pills */
    .qe-pills { display: flex; flex-wrap: wrap; gap: 7px; }
    .qe-pill input { display: none; }
    .qe-pill label {
      font-size: .78rem;
      font-weight: 500;
      padding: 5px 13px;
      border-radius: 50px;
      border: 1.5px solid var(--border);
      background: #fff;
      color: var(--muted);
      cursor: pointer;
      transition: all .18s;
      user-select: none;
    }
    .qe-pill input:checked + label {
      background: var(--emerald);
      border-color: var(--emerald);
      color: #fff;
    }
    .qe-pill label:hover { border-color: var(--emerald); color: var(--emerald); }
    .qe-pill input:checked + label:hover { color: #fff; }
 
    /* ── Submit ─────────────────────────────── */
    .btn-qe-submit {
      width: 100%;
      background: var(--emerald);
      color: #fff;
      border: none;
      border-radius: 11px;
      padding: 13px;
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem;
      font-weight: 600;
      letter-spacing: .02em;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      cursor: pointer;
      transition: background .2s, box-shadow .2s, transform .15s;
      margin-top: 6px;
    }
    .btn-qe-submit:hover {
      background: var(--emerald-dk);
      box-shadow: 0 6px 20px rgba(26,92,69,.30);
      transform: translateY(-1px);
    }
    .btn-qe-submit i { font-size: 1rem; }
 
    /* ── Privacy note ───────────────────────── */
    .qe-privacy {
      text-align: center;
      font-size: .74rem;
      color: var(--muted);
      margin-top: 12px;
      line-height: 1.5;
    }
    .qe-privacy i { color: var(--emerald); margin-right: 3px; }
 
    /* ── Success state ──────────────────────── */
    .qe-success {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 30px 36px;
      background: var(--cream);
    }
    .qe-success-icon {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: #eaf4f0;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .qe-success-icon i { font-size: 1.8rem; color: var(--emerald); }
    .qe-success h4 {
        
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 8px;
    }
    .qe-success p {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 320px;
    }
 
    /* ── Demo page background ───────────────── */
    .demo-trigger-wrap {
      text-align: center;
    }
    .demo-trigger-wrap p {
      font-size: .85rem;
      color: #777;
      margin-top: 14px;
    }
    .btn-demo {
      background: var(--emerald);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 12px 28px;
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex; align-items: center; gap: 8px;
      transition: background .2s;
    }
    .btn-demo:hover { background: var(--emerald-dk); }