/* ============================================================
   LeadSchool Template — MAIN CSS (PulseCMS Edition)
   Font: Noto Sans
   ============================================================ */

:root {
  --gd: #0a3d1f;
  --gm: #166534;
  --gb: #16a34a;
  --gl: #4ade80;
  --gp: #dcfce7;
  --gg: #f0fdf4;
  --gold: #d4a017;
  --white: #ffffff;
  --td: #0f1f0f;
  --tm: #374151;
  --ts: #6b7280;
  --nav-h: 70px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Noto Sans', system-ui, sans-serif;
  --font-body: 'Noto Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--td);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(2.2rem, 5vw, 4.4rem); font-weight: 800; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.8rem, 3.2vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 700; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gb); color: #fff;
  padding: 13px 28px; border-radius: 8px; border: none;
  font-size: 0.95rem; font-weight: 600;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary:hover { background: #15803d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,0.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 13px 28px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.4);
  font-size: 0.95rem; font-weight: 500;
  transition: var(--transition); white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gl); color: var(--gl); }

.btn-green-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gb);
  padding: 11px 24px; border-radius: 8px;
  border: 1.5px solid var(--gb);
  font-size: 0.9rem; font-weight: 600;
  transition: var(--transition);
}
.btn-green-outline:hover { background: var(--gb); color: #fff; }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gb); margin-bottom: 10px;
  display: block; font-family: var(--font-body);
}
.section-title { color: var(--gd); margin-bottom: 14px; font-family: var(--font-display); }
.section-title em { font-style: normal; color: var(--gb); }
.section-desc { font-size: 1.05rem; color: var(--tm); max-width: 580px; line-height: 1.75; font-family: var(--font-body); }
.about-copy p { font-size: 0.95rem; color: var(--tm); line-height: 1.75; margin-top: 18px; }
.about-copy p:first-child { margin-top: 0; }
.section-head { max-width: 1200px; margin: 0 auto 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 0 auto; }

/* ── WRAPPER ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 24px; }

/* ══════════════════════════════════════════
   SITE NAV
══════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(10,61,31,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.2);
  transition: background var(--transition);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 800;
  color: var(--gl); display: flex; align-items: center; gap: 4px;
  letter-spacing: 0.5px;
}
.nav-logo span { color: var(--gold); }
.nav-logo img { height: 60px; width: auto; }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  background: var(--gb); color: #fff; border: none;
  padding: 9px 22px; border-radius: 7px;
  font-size: 0.875rem; font-weight: 600;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--gl); color: var(--gd); transform: translateY(-1px); }

.ham-btn {
  display: none; background: none; border: none;
  color: #fff; padding: 6px;
  flex-direction: column; gap: 5px;
}
.ham-btn span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: var(--transition);
}

/* ── PulseCMS Navigation integration ── */
.pulse-nav-wrap { display: flex; align-items: center; }

.pulse-nav-wrap #nav {
  display: flex;
  align-items: center;
}
.pulse-nav-wrap #nav #menu-button { display: none; }
.pulse-nav-wrap #nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pulse-nav-wrap #nav ul li a {
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}
.pulse-nav-wrap #nav ul li a:hover,
.pulse-nav-wrap #nav ul li a.active {
  color: var(--gl);
  background: rgba(74,222,128,0.08);
}


/* ── MOBILE NAV ── */
.mob-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 999;
  background: rgba(10,61,31,0.99);
  padding: 20px 5vw 28px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}
.mob-nav.open { display: flex; transform: translateY(0); opacity: 1; }
.mob-nav a {
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: block;
  text-decoration: none;
}
.mob-nav a:hover { color: var(--gl); }
.mob-nav .nav-cta {
  margin-top: 12px;
  text-align: center;
  display: block;
  padding: 13px;
  width: 100%;
}

/* ══════════════════════════════════════════
   TICKER STRIP
══════════════════════════════════════════ */
.ticker-strip {
  background: var(--gb); padding: 12px 0;
  overflow: hidden; white-space: nowrap;
}
.ticker-inner {
  display: inline-flex; gap: 52px;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-strip:hover .ticker-inner { animation-play-state: paused; }
.ticker-item {
  color: #fff; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.3px; display: inline-flex; align-items: center; gap: 10px;
}
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.5); }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════ */
.stats-band { background: var(--gd); padding: 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1200px; margin: 0 auto;
}
.stat-cell {
  text-align: center; padding: 44px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(255,255,255,0.03); }
.stat-icon { font-size: 2rem; margin-bottom: 10px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 800; color: var(--gl);
  line-height: 1; display: block;
}
.stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 6px; font-weight: 500; }

/* ══════════════════════════════════════════
   FEATURE CARDS
══════════════════════════════════════════ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}
.feat-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 30px 28px;
  border: 1px solid rgba(22,100,52,0.09);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gb);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--gp); display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; margin-bottom: 18px;
}
.feat-card h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; color: var(--gd); margin-bottom: 8px; }
.feat-card p { font-size: 0.88rem; color: var(--tm); line-height: 1.65; font-family: var(--font-body); }

/* ══════════════════════════════════════════
   SPLIT SECTION
══════════════════════════════════════════ */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-image { border-radius: var(--radius-lg); overflow: hidden; }
.split-image img { width: 100%; height: 460px; object-fit: cover; }

/* ── TAG ── */
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
}
.tag-green { background: var(--gp); color: var(--gm); }
.tag-gold { background: rgba(212,160,23,0.15); color: var(--gold); }

/* ── CARD ── */
.card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid rgba(22,100,52,0.08);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 210px; object-fit: cover; display: block; }
.card-body { padding: 22px 24px; }
.card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--gd); margin: 10px 0 8px; }
.card-body p { font-size: 0.87rem; color: var(--tm); line-height: 1.65; }

/* ══════════════════════════════════════════
   TESTIMONIAL
══════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.testi-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid rgba(22,100,52,0.08);
  transition: box-shadow var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow); }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 10px; letter-spacing: 2px; }
.testi-quote { font-size: 2.2rem; color: var(--gp); line-height: 1; margin-bottom: 8px; }
.testi-text { font-size: 0.92rem; color: var(--tm); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--gm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
  overflow: hidden;
}
.testi-av img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--gd); }
.testi-role { font-size: 0.78rem; color: var(--ts); margin-top: 2px; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-radius: var(--radius); border: 1px solid rgba(22,100,52,0.1); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  width: 100%; padding: 18px 22px; background: none; border: none;
  text-align: left; font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600; color: var(--gd);
  display: flex; justify-content: space-between; align-items: center;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--gg); }
.faq-q.open { background: var(--gg); color: var(--gb); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--gp); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--gm); transition: transform var(--transition); }
.faq-q.open .faq-icon { transform: rotate(180deg); background: var(--gb); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 22px; }
.faq-a.open { max-height: 300px; padding: 4px 22px 18px; }
.faq-a p { font-size: 0.9rem; color: var(--tm); line-height: 1.7; }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: var(--gd);
  padding: calc(var(--nav-h) + 76px) 5vw 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: 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='%23ffffff' fill-opacity='0.03'%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");
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gl); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.page-hero h1 { color: #fff; margin-bottom: 14px; font-family: var(--font-display); }
.page-hero h1 em { font-style: normal; color: var(--gl); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 600px; line-height: 1.75; }

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band {
  background: var(--gd);
  padding: 80px 5vw; text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; font-size: clamp(1.8rem,3.5vw,3rem); }
.cta-band p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 32px; }
.cta-form {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; max-width: 520px; margin: 0 auto;
}
.cta-form input {
  flex: 1; min-width: 200px; padding: 13px 18px;
  border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1); color: #fff;
  font-family: var(--font-body); font-size: 0.95rem;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.45); }
.cta-form input:focus { outline: none; border-color: var(--gl); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(160deg, #0d4a26 0%, #0a3d1f 40%, #072e17 100%);
  color: rgba(255,255,255,0.65); padding: 64px 5vw 28px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(22,163,74,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-desc { font-size: 0.86rem; line-height: 1.75; max-width: 280px; }
.footer-rating { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 18px; }
.site-footer h4 { color: #fff; font-size: 0.88rem; font-weight: 700; margin-bottom: 18px; letter-spacing: 0.4px; }
.footer-links { margin-top: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--gl); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; font-size: 0.8rem;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 0.75rem; font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--gb); color: #fff; border-color: var(--gb); }

/* ══════════════════════════════════════════
   MODAL
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: var(--radius-lg);
  max-width: 560px; width: 100%; max-height: 92vh;
  overflow-y: auto; position: relative;
  animation: modal-in 0.3s ease;
}
@keyframes modal-in { from { opacity: 0; transform: scale(0.95) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gg); border: none;
  font-size: 1rem; color: var(--gm);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--gp); color: var(--gd); }
.modal-body { padding: 38px; }
.modal-body h2 { font-size: 1.5rem; color: var(--gd); margin-bottom: 6px; }
.modal-body > p { font-size: 0.9rem; color: var(--ts); margin-bottom: 24px; }

/* ── FORM ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gm); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid rgba(22,100,52,0.18); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.92rem; color: var(--td);
  background: var(--gg); transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gb); background: #fff; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; font-weight: 700; }

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
.slide-in-left,
.slide-in-right,
.fade-up {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-in-left { transform: translateX(-50px); }
.slide-in-right { transform: translateX(50px); }
.fade-up { transform: translateY(36px); }
.slide-in-left.visible,
.slide-in-right.visible,
.fade-up.visible { opacity: 1; transform: translate(0); }

.stagger > * { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.18s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.38s; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   PARTNERS BAND
══════════════════════════════════════════ */
.partners-band { background: var(--gd); padding: 52px 24px; overflow: hidden; }
.partners-track { overflow: hidden; }
.partners-inner {
  display: inline-flex; gap: 20px;
  animation: partners-scroll 32s linear infinite;
}
.partners-band:hover .partners-inner { animation-play-state: paused; }
.partner-card {
  flex: 0 0 160px; height: 76px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  padding: 14px 18px; transition: var(--transition);
}
.partner-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(74,222,128,0.3); }
.partner-card span { color: rgba(255,255,255,0.65); font-size: 0.82rem; font-weight: 700; text-align: center; line-height: 1.4; }
@keyframes partners-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════ */
.hero-slider {
  position: relative;
  height: 100vh; min-height: 620px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.hero-track {
  display: flex; height: 100%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}
.hero-slide {
  flex: 0 0 100%; height: 100%;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
}
.hero-slide.active .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,28,14,0.92) 0%,
    rgba(5,28,14,0.82) 28%,
    rgba(5,28,14,0.50) 52%,
    rgba(5,28,14,0.12) 72%,
    transparent 100%
  );
  z-index: 1;
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center;
  padding: 0 6vw;
}
.hero-text { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,222,128,0.14);
  border: 1px solid rgba(74,222,128,0.3);
  color: var(--gl); padding: 6px 16px; border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; margin-bottom: 22px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.55s 0.2s ease, transform 0.55s 0.2s ease;
}
.hero-slide.active .hero-badge { opacity: 1; transform: translateY(0); }
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 700; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
  letter-spacing: -0.2px;
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s 0.35s ease, transform 0.7s 0.35s ease;
}
.hero-slide.active .hero-text h1 { opacity: 1; transform: translateY(0); }
.hero-text h1 em { font-style: normal; color: var(--gl); font-weight: 700; }
.hero-text p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.78; margin-bottom: 34px; max-width: 520px;
  font-weight: 400;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s 0.5s ease, transform 0.7s 0.5s ease;
}
.hero-slide.active .hero-text p { opacity: 1; transform: translateY(0); }
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s 0.65s ease, transform 0.7s 0.65s ease;
}
.hero-slide.active .hero-btns { opacity: 1; transform: translateY(0); }
.hero-controls {
  position: absolute; bottom: 32px; left: 0; right: 0;
  z-index: 10;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 0 8vw;
}
.hero-dots { display: flex; gap: 8px; align-items: center; }
.hero-dot {
  height: 4px; border-radius: 2px; border: none; cursor: pointer;
  background: rgba(255,255,255,0.35); transition: all 0.35s ease;
  width: 20px;
}
.hero-dot.active { background: var(--gl); width: 40px; }
.hero-arrows { display: flex; gap: 8px; }
.hero-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer;
}
.hero-arrow:hover { background: var(--gb); border-color: var(--gb); }
.hero-slide-count {
  font-family: var(--font-body);
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  font-weight: 500; letter-spacing: 1px; white-space: nowrap;
}
.hero-slide-count strong { color: rgba(255,255,255,0.75); font-weight: 600; }
.hero-progress {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: rgba(255,255,255,0.08); z-index: 10;
}
.hero-progress-bar { height: 100%; background: var(--gl); width: 0; transition: width linear; }

/* ══════════════════════════════════════════
   VIDEO SLIDER
══════════════════════════════════════════ */
.video-slider { position: relative; }
.vs-track-wrap { overflow: hidden; }
.vs-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.vs-card {
  flex: 0 0 calc(33.333% - 16px);
  border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; position: relative; background: #000;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.vs-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.vs-thumb { width: 100%; height: 210px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.vs-card:hover .vs-thumb { transform: scale(1.04); }
.vs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 18px;
}
.vs-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -65%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(22,163,74,0.9); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff; transition: var(--transition);
}
.vs-card:hover .vs-play-btn { background: var(--gb); transform: translate(-50%, -65%) scale(1.1); }
.vs-name { color: #fff; font-weight: 700; font-size: 0.92rem; }
.vs-role { color: rgba(255,255,255,0.7); font-size: 0.78rem; margin-top: 3px; }
.vs-nav { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.vs-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gp); border: 1px solid rgba(22,163,74,0.2);
  color: var(--gm); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.vs-btn:hover { background: var(--gb); color: #fff; border-color: var(--gb); }
.vs-dots { display: flex; gap: 8px; align-items: center; }
.vs-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--gp); transition: var(--transition); }
.vs-dot.active { background: var(--gb); width: 22px; border-radius: 4px; }
.video-modal .modal-box { max-width: 800px; background: #000; }
.video-frame-wrap { position: relative; padding-bottom: 56.25%; }
.video-frame-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-modal .modal-close { position: absolute; top: -40px; right: 0; background: rgba(255,255,255,0.15); color: #fff; }
.video-modal .modal-close:hover { background: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════
   SOLUTIONS PAGE
══════════════════════════════════════════ */
.sol-tabs-wrap { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.sol-tab {
  padding: 10px 22px; border-radius: 24px;
  border: 1.5px solid rgba(22,100,52,0.2);
  background: none; color: var(--gm); font-size: 0.88rem; font-weight: 600;
  transition: var(--transition);
}
.sol-tab.active, .sol-tab:hover { background: var(--gb); color: #fff; border-color: var(--gb); }
.sol-panel { display: none; }
.sol-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.sol-card-dark {
  background: var(--gd); border-radius: var(--radius-lg);
  padding: 40px; color: #fff; position: sticky; top: 88px;
}
.sol-card-dark h3 { color: var(--gl); font-size: 1.6rem; margin-bottom: 12px; }
.sol-card-dark p { color: rgba(255,255,255,0.72); font-size: 0.93rem; line-height: 1.75; margin-bottom: 24px; }
.pdf-embed { width: 100%; min-height: 560px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.12); overflow: hidden; }
.sol-list { list-style: none; }
.sol-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.82); margin-bottom: 12px; }
.sol-list li::before { content: '\2713'; flex-shrink: 0; width: 20px; height: 20px; background: var(--gb); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 900; color: #fff; margin-top: 1px; }

.sol-list-light { list-style: none; }
.sol-list-light li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: #0f172a; margin-bottom: 12px; }
.sol-list-light li::before { content: '\2713'; flex-shrink: 0; width: 20px; height: 20px; background: var(--gb); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 900; color: #fff; margin-top: 1px; }

.preprimary-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.preprimary-cols > div { background: #f8fdf6; border: 1px solid rgba(15,23,42,0.08); border-radius: 1rem; padding: 24px; }
.preprimary-cols h4 { margin-bottom: 18px; }
.preprimary-card { background: #f8fdf6; border: 1px solid rgba(15,23,42,0.08); border-radius: 1rem; padding: 24px; display: flex; flex-direction: column; gap: 14px; min-height: 100%; }
.preprimary-card h5 { font-size: 0.98rem; margin-bottom: 0; color: var(--gd); text-transform: uppercase; letter-spacing: 0.08em; }
.preprimary-card p { margin: 0; font-size: .95rem; line-height: 1.7; color: #0f172a; }
.preprimary-card ul { margin: 0; padding: 0; list-style: none; }
.preprimary-card li { margin-bottom: 12px; }
.preprimary-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 18px; }
@media (max-width: 1180px) { .preprimary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px) { .preprimary-grid { grid-template-columns: 1fr; } }
@media (max-width: 980px) { .preprimary-cols { grid-template-columns: 1fr; } }

.sol-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

/* ══════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════ */
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { padding: 8px 20px; border-radius: 22px; border: 1.5px solid rgba(22,100,52,0.2); background: none; color: var(--gm); font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { background: var(--gb); color: #fff; border-color: var(--gb); }
.gallery-masonry { columns: 3; column-gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,61,31,0.7) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { color: #fff; font-weight: 600; font-size: 0.88rem; }
.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.94); backdrop-filter: blur(12px); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 90vw; max-height: 82vh; border-radius: var(--radius); object-fit: contain; display: block; }
.lightbox-close { position: absolute; top: -44px; right: 0; background: rgba(255,255,255,0.12); border: none; color: #fff; width: 36px; height: 36px; border-radius: 50%; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.lightbox-nav:hover { background: var(--gb); border-color: var(--gb); }
.lightbox-prev { right: calc(100% + 16px); }
.lightbox-next { left: calc(100% + 16px); }
.lightbox-caption { color: rgba(255,255,255,0.65); font-size: 0.88rem; text-align: center; margin-top: 12px; }
.lightbox-counter { color: rgba(255,255,255,0.4); font-size: 0.8rem; text-align: center; margin-top: 4px; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.team-card { background: #fff; border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; border: 1px solid rgba(22,100,52,0.08); transition: box-shadow var(--transition); }
.team-card:hover { box-shadow: var(--shadow); }
.team-avatar { width: 86px; height: 86px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid var(--gp); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; color: var(--gd); font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--ts); line-height: 1.4; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--gp); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-dot { position: absolute; left: -28px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--gb); border: 3px solid var(--gp); }
.timeline-year { font-size: 0.78rem; font-weight: 700; color: var(--gb); margin-bottom: 6px; letter-spacing: 1px; }
.timeline-title { font-weight: 700; color: var(--gd); margin-bottom: 6px; }
.timeline-desc { font-size: 0.88rem; color: var(--tm); line-height: 1.65; }

/* ══════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.blog-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid rgba(22,100,52,0.08); transition: transform var(--transition), box-shadow var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-img-wrap { height: 210px; overflow: hidden; }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-body { padding: 24px; }
.blog-cat { display: inline-block; background: var(--gp); color: var(--gm); font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.6px; }
.blog-body h3 { font-size: 1rem; font-weight: 700; color: var(--gd); line-height: 1.4; margin-bottom: 10px; }
.blog-body p { font-size: 0.86rem; color: var(--ts); line-height: 1.65; margin-bottom: 16px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--ts); padding-top: 14px; border-top: 1px solid var(--gp); }
.read-more { color: var(--gb); font-weight: 600; }
.read-more:hover { color: var(--gm); }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info-card { background: var(--gd); border-radius: var(--radius-lg); padding: 36px; }
.contact-info-card h3 { color: var(--gl); font-size: 1.3rem; margin-bottom: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(74,222,128,0.12); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 2px; }
.contact-val { font-size: 0.92rem; color: rgba(255,255,255,0.88); font-weight: 500; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sol-panel.active { grid-template-columns: 1fr; }
  .sol-card-dark { position: static; }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
  .pulse-nav-wrap { display: none; }
  .ham-btn { display: flex; }
  .nav-cta { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .split-section { grid-template-columns: 1fr; gap: 36px; }
  .split-section.reverse { direction: ltr; }
  .split-image img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-arrow { width: 38px; height: 38px; font-size: 0.95rem; }
  .hero-arrow.prev { left: 12px; }
  .hero-arrow.next { right: 12px; }
  .vs-card { flex: 0 0 calc(80% - 12px); }
  .gallery-masonry { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 64px 20px; }
  .hero-content { padding: 0 6vw; align-items: flex-end; padding-bottom: 90px; }
  .hero-text { max-width: 100%; }
  .hero-text h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-overlay {
    background: linear-gradient(to top, rgba(5,28,14,0.88) 0%, rgba(5,28,14,0.60) 55%, rgba(5,28,14,0.25) 100%);
  }
  .hero-controls { padding: 0 6vw; justify-content: flex-start; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .vs-card { flex: 0 0 calc(92% - 12px); }
  .hero-text h1 { font-size: 1.9rem; }
  .lightbox-prev { right: auto; top: auto; bottom: -52px; left: calc(50% - 54px); transform: none; }
  .lightbox-next { left: auto; top: auto; bottom: -52px; right: calc(50% - 54px); transform: none; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   GALLERY — FEATURED SLIDER
══════════════════════════════════════════ */
.gallery-featured-slider {
  position: relative; height: 520px; overflow: hidden;
}
.gfs-track {
  display: flex; height: 100%;
  transition: transform 0.7s cubic-bezier(0.77,0,0.175,1);
}
.gfs-slide {
  flex: 0 0 100%; height: 100%;
  position: relative; overflow: hidden;
}
.gfs-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05); transition: transform 7s ease;
}
.gfs-slide.active img { transform: scale(1); }
.gfs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,61,31,0.7) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 40px 5vw;
}
.gfs-caption { color: #fff; }
.gfs-caption h3 {
  font-size: 1.8rem; font-weight: 800;
  margin-bottom: 6px; font-family: var(--font-display);
}
.gfs-caption p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.gfs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); transition: all 0.3s;
}
.gfs-arrow:hover { background: var(--gb); border-color: var(--gb); }
.gfs-arrow.prev { left: 20px; }
.gfs-arrow.next { right: 20px; }
.gfs-dots {
  position: absolute; bottom: 16px; right: 5vw;
  display: flex; gap: 8px;
}
.gfs-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s;
}
.gfs-dot.active { background: var(--gl); width: 22px; border-radius: 4px; }
.gfs-thumbs {
  display: flex; gap: 8px; margin-top: 10px;
  overflow-x: auto; padding-bottom: 4px; scrollbar-width: none;
}
.gfs-thumbs::-webkit-scrollbar { display: none; }
.gfs-thumb-item {
  flex: 0 0 100px; height: 68px; border-radius: 8px;
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: all 0.3s; opacity: 0.65;
}
.gfs-thumb-item img { width: 100%; height: 100%; object-fit: cover; }
.gfs-thumb-item.active, .gfs-thumb-item:hover { border-color: var(--gb); opacity: 1; }

/* ── GALLERY VIDEO SECTION ── */
.gallery-video-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 22px; margin-top: 36px; }
.gv-card {
  border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; position: relative; background: #000;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
}
.gv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gv-thumb { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gv-card:hover .gv-thumb { transform: scale(1.04); }
.gv-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.05) 55%);
}
.gv-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-60%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(22,163,74,0.9);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
  transition: var(--transition);
}
.gv-card:hover .gv-play { background: var(--gb); transform: translate(-50%,-60%) scale(1.12); }
.gv-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
}
.gv-title { color: #fff; font-weight: 700; font-size: 0.9rem; }
.gv-meta { color: rgba(255,255,255,0.65); font-size: 0.78rem; margin-top: 3px; }

/* ══════════════════════════════════════════
   PULSECMS ADMIN BAR COMPATIBILITY
   When the PulseCMS admin bar is visible,
   nudge the fixed nav below it.
══════════════════════════════════════════ */
body.pulse-logged-in .site-nav { top: 40px; }
body.pulse-logged-in .mob-nav { top: calc(var(--nav-h) + 40px); }
body.pulse-logged-in .hero-slider { margin-top: calc(var(--nav-h) + 40px); }
body.pulse-logged-in .page-hero { padding-top: calc(var(--nav-h) + 40px + 76px); }
