/* ===== ABOUT.CSS ===== */
/* Maxfem International School - About Page Styles */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #90EE90;
  --secondary: #2E8B57;
  --accent: #228B22;
  --bg: #FFFFFF;
  --text: #222222;
  --text-light: #555555;
  --white: #FFFFFF;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --transition: 0.3s ease;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ---------- Reset & Base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.section-tag {
  display: inline-block;
  background: rgba(46, 139, 87, 0.08);
  color: var(--secondary);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--text);
  margin-bottom: 16px;
  position: relative;
}

.section-header h2:after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 12px auto 0;
  border-radius: 4px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 1200px;
  margin: 16px auto 0;
  font-weight: 400;
  font-family: var(--font-secondary);
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--secondary);
  transform: translateY(-3px);
}

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(46, 139, 87, 0.08);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #2E8B57;
  letter-spacing: 1.2px;
  transition: color 0.3s ease;
}

.logo:hover .logo-main {
  color: #228B22;
}

.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  color: #555555;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu ul {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  display: block;
  padding: 8px 16px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  color: #222222;
  text-decoration: none;
  position: relative;
}

.nav-menu ul li a:hover {
  background: #90EE90;
  color: #2E8B57;
  transform: translateY(-2px);
}

.nav-menu ul li a.active {
  background: #90EE90;
  color: #2E8B57;
  font-weight: 600;
}

.nav-menu ul li a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: #2E8B57;
  border-radius: 4px;
}

.nav-actions {
  display: flex;
  gap: 8px;
  margin-left: 16px;
  align-items: center;
}

.btn-outline {
  background: transparent;
  color: #2E8B57;
  border-color: #2E8B57;
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-outline:hover {
  background: #2E8B57;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  background: transparent;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #2E8B57;
  border-radius: 4px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== Horizontal Scrolling Announcement ===== */
.announcement-ticker {
  background: linear-gradient(135deg, #1a2e1a 0%, #2a4a2a 100%);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(144, 238, 144, 0.15);
  border-bottom: 1px solid rgba(144, 238, 144, 0.15);
}

.ticker-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.ticker-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scrollTicker 25s linear infinite;
  flex-shrink: 0;
}

.ticker-content.paused {
  animation-play-state: paused;
}

.ticker-item {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-item i {
  color: var(--primary);
  font-size: 0.85rem;
}

.ticker-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
}

.ticker-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.ticker-link:hover {
  color: var(--white);
  text-decoration: underline;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* ===== SECTION 1: HERO BANNER ===== */
.about-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 5%;
  background-repeat: no-repeat;
  transform: scale(1.1);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 40px 20px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.hero-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 1200px;
  margin: 0 auto 30px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero-buttons .btn {
  padding: 16px 40px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== SECTION 2: WHO WE ARE ===== */
.who-we-are {
  background: #ffffff;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.who-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.who-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.who-image:hover img {
  transform: scale(1.05);
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.floating-shape.shape-1 {
  width: 120px;
  height: 120px;
  background: rgba(144, 238, 144, 0.15);
  top: -30px;
  right: -30px;
}

.floating-shape.shape-2 {
  width: 80px;
  height: 80px;
  background: rgba(46, 139, 87, 0.1);
  bottom: -20px;
  left: -20px;
}

.who-content {
  padding: 20px 0;
}

.who-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: left;
}

.who-content h2:after {
  margin: 12px 0 0;
}

.who-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}

/* ---------- WHO STATS - ALWAYS HORIZONTAL ---------- */
.who-stats {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  width: 100%;
}

.mini-stat {
  flex: 0 0 auto;
  text-align: center;
  padding: 0 10px;
}

.mini-stat .number {
  display: block;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
}

.mini-stat .label {
  font-size: 0.85rem;
  color: var(--text-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .who-stats {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    gap: 0;
    margin-top: 20px;
    padding: 16px 12px;
    background: linear-gradient(135deg, #f8fdf8 0%, #eef6ee 100%);
    border-radius: 16px ;
    border: 1px solid rgba(144, 238, 144, 0.2) ;
    width: 100%;
    flex-direction: row ;
  }
  
  .mini-stat {
    flex: 1;
    padding: 0 8px;
    text-align: center;
    position: relative;
  }
  
  /* Add dividers between stats */
  .mini-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: rgba(46, 139, 87, 0.15);
  }
  
  .mini-stat .number {
    font-size: 1.5rem;
  }
  
  .mini-stat .label {
    font-size: 0.65rem;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .who-stats {
    padding: 12px 8px;
  }
  
  .mini-stat {
    padding: 0 4px;
  }
  
  .mini-stat:not(:last-child)::after {
    height: 25px;
    right: -2px;
  }
  
  .mini-stat .number {
    font-size: 1.2rem ;
  }
  
  .mini-stat .label {
    font-size: 0.55rem;
  }
}


/* ===== SECTION 3: VISION & MISSION ===== */
.vision-mission {
  background: #ffffff;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vm-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(144, 238, 144, 0.15);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vm-card:hover::before {
  opacity: 1;
}

.vm-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(144, 238, 144, 0.2), rgba(46, 139, 87, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--secondary);
  transition: var(--transition);
}

.vm-card:hover .vm-icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--secondary);
  color: #fff;
}

.vm-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.vm-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 20px;
}


/* ===== SECTION 4: CORE VALUES ===== */
.core-values {
  background: #f9fff9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(144, 238, 144, 0.12);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.value-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(46, 139, 87, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  color: var(--secondary);
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}


/* ===== SECTION 6: WHOLE CHILD ===== */
.whole-child {
  background: #f9fff9;
}

.wc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.wc-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

.wc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.wc-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.wc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wc-card:hover .wc-image img {
  transform: scale(1.1);
}

.wc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  transition: all 0.4s ease;
}

.wc-overlay h4 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.wc-overlay p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0;
}


/* ===== SECTION 7: OUR IMPACT ===== */
.our-impact {
  background: linear-gradient(135deg, #f8fdf8 0%, #eef6ee 100%);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.impact-item {
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

.impact-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.impact-item i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 12px;
  display: block;
}

.impact-number {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--secondary);
  display: inline-block;
}

.impact-plus,
.impact-percent {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--secondary);
}

.impact-label {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 4px;
}


/* ---------- Footer Logo ---------- */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-logo-main {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #2E8B57;
  letter-spacing: 1.2px;
  transition: color 0.3s ease;
}

.footer-logo:hover .footer-logo-main {
  color: var(--primary);
}

.footer-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  color: #a0b0a0;
  letter-spacing: 0.8px;
}

.footer-tagline {
  color: #c0d0c0;
  font-size: 0.9rem;
  margin-top: 0;
  margin-bottom: 16px;
}

/* ---------- Footer ---------- */
.footer {
  background: #1a2e1a;
  color: #e0e8e0;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 2.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.footer-col p {
  color: #c0d0c0;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-icons a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #c0d0c0;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c0d0c0;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.contact-info li i {
  width: 20px;
  color: var(--primary);
}

.footer .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer .contact-info li i {
    flex-shrink: 0;
    margin-top: 4px;
    width: 20px;
}

.footer .contact-info li div {
    flex: 1;
    word-break: break-word;
}

@media (max-width: 480px) {
    .footer .contact-info li {
        font-size: 0.85rem;
    }
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #90a090;
}


/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 24px;
  border-radius: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .wc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .who-image img {
    height: 350px;
  }
  
  .wmu-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .image-collage {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .leadership-image img {
    height: 350px;
  }
  
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: 4px 0 30px rgba(0,0,0,0.1);
    transition: 0.35s ease;
    overflow-y: auto;
    align-items: flex-start;
    gap: 0;
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }
  
  .nav-menu ul li a {
    display: block;
    padding: 12px 16px;
    width: 100%;
  }
  
  .nav-actions {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
    gap: 10px;
  }
  
  .nav-actions .btn {
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }

  .who-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .section {
    padding: 30px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-content {
    width: 100%;
    padding: 0 0 0 50px !important;
    flex-direction: column !important;
    align-items: flex-start;
  }
  
  .timeline-content.left,
  .timeline-content.right {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px !important;
    padding-right: 0 !important;
  }
  
  .timeline-image {
    width: 100%;
    height: 200px;
  }
  
  .vm-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .wmu-features {
    grid-template-columns: 1fr;
  }
  
  .wc-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .contact-info li {
    justify-content: center;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .who-content h2 {
    font-size: 1.8rem;
  }
  
  .who-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .wc-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .impact-grid {
    grid-template-columns: 1fr;
  }
  
  .impact-number {
    font-size: 2.5rem;
  }
  
  .vm-card {
    padding: 30px 20px;
  }
  
  .image-collage {
    grid-template-columns: 1fr;
  }
  
  .collage-img.img-1 {
    grid-column: auto;
    grid-row: auto;
  }
  
  .collage-img.img-1 img {
    height: 220px;
  }
  
  .lightbox-content {
    max-width: 95%;
    max-height: 70%;
  }
}