
:root {
  --navy:       #0b1829;
  --navy-mid:   #132238;
  --gold:       #c9a227;
  --gold-light: #e8c355;
  --gold-dim:   rgba(201,162,39,0.12);
  --white:      #ffffff;
  --off-white:  #f8f6f1;
  --bg:         #f4f1eb;
  --bg2:        #ffffff;
  --gray:       #6b7a8d;
  --gray-light: #8a9ab5;
  --text:       #1a2535;
  --text-soft:  #4a5568;
  --card-bg:    #ffffff;
  --card-border: rgba(201,162,39,0.2);
  --card-shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius:     16px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: padding 0.3s;
}
.site-header.scrolled { padding: 10px 40px; }

.header-logo img { height: 70px; width: auto; }

.header-nav { display: flex; align-items: center; gap: 8px; }

.btn-header-enroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
  text-transform: uppercase;
}
.btn-header-enroll:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-header-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.1);
  transition: color 0.2s, border-color 0.2s;
}
.btn-header-back:hover { color: var(--navy); border-color: rgba(0,0,0,0.25); }

/* ===== HERO ===== */
.hero {
  padding: 110px 40px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-left {}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--navy);
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-title .gold { color: var(--gold); }

.hero-subtitle-line {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-soft);
  font-style: italic;
  margin-bottom: 32px;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero-stat {
  padding: 0 24px;
  border-right: 1px solid rgba(0,0,0,0.1);
  text-align: center;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 1px;
}
.hero-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
}

/* Snehal video on the right */
.hero-video-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,0.14);
  border: 1px solid var(--card-border);
  animation: fadeUp 0.7s ease 0.15s both;
  background: #000;
}
.hero-video-ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.hero-video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.hero-video-caption {
  background: var(--card-bg);
  padding: 14px 18px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-video-caption .badge {
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(201,162,39,0.3);
}
.hero-video-caption .name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.hero-video-caption .role {
  font-size: 12px;
  color: var(--gray);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--navy);
  padding: 22px 40px;
  position: relative;
  z-index: 1;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.trust-item i { color: var(--gold); font-size: 13px; }

/* ===== SECTION HEADER ===== */
.section-header {
  padding: 64px 40px 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
  border-radius: 1px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0.5px;
  color: var(--navy);
  line-height: 1;
}
.section-title .gold { color: var(--gold); }

/* ===== ABOUT SECTION ===== */
.about-section {
  background: #fff;
  padding: 64px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.about-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about-eyebrow span {
  width: 24px; height: 2px;
  background: var(--gold);
  display: inline-block;
  border-radius: 1px;
}
.about-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-text {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.8;
}


/* ===== VIDEO GRID ===== */
.videos-section {
  padding: 0 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  cursor: pointer;
  box-shadow: var(--card-shadow);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
  border-color: rgba(201,162,39,0.4);
}

.card-number {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  width: 30px;
  height: 30px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}
.card-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.card-body { padding: 18px 18px 20px; }
.card-industry-tag {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  border: 1px solid rgba(201,162,39,0.25);
}
.card-name { font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 3px; }
.card-role { font-size: 12px; color: var(--gray); margin-bottom: 10px; line-height: 1.4; }
.card-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 80px 40px;
  text-align: center;
  background: var(--navy);
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,162,39,0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.cta-border-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-section .section-title { color: #fff; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section .section-title .gold { color: var(--gold-light); }
.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative; z-index: 1;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(201,162,39,0.3);
}
.btn-cta-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 36px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-cta-secondary:hover { border-color: var(--gold); color: var(--gold-light); }

/* ===== FOOTER ===== */
.site-footer {
  background: #07111e;
  padding: 40px 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 20px;
}
.footer-logo img { height: 36px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.footer-social:hover { background: rgba(201,162,39,0.15); color: var(--gold); }
.footer-bottom { text-align: center; font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 200;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float i { color: #fff; font-size: 26px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.1s; }
.fade-up:nth-child(6) { transition-delay: 0.2s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .site-header { padding: 12px 20px; }
  .about-section { padding: 48px 20px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 20px 48px;
    gap: 36px;
  }
  .hero-stats { gap: 4px; }
  .section-header { padding: 48px 20px 28px; }
  .videos-section { padding: 0 20px 56px; }
  .cta-section { padding: 56px 20px; }
  .trust-strip { padding: 20px; }
  .trust-strip-inner { gap: 20px; }
  .site-footer { padding: 32px 20px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .btn-header-back span { display: none; }
}
@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
}
