/* ================================================
   ABC TEACH — First Design (Restored + Improved)
   Green / yellow brand · Inter + Dancing Script
================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

.hw-script { font-family: 'Dancing Script', cursive; }
.accent-green { color: #22c55e; }
.accent-yellow { color: #facc15; }
.accent-red { color: #ef4444; }

.animate-fadeup {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-fadein {
  opacity: 0;
  transition: opacity 0.65s ease 0.2s;
}
.animate-fadeup.visible,
.animate-fadein.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-green { background: #22c55e; color: #fff; border-color: #22c55e; }
.btn-green:hover { background: #16a34a; border-color: #16a34a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34,197,94,0.35); }
.btn-yellow { background: #facc15; color: #1a1a1a; border-color: #facc15; }
.btn-yellow:hover { background: #eab308; border-color: #eab308; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(250,204,21,0.4); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.8); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; border-color: transparent; }
.btn-facebook { background: #1877f2; color: #fff; border-color: #1877f2; }
.btn-sm { padding: 9px 20px; font-size: 13.5px; margin-top: 12px; }
.btn-full { width: 100%; justify-content: center; }
.btn-xl { padding: 15px 32px; font-size: 16px; }

.section-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-tag.green { color: #22c55e; }
.section-tag.yellow { color: #f59e0b; }
.section-tag.red { color: #ef4444; }
.section-tag.light { color: rgba(255,255,255,0.85); }

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: #111;
  margin-bottom: 12px;
}
.section-header h2 .hw-script { font-size: 1.15em; }
.section-header p { font-size: 15px; color: #666; line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: all 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.13); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 16px;
}
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.nav-links { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: #444;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a:hover, .nav-links a.active { color: #22c55e; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: #22c55e; border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: #222;
  border-radius: 2px;
  transition: 0.25s;
}

/* Hero — photo background (improved: no looping video) */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroSlowZoom 20s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.5) 45%, rgba(22,101,52,0.45) 100%);
}
@keyframes heroSlowZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}
.hero-deco-letters {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.deco-letter {
  position: absolute;
  font-size: clamp(6rem, 14vw, 12rem);
  opacity: 0.08;
  color: #fff;
  line-height: 1;
}
.dl1 { top: 18%; left: 4%; color: #ef4444; }
.dl2 { top: 40%; right: 8%; color: #22c55e; }
.dl3 { bottom: 22%; left: 18%; color: #facc15; }

.hero-logo-center-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 10px 0 6px;
}
.hero-logo-big {
  height: 220px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35));
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  flex: 1;
  padding: 20px 0 40px;
}
.hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #facc15;
  margin-bottom: 14px;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}
.hero-text p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 14px; }
.htrust {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.htrust i { color: #4ade80; }

.hero-visual { display: grid; gap: 12px; }
.hero-main-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border: 3px solid rgba(255,255,255,0.2);
}
.hero-main-badge {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(0,0,0,0.7);
  color: #facc15;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 1.15rem;
}
.hero-side-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-side-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  border: 2px solid rgba(255,255,255,0.18);
}
.hero-side-img span {
  position: absolute;
  inset: auto 0 0;
  padding: 8px 6px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.hero-stats-bar {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 22px 0;
}
.hero-stats-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hstat { text-align: center; flex: 1; min-width: 110px; }
.hstat-num {
  display: block;
  font-size: 1.9rem;
  color: #facc15;
  line-height: 1;
  margin-bottom: 4px;
}
.hstat-label {
  font-size: 11.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.hstat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* Intro video */
.intro-video-section { padding: 90px 0; background: #f9fafb; }
.intro-video-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.intro-video-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
}
.intro-video-text p { color: #555; margin-bottom: 18px; line-height: 1.7; }
.intro-features { margin-bottom: 24px; }
.intro-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #333;
  font-size: 15px;
}
.intro-features i { color: #22c55e; }
.intro-video-player {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  background: #000;
}
.intro-vid { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* About */
.about { padding: 90px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}
.about-images { position: relative; min-height: 480px; }
.about-img-main {
  width: 85%;
  margin-left: auto;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.about-img-float {
  position: absolute;
  left: 0; bottom: 18%;
  width: 42%;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  aspect-ratio: 1;
}
.float-label {
  position: absolute;
  left: 10px; bottom: 10px;
  background: rgba(0,0,0,0.7);
  color: #facc15;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 1rem;
}
.about-founder-badge {
  position: absolute;
  left: 4%; bottom: 4%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px 14px 8px 8px;
  border-radius: 50px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.about-founder-badge img { width: 48px; height: 48px; border-radius: 50%; }
.about-founder-badge strong { display: block; font-size: 14px; }
.about-founder-badge span { font-size: 12px; color: #777; }
.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}
.about-text > p { color: #555; margin-bottom: 12px; line-height: 1.7; }
.about-methodology { margin: 22px 0; display: grid; gap: 14px; }
.method-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.method-num {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: #22c55e;
  line-height: 1;
}
.method-step strong { display: block; margin-bottom: 2px; }
.method-step p { font-size: 13.5px; color: #666; margin: 0; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 22px 0 24px;
}
.about-stats .stat {
  text-align: center;
  background: #f0fdf4;
  border-radius: 12px;
  padding: 12px 8px;
}
.stat-num { display: block; font-size: 1.5rem; color: #16a34a; line-height: 1; }
.stat-label { font-size: 11.5px; color: #666; text-transform: uppercase; letter-spacing: 0.4px; }

/* Director's Voice — improved white layout */
.directors-voice {
  padding: 100px 0;
  background: #fff;
  position: relative;
}
.director-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.director-portrait-wrap {
  position: relative;
}
.director-frame {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(165deg, #ecfdf5 0%, #fff 45%, #fef9c3 100%);
  border: 1px solid #e5e7eb;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.06);
}
.director-portrait {
  width: auto;
  max-height: 100%;
  max-width: 92%;
  object-fit: contain;
  object-position: bottom center;
}
.director-photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 10px 14px 10px 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.director-cap-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  flex-shrink: 0;
}
.director-photo-caption strong {
  display: block;
  font-size: 15px;
  color: #111;
}
.director-photo-caption span {
  font-size: 13px;
  color: #666;
}
.director-copy h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #111;
}
.director-copy h2 .hw-script {
  color: #16a34a;
  font-size: 1.08em;
}
.director-lead {
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.director-message p {
  color: #555;
  margin-bottom: 12px;
  line-height: 1.75;
}
.director-skill-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.director-skill {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.director-skill:hover {
  border-color: #86efac;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.08);
}
.skill-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f0fdf4;
  color: #16a34a;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.director-skill h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #111;
}
.director-skill p {
  font-size: 13.5px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.director-vision-band {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px 28px 24px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}
.vision-band-head {
  text-align: center;
  margin-bottom: 22px;
}
.vision-band-head h3 {
  font-size: 1.25rem;
  color: #111;
}
.vision-path {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  counter-reset: none;
}
.vision-path li {
  text-align: center;
  background: #f9fafb;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  padding: 18px 10px;
  position: relative;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.vision-path li:hover {
  background: #f0fdf4;
  border-color: #86efac;
  transform: translateY(-3px);
}
.vision-path li span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #22c55e;
  margin-bottom: 8px;
}
.vision-path li strong {
  display: block;
  font-size: 14px;
  color: #111;
  line-height: 1.35;
}

.director-philosophy {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}
.philosophy-head {
  margin-bottom: 20px;
}
.philosophy-head h3 {
  font-size: 1.25rem;
  color: #111;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.philosophy-item {
  background: #f9fafb;
  border-radius: 14px;
  padding: 16px 14px;
  border-top: 3px solid #22c55e;
  transition: background 0.25s, transform 0.25s;
}
.philosophy-item:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
}
.philosophy-item strong {
  display: block;
  margin-bottom: 6px;
  color: #111;
  font-size: 14.5px;
}
.philosophy-item p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.55;
}

.director-signature {
  margin: 0;
  text-align: center;
  padding: 32px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
}
.director-signature i {
  color: #22c55e;
  font-size: 1.25rem;
  margin-bottom: 12px;
  display: inline-block;
}
.director-signature p {
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  color: #111;
  line-height: 1.35;
  margin-bottom: 10px;
}
.director-signature cite {
  display: block;
  font-style: normal;
  color: #666;
  font-size: 14.5px;
}

/* Courses */
.courses {
  padding: 90px 0;
  background: #f9fafb;
  position: relative;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.course-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid #e5e7eb;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.course-card.featured {
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34,197,94,0.2);
}
.course-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: #111;
  color: #facc15;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
}
.course-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.2rem;
}
.beginner { background: #22c55e; }
.intermediate { background: #f59e0b; }
.calligraphy { background: #8b5cf6; }
.exam-writing { background: #ef4444; }
.school { background: #06b6d4; }
.advanced { background: #111; }
.course-level {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #22c55e;
  margin-bottom: 8px;
}
.course-card h3 { font-size: 1.55rem; margin-bottom: 8px; color: #111; }
.course-card > p { font-size: 14px; color: #555; line-height: 1.65; margin-bottom: 12px; }
.course-outcomes { margin-bottom: 14px; flex: 1; }
.course-outcomes li {
  font-size: 13.5px;
  color: #444;
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.course-outcomes i { color: #eab308; font-size: 11px; }
.course-meta {
  display: flex;
  gap: 12px;
  font-size: 12.5px;
  color: #777;
  font-weight: 600;
  margin-bottom: 4px;
}

/* Results */
.results { padding: 90px 0; }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.ba-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.ba-card img { aspect-ratio: 4/3; }
.ba-caption { padding: 14px 16px; font-size: 14px; color: #555; }
.results-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.results-videos video {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 14px;
  background: #111;
}

/* Schools */
.school-collab { padding: 90px 0; background: #f9fafb; }
.school-logo-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.school-logo-strip div {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px;
  height: 80px;
  display: grid;
  place-items: center;
}
.school-logo-strip img { max-height: 56px; width: auto; object-fit: contain; }
.school-collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.school-feature {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.school-feature img,
.school-feature video {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  background: #111;
}
.school-feature > div { padding: 18px 18px 22px; }
.school-feature span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #22c55e;
}
.school-feature h3 { margin: 6px 0; font-size: 1.1rem; }
.school-feature p { font-size: 14px; color: #555; line-height: 1.6; }

/* Videos */
.video-testimonials { padding: 90px 0; }
.vid-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vid-testi-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: transform 0.25s;
}
.vid-testi-card:hover { transform: translateY(-4px); }
.vid-thumb-wrap { background: #111; }
.vid-testi-video {
  width: 100%;
  aspect-ratio: 9/14;
  object-fit: cover;
}
.vid-testi-info { padding: 14px 16px 18px; }
.vid-stars { color: #eab308; letter-spacing: 1px; margin-bottom: 6px; }
.vid-quote {
  font-size: 1.25rem;
  color: #111;
  line-height: 1.3;
  margin-bottom: 8px;
}
.vid-name { font-size: 13px; color: #777; font-weight: 600; }

/* Benefits */
.benefits { padding: 90px 0; background: #f9fafb; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid #e5e7eb;
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 14px;
}
.green-icon { background: #22c55e; }
.yellow-icon { background: #f59e0b; }
.red-icon { background: #ef4444; }
.blue-icon { background: #3b82f6; }
.purple-icon { background: #8b5cf6; }
.orange-icon { background: #f97316; }
.teal-icon { background: #14b8a6; }
.pink-icon { background: #ec4899; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: #666; line-height: 1.6; }

/* Reviews */
.reviews { padding: 90px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px;
}
.review-card-photo img {
  aspect-ratio: 16/11;
  border-radius: 10px;
  margin-bottom: 12px;
}
.review-type {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #22c55e;
}
.review-text {
  font-size: 1.25rem;
  color: #111;
  line-height: 1.35;
  margin: 10px 0 12px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.review-header span { display: block; font-size: 12px; color: #888; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}
.review-stars { margin-left: auto; color: #eab308; font-size: 12px; }
.review-date { font-size: 12px; color: #888; }

/* Gallery */
.gallery { padding: 90px 0; background: #f9fafb; }
.gallery-title { font-size: clamp(2rem, 4vw, 3rem) !important; }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.gal-filter {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  color: #555;
  transition: 0.2s;
}
.gal-filter.active, .gal-filter:hover {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 12px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #ddd;
}
.gal-item.gal-large { grid-column: span 2; grid-row: span 2; }
.gal-item img { transition: transform 0.45s ease; }
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.75));
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: 0.3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { color: #fff; font-size: 13.5px; font-weight: 600; }
.gal-item.hide { display: none; }

/* Blog */
.blog { padding: 90px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}
.blog-img-wrap { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.blog-category {
  position: absolute;
  left: 12px; bottom: 12px;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
}
.blog-content { padding: 18px 18px 22px; }
.blog-date { font-size: 12.5px; color: #888; display: block; margin-bottom: 8px; }
.blog-content h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.35; }
.blog-content p { font-size: 14px; color: #666; margin-bottom: 12px; }
.blog-read-more {
  color: #16a34a;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-cta { text-align: center; margin-top: 32px; }

/* FAQ */
.faq { padding: 90px 0; background: #f9fafb; }
.faq-accordion { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  color: #111;
}
.faq-question i { color: #888; transition: 0.25s; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: #22c55e; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 0 18px; color: #555; font-size: 14.5px; line-height: 1.7; }

/* Contact */
.contact { padding: 90px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}
.contact-form-wrap, .contact-info-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #22c55e; }
.contact-info-card h3 { font-size: 1.6rem; margin-bottom: 18px; }
.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-detail i { color: #22c55e; margin-top: 3px; width: 18px; }
.contact-detail strong { display: block; margin-bottom: 2px; }
.contact-detail span, .contact-detail a { display: block; font-size: 14px; color: #555; }
.contact-detail a:hover { color: #16a34a; }
.contact-social-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.contact-map { margin-top: 16px; border-radius: 12px; overflow: hidden; }

/* CTA */
.cta-banner {
  position: relative;
  padding: 90px 0;
  background: url('../images/class4.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(5,46,22,0.9), rgba(22,101,52,0.82));
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.cta-content p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* Footer */
.footer { background: #0f172a; color: rgba(255,255,255,0.75); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}
.footer-tagline { color: #4ade80; font-size: 1.4rem; margin-bottom: 8px; }
.footer-contact-info { margin: 6px 0; font-size: 14px; }
.footer-contact-info i { color: #4ade80; margin-right: 6px; }
.footer-contact-info a:hover { color: #4ade80; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.footer-socials a:hover { background: #22c55e; border-color: #22c55e; color: #fff; }
.footer-links-group h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.footer-links-group li { margin-bottom: 8px; }
.footer-links-group a:hover { color: #4ade80; }
.footer-award {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.footer-award img {
  width: 54px; height: 54px;
  border-radius: 8px;
  object-fit: cover;
}
.footer-award span { font-size: 13px; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  font-size: 13.5px;
}
.footer-copy-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.25s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.enroll-float {
  position: fixed;
  right: 20px;
  bottom: 90px;
  background: #22c55e;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 28px rgba(34,197,94,0.35);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.3s;
}
.enroll-float.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-links { gap: 10px; }
  .nav-links a { font-size: 12px; }
  .courses-grid, .vid-testi-grid, .reviews-grid, .blog-grid, .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .school-logo-strip { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 88px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
  }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero-content,
  .intro-video-inner,
  .about-inner,
  .director-hero,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-visual { order: -1; max-width: 420px; }
  .about-images { min-height: auto; }
  .about-img-main { width: 100%; aspect-ratio: 16/11; }
  .school-collab-grid { grid-template-columns: 1fr; }
  .director-skill-row,
  .form-row,
  .results-videos { grid-template-columns: 1fr; }
  .vision-path { grid-template-columns: 1fr 1fr; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .logo-img { height: 56px; }
  .hero-logo-big { height: 80px; }
  .hero { padding-top: 80px; }
  .hero-stats-inner { justify-content: center; }
  .hstat-divider { display: none; }
  .courses-grid, .vid-testi-grid, .reviews-grid, .blog-grid,
  .ba-grid, .why-grid, .school-logo-strip, .gallery-grid, .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .vid-testi-grid, .courses-grid, .blog-grid { grid-template-columns: 1fr; }
  .gal-item.gal-large { grid-column: span 2; grid-row: span 1; }
  .gallery-grid { grid-auto-rows: 130px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-side-imgs { grid-template-columns: repeat(3, 1fr); }
  .vision-path,
  .philosophy-grid { grid-template-columns: 1fr; }
}
