/* ============================================
   NEETA'S BEAUTY ZONE — MAIN STYLESHEET
   style.css
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --black: #0a0a0a;
  --deep: #111111;
  --card-bg: #161616;
  --pink: #f0b8c8;
  --pink-light: #fce8ef;
  --pink-mid: #e8889e;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --off-white: #f8f4f1;
  --text-muted: #999;
  --text-mid: #ccc;
  --border: rgba(201,168,76,0.2);
  --border-light: rgba(201,168,76,0.08);
  --section-pad: 5rem 0;
  --r: 2px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
.display { font-family: 'Cormorant Garamond', serif; }
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 400; }
p { font-family: 'DM Sans', sans-serif; font-weight: 300; color: var(--text-mid); }

.gold { color: var(--gold); }
.pink { color: var(--pink); }
.italic { font-style: italic; }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--section-pad); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.text-center { text-align: center; }
.flex { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ---- DIVIDER ---- */
.gold-line { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem auto; }
.gold-line-left { margin: 1rem 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-pink { background: var(--pink-mid); color: var(--white); }
.btn-pink:hover { background: var(--pink); color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--deep); }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #20bc5a; }

/* ---- SECTION HEADERS ---- */
.section-header { margin-bottom: 3rem; }
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  line-height: 1.2;
}
.logo span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active-link { color: var(--gold); }
.nav-cta { display: flex; gap: 0.8rem; align-items: center; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(240,184,200,0.05) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0d0d0d 100%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.08; */
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 60px);
}
/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 55%;
  margin-left: 0;
  padding-bottom: 5rem; /* stats ke liye neeche jagah */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
  margin-bottom: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.hero h1 { margin-bottom: 1.5rem; color: var(--white); }
.hero h1 em { color: var(--pink); font-style: italic; }
.hero-sub { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 500px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
/* HERO STATS — bottom-left, hero ke andar */
.hero-stats {
  position: absolute;
  bottom: 3rem;
  left: 0;           /* right: 0 hata, left: 0 kiya */
  right: unset;
  display: flex;
  gap: 2rem;
  z-index: 2;
  justify-content: flex-start;
}
.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.hero-stat .num span { color: var(--gold); }
.hero-stat p { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why { background: var(--off-white); }
.why h2 { color: var(--black); }
.why .eyebrow { color: var(--gold); }
.why p.sub { color: #555; }

.why-card {
  border: 1px solid rgba(0,0,0,0.07);
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 220px;
}

/* Dark overlay — text readable rahe */
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 0;
  transition: background 0.3s;
}
.why-card:hover::before {
  background: rgba(0, 0, 0, 0.38);
}

/* Gold bottom line */
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
  z-index: 2;
}
.why-card:hover::after { width: 100%; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }

/* Content z-index */
.why-icon,
.why-card h4,
.why-card p {
  position: relative;
  z-index: 1;
}

.why-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.why-card h4 {
  color: var(--gold);
  font-size: 1rem;
  font-family: 'DM Sans';
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.85); }


/* ============================================
   COURSES SECTION (Homepage preview)
   ============================================ */
.courses { background: var(--black); }
.course-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  transition: all 0.4s ease;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.course-card:hover { border-color: var(--border); transform: translateY(-4px); }
.course-img { height: 200px; overflow: hidden; position: relative; background: #1a1a1a; }
.course-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.course-card:hover .course-img img { transform: scale(1.05); }
.course-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-size: 2.5rem;
}
.course-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  font-weight: 500;
}
.course-body { padding: 1.5rem; }
.course-body h4 { color: var(--white); font-size: 1rem; font-family: 'DM Sans'; font-weight: 500; margin-bottom: 0.5rem; }
.course-body p { font-size: 0.82rem; margin-bottom: 1.2rem; color: var(--text-muted); }
.course-meta { display: flex; gap: 1rem; margin-bottom: 1.2rem; }
.course-meta span { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.05em; }
.course-meta span strong { color: var(--gold); font-weight: 400; }

/* ============================================
   ABOUT STRIP
   ============================================ */
.about-strip {
  background: linear-gradient(135deg, #111 0%, #0d0d0d 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.about-strip-inner { padding: 5rem 0; }
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
  max-width: 700px;
}
.about-quote span { color: var(--gold); font-style: italic; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--deep); }
.testi-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.5s ease; }
.testi-card {
  flex: 0 0 calc(33.33% - 1rem);
  margin-right: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  padding: 2rem;
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1rem; }
.testi-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-mid), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 0.9rem; color: var(--white);
}
.testi-name { font-size: 0.85rem; font-weight: 500; color: var(--white); }
.testi-role { font-size: 0.72rem; color: var(--text-muted); }
.slider-controls { display: flex; gap: 0.8rem; margin-top: 2rem; justify-content: center; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================
   PLACEMENT (Homepage section)
   ============================================ */
.placement { background: var(--off-white); }
.placement h2 { color: var(--black); }
.placement .eyebrow { color: var(--gold); }
.placement-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
  transition: transform 0.3s;
}
.placement-item:hover { transform: translateX(4px); }
.placement-icon {
  width: 40px; height: 40px;
  background: var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.placement-item h4 { font-size: 0.95rem; font-family: 'DM Sans'; font-weight: 500; color: var(--black); margin-bottom: 0.3rem; }
.placement-item p { font-size: 0.82rem; color: #666; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--gold);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, #b8943a 100%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--black); }
.cta-banner p { color: rgba(0,0,0,0.6); }

/* ============================================
   GALLERY
   ============================================ */
.gallery { background: var(--black); }
.gallery-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gallery-tab {
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  font-family: 'DM Sans';
  transition: all 0.3s;
}
.gallery-tab.active, .gallery-tab:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.gallery-grid { columns: 3 200px; gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; }
.gallery-placeholder {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}
.gallery-placeholder:hover { border-color: var(--border); }
.gallery-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 1.5rem;
}
.gallery-placeholder:hover .gallery-overlay { opacity: 1; }

/* ============================================
   CERTIFICATIONS
   ============================================ */
.certifications { background: var(--deep); }
.cert-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
}
.cert-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.cert-card h3 { color: var(--white); margin-bottom: 1rem; }
.cert-card p { font-size: 0.88rem; }

/* ============================================
   BLOG
   ============================================ */
.blog { background: var(--off-white); }
.blog h2 { color: var(--black); }
.blog .eyebrow { color: var(--gold); }
.blog-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.blog-img { height: 180px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; }
.blog-tag { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.5rem; }
.blog-card h4 { color: var(--black); font-size: 1rem; font-family: 'DM Sans'; font-weight: 500; margin-bottom: 0.5rem; }
.blog-card p { font-size: 0.82rem; color: #666; margin-bottom: 1rem; }
.blog-meta { font-size: 0.72rem; color: #999; }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--black); }
.contact-form-wrap { background: var(--card-bg); border: 1px solid var(--border-light); padding: 2.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--black); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.ci-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
}
.ci-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.ci-value { color: var(--white); font-size: 0.9rem; }
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 2rem;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: border-color 0.3s;
}
.map-placeholder:hover { border-color: var(--gold); }
.map-placeholder p { font-size: 0.8rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060606;
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer-logo span { display: block; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gold); font-family: 'DM Sans'; text-transform: uppercase; margin-top: 0.3rem; }
.footer p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-title { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-family: 'DM Sans'; font-weight: 500; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-light);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; max-width: none; }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--deep);
  border: 1px solid var(--border);
  padding: 2.5rem;
  max-width: 520px;
  width: 90%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--white); }
.modal h3 { color: var(--white); margin-bottom: 0.5rem; }
.modal > p { font-size: 0.85rem; margin-bottom: 1.5rem; }

/* ============================================
   PAGE SPECIFIC — ABOUT
   ============================================ */
.about-hero {
  min-height: 60vh;
  display: flex; align-items: center;
  background: var(--deep);
  border-bottom: 1px solid var(--border-light);
  padding-top: 6rem;
}
.about-content { background: var(--black); padding: 5rem 0; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 450px; object-fit: cover; }
.mission-block {
  padding: 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.mission-block::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--pink));
}
.mission-block h3 { color: var(--white); margin-bottom: 1rem; }
.mission-block p { font-size: 0.9rem; }
.value-item { text-align: center; padding: 2rem 1rem; }
.value-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--gold); opacity: 0.6; line-height: 1; margin-bottom: 0.5rem; }
.value-item h4 { color: var(--white); font-family: 'DM Sans'; font-weight: 500; margin-bottom: 0.5rem; }
.value-item p { font-size: 0.82rem; }

/* ============================================
   PAGE SPECIFIC — COURSES
   ============================================ */
.course-hero {
  min-height: 50vh;
  display: flex; align-items: center;
  background: var(--deep);
  padding-top: 6rem;
  border-bottom: 1px solid var(--border-light);
}
.course-detail-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}
.course-detail-card:hover { border-color: var(--border); }
.course-detail-card h3 { color: var(--white); margin-bottom: 1rem; }
.course-detail-img { width: 100%; height: 220px; object-fit: cover; margin-bottom: 1.5rem; }
.course-features { list-style: none; margin-top: 1rem; }
.course-features li {
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.course-features li::before { content: '◆'; font-size: 0.4rem; color: var(--gold); }

/* ============================================
   PAGE SPECIFIC — PLACEMENT
   ============================================ */
.placement-hero {
  min-height: 50vh;
  display: flex; align-items: center;
  background: var(--deep);
  padding-top: 6rem;
  border-bottom: 1px solid var(--border-light);
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.step-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.step-card:hover::after { transform: scaleX(1); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--gold); opacity: 0.4; line-height: 1; margin-bottom: 0.8rem; }
.step-card h4 { color: var(--white); font-family: 'DM Sans'; font-weight: 500; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.85rem; }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.counter { font-variant-numeric: tabular-nums; }

/* ============================================
   NOTIFICATION
   ============================================ */
.notification {
  position: fixed;
  bottom: 6rem; right: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--gold);
  padding: 1rem 1.5rem;
  max-width: 300px;
  z-index: 9999;
  transform: translateX(200%);
  transition: transform 0.4s ease;
}
.notification.show { transform: translateX(0); }
.notification p { font-size: 0.85rem; color: var(--white); margin: 0; }
.notification strong { color: var(--gold); }

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-panel { display: none; position: fixed; inset: 0; background: #0d0d0d; z-index: 3000; overflow-y: auto; }
.admin-panel.open { display: block; }
.admin-nav { background: #0a0a0a; border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.admin-nav h4 { color: var(--white); font-family: 'DM Sans'; font-size: 1rem; }
.admin-body { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 60px); }
.admin-sidebar { background: #0a0a0a; border-right: 1px solid var(--border-light); padding: 1.5rem 0; }
.admin-menu-item { padding: 0.7rem 1.5rem; font-size: 0.82rem; color: var(--text-muted); cursor: pointer; border-left: 3px solid transparent; transition: all 0.2s; display: flex; align-items: center; gap: 0.6rem; }
.admin-menu-item:hover, .admin-menu-item.active { color: var(--gold); border-left-color: var(--gold); background: var(--border-light); }
.admin-content { padding: 2rem; }
.admin-card { background: var(--card-bg); border: 1px solid var(--border-light); padding: 1.5rem; margin-bottom: 1rem; }
.admin-card h4 { color: var(--white); font-family: 'DM Sans'; font-weight: 500; margin-bottom: 1rem; }
.admin-stat { background: var(--card-bg); border: 1px solid var(--border-light); padding: 1.5rem; text-align: center; }
.admin-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--gold); }
.admin-stat p { font-size: 0.78rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.admin-table th { text-align: left; padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--border); color: var(--text-muted); font-weight: 400; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.admin-table td { padding: 0.7rem 0.8rem; border-bottom: 1px solid var(--border-light); color: var(--text-mid); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(201,168,76,0.03); }
.badge { display: inline-block; padding: 0.2rem 0.6rem; font-size: 0.68rem; letter-spacing: 0.05em; }
.badge-new { background: rgba(201,168,76,0.15); color: var(--gold); }
.badge-read { background: rgba(153,153,153,0.15); color: var(--text-muted); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .testi-card { flex: 0 0 90%; }
  .gallery-grid { columns: 2 150px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .about-strip-inner > * { flex-direction: column; }
  .admin-body { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  :root { --section-pad: 3.5rem 0; }
  .gallery-grid { columns: 1; }
}
/* TABLET */
@media (max-width: 1024px) {
  .hero-content {
    max-width: 100%;
    padding-bottom: 4rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
    padding-bottom: 3.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-stats {
    bottom: 1.5rem;
    left: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

.hero-bg-mobile { display: none; }
.hero-bg-desktop { display: block; }

@media (max-width: 768px) {
  .hero-bg-desktop { display: none; }
  .hero-bg-mobile { display: block; }
}
@media (max-width: 768px) {
  .hero-btn-desktop {
    display: none; /* Explore Courses mobile pe hide */
  }

    .hero-btns {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .hero-btns .btn-outline {
    width: auto;
    min-width: unset;
    padding: 0.6rem 1.6rem;
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .hero-btns a.btn {
    width: auto !important;
  }
}
@media (max-width: 768px) {

.hero-btns .btn-outline {
  background: #000;
  color: #fff;
  border-color: #000;
}
}