/* ============================================================
   GLOBAL RESET
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4fff6;
  overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --nav-bg:           #1a1a2e;
  --nav-bg-2:         #2d1b4e;
  --nav-border:       #c8a45a;
  --nav-text:         #f5e6c8;
  --nav-sub:          #c8a45a;
  --nav-height:       70px;
  --menu-bg:          #ffffff;
  --menu-brand-bg:    #fdf8f0;
  --menu-border:      #eee;
  --menu-hover-bg:    #fdf4e3;
  --menu-hover-text:  #1a1a2e;
  --menu-accent:      #c8a45a;
  --menu-text:        #333333;
  --menu-sub-text:    #888888;
  --menu-width:       270px;
  --overlay-bg:       rgba(10, 8, 20, 0.55);
  --font-display:     'Playfair Display', Georgia, serif;
  --font-body:        'DM Sans', sans-serif;
  --transition:       0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --green-dark:       #0d3b0e;
  --green-mid:        #1a6b1c;
  --green-bright:     #2eb82e;
  --green-light:      #7dda58;
  --green-pale:       #c8f5a0;
  --sun-gold:         #ffd54f;
  --sun-glow:         #ff8f00;
  --white:            #ffffff;
  --cream:            #fffde7;
  --coral:            #ff6b6b;
  --teal:             #00bfa5;
}

/* ── Base navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-height);
  background: linear-gradient(135deg, var(--nav-bg) 0%, var(--nav-bg-2) 100%);
  border-bottom: 3px solid var(--nav-border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(200, 164, 90, 0.15) inset;
  gap: 12px;
  padding: 0 20px 0 66px; /* left pad accounts for hamburger */
}

/* ── Hamburger ── */
.hamburger {
  position: absolute; left: 20px;
  display: flex; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px; z-index: 1300;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(200, 164, 90, 0.12); }
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--nav-text); border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}
.hamburger span:nth-child(2) { width: 18px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5.5px); width: 26px; }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5.5px); width: 26px; }

/* ── Center marquee heading ── */
.nav-heading {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.nav-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  /* soft fade on both edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.nav-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: navScroll 28s linear infinite;
}

.nav-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes navScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.nav-title {
  /* font-family: var(--font-display); */
  font-size: 15px;
  font-weight: 500;
  color: var(--nav-text);
  letter-spacing: 0.04em;
}

.nav-sub {
  /* font-family: var(--font-body); */
  font-size: 13px;
  color: var(--nav-border);
  letter-spacing: 0.10em;
}

.nav-dot {
  font-size: 11px;
  color: var(--nav-border);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── Enroll button (desktop) ── */
/* ── Enroll button (desktop) ── */
/* ================================
   ENROLL BUTTON (NAVBAR)
   ================================ */
.enroll-btn-nm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;

  /* ✅ Move button DOWN properly */
  margin-top: 6px;   /* adjust: 4px / 6px / 8px as needed */

  gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;

  padding: 9px 20px;
  border-radius: 999px;

  background: transparent;
  border: 1.5px solid var(--nav-border);
  color: var(--nav-border);

  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;

  text-decoration: none;
  cursor: pointer;

  transition: 
    background var(--transition),
    color var(--transition),
    transform 0.15s ease,
    box-shadow var(--transition);
}

/* Hover */
.enroll-btn-nm:hover {
  background: var(--nav-border);
  color: var(--nav-bg);
  transform: scale(1.04);
  box-shadow: 0 0 14px rgba(200, 164, 90, 0.35);
}

/* Click */
.enroll-btn-nm:active {
  transform: scale(0.98);
}

/* ── Mobile brand ── */
.mobile-brand {
  display: none;
  color: var(--nav-text);
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-display);
}

/* ── Side menu ── */
.side-menu {
  position: fixed;
  top: var(--nav-height);
  left: calc(-1 * var(--menu-width));
  width: var(--menu-width);
  height: calc(100% - var(--nav-height));
  background: var(--menu-bg);
  display: flex; flex-direction: column;
  z-index: 1200; overflow-y: auto; overflow-x: hidden;
  border-right: 0.5px solid var(--menu-border);
  transition: left var(--transition);
  scrollbar-width: thin; scrollbar-color: #e0d5c5 transparent;
}
.side-menu::-webkit-scrollbar { width: 4px; }
.side-menu::-webkit-scrollbar-thumb { background: #e0d5c5; border-radius: 4px; }
.side-menu.active { left: 0; }

.menu-brand {
  display: flex; flex-direction: column; align-items: center;
  padding: 24px 16px 20px;
  background: var(--menu-brand-bg);
  border-bottom: 1px solid var(--menu-border); flex-shrink: 0;
}
.menu-logo {
  /* width: 64px; height: 64px; border-radius: 50%; overflow: hidden;
  border: 2.5px solid var(--menu-accent); margin-bottom: 12px;
  background: var(--nav-bg); */
  display: flex; align-items: center; justify-content: center;
}
.menu-logo img { width: 100%; height: 100%; object-fit: contain; }
.menu-logo-fallback {
  display: none; align-items: center; justify-content: center;
  font-size: 26px; width: 100%; height: 100%;
}
.menu-brand-name {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  color: var(--nav-bg); text-align: center;
}
.menu-brand-tagline {
  font-size: 11px; color: var(--menu-sub-text);
  letter-spacing: 0.08em; margin-top: 4px; text-transform: uppercase;
}

.menu-list { list-style: none; flex: 1; }
.menu-list li { border-bottom: 0.5px solid var(--menu-border); position: relative; }
.menu-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; text-decoration: none;
  color: var(--menu-text); font-size: 14px; font-weight: 400;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
  position: relative;
}
.menu-link::before {
  content: ""; position: absolute; left: 0; top: 0;
  height: 100%; width: 0; background: var(--menu-accent);
  transition: width var(--transition); border-radius: 0 2px 2px 0;
}
.menu-link:hover::before { width: 3px; }
.menu-link:hover { background: var(--menu-hover-bg); color: var(--menu-hover-text); padding-left: 26px; }
.menu-icon { font-size: 16px; width: 22px; text-align: center; flex-shrink: 0; }

.menu-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--menu-border);
  background: var(--menu-brand-bg);
  flex-shrink: 0;
}
.menu-footer p {
  font-size: 11px; color: var(--menu-sub-text);
  text-align: center; letter-spacing: 0.04em;
}

/* ── Overlay ── */
.overlay {
  position: fixed; top: var(--nav-height); left: 0;
  width: 100%; height: calc(100% - var(--nav-height));
  background: var(--overlay-bg); opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 1100; cursor: pointer;
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.overlay.active { opacity: 1; visibility: visible; }
.navbar.scrolled { box-shadow: 0 4px 24px rgba(10, 8, 20, 0.35); }

.menu-link--active {
  background: var(--menu-hover-bg);
  color: var(--menu-hover-text) !important;
  font-weight: 500;
  padding-left: 26px !important;
}
.menu-link--active::before { width: 3px !important; }

/* Make existing enroll button work inside side menu */
.side-menu .enroll-btn {
  display: block;
  width: calc(100% - 32px);
  margin: 16px;
  text-align: center;
  justify-content: center;

  top: 0;            /* remove desktop offset */
  position: relative;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-heading  { display: none; }
  .enroll-btn   { display: none; }
  .mobile-brand { display: block; }
  .navbar       { padding: 0 16px; justify-content: center; }

  /* ❌ Hide navbar button on mobile */
  .navbar .enroll-btn-nm {
    display: none;
  }

}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative; width: 100%;
  min-height: 100svh; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-sky {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg,
    #061a2e 0%, #0a3050 18%, #0d4f6e 35%,
    #0f6b5a 55%, #1a8a40 72%, #1e6e20 85%, #0d3b0e 100%
  );
}
.stars { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.star {
  position: absolute; border-radius: 50%; background: #fff;
  animation: twinkle var(--d, 3s) ease-in-out infinite var(--delay, 0s);
}
@keyframes twinkle { 0%,100%{opacity:0.2;transform:scale(1)} 50%{opacity:1;transform:scale(1.4)} }

.sun {
  position: absolute; z-index: 2;
  width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle, #ffe082 30%, #ffb300 65%, transparent 100%);
  top: 6%; right: 12%;
  box-shadow: 0 0 60px 30px rgba(255,193,7,0.25), 0 0 120px 60px rgba(255,152,0,0.12);
  animation: sunPulse 4s ease-in-out infinite;
}
@keyframes sunPulse {
  0%,100% { box-shadow: 0 0 60px 30px rgba(255,193,7,0.25), 0 0 120px 60px rgba(255,152,0,0.12); }
  50%     { box-shadow: 0 0 80px 40px rgba(255,193,7,0.35), 0 0 160px 80px rgba(255,152,0,0.18); }
}
.sun-rays {
  position: absolute; width: 220px; height: 220px;
  border-radius: 50%; z-index: 1;
  top: calc(6% - 55px); right: calc(12% - 55px);
  animation: rotateSlow 20s linear infinite;
}
.sun-rays::before, .sun-rays::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: repeating-conic-gradient(rgba(255,215,0,0.07) 0deg, transparent 10deg, rgba(255,215,0,0.07) 20deg);
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.cloud {
  position: absolute; z-index: 3; pointer-events: none;
  border-radius: 50px; background: rgba(255,255,255,0.12);
  backdrop-filter: blur(2px);
  animation: floatCloud var(--cd, 18s) linear infinite;
}
.cloud::before, .cloud::after { content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.10); }
@keyframes floatCloud { from{transform:translateX(0)} to{transform:translateX(110vw)} }

.ground { position: absolute; bottom: 0; left: 0; right: 0; z-index: 4; height: 22%; }
.ground svg { width: 100%; height: 100%; }

.trees { position: absolute; bottom: 0; left: 0; right: 0; z-index: 5; pointer-events: none; height: 92%; }
.trees svg { width: 100%; height: 100%; }

.floating-shapes { position: absolute; inset: 0; z-index: 6; pointer-events: none; overflow: hidden; }
.floating-shapes span {
  position: absolute; font-size: var(--fs, 28px);
  animation: floatUp var(--fu, 7s) ease-in-out infinite var(--fd, 0s);
  opacity: 0.85; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.85; }
  50%  { transform: translateY(-22px) rotate(8deg); opacity: 1; }
  100% { transform: translateY(0) rotate(0deg); opacity: 0.85; }
}

.slider { position: relative; z-index: 8; flex: 1; display: flex; align-items: center; justify-content: center; }
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.18; }

.content.glass {
  position: relative; z-index: 2; text-align: center;
  padding: 2.8rem 3.2rem; max-width: 680px; margin: 0 auto;
  background: rgba(10, 40, 12, 0.55);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(125,218,88,0.25); border-radius: 28px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  animation: cardEntrance 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes cardEntrance {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.content.glass::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--green-light), var(--sun-gold), var(--green-light), transparent);
  border-radius: 0 0 4px 4px;
}
.content h1 { font-size: clamp(1.5rem, 4vw, 2.4rem); font-weight: 800; color: var(--green-pale); line-height: 1.2; margin-bottom: 0.5rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.content h2 { font-size: clamp(1.1rem, 3vw, 1.7rem); font-weight: 700; color: var(--sun-gold); margin-bottom: 0.8rem; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.content p { font-size: clamp(0.9rem, 2vw, 1.1rem); color: rgba(200,245,160,0.85); margin-bottom: 1.8rem; letter-spacing: 0.03em; }

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary, .btn-secondary {
  font-size: 1rem; font-weight: 700;
  padding: 0.7rem 1.8rem; border-radius: 50px; border: none;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, #2eb82e, #7dda58);
  color: #0d3b0e; box-shadow: 0 4px 20px rgba(125,218,88,0.45);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 30px rgba(125,218,88,0.6); }
.btn-secondary {
  background: rgba(255,255,255,0.1); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

.slide-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(125,218,88,0.15); border: 1px solid rgba(125,218,88,0.3);
  border-radius: 20px; padding: 4px 14px;
  font-size: 12px; color: var(--green-pale);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem;
}
.slide-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); display: inline-block; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.prev, .next {
  position: absolute; top: 50%; z-index: 10; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(10,40,12,0.6); border: 1.5px solid rgba(125,218,88,0.3);
  color: var(--green-pale); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); transition: all 0.22s;
}
.prev { left: 20px; }
.next { right: 20px; }
.prev:hover, .next:hover { background: rgba(125,218,88,0.25); border-color: var(--green-light); transform: translateY(-50%) scale(1.1); }

.dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); border: 1px solid rgba(125,218,88,0.4); cursor: pointer; transition: all 0.3s; }
.dot.active { background: var(--green-light); width: 24px; border-radius: 4px; box-shadow: 0 0 10px rgba(125,218,88,0.6); }

.scroll-hint {
  position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(200,245,160,0.5); font-size: 11px; letter-spacing: 0.1em;
  animation: fadeInUp 1s 1.5s both;
}
.scroll-hint .arrow { animation: bounce 1.6s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
@keyframes fadeInUp { from{opacity:0;transform:translateX(-50%) translateY(10px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }

@media (max-width: 900px) { .content.glass { padding: 2rem 1.5rem; margin: 0 1rem; } }
@media (max-width: 600px) {
  .sun { width: 70px; height: 70px; top: 4%; right: 6%; }
  .sun-rays { width: 140px; height: 140px; top: calc(4% - 35px); right: calc(6% - 35px); }
  .prev { left: 8px; } .next { right: 8px; }
  .prev, .next { width: 38px; height: 38px; font-size: 0.9rem; }
  .content h1 { font-size: 1.3rem; }
  .content h2 { font-size: 1rem; }
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
  overflow: hidden;
}

/* TOP LINE EFFECT */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    #7dda58 30%,
    #ffd54f 50%,
    #7dda58 70%,
    transparent
  );
  z-index: 2;
}

/* CONTAINER */
.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* IMAGE SECTION */
.about-image {
  position: relative;
}

/* GLOW EFFECT */
.about-image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(125, 218, 88, 0.2),
    rgba(255, 213, 79, 0.1)
  );
  z-index: -1;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* BADGE */
.about-image .img-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  z-index: 3;
  background: #2e7d32;
  color: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* BADGE TEXT */
.img-badge .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #c8f5a0;
}

.img-badge .lbl {
  font-size: 12px;
  color: #e8f5e9;
}

/* CONTENT */
.about-content h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2eb82e;
  margin-bottom: 0.6rem;
}

.about-content h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.about-content h2 span {
  color: #2eb82e;
}

.about-content p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* LIST */
.about-content ul {
  list-style: none;
  margin: 1.2rem 0 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about-content ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
}

.about-content ul li::before {
  content: '✔';
  color: #2eb82e;
  font-size: 14px;
}

/* BUTTON */
.about-btn {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #2eb82e, #7dda58);
  color: #0d3b0e;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(125, 218, 88, 0.4);
  transition: 0.2s;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(125, 218, 88, 0.55);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image .img-badge {
    left: 10px;
  }
}

@media (max-width: 600px) {
  .about-content ul {
    grid-template-columns: 1fr;
  }

  .about {
    padding: 3.5rem 1.2rem;
  }
}

/* ============================================================
   FACILITIES SECTION
============================================================ */
.facilities-section {
  position: relative;
  padding: 6rem 1.5rem 5rem;
  overflow: hidden;
}

/* TOP LINE */
.wave-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, transparent, #7dda58 20%, #ffd54f 50%, #7dda58 80%, transparent);
}

/* CONTAINER */
.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125,218,88,0.15);
  border: 1px solid rgba(125,218,88,0.4);
  border-radius: 30px;
  padding: 5px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #2e7d32;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2e7d32;
  animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes dotBlink {
  0%,100% {opacity:1}
  50% {opacity:0.2}
}

/* FIXED TEXT COLORS */
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #1a1a1a; /* FIX */
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.section-title span {
  color: #2eb82e;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: #555; /* FIX */
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-desc {
  font-size: 15px;
  color: #666; /* FIX */
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* GRID */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* CARD */
.facility-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid rgba(0,0,0,0.08); /* FIX */
  background: #fff; /* IMPORTANT: card needs bg */
  transition: 0.35s;
  opacity: 0;
  transform: translateY(32px);
}

.facility-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HOVER */
.facility-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(46,125,50,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* IMAGE */
.card-img-wrap {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.facility-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5));
}

/* ICON */
.card-emoji {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* TAG */
.card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(46,125,50,0.1);
  border: 1px solid rgba(46,125,50,0.3);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10.5px;
  font-weight: 700;
  color: #2e7d32;
}

/* BODY */
.card-body {
  padding: 1.1rem 1.3rem 1.4rem;
}

.card-body::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #7dda58, #ffd54f);
  margin-bottom: 0.75rem;
}

/* TEXT FIX */
.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a; /* FIX */
}

.card-desc {
  font-size: 13px;
  color: #555; /* FIX */
}

/* LINK */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.85rem;
  font-size: 12.5px;
  font-weight: 700;
  color: #2e7d32;
  text-decoration: none;
}

/* STATS */
.stats-bar {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 20px;
  overflow: hidden;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 1.4rem 1rem;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #2eb82e;
}

.stat-label {
  font-size: 12px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .facilities-section {
    padding: 4rem 1rem;
  }
}
/* ============================================================
   PRESCHOOL / PROGRAMS SECTION
   ============================================================ */
.preschool-section { background: #16a34a; padding: 50px 20px; font-family: 'Poppins', sans-serif; }
.title { text-align: center; font-size: 32px; margin-bottom: 40px; }
.preschool-container { display: flex; gap: 30px; justify-content: center; align-items: flex-start; }
.programs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; flex: 2; }
.card { background: #eee; padding: 20px; border-radius: 15px; display: flex; gap: 15px; align-items: center; transition: 0.3s; }
.card:hover { transform: translateY(-5px); }
.card img { width: 80px; height: 80px; border-radius: 50%; }
.card h3 { margin: 0; font-size: 18px; }
.card p { margin: 4px 0; font-size: 14px; }
.enquiry-box { background: #f5f5f5; padding: 25px; border-radius: 20px; width: 320px; }
.enquiry-box h3 { margin-bottom: 20px; }
.enquiry-box form { display: flex; flex-direction: column; gap: 15px; }
.enquiry-box input, .enquiry-box select { padding: 12px; border-radius: 25px; border: 1px solid #ccc; outline: none; }
.enquiry-box button { padding: 12px; border-radius: 25px; border: none; background: #ddd; cursor: pointer; transition: 0.3s; }
.enquiry-box button:hover { background: #ccc; }
@media (max-width: 1024px) {
  .preschool-container { flex-direction: column; align-items: center; }
  .programs { grid-template-columns: 1fr; }
  .enquiry-box { width: 100%; max-width: 400px; }
}

/* ============================================================
   ABOUT SECTION (alternate)
   ============================================================ */
.about-section { display: flex; align-items: center; justify-content: space-between; padding: 30px 8%; gap: 50px; flex-wrap: wrap; }
.about-left { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; }
.shape { width: 420px; height: 420px; background: linear-gradient(135deg, #16a34a, #4ade80); border-radius: 50%; position: absolute; z-index: 1; animation: float 6s ease-in-out infinite; }
.kid-img { width: 360px; position: relative; z-index: 2; transition: 0.4s; }
.kid-img:hover { transform: scale(1.05); }
.cartoon { width: 170px; position: absolute; bottom: -30px; right: 20px; z-index: 3; animation: bounceSlow 3s infinite; }
.about-right { flex: 1; max-width: 550px; }
.about-right h4 { color: #16a34a; font-weight: 600; margin-bottom: 10px; letter-spacing: 1px; }
.about-right h1 { font-size: 44px; font-weight: 700; color: #1a1a1a; margin-bottom: 20px; line-height: 1.2; }
.about-right p { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 30px; }
.progress-box { margin-bottom: 25px; }
.progress-box label { display: block; font-weight: 600; margin-bottom: 8px; color: #333; }
.progress { width: 100%; height: 12px; background: #e6f4ea; border-radius: 20px; overflow: hidden; }
.progress-bar { height: 100%; width: 0; background: linear-gradient(90deg, #16a34a, #4ade80); border-radius: 20px; text-align: right; font-size: 11px; color: white; padding-right: 8px; line-height: 12px; transition: width 1.5s ease; }
.progress-bar.yellow { background: linear-gradient(90deg, #facc15, #fde047); }
.enroll-btn { margin-top: 30px; padding: 14px 35px; background: linear-gradient(135deg, #16a34a, #15803d); color: white; border: none; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; box-shadow: 0 10px 20px rgba(22,163,74,0.3); transition: 0.3s; }
.enroll-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(22,163,74,0.4); }
@keyframes float { 0%{transform:translateY(0)} 50%{transform:translateY(-20px)} 100%{transform:translateY(0)} }
@keyframes bounceSlow { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@media (max-width: 992px) { .about-section { flex-direction: column; text-align: center; padding: 60px 5%; } .about-right { max-width: 100%; } .about-right h1 { font-size: 34px; } .shape { width: 320px; height: 320px; } .kid-img { width: 280px; } .cartoon { width: 140px; } }
@media (max-width: 576px) { .about-section { padding: 50px 20px; } .about-right h1 { font-size: 26px; } .about-right p { font-size: 14px; } .shape { width: 260px; height: 260px; } .kid-img { width: 220px; } .cartoon { width: 110px; right: 10px; } .enroll-btn { width: 100%; font-size: 15px; } }

/* ============================================================
   EARLY LEARNING SLIDER  ← backgrounds removed here
   ============================================================ */
/* background removed from .cm-early-section */
.cm-early-section { padding: 60px 20px; text-align: center; overflow: hidden; }
.cm-subtitle { color: #6a8f6b; font-size: 14px; margin-bottom: 10px; }
.cm-title { font-size: 38px; font-weight: 800; color: #2b2b2b; margin-bottom: 50px; }
.cm-slider-wrapper { overflow: hidden; position: relative; }
.cm-slider-track { display: flex; gap: 30px; transition: transform 0.6s ease; }
.cm-card { min-width: 380px; position: relative; }
.cm-img-box { border-radius: 25px; overflow: hidden; border: 2px dashed #9ccc65; }
.cm-img-box img { width: 100%; height: 260px; object-fit: cover; }
/* background removed from .cm-content-box */
.cm-content-box { padding: 20px; border-radius: 20px; width: 85%; margin: -50px auto 0; text-align: left; box-shadow: 0 10px 25px rgba(0,0,0,0.08); position: relative; }
.cm-content-box span { font-size: 26px; color: #4caf50; }
.cm-content-box p { margin-top: 10px; font-weight: 600; color: #333; }
@media (max-width: 768px) { .cm-card { min-width: 280px; } .cm-title { font-size: 26px; } }
@media (max-width: 480px) { .cm-card { min-width: 240px; } }

/* ============================================================
   FOOTER (old)
   ============================================================ */
.footer { background: #0f172a; color: #e2e8f0; padding: 40px 20px; }
.footer-top h2 { text-align: center; color: #22c55e; margin-bottom: 20px; }
.quick-links { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.quick-links ul { list-style: none; }
.quick-links li { margin: 6px 0; font-size: 14px; cursor: pointer; transition: 0.3s; }
.quick-links li:hover { color: #22c55e; }
.footer-container { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; margin-top: 30px; }
.footer-box img { width: 60px; margin-bottom: 10px; }
.footer-box h3, .footer-box h4 { color: #22c55e; margin-bottom: 10px; }
.footer-box p { font-size: 14px; line-height: 1.6; display: flex; align-items: center; gap: 8px; }
.footer-box ul { list-style: none; }
.footer-box ul li { margin: 8px 0; }
.footer-box ul li a { text-decoration: none; color: #e2e8f0; transition: 0.3s; }
.footer-box ul li a:hover { color: #22c55e; }
.material-symbols-outlined { font-size: 18px; color: #22c55e; }
.social-icons { margin-top: 10px; }
.social-icons span { margin-right: 10px; font-size: 22px; cursor: pointer; transition: 0.3s; }
.social-icons span:hover { color: #22c55e; }
.footer-bottom { text-align: center; margin-top: 20px; font-size: 14px; border-top: 1px solid #334155; padding-top: 10px; }
@media(max-width:900px) { .footer-container { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px) { .footer-container { grid-template-columns: 1fr; text-align: center; } .quick-links { flex-direction: column; align-items: center; } .footer-box p { justify-content: center; } }

/* ============================================================
   CM FOOTER (new)
   ============================================================ */
.cm-footer { font-family: 'Poppins', sans-serif; background: #0a1a0b; color: #d8f0c8; position: relative; overflow: hidden; }
.cm-coconut-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.cm-coconut-bg svg { width: 100%; height: 100%; opacity: 0.055; }
.cm-footer::before { content: ''; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; width: 600px; height: 600px; background: radial-gradient(circle, rgba(34,100,34,0.28) 0%, transparent 70%); bottom: -200px; left: -150px; }
.cm-footer::after { content: ''; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; width: 500px; height: 500px; background: radial-gradient(circle, rgba(20,80,20,0.22) 0%, transparent 70%); bottom: -180px; right: -120px; }
.cm-footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr 1.3fr; gap: 2.5rem; padding: 4rem 5rem 2.8rem; position: relative; z-index: 1; }
.cm-col h3 { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #7dda58; margin-bottom: 1.3rem; padding-bottom: 0.65rem; position: relative; }
.cm-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: linear-gradient(90deg, #7dda58, transparent); border-radius: 2px; }
.logo-col .cm-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 1.2rem; }
/* Reduce logo container height */
.brand-logo {
  width: 200px;
  height: auto;   /* IMPORTANT */
}

/* Remove extra spacing */
.brand-logo img {
  width: 100%;
  height: auto;
  display: block;   /* removes inline gap */
  object-fit: contain;
}

/* Fix alignment with text */
.cm-brand {
  display: flex;
  align-items: center;   /* center vertically */
  gap: 10px;             /* reduce gap */
}
.brand-text h2 { font-size: 15.5px; font-weight: 700; line-height: 1.35; color: #e8f5e9; letter-spacing: -0.01em; }
.brand-text span { font-size: 11px; color: #5a8a4a; font-weight: 400; letter-spacing: 0.04em; }
.logo-col p.cm-desc { font-size: 13px; color: #7a9e6a; line-height: 1.8; margin-bottom: 1.4rem; }
.badge-row { display: flex; gap: 7px; flex-wrap: wrap; }
.badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(125,218,88,0.09); border: 1px solid rgba(125,218,88,0.2); border-radius: 20px; padding: 4px 10px; font-size: 11px; color: #a5d6a7; font-weight: 500; transition: background 0.2s, border-color 0.2s; }
.badge:hover { background: rgba(125,218,88,0.18); border-color: rgba(125,218,88,0.4); }
.badge .material-symbols-rounded { font-size: 13px; font-variation-settings: 'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 20; }
.cm-col ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.cm-col ul li a { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #7a9e6a; text-decoration: none; padding: 5px 0; transition: color 0.2s, transform 0.22s; }
.cm-col ul li a .material-symbols-rounded { font-size: 15px; opacity: 0.55; transition: opacity 0.2s, color 0.2s; font-variation-settings: 'FILL' 0,'wght' 300,'GRAD' 0,'opsz' 20; }
.cm-col ul li a:hover { color: #c5e8a8; transform: translateX(5px); }
.cm-col ul li a:hover .material-symbols-rounded { opacity: 1; color: #7dda58; }
.contact-item { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 13px; }
.contact-icon { width: 32px; height: 32px; border-radius: 9px; background: rgba(125,218,88,0.1); border: 1px solid rgba(125,218,88,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, border-color 0.2s; }
.contact-item:hover .contact-icon { background: rgba(125,218,88,0.2); border-color: rgba(125,218,88,0.35); }
.contact-icon .material-symbols-rounded { font-size: 15px; color: #7dda58; font-variation-settings: 'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 20; }
.contact-text { font-size: 13px; color: #7a9e6a; line-height: 1.55; }
.contact-text strong { display: block; font-size: 10.5px; color: #4d6e42; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 2px; font-weight: 600; }
.social-row { display: flex; gap: 9px; margin-top: 1.5rem; }
.social-btn { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; text-decoration: none; position: relative; overflow: hidden; border: 1px solid rgba(125,218,88,0.15); background: rgba(255,255,255,0.05); transition: transform 0.22s, border-color 0.22s; }
.social-btn:hover { transform: translateY(-4px); border-color: transparent; }
.social-btn .btn-bg { position: absolute; inset: 0; opacity: 0; transition: opacity 0.22s; border-radius: 10px; }
.social-btn:hover .btn-bg { opacity: 1; }
.social-btn.fb .btn-bg { background: #1877F2; }
.social-btn.ig .btn-bg { background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-btn.yt .btn-bg { background: #FF0000; }
.social-btn.li .btn-bg { background: #0A66C2; }
.social-btn svg { width: 18px; height: 18px; fill: #7a9e6a; position: relative; z-index: 1; transition: fill 0.22s; }
.social-btn:hover svg { fill: #ffffff; }
.cm-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(125,218,88,0.15) 25%, rgba(125,218,88,0.25) 50%, rgba(125,218,88,0.15) 75%, transparent); margin: 0 5rem; position: relative; z-index: 1; }
.cm-footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 1.4rem 5rem; position: relative; z-index: 1; }
.footer-copy { font-size: 12.5px; color: #4d6e42; }
.footer-copy span { color: #7dda58; }
.leaf-pulse { display: inline-block; animation: leafPulse 2.8s ease-in-out infinite; }
@keyframes leafPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.85)} }
.footer-links { display: flex; gap: 20px; align-items: center; }
.footer-links a { font-size: 12px; color: #4d6e42; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #8faf80; }
.footer-links .sep { width: 3px; height: 3px; border-radius: 50%; background: #2a4a22; }
.cm-col { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.cm-col.visible { opacity: 1; transform: translateY(0); }
.cm-col:nth-child(1){transition-delay:0.05s} .cm-col:nth-child(2){transition-delay:0.15s}
.cm-col:nth-child(3){transition-delay:0.25s} .cm-col:nth-child(4){transition-delay:0.35s}
@media (max-width: 1080px) { .cm-footer-top { grid-template-columns: 1fr 1fr; padding: 3rem 3rem 2rem; gap: 2rem; } .logo-col { grid-column: 1 / -1; } .cm-divider { margin: 0 3rem; } .cm-footer-bottom { padding: 1.2rem 3rem; } }
@media (max-width: 640px) { .cm-footer-top { grid-template-columns: 1fr; padding: 2.5rem 1.5rem 2rem; gap: 2rem; } .logo-col { grid-column: auto; } .cm-divider { margin: 0 1.5rem; } .cm-footer-bottom { flex-direction: column; align-items: flex-start; padding: 1.2rem 1.5rem; } .footer-links { flex-wrap: wrap; gap: 10px; } }




.logo {
  width: 180px;
  height: 80px;
  object-fit: cover;   /* fills area, removes empty space effect */
}