:root {
  --wa-green: #0b6b3a;
  --wa-green-dark: #053018;
  --wa-teal: #00a896;
  --wa-gold: #f6b700;
  --wa-sky: #21a1e2;
  --wa-soft-bg: #f4fbf7;
  --wa-text-muted: #5c6a61;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--wa-green-dark);
  background: #ffffff;
}
/* Fix Font Awesome brand icons */
.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
}

/* HEADER */

.wa-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e4f1e8;
}

.wa-header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo image sizing */
.wa-logo-link {
  display: flex;
  align-items: center;
}

.wa-logo-link img {
  height: 64px;          /* adjust this number if you want bigger/smaller */
  width: auto;
  display: block;
}

/* On small screens, make it a bit smaller */
@media (max-width: 600px) {
  .wa-logo-link img {
    height: 48px;
  }
}

.social-icon {
  color: #0b6b3a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, color .2s ease;
}

.social-icon:hover {
  color: #1cb388;
  transform: translateY(-2px);
}

.social-icon svg {
  display: block;
}

.wa-nav {
  display: flex;
  gap: 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.wa-nav a {
  text-decoration: none;
  color: var(--wa-green-dark);
  position: relative;
}

/* HEADER SOCIAL ICONS FIX */
.header-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-socials a {
  color: #0b6b3a;          /* Wendy green */
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;          /* prevents vertical weirdness */
  -webkit-tap-highlight-color: transparent;
}

.header-socials a svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.header-socials a:hover {
  color: #1cb388;
}

@media (max-width: 768px) {
  .header-socials {
    justify-content: center;
    margin-top: 8px;
  }
}



.wa-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wa-green), var(--wa-teal));
  transition: width 0.25s ease;
}

.wa-nav a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */

.wa-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.wa-nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--wa-green-dark);
  border-radius: 999px;
}

@media (max-width: 800px) {
  .wa-nav {
    position: fixed;
    inset: 56px 0 auto 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 1.25rem 1.2rem;
    gap: 0.6rem;
    border-bottom: 1px solid #e4f1e8;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .wa-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .wa-nav-toggle {
    display: inline-flex;
  }
}

/* HERO */

/* ===============================
   HERO – CONTAINED (PREMIUM LOOK)
=============================== */

.wa-hero-contained{
  padding: 2rem 1rem 2.5rem;
  background: #ffffff;
}

.wa-hero-container{
  max-width: 1200px;
  margin: 0 auto;
}

.wa-hero-slider{
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
  background: #000;
}

.wa-hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.wa-hero-slide.is-active{
  opacity: 1;
  z-index: 1;
}

/* MOBILE TUNING */
@media (max-width: 768px){
  .wa-hero-slider{
    height: 300px;
    border-radius: 14px;
  }

  .wa-hero-contained{
    padding: 1.4rem .9rem 2rem;
  }
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.wa-btn-primary {
  background: #ffffff;
  color: var(--wa-green-dark);
  border-color: #ffffff;
}

.wa-btn-primary:hover {
  opacity: 0.9;
}

.wa-btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}
/* SECTIONS */

.wa-section {
  padding: 2.8rem 0;
}

.wa-section-alt {
  background: var(--wa-soft-bg);
}

.wa-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.wa-section-head {
  margin-bottom: 1.7rem;
}

.wa-pill {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 0.18rem 0.78rem;
  border-radius: 999px;
  background: #e9f7ee;
  color: var(--wa-green);
}

.wa-h2 {
  font-size: 1.8rem;
  margin: 0.3rem 0 0.5rem;
}

.wa-lead {
  font-size: 0.98rem;
  color: var(--wa-text-muted);
  max-width: 720px;
}

/* GRID / CARDS */

.wa-grid {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .wa-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.wa-cards {
  margin-top: 1.4rem;
}

.wa-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1rem 1.15rem;
  border: 1px solid #e4f0e7;
  box-shadow: 0 10px 26px rgba(6, 70, 37, 0.05);
  position: relative;
  overflow: hidden;
}

.wa-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(246, 183, 0, 0.2), transparent 52%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.wa-card:hover::before {
  opacity: 1;
}

.wa-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--wa-green);
  margin-bottom: 0.3rem;
}

.wa-card h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  color: var(--wa-green-dark);
}

.wa-card p {
  font-size: 0.86rem;
  margin: 0;
  color: var(--wa-text-muted);
}

/* === Solid Colour Cards === */

.wa-cards .wa-card:nth-child(1) {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}

.wa-cards .wa-card:nth-child(1) .wa-card-label,
.wa-cards .wa-card:nth-child(1) h3,
.wa-cards .wa-card:nth-child(1) p {
  color: #fff;
}

.wa-cards .wa-card:nth-child(2) {
  background: #21a1e2; /* Sky Blue */
  color: #fff;
  border-color: #21a1e2;
}

.wa-cards .wa-card:nth-child(2) .wa-card-label,
.wa-cards .wa-card:nth-child(2) h3,
.wa-cards .wa-card:nth-child(2) p {
  color: #fff;
}

.wa-cards .wa-card:nth-child(3) {
  background: #f6b700; /* School Gold */
  color: #242814;
  border-color: #f6b700;
}

.wa-cards .wa-card:nth-child(3) .wa-card-label,
.wa-cards .wa-card:nth-child(3) h3,
.wa-cards .wa-card:nth-child(3) p {
  color: #242814;
}

/* Hover enhancement */
.wa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}



/* SPLIT / INFRA */

.wa-split {
  display: grid;
  gap: 1.7rem;
}

@media (min-width: 900px) {
  .wa-split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: start;
  }
}

.wa-tag-block {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  background: #fdf7e7;
  border-radius: 0.9rem;
  border-left: 4px solid var(--wa-gold);
  font-size: 0.86rem;
  color: #6c5a1a;
}

.wa-list {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
}

.wa-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: #4b5850;
}

.wa-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--wa-green);
  font-size: 1.1rem;
}

.wa-infra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.4rem;
}

/* shared style */
.wa-infra-item {
  border-radius: 0.9rem;
  padding: 0.7rem 0.8rem;
  font-size: 0.86rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* soft tints per item */
.wa-infra-item:nth-child(1) {
  background: #e9fef3;             /* mint */
  border-color: #b6e7c7;
}

.wa-infra-item:nth-child(2) {
  background: #e8f7ff;             /* light blue */
  border-color: #b8ddf4;
}

.wa-infra-item:nth-child(3) {
  background: #fdf6e4;             /* warm gold tint */
  border-color: #f2d79a;
}

.wa-infra-item:nth-child(4) {
  background: #f3ecff;             /* soft violet/teal vibe */
  border-color: #d3c5ff;
}

/* hover */
.wa-infra-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(6, 70, 37, 0.12);
}

.wa-infra-title {
  font-weight: 600;
  font-size: 0.86rem;
  margin-bottom: 0.2rem;
  color: #052816;
}


/* GALLERY STRIP */

.wa-gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
}

.wa-gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e1eee7;
  min-height: 120px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.wa-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ADMISSIONS CTA */

.wa-cta {
  background: linear-gradient(120deg, var(--wa-green), #1cb388);
  border-radius: 1.3rem;
  padding: 1.7rem 1.5rem;
  display: grid;
  gap: 1rem;
  color: #ffffff;
}

@media (min-width: 768px) {
  .wa-cta {
    grid-template-columns: 2.2fr 1fr;
    align-items: center;
  }
}

.wa-cta h2 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
}

.wa-cta p {
  margin: 0;
  font-size: 0.9rem;
  color: #e3fbf1;
}

.wa-cta-note {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #d1f5e6;
}

.wa-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-start;
}

.wa-btn-light {
  background: #ffffff;
  color: var(--wa-green-dark);
  border-color: transparent;
}

.wa-btn-light:hover {
  opacity: 0.95;
}

.wa-btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
}

/* FOOTER */

.wa-footer {
  background: #0f1f18;
  color: #d1e3da;
  padding-top: 2rem;
  margin-top: 1rem;
}

.wa-footer-grid {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .wa-footer-grid {
    grid-template-columns: 2fr 1.1fr 1.1fr;
  }
}

.wa-footer h3,
.wa-footer h4 {
  margin: 0 0 0.4rem;
}

.wa-footer p {
  margin: 0 0 0.6rem;
  font-size: 0.88rem;
}

.wa-footer a {
  color: #f2fffb;
  text-decoration: none;
}

.wa-footer a:hover {
  text-decoration: underline;
}

.wa-footer-note {
  font-size: 0.78rem;
  color: #9bb2a6;
}

.wa-footer-links a {
  display: inline-block;
  margin-bottom: 0.25rem;
}

.wa-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.4rem;
  padding: 0.8rem 1.25rem 1.3rem;
  font-size: 0.78rem;
  text-align: center;
  color: #9bb2a6;
}

/* REVEAL ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* === Lightbox for Campus Life images === */

.wa-lightbox {
  position: fixed;
  inset: 0;
  display: none;              /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.wa-lightbox.is-open {
  display: flex;
}

.wa-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
}

.wa-lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.6);
}

.wa-lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
}

.wa-lightbox-close {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Explore Wendy Academy image grid === */

.wa-focus-section {
  background: #f9fcff; /* very light tint so section feels separate */
}

.wa-focus-grid {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 768px) {
  .wa-focus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.wa-focus-item {
  display: flex;
  flex-direction: column;
}

.wa-focus-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.wa-focus-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.55), rgba(6, 70, 37, 0.6));
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.wa-focus-text {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 1;
}

.wa-focus-text h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.wa-focus-text p {
  margin: 0;
  font-size: 0.86rem;
}

/* Hover / focus effect on desktop */
@media (hover: hover) and (pointer: fine) {
  .wa-focus-card:hover .wa-focus-overlay,
  .wa-focus-card:focus-visible .wa-focus-overlay {
    opacity: 0.95;
  }

  .wa-focus-card:hover .wa-focus-text p,
  .wa-focus-card:focus-visible .wa-focus-text p {
    text-decoration: underline;
  }
}

/* Mobile text below images (no hover on touch) */
.wa-focus-desc-mobile {
  display: none;
  margin-top: 0.4rem;
}

.wa-focus-desc-mobile h3 {
  margin: 0 0 0.1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--wa-green-dark);
}

.wa-focus-desc-mobile p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--wa-text-muted);
}

@media (max-width: 767px) {
  .wa-focus-card {
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  }

  .wa-focus-text p {
    display: none; /* keep only heading over image on small screens */
  }

  .wa-focus-desc-mobile {
    display: block; /* show full text below image (like Chintels) */
  }
}

/* Final Principal Card Layout - Solid Blue Theme */

.wa-section-principal {
  background: #f3f9fb;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.wa-principal-card {
  background: #21a1e2;
  border-radius: 1.6rem;
  padding: 2rem 2.2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  color: #ffffff;
}

.wa-principal-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .wa-principal-grid {
    grid-template-columns: 0.9fr 1.5fr;
    align-items: center;
  }
}

.wa-principal-photo-wrap {
  width: 200px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  border: 4px solid #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 4px 22px rgba(0,0,0,0.22);
}

.wa-principal-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wa-principal-meta {
  text-align: left;
}

.wa-principal-name {
  margin: 0.1rem 0 0.3rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.wa-principal-role {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

/* Quote and text formatting */

.wa-principal-quote {
  font-style: italic;
  margin-bottom: 1.2rem;
  color: #ffffff;
  padding-left: 1.8rem;
  position: relative;
}

.wa-principal-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -0.4rem;
  font-size: 2.8rem;
  color: rgba(255,255,255,0.35);
}

.wa-principal-quote span {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.35rem;
  font-style: normal;
  color: rgba(255,255,255,0.8);
}

.wa-principal-text p {
  color: rgba(255,255,255,0.95);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

/* Mobile tweaks */

@media (max-width: 700px) {
  .wa-principal-grid {
    text-align: center;
  }
  .wa-principal-photo-wrap {
    margin: 0 auto 1rem;
  }
  .wa-principal-meta {
    text-align: center;
  }
}

/* === Testimonial / Video Section === */

.wa-section-testimonial {
  background: #ffffff;
  padding-top: 2.5rem;
  padding-bottom: 2.8rem;
  border-top: 1px solid #e4f0e7;
}

.wa-testimonial-layout {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

@media (min-width: 900px) {
  .wa-testimonial-layout {
    grid-template-columns: 1.1fr 1.1fr;
  }
}

.wa-testimonial-copy .wa-h2 {
  margin-bottom: 0.5rem;
}

.wa-testimonial-quote-text {
  margin: 1rem 0 0.3rem;
  font-style: italic;
  color: #36443c;
}

.wa-testimonial-author {
  margin: 0;
  font-size: 0.86rem;
  color: var(--wa-text-muted);
}

/* Video frame */

.wa-testimonial-video-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wa-video-frame {
  position: relative;
  width: 100%;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  background: #000;
  transform-origin: center;
  animation: wa-video-float 7s ease-in-out infinite;
}

.wa-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sound toggle button */

.wa-video-sound-toggle {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.wa-video-sound-toggle:hover {
  background: rgba(0, 0, 0, 0.9);
}

.wa-video-note {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--wa-text-muted);
}

/* Subtle float animation for video card */

@keyframes wa-video-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Mobile tweaks */

@media (max-width: 700px) {
  .wa-testimonial-layout {
    grid-template-columns: 1fr;
  }
  .wa-testimonial-video-col {
    width: 100%;
  }
}



/* === Achievements & Results (Medal Wall) === */

.wa-section-achievements {
  background: #f6b700; /* Solid school gold-orange */
  padding-top: 2.8rem;
  padding-bottom: 3rem;
}

.wa-achievements-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.6rem;
}

@media (min-width: 768px) {
  .wa-achievements-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.wa-achievement-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.2rem 1rem 1.3rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #dcefe4;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-achievement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(255,255,255,0.5), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.wa-achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.wa-achievement-card:hover::before {
  opacity: 1;
}

/* Medal circles */

.wa-achievement-medal {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  margin: 0 auto 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.medal-gold {
  background: linear-gradient(135deg, #f6b700, #ffda55);
}

.medal-green {
  background: linear-gradient(135deg, #0b6b3a, #1cb388);
}

.medal-blue {
  background: linear-gradient(135deg, #21a1e2, #55c3ff);
}

.medal-teal {
  background: linear-gradient(135deg, #00a896, #02c39a);
}

.wa-medal-icon {
  font-size: 1.6rem;
}

/* Counter text */

.wa-achievement-count {
  font-size: 1.5rem;
  font-weight: 700;
  color: #053018;
  margin-bottom: 0.3rem;
}

.wa-achievement-count .wa-counter {
  font-variant-numeric: tabular-nums;
}

.wa-achievement-label {
  margin: 0;
  font-size: 0.85rem;
  color: #053018;
}

/* Mobile tweak */
@media (max-width: 767px) {
  .wa-achievement-card {
    padding: 1rem 0.9rem 1.1rem;
  }
}

/* === Top News Bar === */

.wa-newsbar {
  background: #d82424; /* Chintels-style red bar */
  color: #ffffff;
  font-size: 0.85rem;
}

/* Pause news ticker on hover */
.wa-newsbar:hover .wa-news-ticker {
  animation-play-state: paused;
  cursor: pointer;
}


.wa-newsbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.25rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  overflow: hidden;
}

.wa-news-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
}

.wa-news-items {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  flex: 1;
}

.wa-news-items a,
.wa-news-items span {
  color: #ffffff;
  text-decoration: none;
}

.wa-news-items a:hover {
  text-decoration: underline;
}

/* scrolling effect */
.wa-news-ticker {
  display: inline-block;
  padding-left: 100%;
  animation: wa-news-scroll 18s linear infinite;
}

@keyframes wa-news-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.wa-news-loading {
  opacity: 0.8;
  font-style: italic;
}



/* --- Multi-level menu styles (added) --- */
.wa-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.wa-menu-item { position: relative; }
.wa-menu a, .wa-menu button.wa-subtoggle {
  display: inline-block;
  padding: 0.5rem 0.5rem;
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
.wa-submenu {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  min-width: 220px;
  background: white;
  box-shadow: 0 6px 18px rgba(10,20,30,0.12);
  border-radius: 8px;
  display: none;
  z-index: 50;
}
.wa-submenu li { padding: 0; }
.wa-submenu a { display: block; padding: 0.5rem 0.85rem; }

/* show on hover (desktop) */
@media (hover: hover) and (min-width: 700px) {
  .wa-menu-item:hover > .wa-submenu { display: block; }
  .wa-menu { gap: 1.25rem; }
  .wa-nav { display: block !important; }
}

/* Mobile / small screens: stack menu vertically */
@media (max-width: 699px) {
  .wa-nav { display: none; }
  .wa-nav.is-open { display: block; }
}
  .wa-menu {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1rem;
  }
  .wa-submenu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    background: transparent;
    display: none;
    padding-left: 0.5rem;
  }
  .wa-menu-item.open > .wa-submenu { display: block; }
  .wa-subtoggle { width: 100%; text-align: left; }
}

/* small touch affordance for submenu buttons */
.wa-subtoggle::after {
  content: "▾";
  float: right;
  opacity: 0.8;
  margin-left: 8px;
  transform-origin: 50% 50%;
}
.wa-menu-item.open > .wa-subtoggle::after { transform: rotate(180deg); }

/* ensure links remain visible against header background */
.wa-nav .wa-menu a, .wa-nav .wa-menu button { color: inherit; }


/* --- Header/Layout fixes: keep nav tidy and aligned --- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Brand block (logo + lines) */
.wa-brand, .site-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}
.wa-brand img, .site-brand img {
  height: 56px;
  width: auto;
  display: block;
}

/* Tidy the title/lines beside the logo */
.site-brand .brand-text {
  line-height: 1.05;
  font-size: 0.95rem;
  white-space: normal;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Nav container behavior */
.wa-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

/* Menu appearance */
.wa-menu {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;            /* avoid menu wrapping into multiple lines */
  overflow: hidden;
}

/* Ensure menu items truncate gracefully if space is tight */
.wa-menu-item { min-width: 0; }
.wa-menu a, .wa-menu button.wa-subtoggle {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0.6rem 0.5rem;
}

/* Make sure the toggle (mobile button) sits to the far right on small screens */
.wa-nav-toggle {
  margin-left: 0.6rem;
}

/* Prevent header content from colliding with page hero */
.header-spacer { height: 82px; } /* adjust if your header is taller */

/* Responsive adjustments */
@media (max-width: 1000px) {
  .site-header { padding-left: 0.6rem; padding-right: 0.6rem; }
  .wa-menu { gap: 0.5rem; }
  .site-brand .brand-text { max-width: 140px; font-size: 0.88rem; }
}

@media (max-width: 700px) {
  /* on small screens the nav becomes stacked (existing behavior) */
  .wa-menu { flex-direction: column; gap: 0; }
  .site-brand .brand-text { display: none; } /* hide long brand text to save space */
  .wa-brand img { height: 48px; }
}

/* Vertical header layout */
.wa-header-vertical {
  text-align: center;
  padding: 12px 0 0;
  background: #ffffff;
  position: relative;
  z-index: 1000;
}


/* ===== HEADER SOCIAL ICONS ===== */
.wa-header-social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 8px;
}

.wa-header-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f8f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wa-green);
  font-size: 16px;
  transition: all 0.25s ease;
}

.wa-header-social a:hover {
  background: linear-gradient(135deg, var(--wa-green), #1cb388);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile tweak */
@media (max-width: 768px) {
  .wa-header-social {
    margin-bottom: 6px;
  }
}


.wa-header-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.wa-header-logo {
  width: 70px;
  height: auto;
}

.wa-header-title .school-name {
  font-size: 20px;
  font-weight: bold;
}

.wa-header-title .school-tag {
  font-size: 13px;
  opacity: 0.85;
}

/* Menu styling */
.wa-nav {
  display: flex;
  justify-content: center;
}

.wa-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

/* Dropdown */
.wa-menu-item {
  position: relative;
}

.wa-submenu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  min-width: 200px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(10, 20, 30, 0.08);
  padding: 8px 0;
  text-align: left;
}

.wa-submenu a {
  display: block;
  padding: 8px 14px;
}

/* Hover on desktop */
@media (hover: hover) {
  .wa-menu-item:hover > .wa-submenu {
    display: block;
  }
}

/* Mobile toggle */
.wa-nav-toggle {
  display: none;
  margin: 6px auto;
  background: none;
  border: none;
}

@media (max-width: 768px) {
  .wa-menu {
    display: none;
    flex-direction: column;
    gap: 0;
  }
  .wa-menu.open {
    display: flex;
  }
  .wa-nav-toggle {
    display: block;
  }
  .wa-submenu {
    position: relative;
    transform: none;
    box-shadow: none;
    margin-top: 0;
  }
}

/* ----- header spacing and menu spacing tidy-up ----- */
/* reduce the blank space below header */
.header-spacer { height: 18px !important; }

/* if using wa-header-vertical, reduce bottom gap */
.wa-header-vertical { padding-bottom: 6px !important; }

/* tighten menu gaps and vertical spacing */
.wa-menu { gap: 18px !important; margin-bottom: 0 !important; }

/* ensure submenu toggle looks clickable */
.wa-subtoggle {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
}

/* ensure top-level menu sits closer to brand */
.wa-header-brand { margin-bottom: 6px !important; }

/* Slightly raise submenus so they appear closer to the trigger */
.wa-submenu { margin-top: 6px !important; }

/* Mobile: slightly smaller top spacing */
@media (max-width: 768px) {
  .header-spacer { height: 8px !important; }
  .wa-menu { gap: 0; padding-top: 6px; }
}

/* ===== FINAL NAV FIX (AUTHORITATIVE) ===== */

/* Header must sit above hero */
.wa-header,
.wa-header-vertical {
  position: relative;
  z-index: 10000 !important;
}

/* Nav & menu must allow dropdowns */
.wa-nav,
.wa-menu {
  overflow: visible !important;
}

/* Dropdowns must float above hero */
.wa-submenu {
  position: absolute;
  z-index: 100000 !important;
  background: #fff;
}

/* HERO MUST NOT CLIP DROPDOWNS */
.wa-hero,
.wa-hero-slider {
  overflow: visible !important;
}

/* Desktop hover */
@media (hover: hover) and (pointer: fine) {
  .wa-menu-item:hover > .wa-submenu {
    display: block !important;
  }
}

/* Mobile behavior */
@media (max-width: 900px) {
  .wa-nav {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 10001;
  }

  .wa-menu {
    display: none;
    flex-direction: column;
  }

  .wa-menu.open {
    display: flex;
  }

  .wa-menu-item.open > .wa-submenu {
    display: block !important;
    position: relative;
    box-shadow: none;
  }
}

@media (max-width: 800px) {
  .wa-nav {
    top: 72px; /* push menu below header */
  }
}
/* =========================================================
   FINAL NAV OVERRIDE – DO NOT EDIT ABOVE THIS
   This block force-fixes desktop + mobile navigation
   ========================================================= */

/* Ensure header always sits above hero */
.wa-header,
.wa-header-vertical {
  position: relative !important;
  z-index: 10000 !important;
}

/* ---------------- DESKTOP ---------------- */
@media (min-width: 901px) {

  .wa-nav {
    display: flex !important;
    position: relative !important;
    justify-content: center;
    background: transparent;
  }

  .wa-menu {
    display: flex !important;
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }

  .wa-submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    background: #ffffff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
    z-index: 99999;
  }

  .wa-menu-item:hover > .wa-submenu {
    display: block !important;
  }
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 900px) {

  /* Hamburger visible */
  .wa-nav-toggle {
    display: block !important;
    margin: 8px auto;
  }

  /* Nav container */
  .wa-nav {
    display: none;
    position: fixed;
    top: 86px; /* below logo + title */
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e4f0e7;
    z-index: 10001;
  }

  .wa-nav.is-open {
    display: block !important;
  }

  /* Menu stack */
  .wa-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }

  .wa-menu-item {
    border-bottom: 1px solid #eef3ef;
    text-align: center;
  }

  .wa-menu a,
  .wa-subtoggle {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
  }

  /* Submenus */
  .wa-submenu {
    position: relative;
    transform: none;
    box-shadow: none;
    background: #f9fdfb;
    display: none;
    padding: 0;
  }

  .wa-menu-item.open > .wa-submenu {
    display: block !important;
  }
}

/* Ensure hero NEVER hides dropdowns */
.wa-hero,
.wa-hero-slider {
  overflow: visible !important;
}

/* ================================
   MOBILE MENU UX POLISH (FINAL)
   ================================ */

@media (max-width: 900px) {

  /* Mobile nav panel */
  .wa-nav {
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    animation: wa-slideDown 0.25s ease;
  }

  /* Make menu items feel tappable */
  .wa-menu a,
  .wa-subtoggle {
    font-size: 16px;
    padding: 14px 18px;
  }

  /* Submenu indentation */
  .wa-submenu a {
    padding-left: 32px;
    font-size: 14.5px;
  }

  /* Submenu background separation */
  .wa-submenu {
    background: #f6fbf8;
  }

  /* Reduce visual heaviness */
  .wa-menu-item {
    background: #ffffff;
  }

  .wa-menu-item.open {
    background: #f9fdfb;
  }
}

/* Slide animation */
@keyframes wa-slideDown {
  from {
    transform: translateY(-8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ================= MOBILE MENU UX FIX ================= */

/* Lock body scroll when menu is open */
body.nav-open {
  overflow: hidden;
}

/* Mobile nav container */
@media (max-width: 900px) {

  .wa-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .wa-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Menu list */
  .wa-menu {
    width: 100%;
    padding: 0.8rem 1.2rem 1.4rem;
  }

  .wa-menu-item > a,
  .wa-subtoggle {
    width: 100%;
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid #eef3ef;
  }

  /* Submenus */
  .wa-submenu {
    padding-left: 0.6rem;
    margin-top: 0.4rem;
  }

  .wa-submenu a {
    padding: 0.55rem 0;
    font-size: 0.95rem;
  }

  /* Hamburger stays visible */
  .wa-header {
    position: sticky;
    top: 0;
    z-index: 11000;
  }

  .wa-nav-toggle {
    z-index: 12000;
  }
}

/* === REMOVE HERO TEXT CONTENT === */
.wa-hero-content {
  display: none !important;
}

/* === REMOVE HERO OVERLAY COMPLETELY === */
.wa-hero-overlay {
  display: none !important;
}

/* ================= HISTORY PAGE ENHANCEMENTS ================= */

/* History content wrapper */
.wa-history-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #36443c;
}

/* Paragraph rhythm */
.wa-history-content p {
  margin-bottom: 1.2rem;
}

/* Soft left accent for story feel */
.wa-history-content {
  position: relative;
  padding-left: 1.4rem;
}

.wa-history-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(
    180deg,
    var(--wa-green),
    var(--wa-sky)
  );
}

/* Highlight important years */
.wa-history-highlight {
  background: #f0f8f4;
  border-left: 4px solid var(--wa-green);
  padding: 0.9rem 1rem;
  border-radius: 0.6rem;
  margin: 1.6rem 0;
  font-weight: 500;
  color: #053018;
}

/* Section divider feel */
.wa-history-divider {
  margin: 2.2rem 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #cfe6da,
    transparent
  );
}

/* Milestone cards more colorful */
.wa-section-alt .wa-card {
  border-top: 4px solid var(--wa-green);
}

.wa-section-alt .wa-card:nth-child(2) {
  border-top-color: var(--wa-sky);
}

.wa-section-alt .wa-card:nth-child(3) {
  border-top-color: var(--wa-gold);
}

/* Mobile comfort */
@media (max-width: 700px) {
  .wa-history-content {
    padding-left: 1rem;
    font-size: 0.93rem;
  }
}

/* =========================================================
   FINAL NAV OVERRIDE (SINGLE SOURCE OF TRUTH)
   This fixes:
   - Mobile menu not opening
   - Mobile menu not closing
   - Desktop submenu disappearing
   - Menu going behind hero
   WITHOUT removing any existing code
   ========================================================= */

/* Ensure header + nav are always on top */
.wa-header,
.wa-header-vertical {
  position: sticky !important;
  top: 0;
  z-index: 20000 !important;
}

/* NAV BASE */
.wa-nav {
  overflow: visible !important;
}

/* MENU BASE */
.wa-menu {
  overflow: visible !important;
}

/* SUBMENUS MUST FLOAT ABOVE HERO */
.wa-submenu {
  z-index: 30000 !important;
  background: #ffffff;
}

/* HERO MUST NOT CLIP */
.wa-hero,
.wa-hero-slider {
  overflow: visible !important;
}

/* ================= DESKTOP ================= */
@media (hover: hover) and (pointer: fine) {

  .wa-menu {
    display: flex !important;
    gap: 22px;
  }

  .wa-submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
  }

  /* KEEP submenu open while hovering */
  .wa-menu-item:hover > .wa-submenu,
  .wa-menu-item:focus-within > .wa-submenu {
    display: block !important;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  /* Hamburger visible */
  .wa-nav-toggle {
    display: block !important;
    z-index: 40000;
  }

  /* Slide-down panel */
  .wa-nav {
    position: fixed !important;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .wa-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Stack menu */
  .wa-menu {
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0.8rem 1.2rem 1.4rem;
  }

  .wa-menu-item {
    border-bottom: 1px solid #eef3ef;
  }

  .wa-menu a,
  .wa-subtoggle {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    text-align: left;
  }

  /* Mobile submenus */
  .wa-submenu {
    position: relative;
    transform: none;
    box-shadow: none;
    background: #f6fbf8;
    display: none;
    padding-left: 12px;
  }

  .wa-menu-item.open > .wa-submenu {
    display: block !important;
  }

  /* Arrow rotate */
  .wa-subtoggle::after {
    content: "▾";
    float: right;
    transition: transform 0.2s ease;
  }

  .wa-menu-item.open > .wa-subtoggle::after {
    transform: rotate(180deg);
  }
}

/* Prevent background scroll when menu open */
body.nav-open {
  overflow: hidden;
}

/* ========================================================= */
/* ======================================================
   MOBILE NAV – RESPONSIVE FIX (FINAL)
   ====================================================== */

@media (max-width: 900px) {

  /* NAV PANEL */
  .wa-nav {
    position: fixed;
    top: 70px; /* below notice + logo */
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    z-index: 12000;

    max-height: calc(100vh - 70px);
    overflow-y: auto;

    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .wa-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* MENU LIST */
  .wa-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1rem 1.2rem;
    gap: 0;
  }

  /* MENU ITEMS */
  .wa-menu-item {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #e6f0ea;
  }

  .wa-menu-item > a,
  .wa-subtoggle {
    width: 100%;
    display: block;
    padding: 14px 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--wa-green-dark);
  }

  /* SUBMENU */
  .wa-submenu {
    position: relative;
    left: 0;
    transform: none;
    width: 100%;
    min-width: 100%;
    box-shadow: none;
    background: #f4fbf7;
    border-radius: 0;
    padding: 0;
    display: none;
  }

  .wa-menu-item.open > .wa-submenu {
    display: block;
  }

  .wa-submenu a {
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #ddebe2;
  }

  /* CARET ALIGNMENT */
  .wa-subtoggle::after {
    float: right;
    margin-top: 2px;
  }

  /* REMOVE DESKTOP SHADOWS / FLOATING FEEL */
  .wa-submenu,
  .wa-menu,
  .wa-nav {
    box-shadow: none !important;
  }
}
/* ===== MOBILE MENU POLISH ===== */

@media (max-width: 900px) {

  /* Move hamburger OUT of menu flow */
  .wa-nav-toggle {
    position: absolute;
    top: 38px;
    right: 16px;
    z-index: 13000;
  }

  /* Prevent it from behaving like a menu item */
  .wa-menu .wa-nav-toggle {
    display: none !important;
  }
}
@media (max-width: 900px) {

  .wa-submenu {
    background: #f2f9f5;
    border-left: 3px solid var(--wa-green);
    margin-bottom: 6px;
  }

  .wa-submenu a {
    padding-left: 28px;
    font-size: 15px;
  }

  .wa-menu-item.open > .wa-subtoggle {
    background: #eef7f2;
  }
}
@media (max-width: 900px) {

  .wa-subtoggle::after {
    content: "▾";
    font-size: 14px;
    transition: transform 0.25s ease;
  }

  .wa-menu-item.open > .wa-subtoggle::after {
    transform: rotate(180deg);
  }
}
@media (max-width: 900px) {

  .wa-menu-item > a,
  .wa-subtoggle {
    letter-spacing: 0.02em;
  }

  .wa-menu-item {
    background: #ffffff;
  }

  .wa-menu-item.open {
    background: #f9fdfb;
  }
}

/* ================= LIVELY GALLERY ================= */

.wa-gallery-hero {
  background: linear-gradient(135deg, #0b6b3a, #21a1e2);
  color: #fff;
  text-align: center;
  padding: 3.2rem 0;
}

.wa-gallery-hero-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 0.4rem;
}

.wa-gallery-hero-sub {
  max-width: 680px;
  margin: auto;
  opacity: 0.9;
}

/* Blocks */
.wa-gallery-block {
  margin-bottom: 3.5rem;
}

.wa-gallery-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.2rem;
}

.wa-gallery-head i {
  font-size: 1.8rem;
}

.wa-gallery-head h2 {
  font-size: 1.4rem;
  margin: 0;
}

/* Themes */
.theme-gold { color: #b8860b; }
.theme-purple { color: #6a4cff; }
.theme-green { color: #0b6b3a; }
.theme-blue { color: #1f6fe0; }

/* Grid */
.wa-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

/* Cards */
.wa-gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  background: #000;
}

.wa-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.wa-gallery-card:hover img {
  transform: scale(1.08);
}

/* Video cards */
.wa-gallery-card.wa-video {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000, #1f6fe0);
}

.wa-gallery-card.wa-video i {
  color: #fff;
  font-size: 2.4rem;
  background: rgba(0,0,0,0.45);
  padding: 18px 22px;
  border-radius: 50%;
}

/* Lightbox video */
.wa-lightbox-content video {
  max-width: 90vw;
  max-height: 85vh;
  display: none;
  border-radius: 12px;
}
/* ================= ADMISSION PAGE HERO ================= */

.wa-section-admission-hero {
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(33,161,226,0.12), transparent 60%),
    linear-gradient(120deg, #f4fbf7, #eef8f3);
  padding: 3.2rem 0 3.4rem;
}

.wa-admission-hero {
  max-width: 820px;
  padding: 2.4rem 2.6rem;
  border-radius: 1.6rem;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(6, 70, 37, 0.12);
  border: 1px solid #e4f0e7;
}

.wa-admission-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-teal));
  color: #ffffff;
  margin-bottom: 0.7rem;
}

.wa-admission-badge i {
  font-size: 0.85rem;
}

.wa-admission-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 0.6rem;
  letter-spacing: -0.03em;
  color: var(--wa-green-dark);
}

.wa-admission-sub {
  font-size: 1.02rem;
  color: var(--wa-text-muted);
  max-width: 680px;
  line-height: 1.6;
}

/* Mobile refinement */
@media (max-width: 700px) {
  .wa-admission-hero {
    padding: 1.8rem 1.5rem;
  }

  .wa-admission-title {
    font-size: 1.8rem;
  }
}
/* ================= PAGE HERO (PRINCIPAL / CHAIRMAN STYLE) ================= */

.wa-page-hero {
  background: linear-gradient(180deg, #0b6b3a, #053018);
  color: #ffffff;
  padding: 3.2rem 0 3.6rem;
  text-align: center;
}

.wa-page-hero h1 {
  font-size: clamp(2.1rem, 3.4vw, 2.7rem);
  margin: 0 0 0.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wa-page-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  color: #d7f2e3;
  line-height: 1.55;
}

/* Small screen refinement */
@media (max-width: 700px) {
  .wa-page-hero {
    padding: 2.4rem 0 2.8rem;
  }

  .wa-page-hero p {
    font-size: 0.95rem;
  }
}
/* Fees Rules enhancement */
.wa-fee-rules li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}
/* ================= FEES RULES PAGE ================= */

/* Page hero */
.wa-page-hero {
  background: linear-gradient(135deg, #eaf7f0, #f6fbf8);
  padding: 3rem 0 2.4rem;
  border-bottom: 1px solid #e4f0e7;
}

.wa-page-hero h1 {
  margin: 0 0 0.4rem;
  font-size: 2.1rem;
  color: var(--wa-green-dark);
}

.wa-page-hero p {
  max-width: 720px;
  font-size: 0.95rem;
  color: var(--wa-text-muted);
}

/* Fees overview blocks */
.wa-fee-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 900px) {
  .wa-fee-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.wa-fee-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid #e4f0e7;
  box-shadow: 0 10px 26px rgba(6, 70, 37, 0.06);
}

.wa-fee-card i {
  font-size: 1.2rem;
  color: var(--wa-green);
  margin-bottom: 0.4rem;
}

.wa-fee-card h4 {
  margin: 0.3rem 0 0.25rem;
  font-size: 0.95rem;
  color: var(--wa-green-dark);
}

.wa-fee-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--wa-text-muted);
}

/* Rules list */
.wa-fee-rules {
  margin-top: 1.4rem;
  list-style: none;
  padding: 0;
}

.wa-fee-rules li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.6rem;
  padding: 0.75rem 0.2rem;
  border-bottom: 1px solid #eef3ef;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #36443c;
}

.wa-fee-rules li:last-child {
  border-bottom: none;
}

.wa-fee-rules li i {
  color: var(--wa-green);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

/* Notice box */
.wa-fee-note {
  margin-top: 1.8rem;
  background: #fff4e5;
  border-left: 4px solid var(--wa-gold);
  padding: 1rem 1.1rem;
  border-radius: 0.8rem;
  font-size: 0.88rem;
  color: #6c5a1a;
}

/* Mobile tweaks */
@media (max-width: 700px) {
  .wa-page-hero h1 {
    font-size: 1.7rem;
  }
}
/* Header title image */
.wa-header-title-img{
  display:block;
  max-width:520px;
  width:100%;
  margin-top:0.4rem;
}

/* Mobile adjustment */
@media(max-width:768px){
  .wa-header-title-img{
    max-width:360px;
    margin-top:0.3rem;
  }
}

/* Extra small phones */
@media(max-width:480px){
  .wa-header-title-img{
    max-width:300px;
  }
}
