:root {
  --green-deep: #3a4584;
  --green-mid: #25aae1;
  --green-bright: #fdcd2a;
  --green-light: #25aae1;
  --cream: #faf7f2;
  --warm-white: #fffef9;
  --gold: #fdcd2a;
  --gold-light: #fdcd2a;
  --text-dark: #1c1c1c;
  --text-mid: #444;
  --text-light: #777;
  --leaf-pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232d7a4f' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 113, 148, 0.5);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: all 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-bright), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  color: #000000;
  font-size: 20px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text span:first-child {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  line-height: 1.1;
}

.logo-text span:last-child {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  color: var(--green-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.nav-cta {
  background: linear-gradient(
    135deg,
    var(--gold),
    var(--gold-light)
  ) !important;
  color: var(--green-deep) !important;
  font-weight: 600 !important;
  padding: 9px 18px !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--green-deep) 0%,
    #25aae1 50%,
    #236d8c 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.5;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(58, 171, 107, 0.25) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(200, 151, 42, 0.2) 0%,
    transparent 70%
  );
  bottom: -50px;
  left: 30%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58, 171, 107, 0.15);
  border: 1px solid rgba(58, 171, 107, 0.4);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.4s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(200, 151, 42, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 151, 42, 0.5);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-stats {
  position: absolute;
  right: 5%;
  bottom: 10%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeInUp 0.6s 0.5s ease both;
}

.stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  min-width: 140px;
}

.stat-card .num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  display: block;
}

.stat-card .label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTIONS GENERAL ===== */
section {
  padding: 90px 5%;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green-mid);
}

h2.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 620px;
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--green-deep);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.marquee-track span.highlight {
  color: var(--gold-light);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== ABOUT ===== */
#about {
  background: var(--warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-main-card {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: 24px;
  padding: 48px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-main-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.about-main-card .est {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-main-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-main-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.about-float-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-float-badge .big {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  display: block;
  line-height: 1;
}

.about-float-badge .small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.about-content {
  padding-top: 20px;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.vm-box {
  border-left: 3px solid var(--green-mid);
  padding: 16px 20px;
  background: var(--cream);
  border-radius: 0 12px 12px 0;
}

.vm-box h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--green-deep);
  margin-bottom: 8px;
  font-weight: 700;
}

.vm-box p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* ===== STRENGTHS ===== */
#strengths {
  background: var(--cream);
}

.strengths-header {
  text-align: center;
  margin-bottom: 60px;
}

.strengths-header .section-desc {
  margin: 0 auto;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strength-card {
  background: white;
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.strength-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.strength-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.strength-card:hover::before {
  transform: scaleX(1);
}

.strength-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    rgba(45, 122, 79, 0.12),
    rgba(58, 171, 107, 0.08)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.strength-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.strength-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== COURSES ===== */
#courses {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

#courses::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.3;
}

.courses-header {
  position: relative;
  z-index: 2;
  margin-bottom: 56px;
}

.courses-header .section-tag {
  color: var(--green-light);
}
.courses-header .section-tag::before {
  background: var(--green-light);
}
.courses-header h2.section-title {
  color: white;
}
.courses-header .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.courses-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.course-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 36px;
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  display: block;
  position: relative;
  overflow: hidden;
}

.course-card::after {
  content: "→";
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.course-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(58, 171, 107, 0.5);
  transform: translateY(-4px);
}

.course-card:hover::after {
  color: var(--gold-light);
  right: 28px;
}

.course-class-tag {
  display: inline-block;
  background: rgba(200, 151, 42, 0.2);
  border: 1px solid rgba(200, 151, 42, 0.4);
  color: var(--gold-light);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  font-family: "Space Mono", monospace;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.course-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
  line-height: 1.2;
}

.course-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.course-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course-points li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.course-points li::before {
  content: "✓";
  color: var(--green-bright);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Section wrapper ── */
#courses { padding: 90px 0; overflow: hidden; }

#courses .courses-header {
  padding: 0 5%;
  margin-bottom: 48px;
}

/* ── Carousel outer ── */
.courses-carousel-outer { position: relative; padding: 0 5%; }

/* ── Nav row ── */
.courses-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.courses-carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(26,74,46,0.2);
  background: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.courses-carousel-btn:hover {
  background: var(--green-deep, #1a4a2e);
  border-color: var(--green-deep, #1a4a2e);
  color: white;
  box-shadow: 0 6px 20px rgba(26,74,46,0.25);
  transform: scale(1.08);
}
.courses-carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── Counter badge ── */
.courses-counter {
  margin-right: auto;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light, #777);
  letter-spacing: 1px;
}
.courses-counter em {
  font-style: normal;
  color: var(--green-mid, #2d7a4f);
}

/* ── Viewport & Track ── */
.courses-viewport {
  overflow: hidden;
  cursor: grab;
  border-radius: 4px;
}
.courses-viewport:active { cursor: grabbing; }

.courses-track {
  display: flex;
  gap: 22px;
  transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  align-items: stretch;
}

/* ── Card overrides ── */
/* Your existing .course-card styles apply.
   We only pin width and prevent shrink. */
.courses-track .course-card {
  flex-shrink: 0;
  /* width set via JS */
  box-sizing: border-box;
  /* ensure equal height cards */
  display: flex;
  flex-direction: column;
}
.courses-track .course-card p {
  flex: 1; /* push points to bottom */
}

/* ── Dots ── */
.courses-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 28px;
}
.courses-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(26,74,46,0.18);
  border: none; padding: 0; cursor: pointer;
  transition: all 0.3s;
}
.courses-dot.active {
  background: var(--green-deep, #1a4a2e);
  width: 22px;
  border-radius: 50px;
}

/* ── Card enter animation ── */
@keyframes courseCardIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.courses-track .course-card.animating {
  animation: courseCardIn 0.4s ease both;
}

/* ===== METHODOLOGY ===== */
#methodology {
  background: var(--warm-white);
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.method-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
}

.method-step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-mid);
  background: rgba(45, 122, 79, 0.1);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-info h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.step-info p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.method-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.highlight-box {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s;
}

.highlight-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.highlight-box .icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.highlight-box h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.highlight-box p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== LOCATIONS ===== */
#locations {
  background: var(--cream);
}

.locations-header {
  text-align: center;
  margin-bottom: 56px;
}

.locations-header .section-desc {
  margin: 0 auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.location-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.loc-header {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.loc-header::after {
  content: "📍";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  opacity: 0.3;
}

.loc-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: white;
  margin-bottom: 4px;
}

.loc-header span {
  font-size: 12px;
  color: var(--green-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.loc-body {
  padding: 28px;
}

.loc-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.loc-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-mid);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 0.2s;
}

.loc-contact a:hover {
  color: var(--green-deep);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: linear-gradient(135deg, var(--green-deep) 0%, #0d2a1c 100%);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.2;
}

.testimonials-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header .section-tag {
  color: var(--green-light);
}
.testimonials-header .section-tag::before {
  background: var(--green-light);
}
.testimonials-header h2.section-title {
  color: white;
}
.testimonials-header .section-desc {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
}

.testimonials-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
}

.stars {
  color: var(--gold-light);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card blockquote::before {
  content: '"';
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--green-bright);
  line-height: 0;
  vertical-align: -1rem;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.author-info span:first-child {
  display: block;
  font-weight: 600;
  color: white;
  font-size: 0.9rem;
}

.author-info span:last-child {
  font-size: 0.8rem;
  color: var(--green-light);
}

/* ===== SUCCESS STORIES ===== */
#results {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.results-header {
  text-align: center;
  margin-bottom: 60px;
}

.results-header .section-desc {
  margin: 0 auto;
}

/* Filter tabs */
.results-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  background: white;
  border: 1.5px solid rgba(45, 122, 79, 0.2);
  color: var(--text-mid);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: white;
}

/* Grid */
.home-results-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

/* Student card */
.result-card {
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Top accent line */
.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.result-card:hover::before {
  transform: scaleX(1);
}

.result-photo-wrap {
  position: relative;
  padding: 24px 24px 0;
  display: flex;
  justify-content: center;
}

.result-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--cream);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Score badge floating over photo */
.result-score-badge {
  position: absolute;
  bottom: -6px;
  right: calc(50% - 60px);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  border-radius: 50px;
  padding: 4px 12px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(200, 151, 42, 0.35);
}

.result-body {
  padding: 20px 20px 24px;
  text-align: center;
}

.result-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
}

/* Exam tag pill */
.result-exam-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45, 122, 79, 0.08);
  border: 1px solid rgba(45, 122, 79, 0.18);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green-mid);
  font-family: "Space Mono", monospace;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Achievement highlight */
.result-achievement {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 4px;
}

.result-achievement em {
  font-style: normal;
  color: var(--gold);
}

.result-detail {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Multiple scores (JEE Mains + Advanced) */
.result-scores {
  display: flex;
  flex-wrap: wrap;            /* allows next line */
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 4px;
}

.score-chip {
  background: var(--cream);
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  width: calc(50% - 5px);     /* 2 columns with gap handled */
}

.score-chip .val {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--green-deep);
  display: block;
  line-height: 1;
}

.score-chip .lbl {
  font-size: 9px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Trophy icon */
.result-trophy {
  font-size: 18px;
  margin-bottom: 4px;
}

@media (min-width: 624px) {
    /* Grid */
    .home-results-grid {
      grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    /* Grid */
    .home-results-grid {
      grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .results-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .result-photo {
    width: 80px;
    height: 80px;
  }
} 

#results {
  padding: 90px 0;
  background: var(--warm-white, #fffef9);
  overflow: hidden;
}

.results-header {
  padding: 0 5%;
  margin-bottom: 36px;
}

/* ===== FILTER BUTTONS ===== */
.results-filters {
  padding: 0 5%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(45,122,79,0.25);
  background: transparent;
  color: var(--text-mid, #444);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.filter-btn:hover {
  border-color: var(--green-mid, #2d7a4f);
  color: var(--green-mid, #2d7a4f);
  background: rgba(45,122,79,0.06);
}
.filter-btn.active {
  background: var(--green-deep, #1a4a2e);
  border-color: var(--green-deep, #1a4a2e);
  color: white;
}

/* ===== CAROUSEL WRAPPER ===== */
.carousel-outer {
  position: relative;
  padding: 0 5%;
}

/* Nav Buttons */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(26,74,46,0.2);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--green-deep, #1a4a2e);
  border-color: var(--green-deep, #1a4a2e);
  color: white;
  box-shadow: 0 6px 20px rgba(26,74,46,0.25);
  transform: scale(1.08);
}
.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* Auto-play toggle */
.autoplay-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light, #777);
  margin-right: auto;
  cursor: pointer;
  user-select: none;
  font-family: 'DM Sans', sans-serif;
}
.autoplay-pill {
  width: 34px;
  height: 20px;
  border-radius: 50px;
  background: rgba(0,0,0,0.1);
  position: relative;
  transition: background 0.3s;
}
.autoplay-pill::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.autoplay-toggle.on .autoplay-pill {
  background: var(--green-mid, #2d7a4f);
}
.autoplay-toggle.on .autoplay-pill::after {
  transform: translateX(14px);
}

/* Progress dots */
.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(26,74,46,0.18);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.carousel-dot.active {
  background: var(--green-deep, #1a4a2e);
  width: 22px;
  border-radius: 50px;
}

/* Track + Viewport */
.carousel-viewport {
  overflow: hidden;
  cursor: grab;
  border-radius: 4px;
}
.carousel-viewport:active { cursor: grabbing; }

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  /* No padding here — managed via JS offset */
}

/* ===== RESULT CARD ===== */
.result-card {
  flex-shrink: 0;
  background: white;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  /* width set by JS */
}
.result-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

.result-photo-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #05cad1, #25aae1);
}
.result-photo {
  object-fit: cover;
  object-position: top center;
  display: block;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}
.result-card:hover .result-photo { transform: scale(1.04); }

/* Photo placeholder when image fails */
.result-photo-wrap .photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a4a2e, #2d7a4f);
}

.result-score-badge {
  position: absolute;
  top: 14px;
  bottom: auto;
  right: 14px;
  background: rgba(200,151,42,0.92);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.5px;
}

.result-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.result-trophy { font-size: 20px; margin-bottom: 8px; }
.result-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--green-deep, #1a4a2e);
  margin-bottom: 6px;
}
.result-exam-tag {
  display: inline-block;
  background: rgba(45,122,79,0.1);
  border: 1px solid rgba(45,122,79,0.2);
  color: var(--green-mid, #2d7a4f);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* Dual scores */
.result-scores {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4px;
}
.score-chip {
  background: var(--cream, #faf7f2);
  border-radius: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.06);
  min-width: 78px;
}
.score-chip .val {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green-deep, #1a4a2e);
  line-height: 1;
  margin-bottom: 3px;
}
.score-chip .val em { font-style: normal; }
.score-chip .lbl {
  font-size: 10px;
  color: var(--text-light, #777);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  font-family: 'Space Mono', monospace;
}

/* Single achievement */
.result-achievement {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green-deep, #1a4a2e);
  line-height: 1;
  margin-bottom: 4px;
}
.result-achievement em { font-style: normal; }
.result-detail {
  font-size: 12px;
  color: var(--text-light, #777);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Space Mono', monospace;
}

/* Progress bar inside card */
.result-progress-wrap {
  width: 100%;
  margin-top: 12px;
}
.result-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-light, #777);
  font-weight: 600;
  margin-bottom: 5px;
}
.result-progress-bar {
  height: 5px;
  background: rgba(0,0,0,0.07);
  border-radius: 50px;
  overflow: hidden;
}
.result-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-mid, #2d7a4f), var(--green-bright, #3aab6b));
  border-radius: 50px;
  width: 0%;
  transition: width 1s ease 0.3s;
}

/* Card enter animation */
@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.result-card.animating {
  animation: cardIn 0.4s ease both;
}

/* ===== RESPONSIVE widths handled in JS ===== */
@media (max-width: 767px) {
  .results-filters { gap: 8px; }
  .filter-btn { font-size: 12px; padding: 7px 16px; }
}

/* ===== DIRECTOR ===== */
#director {
  background: var(--warm-white);
}

.director-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.director-card {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: 24px;
  padding: 48px 40px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.director-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.3;
}

.director-avatar-big {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-light);
  position: relative;
}

.director-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 6px;
  position: relative;
}

.director-card .designation {
  font-size: 0.85rem;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  position: relative;
}

.director-quote {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 24px;
  position: relative;
}

.director-message {
}

.director-message p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

.director-message p:first-of-type {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--green-deep);
  font-style: italic;
}

/* ===== FAQ ===== */
#faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-deep);
  flex: 1;
  padding-right: 16px;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--green-mid);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--green-mid);
  color: white;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-item.open {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* ===== CTA ===== */
#cta {
  background: #25aae1;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
  text-align: center;
}


.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

#cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

#cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--gold);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

/* ===== FOOTER ===== */
footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 5% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 6px;
}

.footer-brand .tagline {
  font-size: 12px;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--green-mid);
}

.footer-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--green-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-item .icon {
  width: 32px;
  height: 32px;
  background: rgba(58, 171, 107, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--green-light);
  text-decoration: none;
}

/* ===== WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  animation: float 3s ease-in-out infinite;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-stats {
    display: none;
  }
  .about-grid,
  .method-grid,
  .director-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .courses-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 64px 5%;
  }
  .strengths-grid {
    grid-template-columns: 1fr;
  }
  .locations-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .method-highlights {
    grid-template-columns: 1fr;
  }
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--green-deep) 0%,
    #25aae1 50%,
    #236d8c 100%
  );
  padding: 140px 5% 90px;
  position: relative;
  min-height: 80vh;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.5;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(58, 171, 107, 0.22) 0%,
    transparent 70%
  );
  top: -100px;
  right: -80px;
}
.orb2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(200, 151, 42, 0.18) 0%,
    transparent 70%
  );
  bottom: -60px;
  left: 20%;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
  font-family: "Space Mono", monospace;
}
.breadcrumb a {
  color: var(--green-light);
  text-decoration: none;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease both;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.page-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Hero stats row */
.hero-stats-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  animation: fadeUp 0.7s 0.3s ease both;
}
.h-stat {
  text-align: left;
}
.h-stat .num {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.h-stat .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  display: block;
}
.h-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--green-deep);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.marquee-track span.hl {
  color: var(--gold-light);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== SECTIONS ===== */
section {
  padding: 88px 5%;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green-mid);
}
.section-tag.light {
  color: var(--green-light);
}
.section-tag.light::before {
  background: var(--green-light);
}
h2.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}
h2.section-title.white {
  color: white;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 640px;
}
.section-desc.white {
  color: rgba(255, 255, 255, 0.72);
}

/* ===== OUR STORY ===== */
#story {
  background: var(--warm-white);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.story-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--green-bright),
    var(--green-light),
    transparent
  );
}
.tl-item {
  display: flex;
  gap: 28px;
  padding: 0 0 36px 0;
  position: relative;
}
.tl-item:last-child {
  padding-bottom: 0;
}
.tl-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--warm-white);
}
.tl-content {
  padding-top: 8px;
}
.tl-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.tl-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.story-text .section-desc {
  max-width: 100%;
  margin-bottom: 24px;
}
.story-highlight {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: 20px;
  padding: 32px 36px;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}
.story-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.3;
}
.story-highlight blockquote {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: white;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.story-highlight blockquote::before {
  content: '"';
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -20px;
  left: -10px;
  font-style: normal;
  line-height: 1;
}
.story-highlight cite {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--green-light);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}

/* ===== VISION & MISSION ===== */
#vm {
  background: var(--cream);
}
.vm-header {
  text-align: center;
  margin-bottom: 60px;
}
.vm-header .section-desc {
  margin: 0 auto;
}
.vm-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.vm-card {
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}
.vm-card.vision {
  background: linear-gradient(135deg, var(--green-deep), #0f3320);
}
.vm-card.mission {
  background: var(--warm-white);
  border: 1.5px solid rgba(45, 122, 79, 0.2);
}
.vm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.25;
}

.vm-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.vision .vm-card-icon {
  background: rgba(255, 255, 255, 0.12);
}
.mission .vm-card-icon {
  background: rgba(45, 122, 79, 0.1);
}

.vm-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.vision h3 {
  color: white;
}
.mission h3 {
  color: var(--green-deep);
}
.vm-card p {
  font-size: 0.97rem;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}
.vision p {
  color: rgba(255, 255, 255, 0.78);
}
.mission p {
  color: var(--text-mid);
}
.mission-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.mission-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.mission-points li::before {
  content: "→";
  color: var(--green-mid);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== CORE VALUES ===== */
#values {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
#values::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.35;
}
.values-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.value-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 40px 32px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-bright), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.value-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}
.value-card:hover::after {
  transform: scaleX(1);
}
.val-num {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}
.val-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.value-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

/* ===== WHY US ===== */
#why {
  background: var(--warm-white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-point {
  background: var(--cream);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.why-point:hover {
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  transform: translateX(6px);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(45, 122, 79, 0.14),
    rgba(58, 171, 107, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-point h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.why-point p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.why-card {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.3;
}
.why-numbers {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why-num {
}
.why-num .big {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.why-num .desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 6px;
  display: block;
}
.why-num-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== DIRECTOR ===== */
#director {
  background: var(--cream);
}
.director-wrapper {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 2fr;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.director-left {
  background: linear-gradient(160deg, var(--green-deep), var(--green-mid));
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.director-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.3;
}
.dir-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 3px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.dir-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
}
.dir-title {
  font-size: 11px;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}
.dir-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.dir-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-align: center;
}

.director-right {
  padding: 56px 52px;
}
.director-right .section-tag {
  margin-bottom: 12px;
}
.director-right h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 28px;
  line-height: 1.2;
}
.director-right p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 18px;
}
.director-right p.lead {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--green-deep);
  font-style: italic;
}
.dir-signature {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.dir-signature span {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--green-mid);
  font-style: italic;
  display: block;
  margin-bottom: 4px;
}
.dir-signature small {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== TEAM ===== */
#team {
  background: var(--warm-white);
}
.team-header {
  margin-bottom: 56px;
}
.team-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}
.team-intro-text .section-desc {
  max-width: 100%;
}
.team-promise-box {
  background: linear-gradient(
    135deg,
    rgba(45, 122, 79, 0.08),
    rgba(58, 171, 107, 0.04)
  );
  border: 1.5px solid rgba(45, 122, 79, 0.18);
  border-radius: 20px;
  padding: 36px 32px;
}
.team-promise-box h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 16px;
}
.team-promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-promise-list li {
  font-size: 0.92rem;
  color: var(--text-mid);
  display: flex;
  gap: 10px;
  line-height: 1.5;
}
.team-promise-list li::before {
  content: "✓";
  color: var(--green-bright);
  font-weight: 700;
  flex-shrink: 0;
}

.faculty-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.faculty-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.faculty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.faculty-top {
  padding: 36px 28px 28px;
  background: linear-gradient(145deg, var(--cream), var(--warm-white));
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.faculty-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  margin: 0 auto 16px;
}
.faculty-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.faculty-subj {
  font-size: 12px;
  color: var(--green-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.faculty-exp {
  font-size: 12px;
  color: var(--text-light);
}
.faculty-bottom {
  padding: 20px 28px;
}
.faculty-bottom p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== MILESTONES ===== */
#milestones {
  background: var(--cream);
}
.milestones-header {
  text-align: center;
  margin-bottom: 64px;
}
.milestones-header .section-desc {
  margin: 0 auto;
}
.milestones-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.milestone-card {
  background: white;
  border-radius: 22px;
  padding: 36px 28px 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.milestone-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--green-mid),
    var(--green-bright),
    var(--gold)
  );
}
.milestone-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.ms-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.ms-num {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--green-deep);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.ms-label {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
  font-weight: 500;
}

/* ===== LOCATIONS STRIP ===== */
#locations-strip {
  background: var(--green-deep);
  padding: 72px 5%;
  position: relative;
  overflow: hidden;
}
#locations-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.3;
}
.ls-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}
.ls-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}
.ls-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 151, 42, 0.4);
}
.ls-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ls-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 22px;
  backdrop-filter: blur(8px);
}
.ls-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 6px;
}
.ls-card .tag {
  font-size: 11px;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.ls-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .story-grid,
  .why-grid,
  .director-wrapper,
  .team-intro {
    grid-template-columns: 1fr;
  }
  .director-wrapper {
    border-radius: 24px;
  }
  .director-left {
    padding: 48px 32px;
  }
  .vm-cards {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .milestones-track {
    grid-template-columns: 1fr 1fr;
  }
  .ls-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 64px 5%;
  }
  .values-grid,
  .faculty-cards {
    grid-template-columns: 1fr;
  }
  .milestones-track {
    grid-template-columns: 1fr 1fr;
  }
  .ls-cards {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/*End of About CSS*/

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 5% 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.5;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(58, 171, 107, 0.22) 0%,
    transparent 70%
  );
  top: -120px;
  right: -80px;
}
.orb2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(200, 151, 42, 0.18) 0%,
    transparent 70%
  );
  bottom: -60px;
  left: 25%;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  font-family: "Space Mono", monospace;
}
.breadcrumb a {
  color: var(--green-light);
  text-decoration: none;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.28);
}
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease both;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.1s ease both;
}

/* Course quick-nav */
.course-quicknav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.2s ease both;
}
.qnav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50px;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s;
}
.qnav-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
.qnav-btn .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-jee {
  background: var(--green-bright);
}
.dot-neet {
  background: #4ab3e8;
}
.dot-found {
  background: var(--gold-light);
}
.dot-oly {
  background: #b36be0;
}

/* Stats row */
.hero-stats-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  animation: fadeUp 0.7s 0.3s ease both;
}
.h-stat .num {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.h-stat .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 5px;
  display: block;
}
.h-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--green-deep);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.marquee-track span.hl {
  color: var(--gold-light);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== GLOBAL ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green-mid);
}
.section-tag.light {
  color: var(--green-light);
}
.section-tag.light::before {
  background: var(--green-light);
}
.section-tag.gold {
  color: var(--gold);
}
.section-tag.gold::before {
  background: var(--gold);
}
h2.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 14px;
}
h2.section-title.white {
  color: white;
}
.section-desc {
  font-size: 1.03rem;
  color: var(--text-mid);
  line-height: 1.85;
}
.section-desc.white {
  color: rgba(255, 255, 255, 0.72);
}

/* ===== OVERVIEW STRIP ===== */
#overview {
  background: var(--warm-white);
  padding: 72px 5%;
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.overview-card {
  border-radius: 22px;
  padding: 36px 28px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.overview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.2;
}
.overview-card.jee {
  background: linear-gradient(160deg, var(--green-deep), #0f3a22);
}
.overview-card.neet {
  background: linear-gradient(160deg, #1a3a4a, #0f2233);
}
.overview-card.found {
  background: linear-gradient(160deg, #3a2e1a, #241c0e);
}
.overview-card.oly {
  background: linear-gradient(160deg, #2e1a4a, #1c0f33);
}
.overview-card.mht {
  background: linear-gradient(160deg, #3a1a1a, #241010); /* deep maroon/red */
}
.overview-card.cie {
  background: linear-gradient(160deg, #1a3a3a, #0f2424); /* teal academic tone */
}
.overview-card.igcse {
  background: linear-gradient(160deg, #1a2e4a, #0f1c33); /* calm blue */
}
.overview-card.ib {
  background: linear-gradient(160deg, #3a1a2e, #24101c); /* premium purple */
}
.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.ov-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.ov-class {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.overview-card.jee .ov-class {
  color: var(--green-light);
}
.overview-card.neet .ov-class {
  color: #7ecbe8;
}
.overview-card.found .ov-class {
  color: var(--gold-light);
}
.overview-card.oly .ov-class {
  color: #c87ef0;
}
.ov-name {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: white;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.ov-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.ov-arrow {
  display: inline-block;
  margin-top: 16px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.overview-card:hover .ov-arrow {
  color: white;
  transform: translateX(6px);
}

/* ===== COURSE DETAIL SECTIONS ===== */
.course-section {
  padding: 100px 5%;
  scroll-margin-top: 70px;
}
.course-section:nth-child(odd) {
  background: var(--warm-white);
}
.course-section:nth-child(even) {
  background: var(--cream);
}

/* Course Header */
.course-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 32px;
  margin-bottom: 60px;
}
.course-header-left {
}
.course-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  padding: 7px 18px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.badge-jee {
  background: rgba(45, 122, 79, 0.12);
  border: 1px solid rgba(45, 122, 79, 0.3);
  color: var(--green-mid);
}
.badge-neet {
  background: rgba(30, 90, 140, 0.12);
  border: 1px solid rgba(30, 90, 140, 0.3);
  color: #2a7ab8;
}
.badge-found {
  background: rgba(200, 151, 42, 0.12);
  border: 1px solid rgba(200, 151, 42, 0.3);
  color: var(--gold);
}
.badge-oly {
  background: rgba(120, 60, 180, 0.12);
  border: 1px solid rgba(120, 60, 180, 0.3);
  color: #7a3cb0;
}

.course-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 14px;
}
.course-header p.lead {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 640px;
}

.course-enroll-card {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: 22px;
  padding: 32px 28px;
  text-align: center;
  min-width: 220px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.course-enroll-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.3;
}
.cec-tag {
  font-size: 11px;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
}
.cec-class {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: white;
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
}
.cec-mode {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 20px;
}
.btn-enroll {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.btn-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 151, 42, 0.4);
}
.btn-wa-sm {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: color 0.2s;
}
.btn-wa-sm:hover {
  color: white;
}

/* Course Body */
.course-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
.course-body.reverse {
  grid-template-columns: 1fr 1.6fr;
}
.course-body.reverse .course-main {
  order: 2;
}
.course-body.reverse .course-side {
  order: 1;
}

/* What you'll study */
.subjects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.subject-pill {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  transition: all 0.3s;
}
.subject-pill:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.subj-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
}
.subj-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green-deep);
  display: block;
}
.subj-scope {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}

.course-features-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 18px;
}

/* Features list */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.25s;
}
.feature-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transform: translateX(4px);
}
.feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.feat-icon.g {
  background: rgba(45, 122, 79, 0.1);
}
.feat-icon.b {
  background: rgba(30, 90, 140, 0.1);
}
.feat-icon.o {
  background: rgba(200, 151, 42, 0.1);
}
.feat-icon.p {
  background: rgba(120, 60, 180, 0.1);
}
.feature-item h4 {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Side cards */
.side-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
}
.side-card:last-child {
  margin-bottom: 0;
}
.side-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.checklist li::before {
  content: "✓";
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.checklist.g li::before {
  color: var(--green-bright);
}
.checklist.b li::before {
  color: #2a7ab8;
}
.checklist.o li::before {
  color: var(--gold);
}
.checklist.p li::before {
  color: #7a3cb0;
}

/* Who should join */
.who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.who-tag {
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
}

/* Highlight stat boxes */
.stat-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-box {
  background: var(--cream);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}
.stat-box .snum {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green-deep);
  display: block;
  line-height: 1;
}
.stat-box .slbl {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}

/* ===== COMPARISON TABLE ===== */
#compare {
  background: var(--green-deep);
  padding: 90px 5%;
  position: relative;
  overflow: hidden;
}
#compare::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.3;
}
.compare-inner {
  position: relative;
  z-index: 2;
}
.compare-header {
  text-align: center;
  margin-bottom: 52px;
}
.compare-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
}
thead tr {
  background: rgba(255, 255, 255, 0.08);
}
thead th {
  padding: 18px 20px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: left;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
thead th:first-child {
  color: rgba(255, 255, 255, 0.4);
}
tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}
tbody tr:last-child {
  border-bottom: none;
}
tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}
tbody td {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}
tbody td:first-child {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.check-yes {
  color: var(--green-bright);
  font-size: 16px;
}
.check-no {
  color: rgba(255, 255, 255, 0.2);
  font-size: 16px;
}
.check-partial {
  color: var(--gold-light);
  font-size: 16px;
}

/* ===== METHODOLOGY ===== */
#method {
  background: var(--warm-white);
  padding: 90px 5%;
}
.method-header {
  text-align: center;
  margin-bottom: 56px;
}
.method-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.method-step-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.method-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.method-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
}
.method-step-card:hover::before {
  transform: scaleX(1);
}
.ms-num {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}
.ms-icon-big {
  font-size: 34px;
  display: block;
  margin-bottom: 14px;
}
.method-step-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.method-step-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== FAQ (course-specific) ===== */
#faq {
  background: var(--cream);
  padding: 90px 5%;
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-q {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.faq-q h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-deep);
  flex: 1;
  padding-right: 16px;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--green-mid);
  transition: all 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--green-mid);
  color: white;
}
.faq-item.open .faq-a {
  max-height: 240px;
}
.faq-item.open {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .course-body,
  .course-body.reverse {
    grid-template-columns: 1fr;
  }
  .course-body.reverse .course-main,
  .course-body.reverse .course-side {
    order: unset;
  }
  .course-header {
    grid-template-columns: 1fr;
  }
  .subjects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .method-steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .overview-grid {
    grid-template-columns: 1fr 1fr;
  }
  .subjects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .method-steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stat-boxes {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats-row {
    gap: 20px;
  }
  .course-quicknav {
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
  .subjects-grid {
    grid-template-columns: 1fr;
  }
  .stat-boxes {
    grid-template-columns: 1fr;
  }
}

/*End of Courses*/

/* ===== PAGE HERO ===== */
.page-hero-methodology {
  background: linear-gradient(
    135deg,
    var(--green-deep) 0%,
    #25aae1 50%,
    #236d8c 100%
  );
  padding: 140px 5% 100px;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.page-hero-methodology::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.5;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.orb1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(58, 171, 107, 0.2) 0%,
    transparent 70%
  );
  top: -150px;
  right: -100px;
}
.orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(200, 151, 42, 0.16) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: 20%;
}
.orb3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(58, 171, 107, 0.12) 0%,
    transparent 70%
  );
  top: 50%;
  left: -100px;
}

.page-hero-methodology-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  font-family: "Space Mono", monospace;
}
.breadcrumb a {
  color: var(--green-light);
  text-decoration: none;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.28);
}

.page-hero-methodology h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease both;
}
.page-hero-methodology h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.page-hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-principles {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-principle {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hp-num {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  width: 28px;
  flex-shrink: 0;
}
.hp-bar {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
}
.hp-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green-bright), transparent);
  width: var(--w);
}
.hp-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

/* Hero right — animated diagram */
.hero-diagram {
  position: relative;
  height: 420px;
  animation: fadeUp 0.7s 0.3s ease both;
}
@media (max-width: 624px) {
    .hero-diagram {
        display:none;
    }
}
.diagram-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 5;
  box-shadow:
    0 0 0 12px rgba(58, 171, 107, 0.12),
    0 0 0 24px rgba(58, 171, 107, 0.06);
  animation: pulse-ring 3s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%,
  100% {
    box-shadow:
      0 0 0 12px rgba(58, 171, 107, 0.12),
      0 0 0 24px rgba(58, 171, 107, 0.06);
  }
  50% {
    box-shadow:
      0 0 0 18px rgba(58, 171, 107, 0.08),
      0 0 0 36px rgba(58, 171, 107, 0.03);
  }
}
.diagram-center span:first-child {
  font-size: 32px;
}
.diagram-center span:last-child {
  font-family: "Playfair Display", serif;
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-align: center;
  line-height: 1.3;
  margin-top: 4px;
}

.diagram-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit-1 {
  width: 220px;
  height: 220px;
  animation: spin 20s linear infinite;
}
.orbit-2 {
  width: 340px;
  height: 340px;
  animation: spin 30s linear infinite reverse;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.diagram-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  backdrop-filter: blur(8px);
  cursor: default;
  transition: all 0.3s;
  text-align: center;
}
.diagram-node:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translate(var(--tx), var(--ty)) scale(1.12);
}
.diagram-node span.ni {
  font-size: 20px;
  display: block;
}
.diagram-node span.nl {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-top: 2px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Orbit 1 nodes — 3 nodes */
.n1 {
  --tx: calc(-50% + 110px);
  --ty: -50%;
  transform: translate(calc(-50% + 0px), calc(-50% - 110px));
}
.n2 {
  transform: translate(calc(-50% + 95px), calc(-50% + 55px));
}
.n3 {
  transform: translate(calc(-50% - 95px), calc(-50% + 55px));
}

/* Orbit 2 nodes — 4 nodes */
.n4 {
  transform: translate(calc(-50% + 0px), calc(-50% - 170px));
}
.n5 {
  transform: translate(calc(-50% + 160px), calc(-50% + 0px));
}
.n6 {
  transform: translate(calc(-50% + 0px), calc(-50% + 170px));
}
.n7 {
  transform: translate(calc(-50% - 160px), calc(-50% + 0px));
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--green-deep);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.marquee-track span.hl {
  color: var(--gold-light);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== GLOBAL HELPERS ===== */
section {
  padding: 90px 5%;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green-mid);
}
.section-tag.light {
  color: var(--green-light);
}
.section-tag.light::before {
  background: var(--green-light);
}
.section-tag.gold {
  color: var(--gold);
}
.section-tag.gold::before {
  background: var(--gold);
}
h2.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 14px;
}
h2.section-title.white {
  color: white;
}
.section-desc {
  font-size: 1.03rem;
  color: var(--text-mid);
  line-height: 1.85;
}
.section-desc.white {
  color: rgba(255, 255, 255, 0.72);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(200, 151, 42, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 151, 42, 0.45);
}
.btn-outline-dark {
  border: 1.5px solid rgba(26, 74, 46, 0.3);
  color: var(--green-deep);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline-dark:hover {
  background: var(--green-deep);
  color: white;
}
.btn-white {
  background: white;
  color: var(--gold);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}
.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: white;
}

/* ===== PHILOSOPHY STRIP ===== */
#philosophy {
  background: var(--warm-white);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.philosophy-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}
.philosophy-text p.pullquote {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--green-deep);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.6;
}
.philosophy-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.pillar:hover {
  background: white;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateX(6px);
}
.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(45, 122, 79, 0.12),
    rgba(58, 171, 107, 0.06)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.pillar-text h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.pillar-text p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* ===== JOURNEY — 6 STEPS ===== */
#journey {
  background: var(--cream);
}
.journey-header {
  margin-bottom: 64px;
}
.journey-header .section-desc {
  max-width: 600px;
}

.journey-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.journey-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  position: relative;
}
.journey-step:last-child .step-line {
  display: none;
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 20px rgba(26, 74, 46, 0.3);
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}
.step-circle .s-icon {
  font-size: 22px;
  display: block;
}
.step-circle .s-num {
  font-size: 9px;
  margin-top: 2px;
  opacity: 0.7;
}
.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(
    to bottom,
    var(--green-mid),
    rgba(45, 122, 79, 0.1)
  );
  margin: 0 auto;
  min-height: 40px;
}

.step-content {
  padding: 0 0 48px 36px;
}
.step-card {
  background: white;
  border-radius: 20px;
  padding: 32px 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--green-bright), var(--green-mid));
  transform: scaleY(0);
  transition: transform 0.3s;
  transform-origin: top;
}
.step-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  transform: translateX(6px);
}
.step-card:hover::before {
  transform: scaleY(1);
}

.step-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px;
}
.step-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.2;
}
.step-tag {
  background: rgba(45, 122, 79, 0.1);
  border: 1px solid rgba(45, 122, 79, 0.2);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-mid);
  white-space: nowrap;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.step-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.step-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.s-highlight {
  background: var(--cream);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ===== CLASSROOM EXPERIENCE ===== */
#classroom {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
#classroom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.35;
}
.classroom-inner {
  position: relative;
  z-index: 2;
}
.classroom-header {
  text-align: center;
  margin-bottom: 60px;
}
.classroom-header .section-desc {
  margin: 0 auto;
}

.classroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.classroom-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 36px 30px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.classroom-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-bright), var(--gold));
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}
.classroom-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-6px);
}
.classroom-card:hover::after {
  transform: scaleX(1);
}
.cc-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
}
.cc-tag {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}
.classroom-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}
.classroom-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

/* ===== TEST & ASSESSMENT ===== */
#testing {
  background: var(--warm-white);
}
.testing-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.testing-content {
}
.testing-content .section-desc {
  max-width: 100%;
  margin-bottom: 32px;
}
.test-types {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.test-type {
  background: var(--cream);
  border-radius: 18px;
  padding: 24px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s;
}
.test-type:hover {
  background: white;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.tt-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.tt-g {
  background: rgba(45, 122, 79, 0.12);
}
.tt-b {
  background: rgba(30, 90, 200, 0.1);
}
.tt-o {
  background: rgba(200, 151, 42, 0.12);
}
.tt-r {
  background: rgba(200, 60, 60, 0.1);
}
.test-type h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.test-type p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.freq-badge {
  display: inline-block;
  margin-top: 8px;
  background: rgba(45, 122, 79, 0.1);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-mid);
  font-family: "Space Mono", monospace;
}

/* Score Card Visual */
.score-card-visual {
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.scv-header {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  padding: 24px 28px;
}
.scv-header p {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.scv-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
}
.scv-body {
  padding: 28px;
}
.scv-subject {
  margin-bottom: 20px;
}
.scv-subject:last-of-type {
  margin-bottom: 0;
}
.scv-subject-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.scv-subject-top span:first-child {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.scv-subject-top span:last-child {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-mid);
}
.progress-bar {
  height: 8px;
  background: var(--cream);
  border-radius: 50px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 50px;
  transition: width 1.5s ease;
}
.pf-green {
  background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
}
.pf-blue {
  background: linear-gradient(90deg, #2a6ab0, #5ba3e8);
}
.pf-gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.pf-purple {
  background: linear-gradient(90deg, #7a3cb0, #b06ee0);
}
.scv-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px 28px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.scv-footer span {
  font-size: 12px;
  color: var(--text-light);
}
.scv-footer strong {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--green-deep);
}

/* ===== PERSONALISATION ===== */
#personal {
  background: var(--cream);
}
.personal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.personal-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.personal-card {
  background: white;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  text-align: center;
}
.personal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}
.pc-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 14px;
}
.personal-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.personal-card p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.personal-big-card {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: 24px;
  padding: 40px;
  margin-top: 16px;
  grid-column: span 2;
  position: relative;
  overflow: hidden;
}
.personal-big-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.25;
}
.personal-big-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.personal-big-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.personal-content p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}
.personal-content p.lead {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--green-deep);
  font-style: italic;
  margin-bottom: 24px;
}
.parent-involvement {
  background: white;
  border-radius: 20px;
  padding: 28px 30px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  margin-top: 28px;
}
.parent-involvement h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 14px;
  font-size: 1rem;
}
.pi-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pi-list li {
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.55;
}
.pi-list li::before {
  content: "→";
  color: var(--green-mid);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== FACULTY ===== */
#faculty {
  background: var(--warm-white);
}
.faculty-header {
  text-align: center;
  margin-bottom: 56px;
}
.faculty-header .section-desc {
  margin: 0 auto;
}
.faculty-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.fp-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.fp-card:hover {
  background: white;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.fp-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 14px;
}
.fp-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.fp-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.faculty-quote-strip {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: 24px;
  padding: 48px 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.faculty-quote-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.3;
}
.faculty-quote-strip blockquote {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-style: italic;
  color: white;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto 20px;
}
.faculty-quote-strip cite {
  font-size: 13px;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 1;
}

/* ===== RESULTS MINDSET ===== */
#results {
  background: var(--cream);
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.results-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.metric-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
}
.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}
.metric-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 12px;
}
.metric-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-deep);
  display: block;
  line-height: 1;
}
.metric-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  display: block;
}

.results-content p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}
.results-content p.lead {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--green-deep);
  font-style: italic;
}
.mindset-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.mindset-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.mp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  flex-shrink: 0;
  margin-top: 7px;
}
.mindset-point p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.mindset-point p strong {
  color: var(--green-deep);
}

/* ===== DIFFERENCE TABLE ===== */
#difference {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
#difference::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.3;
}
.diff-inner {
  position: relative;
  z-index: 2;
}
.diff-header {
  text-align: center;
  margin-bottom: 52px;
}
.diff-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.diff-col {
  border-radius: 22px;
  padding: 40px 36px;
}
.diff-col.them {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.diff-col.us {
  background: linear-gradient(
    135deg,
    rgba(45, 122, 79, 0.25),
    rgba(58, 171, 107, 0.1)
  );
  border: 1px solid rgba(58, 171, 107, 0.25);
}
.diff-col-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.diff-col-title .badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.them .badge {
  background: rgba(255, 255, 255, 0.06);
}
.us .badge {
  background: rgba(58, 171, 107, 0.2);
}
.diff-col-title h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
}
.diff-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.diff-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.diff-item .di-icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.diff-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}
.us .diff-item p {
  color: rgba(255, 255, 255, 0.85);
}

/* ===== FAQ ===== */
#faq {
  background: var(--warm-white);
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-q {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.faq-q h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-deep);
  flex: 1;
  padding-right: 16px;
  line-height: 1.4;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--green-mid);
  transition: all 0.3s;
  flex-shrink: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--green-mid);
  color: white;
}
.faq-item.open .faq-a {
  max-height: 260px;
}
.faq-item.open {
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-diagram {
    height: 300px;
  }
  .philosophy-grid,
  .testing-grid,
  .personal-grid,
  .results-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .classroom-grid {
    grid-template-columns: 1fr 1fr;
  }
  .diff-cols {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 64px 5%;
  }
  .classroom-grid,
  .faculty-promise-grid {
    grid-template-columns: 1fr;
  }
  .personal-cards {
    grid-template-columns: 1fr;
  }
  .results-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .journey-step {
    grid-template-columns: 56px 1fr;
  }
  .step-circle {
    width: 52px;
    height: 52px;
  }
}
/*End of Methodology*/
.page-hero {
  padding: 140px 5% 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.5;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.orb1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(58, 171, 107, 0.22) 0%,
    transparent 70%
  );
  top: -130px;
  right: -80px;
}
.orb2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(200, 151, 42, 0.16) 0%,
    transparent 70%
  );
  bottom: -60px;
  left: 25%;
}

.page-hero-inner-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  font-family: "Space Mono", monospace;
}
.breadcrumb a {
  color: var(--green-light);
  text-decoration: none;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.28);
}
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease both;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.page-hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.1s ease both;
}

/* Location jump buttons */
.loc-jumps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.loc-jump {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 16px 22px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.loc-jump:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateX(6px);
}
.lj-num {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  width: 24px;
}
.lj-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lj-dot-1 {
  background: var(--green-bright);
}
.lj-dot-2 {
  background: #4ab3e8;
}
.lj-dot-3 {
  background: var(--gold-light);
}
.lj-info {
  flex: 1;
}
.lj-info strong {
  display: block;
  color: white;
  font-size: 15px;
  font-weight: 700;
}
.lj-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.lj-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 18px;
  transition: 0.3s;
}
.loc-jump:hover .lj-arrow {
  color: white;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--green-deep);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.marquee-track span.hl {
  color: var(--gold-light);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== GLOBAL ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green-mid);
}
.section-tag.light {
  color: var(--green-light);
}
.section-tag.light::before {
  background: var(--green-light);
}
h2.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 14px;
}
h2.section-title.white {
  color: white;
}
.section-desc {
  font-size: 1.03rem;
  color: var(--text-mid);
  line-height: 1.85;
}
.section-desc.white {
  color: rgba(255, 255, 255, 0.72);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== OVERVIEW STRIP ===== */
#overview {
  background: var(--warm-white);
  padding: 72px 5%;
}
.overview-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: center;
}
.overview-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}
.ov-stat-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.ov-stat {
  text-align: center;
}
.ov-stat .num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-deep);
  display: block;
  line-height: 1;
}
.ov-stat .lbl {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}
.ov-stat-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
  align-self: stretch;
}
.coverage-map {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: 28px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.coverage-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.3;
}
.coverage-map-inner {
  position: relative;
  z-index: 1;
}
.coverage-map h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}
.coverage-map p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}
.coverage-pins {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.coverage-pin {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px 20px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.coverage-pin:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}
.pin-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pin-1 {
  background: rgba(58, 171, 107, 0.2);
}
.pin-2 {
  background: rgba(74, 179, 232, 0.2);
}
.pin-3 {
  background: rgba(232, 184, 75, 0.2);
}
.pin-info strong {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}
.pin-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.pin-tag {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Space Mono", monospace;
  flex-shrink: 0;
}

/* ===== BRANCH SECTIONS ===== */
.branch-section {
  padding: 100px 5%;
  scroll-margin-top: 70px;
}
.branch-section.alt {
  background: var(--cream);
}
.branch-section.white {
  background: var(--warm-white);
}

/* Branch header */
.branch-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.branch-num {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(45, 122, 79, 0.1);
  line-height: 1;
  flex-shrink: 0;
}
.branch-header-text {
}
.branch-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  padding: 6px 16px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.branch-tag-1 {
  background: rgba(58, 171, 107, 0.12);
  border: 1px solid rgba(58, 171, 107, 0.3);
  color: var(--green-mid);
}
.branch-tag-2 {
  background: rgba(74, 179, 232, 0.1);
  border: 1px solid rgba(74, 179, 232, 0.3);
  color: #2a7ab8;
}
.branch-tag-3 {
  background: rgba(200, 151, 42, 0.1);
  border: 1px solid rgba(200, 151, 42, 0.3);
  color: var(--gold);
}
.branch-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.1;
}

/* Branch body */
.branch-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.branch-body.flip {
  grid-template-columns: 1fr 1.1fr;
}
.branch-body.flip .branch-main {
  order: 2;
}
.branch-body.flip .branch-side {
  order: 1;
}

/* Map embed placeholder */
.map-embed {
  border-radius: 22px;
  overflow: hidden;
  height: 320px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.map-embed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.3;
}
.map-embed:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.map-pin-big {
  font-size: 52px;
  position: relative;
  z-index: 1;
  animation: pinBounce 2s ease-in-out infinite;
}
@keyframes pinBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.map-embed h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  position: relative;
  z-index: 1;
}
.map-embed p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.5;
}
.map-btn-label {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  position: relative;
  z-index: 1;
  margin-top: 4px;
  transition: background 0.2s;
}
.map-embed:hover .map-btn-label {
  background: rgba(255, 255, 255, 0.25);
}

/* Info cards */
.branch-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.info-card {
  background: white;
  border-radius: 16px;
  padding: 20px 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.3s;
}
.info-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}
.ic-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(45, 122, 79, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ic-info {
}
.ic-info .label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: "Space Mono", monospace;
  display: block;
  margin-bottom: 4px;
}
.ic-info .value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* Contact action buttons */
.branch-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.action-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.action-btn-call {
  background: var(--green-deep);
  color: white;
}
.action-btn-call:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 74, 46, 0.35);
}
.action-btn-wa {
  background: #25d366;
  color: white;
}
.action-btn-wa:hover {
  background: #1da857;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.action-btn-dir {
  background: var(--cream);
  color: var(--green-deep);
  border: 1.5px solid rgba(45, 122, 79, 0.2);
}
.action-btn-dir:hover {
  background: white;
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.action-btn .ab-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.action-btn-dir .ab-icon {
  background: rgba(45, 122, 79, 0.1);
}

/* Courses available */
.courses-at-branch {
  background: white;
  border-radius: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 0;
}
.courses-at-branch h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--green-deep);
  font-size: 1rem;
  margin-bottom: 16px;
}
.course-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ctag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.ctag .cdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Nearby areas */
.nearby-box {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  margin-top: 14px;
}
.nearby-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.25;
}
.nearby-box h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.nearby-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.nearby-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* ===== HOW TO REACH ===== */
#reach {
  background: var(--green-deep);
  padding: 90px 5%;
  position: relative;
  overflow: hidden;
}
#reach::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.35;
}
.reach-inner {
  position: relative;
  z-index: 2;
}
.reach-header {
  text-align: center;
  margin-bottom: 56px;
}
.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reach-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.reach-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-5px);
}
.rc-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 14px;
}
.rc-title {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}
.reach-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}
.reach-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

/* ===== TIMING & ADMISSIONS ===== */
#timing {
  background: var(--warm-white);
  padding: 90px 5%;
}
.timing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.timing-card {
  background: white;
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.timing-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.day-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.day-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.day-row:last-child {
  border-bottom: none;
}
.day-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.day-time {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: var(--green-mid);
  font-weight: 700;
}
.day-closed {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: #e05252;
  font-weight: 700;
}
.day-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.status-open {
  background: var(--green-bright);
}
.status-limited {
  background: var(--gold);
}
.status-closed {
  background: #e05252;
}

.admission-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.adm-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.adm-step:hover {
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transform: translateX(4px);
}
.adm-step-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.adm-step h4 {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.adm-step p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== FAQ ===== */
#faq {
  background: var(--cream);
  padding: 90px 5%;
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-q {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.faq-q h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-deep);
  flex: 1;
  padding-right: 16px;
  line-height: 1.4;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--green-mid);
  transition: all 0.3s;
  flex-shrink: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--green-mid);
  color: white;
}
.faq-item.open .faq-a {
  max-height: 220px;
}
.faq-item.open {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
  .overview-inner {
    grid-template-columns: 1fr;
  }
  .branch-body,
  .branch-body.flip {
    grid-template-columns: 1fr;
  }
  .branch-body.flip .branch-main,
  .branch-body.flip .branch-side {
    order: unset;
  }
  .reach-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timing-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .branch-info-grid {
    grid-template-columns: 1fr;
  }
  .reach-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/*End of Contact*/

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 5% 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.5;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.orb1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(58, 171, 107, 0.22) 0%,
    transparent 70%
  );
  top: -130px;
  right: -80px;
}
.orb2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(200, 151, 42, 0.16) 0%,
    transparent 70%
  );
  bottom: -60px;
  left: 20%;
}

.page-hero-inner-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  font-family: "Space Mono", monospace;
}
.breadcrumb a {
  color: var(--green-light);
  text-decoration: none;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.28);
}
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease both;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.page-hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeUp 0.7s 0.1s ease both;
}

/* Search bar */
.faq-search-wrap {
  position: relative;
  animation: fadeUp 0.7s 0.2s ease both;
}
.faq-search {
  width: 100%;
  padding: 16px 56px 16px 22px;
  border-radius: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}
.faq-search::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.faq-search:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}
.search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.5;
  pointer-events: none;
}
.search-count {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Space Mono", monospace;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* Category quick-links */
.category-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeUp 0.7s 0.25s ease both;
}
.cat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 13px 18px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.cat-pill:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateX(4px);
}
.cat-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.cat-pill-text {
  flex: 1;
}
.cat-pill-text strong {
  display: block;
  color: white;
  font-size: 13px;
  font-weight: 700;
}
.cat-pill-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}
.cat-pill-count {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--green-deep);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.marquee-track span.hl {
  color: var(--gold-light);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== GLOBAL ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green-mid);
}
.section-tag.light {
  color: var(--green-light);
}
.section-tag.light::before {
  background: var(--green-light);
}
h2.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 14px;
}
h2.section-title.white {
  color: white;
}
.section-desc {
  font-size: 1.03rem;
  color: var(--text-mid);
  line-height: 1.85;
}
.section-desc.white {
  color: rgba(255, 255, 255, 0.72);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MAIN FAQ LAYOUT ===== */
#faq-main {
  background: var(--warm-white);
  padding: 90px 5%;
}
.faq-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

/* Sticky sidebar */
.faq-sidebar {
  position: sticky;
  top: 90px;
}
.sidebar-title {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.sidebar-link:hover {
  background: var(--cream);
  color: var(--green-deep);
}
.sidebar-link.active {
  background: rgba(45, 122, 79, 0.1);
  color: var(--green-mid);
}
.sidebar-link .sl-icon {
  font-size: 16px;
  flex-shrink: 0;
}
.sidebar-link .sl-count {
  margin-left: auto;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  color: var(--text-light);
}
.sidebar-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin: 8px 0;
}
.sidebar-contact {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: 16px;
  padding: 22px 18px;
  margin-top: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sidebar-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.25;
}
.sidebar-contact p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.sidebar-contact a {
  display: block;
  background: var(--gold);
  color: var(--green-deep);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: all 0.2s;
}
.sidebar-contact a:hover {
  background: var(--gold-light);
}

/* FAQ Content */
.faq-content {
}
.faq-category {
  margin-bottom: 72px;
  scroll-margin-top: 90px;
}
.faq-category:last-child {
  margin-bottom: 0;
}

/* Category header */
.cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}
.cat-icon-big {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.cat-icon-big.green {
  background: rgba(45, 122, 79, 0.12);
}
.cat-icon-big.blue {
  background: rgba(30, 90, 200, 0.1);
}
.cat-icon-big.gold {
  background: rgba(200, 151, 42, 0.1);
}
.cat-icon-big.purple {
  background: rgba(120, 60, 180, 0.1);
}
.cat-icon-big.teal {
  background: rgba(20, 160, 160, 0.1);
}
.cat-icon-big.red {
  background: rgba(200, 60, 60, 0.1);
}
.cat-header-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.cat-header-text span {
  font-size: 13px;
  color: var(--text-light);
}

/* FAQ Item */
.faq-item {
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-q {
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.faq-q-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}
.faq-q-num {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
  margin-top: 3px;
  flex-shrink: 0;
  min-width: 22px;
}
.faq-q h4 {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--green-deep);
  line-height: 1.45;
}
.faq-toggle {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--green-mid);
  transition: all 0.3s;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.07);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 24px 22px 60px;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.faq-a-inner p {
  margin-bottom: 10px;
}
.faq-a-inner p:last-child {
  margin-bottom: 0;
}
.faq-a-inner ul {
  margin: 10px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-a-inner ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.faq-a-inner ul li::before {
  content: "→";
  color: var(--green-mid);
  font-weight: 700;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--green-mid);
  color: white;
  border-color: var(--green-mid);
}
.faq-item.open .faq-a {
  max-height: 600px;
}
.faq-item.open {
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(45, 122, 79, 0.15);
}
.faq-item.open .faq-q h4 {
  color: var(--green-mid);
}
.faq-item.hidden {
  display: none;
}

/* No results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  display: none;
}
.no-results.show {
  display: block;
}
.no-results p {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.no-results span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== QUICK ANSWERS ===== */
#quick {
  background: var(--cream);
  padding: 80px 5%;
}
.quick-header {
  text-align: center;
  margin-bottom: 52px;
}
.quick-header .section-desc {
  margin: 0 auto;
  max-width: 560px;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quick-card {
  background: white;
  border-radius: 20px;
  padding: 30px 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.quick-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}
.qc-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}
.qc-q {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
  line-height: 1.35;
}
.qc-a {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.qc-highlight {
  display: inline-block;
  margin-top: 10px;
  background: rgba(45, 122, 79, 0.1);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-mid);
  font-family: "Space Mono", monospace;
}

/* ===== STILL HAVE QUESTIONS ===== */
#contact-strip {
  background: var(--green-deep);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
#contact-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.35;
}
.contact-strip-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.contact-option {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 36px 30px;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
.contact-option:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-5px);
}
.co-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 14px;
}
.co-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}
.co-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 18px;
}
.co-btn {
  display: inline-block;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}
.co-btn-green {
  background: var(--green-bright);
  color: white;
}
.co-btn-green:hover {
  background: var(--green-light);
  color: var(--green-deep);
}
.co-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
}
.co-btn-white {
  background: white;
  color: var(--green-deep);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }
  .faq-sidebar .sidebar-title {
    width: 100%;
    margin-bottom: 4px;
  }
  .faq-sidebar .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .faq-sidebar .sidebar-contact {
    display: none;
  }
  .faq-sidebar .sidebar-divider {
    display: none;
  }
  .contact-strip-inner {
    grid-template-columns: 1fr;
  }
  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .quick-grid {
    grid-template-columns: 1fr;
  }
  .faq-a-inner {
    padding-left: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .category-pills {
    display: none;
  }
}
/*End of FAQ*/

/* ===== 404 HERO ===== */
.error-hero {
  flex: 1;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--green-deep) 0%,
    #25aae1 50%,
    #236d8c 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
  text-align: center;
}

.error-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--leaf-pattern);
  opacity: 0.5;
}

/* Orbs — same as hero */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(58, 171, 107, 0.25) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(200, 151, 42, 0.2) 0%,
    transparent 70%
  );
  bottom: -50px;
  left: 10%;
}

.error-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: fadeInUp 0.6s ease both;
}

/* Big 404 number */
.error-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(130, 200, 229, 0.45);
  text-stroke: 2px rgba(130, 200, 229, 0.45);
  letter-spacing: -4px;
  margin-bottom: 4px;
  position: relative;
  user-select: none;
}

.error-number::after {
  content: "404";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #87ceeb, #829fab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.18;
}

/* Section-tag style badge */
.error-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Mono", monospace;
  padding-top: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.error-badge::before,
.error-badge::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green-light);
  opacity: 0.6;
}

.error-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 18px;
}

.error-content h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.error-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Divider sprout SVG */
.sprout-divider {
  margin: 0 auto 36px;
  opacity: 0.5;
}

/* Suggestion pills */
.suggestion-label {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.quick-link {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
}

.quick-link:hover {
  background: rgba(58, 171, 107, 0.18);
  border-color: rgba(58, 171, 107, 0.5);
  color: white;
  transform: translateY(-2px);
}

/* Action buttons — reuse from index */
.error-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(200, 151, 42, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 151, 42, 0.5);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(-5px) rotate(-1deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .error-number {
    font-size: 30vw;
  }
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/*Custom CSS*/

.home-banner-image {
  position: absolute;
  bottom: 0;
  right: 20%;
  opacity: 0.8;
}
@media (max-width: 940px) {
  .home-banner-image {
    display: none;
  }
}
@media (max-width: 1340px) {
  .home-banner-image {
    right: 0;
    top: 3%;
  }
}
a i {
  color: #25aae1;
}