/* ===== SEARCH OVERLAY ===== */
#searchOverlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: flex-start; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
#searchOverlay.open { opacity: 1; pointer-events: all; }
.search-overlay-bg {
  position: absolute; inset: 0;
  background: rgba(15,15,45,0.82); backdrop-filter: blur(6px);
}
.search-overlay-panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 720px;
  margin: 80px 20px 0;
  background: #fff; border-radius: 20px;
  box-shadow: 0 32px 80px rgba(61,110,245,0.2);
  transform: translateY(-24px); transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
}
#searchOverlay.open .search-overlay-panel { transform: translateY(0); }
.search-close {
  position: absolute; top: 16px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f0f4ff; border: none; cursor: pointer;
  font-size: 22px; color: #3d6ef5; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.search-close:hover { background: #3d6ef5; color: #fff; }
.search-overlay-inner { padding: 40px 36px 32px; }
.search-tagline { font-size: 13px; font-weight: 600; color: #3d6ef5; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 18px; }
.search-input-wrap {
  display: flex; align-items: center; gap: 14px;
  border: 2px solid #e0e8ff; border-radius: 14px;
  padding: 14px 20px; margin-bottom: 20px;
  transition: border-color 0.2s;
}
.search-input-wrap:focus-within { border-color: #3d6ef5; }
.search-input-wrap svg { color: #3d6ef5; flex-shrink: 0; }
.search-input-wrap input {
  border: none; outline: none; font-size: 18px;
  font-family: inherit; color: #0f0f2d; width: 100%;
  background: transparent;
}
.search-input-wrap input::placeholder { color: #aab; }
.search-results { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; min-height: 0; }
.search-result-item {
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 16px; border-radius: 10px;
  text-decoration: none; transition: background 0.15s;
}
.search-result-item:hover { background: #f0f4ff; }
.sr-title { font-size: 15px; font-weight: 600; color: #0f0f2d; }
.sr-excerpt { font-size: 13px; color: #888; }
.search-no-results { font-size: 14px; color: #aaa; padding: 8px 16px; }
.search-suggestions {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding-top: 18px; border-top: 1px solid #f0f0f0;
  font-size: 13px; color: #aaa;
}
.search-suggestions a {
  background: #f0f4ff; color: #3d6ef5; padding: 5px 14px;
  border-radius: 100px; font-size: 13px; font-weight: 500;
  text-decoration: none; transition: background 0.2s;
}
.search-suggestions a:hover { background: #3d6ef5; color: #fff; }

/* ===== SCROLL REVEAL ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* Staggered children */
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
[data-reveal-group].revealed > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
[data-reveal-group].revealed > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.1s; }
[data-reveal-group].revealed > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.2s; }
[data-reveal-group].revealed > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.3s; }
[data-reveal-group].revealed > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.4s; }

/* ===== PULSE ANIMATIONS (real site effect) ===== */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(51,217,178,0.7); }
  100% { box-shadow: 0 0 0 28px rgba(51,217,178,0); }
}
@keyframes pulse-scale {
  0%,100% { transform: scale3d(1,1,1); }
  50%      { transform: scale3d(1.06,1.06,1.06); }
}
.pulse { animation: pulse-ring 2s infinite !important; }
.pulse-scale { animation: pulse-scale 2.4s ease-in-out infinite; }

/* ===== BUTTON HOVER GLOW (real site effect) ===== */
.btn-primary, .btn-green, .btn-nav, .btn-white {
  transition: box-shadow 0.3s ease, transform 0.2s ease, background 0.2s ease !important;
}
.btn-primary:hover  { box-shadow: rgba(61,110,245,0.45) 0 10px 32px 0 !important; transform: translateY(-2px); }
.btn-green:hover    { box-shadow: rgba(0,200,150,0.45) 0 10px 32px 0 !important; transform: translateY(-2px); }
.btn-nav:hover      { box-shadow: rgba(61,110,245,0.4) 0 8px 24px 0 !important; }
.btn-white:hover    { box-shadow: rgba(255,255,255,0.3) 0 8px 28px 0 !important; transform: translateY(-2px); }

/* ===== CARD HOVER LIFT (real site effect) ===== */
.feat-card, .testi-card, .svc-full-card, .audience-card {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease !important;
}
.feat-card:hover    { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(61,110,245,0.14) !important; }
.testi-card:hover   { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(61,110,245,0.12) !important; }
.svc-full-card:hover{ transform: translateY(-6px); box-shadow: 0 16px 40px rgba(61,110,245,0.14) !important; }
.audience-card:hover{ border-color: var(--blue) !important; box-shadow: 0 8px 28px rgba(61,110,245,0.1) !important; }

/* ===== IMAGE ZOOM ON HOVER (real site effect) ===== */
.course-img, .gallery-item { overflow: hidden; }
.course-img img, .gallery-item img {
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1) !important;
}
.course-card:hover .course-img img,
.gallery-item:hover img { transform: scale(1.08) !important; }

/* Team photo zoom */
.team-photo { overflow: hidden; }
.team-photo img { transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.team-card:hover .team-photo img { transform: scale(1.1); }

/* ===== PARALLAX SECTIONS ===== */
.cta-band { background-attachment: local; }

/* ===== HERO SLIDER ===== */
.hero-slides { position:relative; }
.hero-slide { display:none; }
.hero-slide.active { display:block; animation: fadeSlide 0.85s cubic-bezier(0.22,1,0.36,1); }
@keyframes fadeSlide {
  from { opacity:0; transform: translateY(18px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(61,110,245,0.25); border: none; cursor: pointer;
  transition: 0.3s; padding: 0;
}
.hero-dot.active { background: var(--blue); transform: scale(1.3); }

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', 'Segoe UI', Arial, sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; font-size: 16px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ===== COLORS ===== */
:root {
  --blue: #3d6ef5;
  --blue-dark: #2952cc;
  --blue-light: #5b87ff;
  --green: #00c896;
  --dark: #0f0f2d;
  --gray: #f5f7ff;
  --gray2: #eef2ff;
  --muted: #6b7280;
  --border: #e5e9ff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(61,110,245,0.10);
}

/* ===== TOP BAR ===== */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 13px;
  color: var(--muted);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; flex-direction: column; gap: 2px; }
.topbar-left span { font-size: 12px; color: var(--muted); }
.topbar-left a { color: var(--muted); font-size: 12px; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray); color: var(--blue);
  font-size: 13px; font-weight: 700;
  transition: 0.2s;
}
.topbar-social a:hover { background: var(--blue); color: #fff; }

/* ===== HEADER ===== */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(61,110,245,0.08);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px; gap: 24px;
}
.logo img { height: 44px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 15px; font-weight: 500;
  color: var(--dark);
  transition: 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active {
  background: var(--blue);
  color: #fff;
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-search {
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border);
  border-radius: 100px; padding: 6px 14px;
  font-size: 13px; color: var(--muted);
}
.nav-search input {
  border: none; outline: none; background: transparent;
  font-size: 13px; width: 100px; color: var(--dark);
  font-family: inherit;
}
.btn-nav {
  background: var(--blue); color: #fff;
  padding: 10px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: 0.2s;
}
.btn-nav:hover { background: var(--blue-dark); }
.nav-socials { display: flex; gap: 6px; }
.nav-socials a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray2); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; transition: 0.2s;
}
.nav-socials a:hover { background: var(--blue); color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #e8f4ff 0%, #f0fff9 35%, #fff 70%);
  overflow: hidden; position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,200,150,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-slide { padding: 80px 0 100px; }
.hero-slide.active .hero-content { animation: heroTextIn 0.9s cubic-bezier(0.22,1,0.36,1) both; }
.hero-slide.active .hero-image { animation: heroImgIn 1s cubic-bezier(0.22,1,0.36,1) 0.15s both; }
@keyframes heroTextIn {
  from { opacity:0; transform: translateX(-30px); }
  to   { opacity:1; transform: translateX(0); }
}
@keyframes heroImgIn {
  from { opacity:0; transform: translateX(30px) scale(0.96); }
  to   { opacity:1; transform: translateX(0) scale(1); }
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  min-height: 520px;
}
.hero-label {
  display: inline-block;
  color: var(--blue); font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 700; line-height: 1.15;
  color: var(--dark); margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero p {
  color: var(--muted); font-size: 16px;
  line-height: 1.75; margin-bottom: 36px;
  max-width: 460px;
}
.hero-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue); color: #fff;
  padding: 13px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  transition: 0.2s;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-play {
  display: flex; align-items: center; gap: 12px;
  color: var(--dark); font-size: 14px; font-weight: 500;
}
.play-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  flex-shrink: 0;
  transition: 0.2s;
}
.btn-play:hover .play-circle { transform: scale(1.1); }

/* Hero image */
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-img-wrap {
  width: 420px; height: 480px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  background: var(--green);
  position: relative;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
}
/* decorative circles */
.hero-deco {
  position: absolute; bottom: -20px; left: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(61,110,245,0.08);
}
.hero-deco2 {
  position: absolute; top: 20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(0,200,150,0.12);
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: flex; align-items: center; gap: 10px;
  color: var(--blue); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-label svg, .section-label img { width: 20px; height: 20px; opacity: 0.7; }

/* ===== 4 FEATURE CARDS ===== */
.features { padding: 80px 0; background: #fff; }
.features-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  padding: 40px 28px;
  border-right: 1px solid var(--border);
  transition: 0.25s;
  position: relative;
}
.feature-card:last-child { border-right: none; }
.feature-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.feature-card:hover { background: var(--gray2); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px; margin-bottom: 20px;
}
.feature-icon img { width: 100%; height: 100%; object-fit: contain; }
.feature-card h3 { font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 12px; line-height: 1.3; }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.read-more {
  color: var(--blue); font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.read-more:hover { gap: 10px; }

/* ===== WHAT WE DO ===== */
.what-we-do { padding: 90px 0; background: #fff; }
.what-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.what-img-wrap {
  position: relative;
}
.what-img-circle {
  width: 460px; height: 460px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green);
  margin: 0 auto;
}
.what-img-circle img { width: 100%; height: 100%; object-fit: cover; }
.what-mini {
  position: absolute; bottom: 20px; right: 20px;
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.what-mini img { width: 100%; height: 100%; object-fit: cover; }
.what-content { }
.what-content h2 { font-size: clamp(26px, 2.5vw, 38px); font-weight: 700; color: var(--dark); margin-bottom: 14px; letter-spacing: -0.3px; }
.what-content > p { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 36px; }
.what-services { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.what-service { display: flex; gap: 16px; align-items: flex-start; }
.what-svc-icon {
  width: 48px; height: 48px; flex-shrink: 0;
}
.what-svc-icon img { width: 100%; object-fit: contain; }
.what-service h4 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.what-service p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.btn-outline-blue {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--blue); color: var(--blue);
  padding: 11px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 600; transition: 0.2s;
}
.btn-outline-blue:hover { background: var(--blue); color: #fff; }

/* ===== TEAM ===== */
.team { padding: 90px 0; background: var(--gray2); }
.section-center { text-align: center; margin-bottom: 50px; }
.section-center h2 { font-size: clamp(26px, 2.5vw, 38px); font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.section-center p { color: var(--muted); font-size: 15px; max-width: 560px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.team-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  border: 1px solid var(--border);
  transition: 0.25s; cursor: pointer;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-photo {
  width: 90px; height: 90px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 16px;
  border: 3px solid var(--green);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card h4 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.team-card span { font-size: 12px; color: var(--blue); font-weight: 500; }
.team-card .team-links { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.team-card .team-links a {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray); display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--blue); transition: 0.2s;
}
.team-card .team-links a:hover { background: var(--blue); color: #fff; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--blue);
  padding: 0;
  overflow: hidden;
}
.cta-band-inner {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; min-height: 300px;
}
.cta-band-content { padding: 60px; }
.cta-band .section-label { color: rgba(255,255,255,0.7); }
.cta-band h2 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700; color: #fff;
  line-height: 1.3; margin-bottom: 28px;
  max-width: 540px;
}
.btn-white {
  background: #fff; color: var(--blue);
  padding: 13px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  transition: 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.cta-photo {
  width: 320px; height: 300px; overflow: hidden;
  position: relative;
}
.cta-photo img { width: 100%; height: 100%; object-fit: cover; }
.cta-photo-circle {
  width: 320px; height: 300px;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.cta-photo-circle img {
  width: 260px; height: 260px;
  border-radius: 50%;
  object-fit: cover;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 90px 0; background: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (min-width: 1100px) { .testi-grid { grid-template-columns: repeat(5,1fr); } }
.testi-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: 0.25s;
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.stars { color: #fbbf24; font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.testi-card p { color: var(--muted); font-size: 14px; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--gray2); overflow: hidden; flex-shrink: 0; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 600; font-size: 14px; color: var(--dark); }

/* ===== COURSES ===== */
.courses { padding: 90px 0; background: #fff; }
.courses-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.course-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: 0.25s;
}
.course-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.course-img { height: 200px; overflow: hidden; }
.course-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.course-card:hover .course-img img { transform: scale(1.05); }
.course-body { padding: 24px; }
.course-tag {
  display: inline-block; background: var(--gray2); color: var(--blue);
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; padding: 4px 10px; border-radius: 100px;
  margin-bottom: 10px;
}
.course-body h3 { font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.course-body p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }

/* ===== CLIENTS ===== */
.clients { padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.clients-inner { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.clients-marquee { overflow: hidden; width: 100%; }
.clients-track {
  display: flex; align-items: center; gap: 60px;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}
.clients-marquee:hover .clients-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.client-logo { height: 36px; filter: grayscale(1) opacity(0.5); transition: filter 0.2s; flex-shrink: 0; }
.client-logo:hover { filter: none; }

/* ===== NEWSLETTER ===== */
.newsletter {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #2952cc 0%, #3d6ef5 100%);
  padding: 80px 0;
}
.newsletter-img {
  position: absolute; inset: 0;
  opacity: 0.15;
}
.newsletter-img img { width: 100%; height: 100%; object-fit: cover; }
.newsletter-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.newsletter .section-label { color: rgba(255,255,255,0.8); }
.newsletter h2 { font-size: clamp(22px, 2.5vw, 36px); font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.newsletter p { color: rgba(255,255,255,0.75); font-size: 15px; }
.newsletter-form { display: flex; flex-direction: column; gap: 14px; }
.newsletter-form label { color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500; }
.newsletter-form input {
  padding: 14px 20px; border-radius: 100px; border: none;
  font-size: 14px; width: 100%; outline: none; font-family: inherit;
}
.btn-green {
  background: var(--green); color: #fff;
  padding: 13px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 700; border: none;
  cursor: pointer; transition: 0.2s; font-family: inherit;
  align-self: flex-start;
}
.btn-green:hover { background: #00a97e; transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer { background: #0a0f2e; color: rgba(255,255,255,0.65); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 44px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 20px; max-width: 260px; }
.footer-col h5 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a { display: block; color: rgba(255,255,255,0.6); transition: color 0.2s; padding: 2px 0; cursor: pointer; }
.footer-col ul li a:hover { color: var(--green); text-decoration: underline; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--green); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-legal a:hover { color: var(--green); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #e8f4ff 0%, #f0fff9 50%, #fff 100%);
  padding: 70px 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,200,150,0.1) 0%, transparent 70%);
}
.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 12px; position: relative; z-index: 1; letter-spacing: 0.5px; font-weight: 500; }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(28px, 3vw, 46px); font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.page-hero p { color: var(--muted); font-size: 16px; max-width: 560px; line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 90px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }
.contact-info h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.contact-info > p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 36px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-icon { width: 44px; height: 44px; background: var(--gray2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-detail h5 { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-detail p { font-size: 14px; color: var(--muted); }
.contact-form-box { background: var(--gray); border-radius: 20px; padding: 44px 40px; }
.contact-form-box h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 14px; font-family: inherit; background: #fff;
  color: var(--dark); outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ===== GALLERY ===== */
.gallery-section { padding: 90px 0; }
.gallery-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 9px 22px; border: 1.5px solid var(--border); border-radius: 100px;
  background: transparent; color: var(--muted); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: 0.2s; font-family: inherit;
}
.filter-btn.active, .filter-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--gray); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,46,0.85), transparent);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 22px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: #fff; font-size: 16px; font-weight: 600; }
.gallery-overlay p { color: rgba(255,255,255,0.7); font-size: 13px; }

/* ===== ABOUT PAGE ===== */
.about-section { padding: 90px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img { position: relative; }
.about-img-circle {
  width: 440px; height: 440px; border-radius: 50%;
  overflow: hidden; background: var(--green);
  margin: 0 auto;
}
.about-img-circle img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-size: clamp(24px, 2.5vw, 36px); font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.about-content p { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.audience-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.audience-card { background: var(--gray); border-radius: 12px; padding: 20px; border-left: 4px solid var(--blue); }
.audience-card h4 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.audience-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 60px; }
.stat-box { text-align: center; background: var(--gray); border-radius: 14px; padding: 32px 20px; }
.stat-box .num { font-size: 36px; font-weight: 700; color: var(--blue); line-height: 1; }
.stat-box .lbl { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ===== SERVICES PAGE ===== */
.services-section { padding: 90px 0; }
.services-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.svc-full-card {
  background: var(--gray); border-radius: var(--radius);
  padding: 36px; display: flex; gap: 20px; align-items: flex-start;
  border: 1px solid transparent; transition: 0.25s;
}
.svc-full-card:hover { border-color: var(--blue); background: #fff; box-shadow: var(--shadow); }
.svc-icon { width: 56px; height: 56px; flex-shrink: 0; }
.svc-icon img { width: 100%; object-fit: contain; }
.svc-full-card h3 { font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.svc-full-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .clients-inner { gap: 32px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .topbar { display: none; }
  .nav-links, .nav-search, .nav-socials { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; padding: 16px 20px 24px; gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 999;
  }
  .hero-inner, .what-inner, .contact-inner, .newsletter-inner, .cta-band-inner, .about-inner { grid-template-columns: 1fr; }
  .hero-image, .what-mini { display: none; }
  .hero-content { text-align: center; }
  .hero-content .hero-btns { justify-content: center; }
  .hero-content .hero-label { display: block; text-align: center; }
  .hero { padding: 48px 0 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .testi-grid, .courses-grid, .services-full-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .cta-photo-circle { display: none; }
  .contact-form-box { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}

/* ===== DARK MODE ===== */
body.dark {
  --blue: #6b8fff;
  --blue-dark: #4d6ee0;
  --green: #33d9b2;
  --dark: #e8eaf6;
  --muted: #a0a8c0;
  --gray: #1a1f3c;
  --gray2: #141830;
  background: #0d1128;
  color: #e8eaf6;
}
body.dark header { background: rgba(10,15,46,0.98); box-shadow: 0 2px 24px rgba(0,0,0,0.5); }
body.dark .logo img { filter: brightness(0) invert(1); }
body.dark .nav-links a { color: rgba(255,255,255,0.75); }
body.dark .feat-card, body.dark .svc-full-card, body.dark .testi-card { background: #1a1f3c; border-color: rgba(255,255,255,0.08); }
body.dark .page-hero { background: linear-gradient(135deg, #0d1128 0%, #141830 100%); }
body.dark .page-hero h1, body.dark .page-hero p { color: #e8eaf6; }
body.dark .breadcrumb { color: rgba(255,255,255,0.5); }
body.dark .contact-form-box { background: #1a1f3c; }
body.dark input, body.dark textarea, body.dark select { background: #0d1128; color: #e8eaf6; border-color: rgba(255,255,255,0.12); }
body.dark .hero { background: linear-gradient(135deg, #0d1128 0%, #141830 60%, #0d1128 100%); }
body.dark .section-label { color: var(--green); }

/* Dark mode toggle button */
.dark-toggle {
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background 0.2s;
  color: var(--dark);
  flex-shrink: 0;
}
.dark-toggle:hover { background: rgba(61,110,245,0.1); }

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: 0 4px 20px rgba(61,110,245,0.4);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
#backToTop.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#backToTop:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* ===== COOKIE BANNER ===== */
#cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: #0a0f2e; color: rgba(255,255,255,0.85);
  padding: 18px 32px; display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; justify-content: space-between;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.3);
  transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
#cookieBanner.show { transform: translateY(0); }
#cookieBanner p { margin: 0; font-size: 14px; flex: 1; min-width: 240px; line-height: 1.6; }
#cookieBanner p a { color: var(--green); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept { background: var(--green); color: #0a0f2e; font-weight: 700; border: none; padding: 10px 22px; border-radius: 8px; cursor: pointer; font-size: 14px; transition: opacity 0.2s; }
.cookie-accept:hover { opacity: 0.85; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); padding: 10px 22px; border-radius: 8px; cursor: pointer; font-size: 14px; transition: border-color 0.2s, color 0.2s; }
.cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ===== TYPEWRITER ===== */
.typewriter-cursor { display: inline-block; width: 3px; background: var(--blue); animation: cursorBlink 0.8s step-end infinite; margin-left: 2px; }
@keyframes cursorBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 24px rgba(61,110,245,0.07); transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(61,110,245,0.14); }
.blog-thumb { height: 220px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-body { padding: 28px; }
.blog-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); background: #eef2ff; padding: 4px 10px; border-radius: 20px; display: inline-block; margin-bottom: 14px; }
.blog-body h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.blog-meta { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-read { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: none; transition: gap 0.2s; }
.blog-read:hover { gap: 10px; }

/* ===== FAQ ===== */
.faq-grid { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(61,110,245,0.1); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; gap: 16px; }
.faq-question h4 { font-size: 17px; font-weight: 600; color: var(--dark); margin: 0; line-height: 1.4; }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: #eef2ff; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--blue); flex-shrink: 0; transition: background 0.2s, transform 0.3s; }
.faq-item.open .faq-icon { background: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), padding 0.3s; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-answer p { font-size: 15px; color: var(--muted); line-height: 1.75; margin: 0; }
