/* ============================================================
   DE AMBASSADOR TUTORIAL - Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #0d1117;
  --bg-card: #111827;
  --bg-card2: #0f172a;
  --accent-cyan: #00d4ff;
  --accent-purple: #7c3aed;
  --accent-amber: #f59e0b;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #1e293b;
  --border-glow: rgba(0, 212, 255, 0.3);
  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.15);
  --shadow-purple: 0 0 30px rgba(124, 58, 237, 0.2);
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #0d1117 50%, #0f0a1e 100%);
  --gradient-accent: linear-gradient(135deg, #00d4ff, #7c3aed);
  --gradient-amber: linear-gradient(135deg, #f59e0b, #ef4444);
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden ;
  line-height: 1.6;
}

/* ---- Video Background ---- */
.video-bg-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
  overflow: hidden;
}
.video-bg-wrapper video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 2;
}
.video-bg-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
 background: transparent;
  backdrop-filter: blur(1px) saturate(100%); 
  -webkit-backdrop-filter: blur(1px) saturate(100%);
  
  /* Border adds a premium "edge" reflection */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-cyan); border-radius: 3px; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-main); }

/* ---- Utility ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-amber {
  background: var(--gradient-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Section Title ---- */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.1);
  transition: left 0.4s ease;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-amber);
  border: 2px solid var(--accent-amber);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
}
.btn-secondary:hover {
  background: var(--accent-amber);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--accent-cyan);
  border: 2px solid var(--accent-cyan);
}
.btn-outline:hover {
  background: var(--accent-cyan);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.btn-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}
.btn-purple:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* ============================================================
   STICKY HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 12px; left: 0; right: 0;
  z-index: 999;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  border-radius:20px;
}
#site-header.scrolled {
    position: fixed;
  background: rgba(10, 10, 15, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 20px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 60px; height: 60px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-heading);
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
}
.logo-icon img{
    border-radius:20px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.logo-text .tagline {
  font-size: 0.65rem;
  color: var(--accent-cyan);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
}
.nav-link .chevron {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: rgba(13, 17, 23, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: var(--transition);
}
.dropdown a:hover {
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.08);
  padding-left: 20px;
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav-link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--accent-cyan); padding-left: 8px; }
.mobile-dropdown { padding-left: 16px; }
.mobile-dropdown a {
  display: block;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.mobile-dropdown a:hover { color: var(--accent-cyan); }
.mobile-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  padding: 12px 0 4px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

/* Moving images background */
.hero-bg-slider {
  position: absolute;
  top: 5; left: 0; /* Changed to 0 for better alignment */
  border-radius: 20px;
  width: 500%; /* Changed from 300% to fit 5 images + 1 clone */
  height: 85%;
  display: flex;
  background: transparent;
  animation: heroBgSlide 35s linear infinite; /* Increased time for more images */
  z-index: 0;
}

.hero-bg-slide {
  flex: 0 0 20%; /* (100% / 6 items) */
  width: 100%;
  height: 100%;
  margin-left:5px;
  border-radius: 40px;
  background: transparent;
  background-size: cover;
  background-position: center;
  opacity: 1; /* Note: opacity 2 is not valid; max is 1 */
}
.hero-bg-slide img{
    width:95%;
    height:80%;
    border-radius: 40px;
}

@keyframes heroBgSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-83.333%); } /* Moves past 5 images to reach the 6th */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
  rgba(30, 32, 45, 0.9) 0%, 
  rgba(35, 39, 55, 0.8) 60%, 
  rgba(40, 35, 60, 0.85) 100%
);

  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-left { order: 2; }
.hero-right { order: 1; }

@media (min-width: 981px) {
  .hero-left { order: 1; }
  .hero-right { order: 2; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent-cyan);
  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-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

/* Typing / Oscillating Text */
.hero-oscillating {
  height: 3.2rem;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.hero-oscillating-inner {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 2px;
}
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background: var(--accent-cyan);
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
  vertical-align: middle;
  border-radius: 2px;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 520px;
}
.hero-slogan {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow);
  animation: floatCard 6s ease-in-out infinite;
  max-width: 380px;
  width: 100%;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.hero-stat {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero-card-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::before {
  content: '';
  width: 4px; height: 8px;
  background: var(--accent-cyan);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SECTION BACKGROUNDS (scroll-driven color changes)
   ============================================================ */
.section-alt { background: rgba(13, 17, 23, 0.6); }
.section-dark { background: rgba(10, 10, 15, 0.7); }
.section-purple { background: rgba(124, 58, 237, 0.05); }
.section-cyan { background: rgba(0, 212, 255, 0.03); }

/* ============================================================
   SUBJECTS SECTION
   ============================================================ */
#subjects { padding: 100px 0; }
.subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.subject-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  group: true;
}
.subject-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius-lg);
}
.subject-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}
.subject-card:hover::before { opacity: 0.05; }
.subject-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.subject-card:hover .subject-img { transform: scale(1.05); }
.subject-body { padding: 24px; position: relative; z-index: 1; }
.subject-icon {
  width: 48px; height: 48px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}
.subject-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.subject-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============================================================
   STUDENTS WE TUTOR
   ============================================================ */
#students-tutor { padding: 100px 0; }
.students-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.student-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.student-card:hover {
  border-color: var(--accent-purple);
  transform: translateY(-6px);
  box-shadow: var(--shadow-purple);
  background: rgba(124, 58, 237, 0.08);
}
.student-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.student-card .name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.student-card .desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ============================================================
   BLOG / NEWS SECTION
   ============================================================ */
#blog { padding: 100px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-amber);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.15);
}
.blog-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img { transform: scale(1.08); }
.blog-category {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent-amber);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.blog-body { padding: 24px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.blog-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.blog-card:hover .blog-title { color: var(--accent-amber); }
.blog-excerpt {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us { padding: 100px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow);
}
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}
.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.why-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   HOW WE OPERATE
   ============================================================ */
#how-operate { padding: 100px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  position: relative;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-purple);
}
.step-number {
  width: 56px; height: 56px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   COUNTER SECTION
   ============================================================ */
#counters { padding: 80px 0; }
.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.counter-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
}
.counter-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.counter-num {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.counter-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.counter-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
  z-index: 0;
}
.cta-bg::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 60%);
  animation: ctaPulse 8s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cta-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq { padding: 100px 0; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--accent-cyan); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
  gap: 16px;
}
.faq-item.open .faq-question { color: var(--accent-cyan); }
.faq-icon {
  width: 28px; height: 28px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--accent-cyan);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent-cyan); color: #000; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
#reviews { padding: 100px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(0, 212, 255, 0.08);
  font-family: Georgia, serif;
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow);
}
.review-stars { color: var(--accent-amber); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.95rem; }
.review-role { font-size: 0.78rem; color: var(--text-muted); }

/* Review Form */
.review-form-wrap {
  max-width: 700px;
  margin: 0 auto 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.review-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.review-form-sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
  background: rgba(0, 212, 255, 0.03);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--bg-card); }

/* Star Rating Input */
.star-rating { display: flex; gap: 6px; flex-direction: row-reverse; justify-content: flex-end; }
.star-rating input { display: none; }
.star-rating label {
  font-size: 1.8rem;
  color: var(--border);
  cursor: pointer;
  transition: color 0.2s;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--accent-amber);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: rgba(10, 10, 15, 0.95);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .site-logo { margin-bottom: 20px; }
.footer-about {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}
.footer-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-links { display: flex; flex-direction: column; gap: 10px;}
.footer-links a {
  font-size: 0.87rem;
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '→';
  color: var(--accent-cyan);
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-8px);
}
.footer-links a:hover { color: var(--accent-cyan); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }
 


.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.contact-item:hover { color: var(--accent-cyan); }
.contact-icon {
  width: 32px; height: 32px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--accent-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-copy span { color: var(--accent-cyan); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
  border: none;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, rgba(124,58,237,0.05) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--accent-cyan); }
.breadcrumb .sep { color: var(--border); }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-purple);
}
.team-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(0,212,255,0.2));
}
.team-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img { transform: scale(1.05); }
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-body { padding: 24px; }
.team-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.team-role { font-size: 0.85rem; color: var(--accent-cyan); font-weight: 500; margin-bottom: 12px; }
.team-bio { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow);
}
.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 20px; right: -30px;
  background: var(--gradient-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow);
}
.pricing-plan { font-size: 0.8rem; font-weight: 700; color: var(--accent-cyan); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.6; }
.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.pricing-features li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--accent-green);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

/* ============================================================
   POPUP / MODAL
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 600px;
  width: 100%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}
.popup-overlay.active .popup-box { transform: scale(1); }
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.popup-close:hover { background: var(--accent-red); color: #fff; border-color: var(--accent-red); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   ALERT / TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 100px;
  right: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 0.9rem;
  color: var(--text-primary);
  z-index: 3000;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.toast.show { transform: translateX(0); }
.toast.success { border-color: var(--accent-green); }
.toast.error { border-color: var(--accent-red); }
.toast-icon { font-size: 1.2rem; }

/* ============================================================
   LOADING SPINNER
   ============================================================ */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn { display: none !important; }
  .header-cta .btn:last-child { display: inline-flex; padding: 10px 18px; font-size: 0.82rem; }
  .section-pad { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .blog-grid, .subjects-grid, .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .review-form-wrap { padding: 24px; }
  .popup-box { padding: 28px 20px; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SECTION BG TRANSITION (JS-driven)
   ============================================================ */
.section-bg-transition {
  transition: background-color 0.8s ease;
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.about-img { width: 100%; height: 400px; object-fit: cover; }
.about-text .section-label { margin-bottom: 16px; }
.about-text p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.value-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.value-item:hover { border-color: var(--accent-cyan); }
.value-icon { font-size: 1.5rem; margin-bottom: 8px; }
.value-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.value-desc { font-size: 0.8rem; color: var(--text-secondary); }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}

/* ============================================================
   RULES / POLICY PAGES
   ============================================================ */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
}
.policy-content h2 {
  font-size: 1.4rem;
  color: var(--accent-cyan);
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p, .policy-content li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}
.policy-content ul { padding-left: 20px; list-style: disc; }
.policy-content ul li { margin-bottom: 8px; }

@media (max-width: 768px) {
  .policy-content { padding: 28px 20px; }
}

/* ============================================================
   NOTIFICATION BAR
   ============================================================ */
.notif-bar {
  background: var(--gradient-accent);
  color: #fff;
  text-align: center;
  padding: 5px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  z-index: 1001;
}
.notif-bar a { color: #fff; text-decoration: underline; }

/* ============================================================
   MISC
   ============================================================ */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 20px 0;
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge-cyan { background: rgba(0,212,255,0.15); color: var(--accent-cyan); border: 1px solid rgba(0,212,255,0.3); }
.badge-purple { background: rgba(124,58,237,0.15); color: #a855f7; border: 1px solid rgba(124,58,237,0.3); }
.badge-amber { background: rgba(245,158,11,0.15); color: var(--accent-amber); border: 1px solid rgba(245,158,11,0.3); }
.badge-green { background: rgba(16,185,129,0.15); color: var(--accent-green); border: 1px solid rgba(16,185,129,0.3); }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state .icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state p { font-size: 1rem; }

.page-content { padding-top: 72px; }

/* Blog single */
.blog-single { max-width: 860px; margin: 0 auto; }
.blog-single-img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 40px; }
.blog-single-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 16px; }
.blog-single-meta { display: flex; gap: 20px; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 32px; flex-wrap: wrap; }
.blog-single-body { font-size: 1rem; color: var(--text-secondary); line-height: 1.9; }
.blog-single-body p { margin-bottom: 20px; }
.blog-single-body h2 { font-size: 1.5rem; color: var(--text-primary); margin: 36px 0 16px; }
.blog-single-body h3 { font-size: 1.2rem; color: var(--accent-cyan); margin: 28px 0 12px; }





# DE AMBASSADOR TUTORIAL — Lightning Fast Animation Overrides

Paste this section at the VERY END of your current CSS file.

It does not change your design, layout, colors, spacing, or structure.
It only makes all animations, hover effects, transitions, sliders, reveals, and interactions much faster and more responsive.

```css
/* ============================================================
   LIGHTNING FAST ANIMATION OVERRIDES
   ============================================================ */

:root {
  --transition: all 0.12s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

/* GLOBAL TRANSITION SPEED BOOST */
*,
*::before,
*::after {
  transition-duration: 0.12s !important;
  animation-duration: 0.12s;
  animation-delay: 0s !important;
}

/* KEEP IMPORTANT CONTINUOUS ANIMATIONS SMOOTH */
.hero-bg-slider {
  animation: heroBgSlide 10s linear infinite !important;
}

.hero-card {
  animation: floatCard 2s ease-in-out infinite !important;
}

.hero-badge .dot {
  animation: pulse 0.7s infinite !important;
}

.typing-cursor {
  animation: blink 0.35s step-end infinite !important;
}

.scroll-indicator {
  animation: bounceDown 0.8s ease-in-out infinite !important;
}

.scroll-mouse::before {
  animation: scrollDot 0.7s ease-in-out infinite !important;
}

.cta-bg::before {
  animation: ctaPulse 2s ease-in-out infinite !important;
}

.spinner {
  animation: spin 0.35s linear infinite !important;
}

/* FASTER HOVER EFFECTS */
.btn,
.subject-card,
.student-card,
.blog-card,
.why-card,
.step-card,
.counter-card,
.review-card,
.team-card,
.pricing-card,
.social-link,
.footer-links a,
.nav-link,
.dropdown a,
.mobile-nav-link,
.value-item,
.contact-item,
.popup-close,
#back-to-top {
  transition: all 0.12s ease !important;
}

/* FASTER IMAGE ZOOM EFFECTS */
.subject-img,
.blog-img,
.team-img {
  transition: transform 0.18s ease !important;
}

/* FASTER DROPDOWNS */
.dropdown {
  transition: all 0.1s ease !important;
}

/* FASTER FAQ */
.faq-answer {
  transition: max-height 0.12s ease, padding 0.12s ease !important;
}

/* FASTER POPUPS */
.popup-box {
  transition: transform 0.12s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.popup-overlay {
  transition: all 0.1s ease !important;
}

/* FASTER REVEAL ANIMATIONS */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  transition: opacity 0.18s ease, transform 0.18s ease !important;
}

/* REMOVE STAGGER DELAY LAG */
.delay-1,
.delay-2,
.delay-3,
.delay-4,
.delay-5,
.delay-6 {
  transition-delay: 0s !important;
}

/* FASTER TOAST */
.toast {
  transition: transform 0.12s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* FASTER HEADER EFFECT */
#site-header {
  transition: all 0.12s ease !important;
}

/* FASTER HAMBURGER */
.hamburger span {
  transition: all 0.1s ease !important;
}

/* FASTER BUTTON SHINE EFFECT */
.btn::before {
  transition: left 0.12s ease !important;
}

/* FASTER SCROLL SECTION TRANSITIONS */
.section-bg-transition {
  transition: background-color 0.15s ease !important;
}

/* ULTRA RESPONSIVE MOBILE */
@media (max-width: 768px) {
  *,
  *::before,
  *::after {
    transition-duration: 0.08s !important;
  }

  .hero-bg-slider {
    animation: heroBgSlide 7s linear infinite !important;
  }

  .hero-card {
    animation: floatCard 1.4s ease-in-out infinite !important;
  }
}

/* REDUCE GPU LAG */
.subject-card,
.student-card,
.blog-card,
.why-card,
.step-card,
.counter-card,
.review-card,
.team-card,
.pricing-card,
.hero-card,
.btn,
.social-link,
.popup-box {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ULTRA FAST SCROLL PERFORMANCE */
body {
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

```
