/* ============================================================
   STYLE.CSS — The SEEP | First India Foundation
   ============================================================ */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f1f3f5;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --accent-primary: #800000;
  --accent-secondary: #c0392b;
  --accent-gradient: linear-gradient(135deg, #800000 0%, #c0392b 100%);
  --success: #059669;
  --border-color: rgba(0, 0, 0, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(0, 0, 0, 0.05);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); transition: all 0.3s ease; }
img { display: block; max-width: 100%; }

/* ─── Layout Utilities ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) { .container { padding: 0 1.25rem; } }

.section-padding { padding: 5rem 0; }
@media (max-width: 768px) { .section-padding { padding: 3.5rem 0; } }

.w-full { width: 100%; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
@media (max-width: 992px) { * { background-attachment: scroll !important; } }

/* ─── Typography ────────────────────────────────────────── */
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
}
.section-title.text-left { text-align: left; margin-bottom: 2rem; }

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 4rem auto;
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .section-subtitle { font-size: 1rem; margin: 0 auto 2.5rem auto; }
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1rem;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent-gradient);
  color: white;
  border: none;
  box-shadow: 0 4px 14px rgba(128, 0, 0, 0.39);
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(128, 0, 0, 0.5);
  transform: translateY(-2px);
  color: white;
}

/* ─── Glass Panel ────────────────────────────────────────── */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

/* ─── Scroll Animations ──────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.slide-left { transform: translateX(-50px); }
.animate-on-scroll.slide-right { transform: translateX(50px); }
.animate-on-scroll.visible { opacity: 1; transform: translate(0, 0); }

/* ─── Global Animated Background ─────────────────────────── */
.global-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: -5;
  overflow: hidden;
  background-color: var(--bg-primary);
}
.bg-blob-global {
  position: absolute;
  opacity: 0.7;
  border-radius: 50%;
  animation: blob-float-global 20s infinite alternate ease-in-out;
  will-change: transform;
}
.global-blob-1 {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(128, 0, 0, 0.15) 0%, transparent 70%);
  top: -10%; left: -10%;
}
.global-blob-2 {
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.12) 0%, transparent 70%);
  bottom: -20%; right: -10%;
  animation-delay: -7s;
}
.global-blob-3 {
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
  top: 30%; left: 50%;
  animation-delay: -12s;
}
@keyframes blob-float-global {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(5vw, -5vh) scale(1.1); }
  66% { transform: translate(-3vw, 4vh) scale(0.9); }
  100% { transform: translate(4vw, 6vh) scale(1.05); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border-color);
}
.navbar.scrolled {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Top Bar */
.top-bar {
  background-color: var(--accent-primary);
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 60px;
}
.navbar.scrolled .top-bar { max-height: 0; padding: 0; opacity: 0; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; align-items: center; gap: 1rem; }
.mission-text { font-weight: 600; }
.batch-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.15rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: pulse-glow 2s infinite;
}
.pulse-dot {
  width: 6px; height: 6px;
  background-color: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: blink 1.5s infinite;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 5px rgba(255,255,255,0.2); transform: scale(1); }
  50% { box-shadow: 0 0 15px rgba(255,255,255,0.6); transform: scale(1.02); }
  100% { box-shadow: 0 0 5px rgba(255,255,255,0.2); transform: scale(1); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@media (max-width: 768px) {
  .top-bar-content { flex-direction: column; gap: 6px; font-size: 0.75rem; text-align: center; }
  .top-bar-left { flex-direction: column; gap: 4px; }
  .batch-highlight { font-size: 0.7rem; padding: 0.1rem 0.6rem; }
  .top-bar-right { font-size: 0.7rem; }
}

/* Nav Container */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 2rem;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar.scrolled .nav-container { padding: 2px 2rem; }

.logo-group { display: flex; align-items: center; gap: 1.25rem; }
.nav-logo-image {
  height: 76px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar.scrolled .nav-logo-image { height: 52px; }
.logo-text-group { display: flex; flex-direction: column; }
.main-logo-text {
  font-family: 'Times New Roman', Times, serif;
  color: #002244;
  font-size: 1.75rem;
  margin: 0; line-height: 1.2;
}
.sub-logo-text { color: #b30000; font-size: 0.95rem; margin: 0; font-weight: 500; }

.desktop-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.nav-link { font-size: 0.9375rem; font-weight: 500; color: var(--text-secondary); position: relative; }
.nav-link:hover { color: var(--text-primary); }
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-gradient);
  transition: width 0.3s ease; border-radius: 2px;
}
.nav-link:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.mobile-menu-btn { color: var(--text-primary); display: flex; align-items: center; justify-content: center; }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

.nav-btn { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.mobile-menu.open { max-height: 600px; padding: 2rem; opacity: 1; pointer-events: all; overflow-y: auto; }
.mobile-link { font-size: 1.25rem; font-weight: 600; color: var(--text-primary); }

@media (max-width: 768px) {
  .main-logo-text { font-size: 1.2rem; }
  .sub-logo-text { font-size: 0.7rem; }
  .nav-logo-image { height: 40px; }
  .navbar.scrolled .nav-logo-image { height: 32px; }
  .logo-group { gap: 0.75rem; }
  .nav-btn { display: none !important; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background-color: #111;
  background-image: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%), url('pawpaw.png');
  background-size: cover;
  background-position: center;
}
@media (max-width: 1023px) {
  .hero { align-items: flex-start; padding-top: 13rem; }
  .form-card { margin-top: 1rem; }
}
@media (max-width: 768px) {
  .hero { padding: 14rem 0 3rem; align-items: flex-start; }
}

.hero-container {
  display: flex;
  flex-direction: column-reverse;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-container { display: grid; grid-template-columns: 1.2fr 1fr; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: white;
  backdrop-filter: blur(4px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  color: white;
}
.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-btn { padding: 1rem 2rem; font-size: 1.125rem; }
@media (max-width: 768px) {
  .hero-title { font-size: 2.25rem; }
  .hero-description { font-size: 1rem; margin-bottom: 2rem; }
  .hero-btn { width: 100%; justify-content: center; }
}

.hero-stats { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-stats { flex-direction: row; gap: 2rem; } }
.stat-item { display: flex; align-items: center; gap: 0.75rem; font-weight: 600; font-size: 1.1rem; color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero-stat-icon { color: white; flex-shrink: 0; }

/* Hero Form Card */
.form-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) { .form-card { padding: 1.5rem; } }

.form-header { text-align: center; margin-bottom: 2rem; }
.form-header h3 { font-size: 1.5rem; color: var(--accent-primary); margin-bottom: 0.5rem; }
.form-header p { color: var(--text-secondary); font-weight: 500; }

.admission-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { position: relative; }

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #f8f9fa;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
  background: #ffffff;
}
.form-input.error { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,0.1); }
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}
.field-error { display: block; color: #dc2626; font-size: 0.8rem; margin-top: 0.25rem; min-height: 1rem; }

.submit-btn {
  margin-top: 1rem; padding: 1.125rem; font-size: 1.125rem; font-weight: 700;
  display: flex; justify-content: center; align-items: center; gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.submit-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 25px rgba(128,0,0,0.3); }

.form-footer {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 1.5rem; font-size: 0.875rem; color: var(--text-secondary);
}

/* Float animation for form card */
.float-anim { animation: float-card 6s ease-in-out infinite; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── Hero Logos Section ───────────────────────────────── */
.hero-logos-section {
  background-color: #f4f4f4;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  overflow: hidden;
}
.hero-logo-wrapper { display: flex; flex-direction: column; align-items: center; }
.hero-logo-wrap-1, .hero-logo-wrap-3 { width: 28%; min-width: 250px; }
.hero-logo-wrap-2 { width: 32%; min-width: 280px; }
.hero-logo-crop-1, .hero-logo-crop-3 { height: 75px; display: flex; align-items: center; justify-content: center; overflow: hidden; width: 100%; }
.hero-logo-crop-2 { height: 95px; display: flex; align-items: center; justify-content: center; overflow: hidden; width: 100%; }
.hero-logo-img-1, .hero-logo-img-3 { height: 210px; width: auto; max-width: none; object-fit: contain; }
.hero-logo-img-2 { height: 260px; width: auto; max-width: none; object-fit: contain; }
@media (max-width: 768px) {
  .hero-logos-section { gap: 0.2rem; padding: 0.2rem; flex-direction: row; flex-wrap: nowrap; }
  .hero-logo-wrap-1, .hero-logo-wrap-3 { width: 30%; min-width: 0; }
  .hero-logo-wrap-2 { width: 40%; min-width: 0; }
  .hero-logo-img-1, .hero-logo-img-3 { height: 110px; }
  .hero-logo-img-2 { height: 130px; }
  .hero-logo-crop-1, .hero-logo-crop-3 { height: 35px; }
  .hero-logo-crop-2 { height: 45px; }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  position: relative;
  background-color: var(--bg-secondary);
  background-image: linear-gradient(rgba(248,249,250,0.3), rgba(248,249,250,0.3)), url('bg9.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card-inner {
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.feature-card-inner::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--accent-gradient); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.feature-card-inner:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.feature-card-inner:hover::before { transform: scaleX(1); }

.feature-icon-wrapper {
  width: 60px; height: 60px; border-radius: 12px;
  background: rgba(128, 0, 0, 0.08); color: var(--accent-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: all 0.3s ease;
}
.feature-card-inner:hover .feature-icon-wrapper {
  background: var(--accent-gradient); color: white; transform: rotate(5deg) scale(1.1);
}
.feature-title { font-size: 1.25rem; margin-bottom: 1rem; }
.feature-description { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.6; }

@media (max-width: 767px) {
  .features-grid { display: flex; flex-direction: column; gap: 1.5rem; padding-bottom: 2rem; }
  .feature-card-wrapper { position: relative; height: auto; }
  .feature-card-wrapper.animate-on-scroll.visible { transform: none !important; }
  .feature-card-inner { background: rgba(255,255,255,1) !important; box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important; border: 1px solid rgba(0,0,0,0.05); }
}

/* ============================================================
   WHY VGU SECTION
   ============================================================ */
.why-vgu-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: visible;
  z-index: 50;
}
.section-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); z-index: 1;
}
.relative-z { position: relative; z-index: 2; }
.why-vgu-header { text-align: center; margin-bottom: 4rem; }
.why-vgu-header .section-title { color: #ffffff; }
.why-vgu-header .section-subtitle { font-weight: 500; color: rgba(255,255,255,0.9); }

.reasons-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; perspective: 1200px; }
@media (min-width: 768px) { .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reasons-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.reason-card {
  position: relative; height: 100%; padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.98); border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}
.reason-card:hover {
  transform: translateY(-15px) rotateX(10deg) rotateY(-5deg) scale(1.02);
  box-shadow: -15px 25px 40px rgba(0,0,0,0.1), inset 0 2px 0 rgba(255,255,255,1);
  border-color: rgba(128,0,0,0.2);
}
.reason-icon-wrapper { margin-bottom: 1.5rem; }
.reason-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(128,0,0,0.05) 0%, rgba(128,0,0,0.15) 100%);
  color: var(--accent-primary); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease;
}
.reason-card:hover .reason-icon { background: var(--accent-gradient); color: white; box-shadow: 0 10px 25px rgba(128,0,0,0.3); transform: rotate(-10deg); }
.reason-title { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; font-weight: 700; transition: color 0.3s ease; }
.reason-card:hover .reason-title { color: var(--accent-primary); }
.reason-description { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

.card-shine {
  position: absolute; top: 0; left: 0; width: 200%; height: 200%;
  background: linear-gradient(to bottom right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(-45deg) translate(-100%, -100%);
  transition: transform 0.8s ease; pointer-events: none; z-index: 10;
}
.reason-card:hover .card-shine { transform: rotate(-45deg) translate(100%, 100%); }

@media (max-width: 767px) {
  .reasons-grid { display: flex; flex-direction: column; gap: 1.5rem; padding-bottom: 2rem; }
  .reason-card-wrapper { position: relative; height: auto; }
  .reason-card-wrapper.animate-on-scroll.visible { transform: none !important; }
  .reason-card { background: rgba(255,255,255,1) !important; box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important; border: 1px solid rgba(0,0,0,0.05); }
}

/* ============================================================
   ABOUT VGU SECTION
   ============================================================ */
.about-vgu-section { position: relative; background-color: var(--bg-primary); overflow: hidden; }
.about-vgu-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-vgu-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }

.about-text-container { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.about-text { font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary); }
.about-highlights { display: flex; flex-wrap: wrap; gap: 1rem; }
.highlight-badge {
  background: rgba(128,0,0,0.05); border: 1px solid rgba(128,0,0,0.1);
  color: var(--accent-primary); padding: 0.6rem 1.2rem;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s ease; display: flex; align-items: center; gap: 8px;
}
.highlight-badge:hover { background: var(--accent-gradient); color: white; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(128,0,0,0.2); border-color: transparent; }

.about-images-collage { position: relative; height: 500px; width: 100%; }
.collage-image-wrapper {
  position: absolute; border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); border: 6px solid white;
}
.collage-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.collage-image-wrapper:hover { z-index: 10 !important; transform: scale(1.05) !important; box-shadow: 0 30px 60px rgba(0,0,0,0.25); }
.collage-image-wrapper:hover img { transform: scale(1.1); }

.img-main { width: 65%; height: 320px; top: 0; left: 0; z-index: 3; }
.img-secondary-1 { width: 55%; height: 250px; bottom: 20px; right: 0; z-index: 2; }
.img-secondary-2 { width: 45%; height: 220px; bottom: -30px; left: 10%; z-index: 4; }

.collage-shape { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 1; opacity: 0.6; }
.shape-1 { width: 250px; height: 250px; background: rgba(128,0,0,0.6); top: -30px; right: -30px; }
.shape-2 { width: 200px; height: 200px; background: rgba(255,107,0,0.5); bottom: -20px; left: -20px; }

@media (max-width: 768px) {
  .about-images-collage { height: 420px; margin-top: 2rem; }
  .img-main { width: 75%; height: 260px; }
  .img-secondary-1 { width: 65%; height: 200px; bottom: 40px; }
  .img-secondary-2 { width: 55%; height: 180px; bottom: 0; left: 5%; }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background-color: var(--bg-primary);
  position: relative; overflow: visible;
  padding-top: 2rem; padding-bottom: 2rem; z-index: 6;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; perspective: 1200px;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.stat-card-wrapper { perspective: 1200px; }
.stat-card {
  position: relative; height: 100%; padding: 1.5rem 1rem;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 20px; border: 1px solid rgba(128,0,0,0.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden; display: flex; flex-direction: column; align-items: center; text-align: center;
}
.stat-card:hover {
  transform: translateY(-10px) rotateX(10deg) rotateY(-5deg) scale(1.03);
  box-shadow: -10px 20px 30px rgba(128,0,0,0.1), inset 0 2px 0 rgba(255,255,255,1);
  border-color: rgba(128,0,0,0.2);
}
.stat-icon-wrapper { margin-bottom: 1.25rem; }
.stat-icon {
  width: 56px; height: 56px;
  background: rgba(128,0,0,0.04); color: var(--accent-primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 15px rgba(128,0,0,0.05), 0 5px 15px rgba(128,0,0,0.1);
  transition: all 0.4s ease;
}
.stat-card:hover .stat-icon { background: var(--accent-gradient); color: white; box-shadow: 0 10px 25px rgba(128,0,0,0.3); }
.stat-value {
  font-size: 2rem; font-weight: 800; margin-bottom: 0.25rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1.1;
}
.stat-label { color: var(--text-secondary); font-size: 0.85rem; font-weight: 700; line-height: 1.4; text-transform: uppercase; letter-spacing: 0.5px; }

@media (max-width: 576px) {
  .stat-card { padding: 1rem 0.5rem; }
  .stat-icon { width: 44px; height: 44px; }
  .stat-value { font-size: 1.5rem; }
  .stat-label { font-size: 0.7rem; letter-spacing: 0; }
}

/* ============================================================
   RECRUITERS SECTION
   ============================================================ */
.recruiters-section { background-color: var(--bg-secondary); overflow: hidden; padding: 4rem 0; }
.recruiters-header { text-align: center; margin-bottom: 3rem; }

.marquee-container {
  width: 100vw; margin-left: calc(-50vw + 50%); overflow: hidden;
  position: relative; padding: 1rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: scrollLeft 40s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item { display: flex; align-items: center; justify-content: center; padding: 0 4rem; }
.company-logo { height: 50px; width: auto; max-width: 180px; object-fit: contain; transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275); }
.marquee-item:hover .company-logo { transform: scale(1.15); }
.company-name-fallback { font-size: 1.5rem; font-weight: bold; color: var(--text-secondary); letter-spacing: 1px; display: none; }
.microsoft-logo { transform: scale(1.4); }
.amazon-logo { transform: scale(1.4); }
.capgemini-logo { transform: scale(1.3); }
.marquee-item:hover .microsoft-logo, .marquee-item:hover .amazon-logo, .marquee-item:hover .capgemini-logo { transform: scale(1.6); }
@media (max-width: 768px) {
  .marquee-item { padding: 0 2rem; }
  .company-logo { height: 40px; }
}

/* ============================================================
   ACADEMICS SECTION
   ============================================================ */
.academics-section {
  position: relative;
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('bg4.webp');
  background-size: cover; background-position: center; background-attachment: fixed;
  padding-top: 2.5rem; padding-bottom: 2.5rem;
}
.academics-section .section-title { color: #ffffff; }
.academics-section .section-subtitle { color: rgba(255,255,255,0.9); }

.single-program-container { max-width: 900px; margin: 0 auto; perspective: 1500px; }
.program-card-wide {
  padding: 2.5rem 2rem; text-align: center; position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
  border-radius: 24px; animation: cardFadeInUp 0.8s ease-out forwards;
}
.program-card-wide:hover {
  transform: translateY(-8px) rotateX(4deg) scale(1.02);
  box-shadow: -20px 30px 40px rgba(0,0,0,0.15), inset 0 2px 0 rgba(255,255,255,1);
  border-color: rgba(128,0,0,0.3);
}
.program-badge {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: var(--accent-gradient); color: white;
  padding: 0.4rem 1rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; box-shadow: 0 4px 10px rgba(128,0,0,0.2);
}
@media (max-width: 767px) { .program-badge { position: static; display: inline-block; margin-bottom: 1.5rem; } }

.program-content-wide { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; margin-top: 1rem; }
.degree-side { flex: none; max-width: 600px; margin: 0 auto; }
.program-icon-wrap {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(139,92,246,0.1); color: #8b5cf6;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem auto;
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.program-card-wide:hover .program-icon-wrap { transform: scale(1.15) rotate(10deg); box-shadow: 0 15px 30px rgba(128,0,0,0.15); }
.program-icon { width: 34px; height: 34px; }
.uni-degree { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-primary); }
.uni-degree span { font-size: 1.2rem; font-weight: 400; color: var(--text-secondary); }
.degree-desc { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.5; }

.program-highlights { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
.highlight-item {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(0,0,0,0.03); padding: 0.5rem 1rem; border-radius: 999px;
  font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); border: 1px solid rgba(0,0,0,0.05);
}

@keyframes cardFadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PERFORMANCE SECTION
   ============================================================ */
.performance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .performance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .performance-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 1.5rem; } }

.performance-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.performance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.performance-card::before {
  content: "";
  position: absolute; top: 0; left: 0; width: 100%; height: 6px;
  background: var(--accent-gradient);
}
.performance-card.card-featured {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #ffffff;
  border: none;
}
.performance-card.card-featured::before { background: var(--accent-gradient); }

.performance-card.card-admission {
  background: linear-gradient(135deg, #8a0b1f 0%, #5a000a 100%);
  color: #ffffff;
  border: none;
}
.performance-card.card-admission::before { background: #ffffff; }

.performance-batch-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.performance-batch-tag.light {
  background: rgba(128,0,0,0.08);
  color: var(--accent-primary);
}
.card-admission .performance-batch-tag {
  background: #ffffff;
  color: #8a0b1f;
}

.stat-row {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 16px;
  margin-bottom: 0.75rem;
}
.stat-row b {
  display: block; font-size: 1.75rem; color: #ffccd5; margin-bottom: 4px; font-weight: 800;
}
.stat-row span { font-size: 0.85rem; line-height: 1.5; color: rgba(255,255,255,0.8); }

.big-stat {
  font-size: 3.5rem; font-weight: 900; color: var(--accent-primary); margin: 0 0 0.2rem; line-height: 1;
}

.status-badge {
  display: inline-block; padding: 8px 16px; border-radius: 30px;
  font-size: 0.85rem; font-weight: 700; margin-top: auto; align-self: flex-start;
}

.apply-btn {
  display: inline-block; background: #ffffff; color: #8a0b1f;
  text-decoration: none; padding: 12px 24px; border-radius: 30px;
  font-weight: 800; font-size: 0.95rem; text-align: center;
  transition: all 0.3s ease;
}
.apply-btn:hover { background: #fff1f2; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

/* ============================================================
   ADMISSION STEPS
   ============================================================ */
.steps-section {
  position: relative;
  background-image: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)), url('bg2.png');
  background-size: cover; background-position: center; background-attachment: fixed;
}
.steps-container {
  display: flex; flex-direction: column; gap: 2rem;
  max-width: 900px; margin: 0 auto; position: relative; padding-left: 2rem;
}
@media (min-width: 768px) { .steps-container { flex-direction: row; padding-left: 0; gap: 1.5rem; justify-content: space-between; } }

.steps-line {
  position: absolute; top: 0; bottom: 0; left: 36px; width: 2px;
  background: rgba(0,0,0,0.1); z-index: 1;
}
@media (min-width: 768px) { .steps-line { top: 24px; left: 5%; right: 5%; bottom: auto; height: 2px; width: 90%; } }

.step-item { position: relative; z-index: 2; display: flex; align-items: flex-start; gap: 1.5rem; }
@media (min-width: 768px) { .step-item { flex-direction: column; align-items: center; flex: 1; text-align: center; } }

.step-number {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent-gradient); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: bold; flex-shrink: 0;
  box-shadow: 0 0 15px rgba(128,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}
@media (min-width: 768px) { .step-number { width: 48px; height: 48px; font-size: 1.25rem; margin-bottom: 1rem; } }
.step-item:hover .step-number { transform: scale(1.25) translateY(-5px); box-shadow: 0 10px 25px rgba(128,0,0,0.5); }

.step-content {
  padding: 1.5rem; flex: 1;
  transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
  border: 1px solid transparent;
}
.step-item:hover .step-content { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); border-color: rgba(128,0,0,0.15); }
.step-content h3 { font-size: 1.125rem; margin-bottom: 0.5rem; transition: color 0.3s ease; }
.step-item:hover .step-content h3 { color: var(--accent-primary); }
.step-content p { color: var(--text-secondary); font-size: 0.875rem; }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section { background-color: var(--bg-primary); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 1.5rem;
}
.gallery-item { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); cursor: pointer; }
.item-1 { grid-column: span 2; grid-row: span 2; }
.item-2 { grid-column: span 2; grid-row: span 1; }
.item-3 { grid-column: span 1; grid-row: span 1; }
.item-4 { grid-column: span 1; grid-row: span 1; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 2rem 1.5rem 1.5rem; color: white;
  opacity: 0; transform: translateY(20px); transition: all 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }
.gallery-overlay h3 { font-size: 1.25rem; margin: 0; font-weight: 600; }

@media (max-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .item-1, .item-2, .item-3, .item-4 { grid-column: span 2; height: 300px; }
}
@media (max-width: 576px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .item-1 { grid-column: span 2; height: 250px; }
  .item-2, .item-3 { grid-column: span 1; height: 200px; }
  .item-4 { grid-column: span 2; height: 250px; }
  .gallery-overlay { opacity: 1; transform: translateY(0); background: linear-gradient(to top, rgba(128,0,0,0.9), transparent); padding: 1rem; }
  .gallery-overlay h3 { font-size: 1rem; }
}

/* ============================================================
   CAMPUS LIFE SECTION
   ============================================================ */
.campus-life-section { position: relative; overflow: hidden; background-color: var(--bg-primary); }
.campus-life-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .campus-life-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.campus-description { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; }
.campus-highlights { display: flex; flex-direction: column; gap: 1.5rem; }
.campus-highlight-item {
  display: flex; align-items: flex-start; gap: 1.25rem; padding: 1rem;
  border-radius: 12px; transition: background 0.3s ease;
}
.campus-highlight-item:hover { background: rgba(128,0,0,0.03); }
.highlight-icon {
  flex-shrink: 0; width: 50px; height: 50px;
  background: rgba(128,0,0,0.08); color: var(--accent-primary);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.campus-highlight-item:hover .highlight-icon { background: var(--accent-gradient); color: white; transform: scale(1.1) rotate(5deg); }
.campus-highlight-item h4 { font-size: 1.125rem; color: var(--text-primary); margin-bottom: 0.35rem; }
.campus-highlight-item p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.5; }

.campus-video-content { position: relative; width: 100%; }
.campus-video-wrapper {
  position: relative; width: 100%; padding-top: 56.25%; border-radius: 20px;
  overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.5); z-index: 2; background: #000;
}
.campus-iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.campus-blob { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 1; opacity: 0.6; pointer-events: none; }
.blob-campus-1 { width: 300px; height: 300px; background: var(--accent-secondary); top: -50px; right: -50px; animation: float 8s infinite alternate ease-in-out; }
.blob-campus-2 { width: 250px; height: 250px; background: var(--accent-primary); bottom: -30px; left: -30px; animation: float 10s infinite alternate-reverse ease-in-out; }
@keyframes float { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(-20px) scale(1.05); } }

/* ============================================================
   PROMO VIDEO SECTION
   ============================================================ */
.promo-video-section {
  position: relative; z-index: 5;
  background-color: var(--bg-primary);
  background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url('bg8.webp');
  background-size: cover; background-position: center; background-attachment: fixed;
  padding: 2rem 0;
}
.promo-header { text-align: center; margin-bottom: 3rem; }
.video-player-wrapper {
  position: relative; width: 100%; max-width: 1000px; margin: 0 auto;
  border-radius: 20px; overflow: hidden; background: #000;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.6), 0 0 50px rgba(139,92,246,0.3);
  aspect-ratio: 16 / 9;
}
.promo-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; transition: opacity 0.5s ease; z-index: 2;
}
.video-overlay.hidden { opacity: 0; pointer-events: none; }
.custom-play-btn {
  width: 80px; height: 80px;
  background: var(--accent-gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; border: none; cursor: pointer;
  animation: pulse-ring 2s infinite; transition: transform 0.3s ease;
}
.custom-play-btn:hover { transform: scale(1.1); }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(139,92,246,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(139,92,246,0); }
  100% { box-shadow: 0 0 0 0 rgba(139,92,246,0); }
}
.video-overlay-text { color: white; margin-top: 1.5rem; font-size: 1.25rem; font-weight: 600; letter-spacing: 0.5px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.video-decoration { position: absolute; width: 200px; height: 200px; border-radius: 50%; filter: blur(40px); z-index: -1; }
.dec-1 { top: -50px; left: -50px; background: radial-gradient(circle, rgba(139,92,246,0.4) 0%, transparent 70%); }
.dec-2 { bottom: -50px; right: -50px; background: radial-gradient(circle, rgba(236,72,153,0.3) 0%, transparent 70%); }
@media (max-width: 576px) {
  .custom-play-btn { width: 60px; height: 60px; }
  .video-overlay-text { font-size: 0.95rem; margin-top: 1rem; text-align: center; }
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section { position: relative; padding-bottom: 2rem !important; }
.assurance-box {
  padding: 3rem; margin-bottom: 6rem;
  background-image: linear-gradient(145deg, rgba(255,255,255,0.85) 0%, rgba(248,249,250,0.85) 100%), url('bg2.png');
  background-size: cover; background-position: center; background-attachment: fixed;
  border: 1px solid rgba(16,185,129,0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-radius: 16px;
}
@media (max-width: 768px) { .assurance-box { padding: 1.5rem; } }

.assurance-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.shield-icon { color: var(--success); flex-shrink: 0; }
.assurance-header h2 { font-size: 1.5rem; color: var(--success); }
.assurance-header p { color: var(--text-secondary); }
.assurance-text { font-size: 1.125rem; line-height: 1.8; margin-bottom: 2rem; color: var(--text-primary); }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
@media (max-width: 768px) { .stats-row { grid-template-columns: 1fr; } }

.assurance-stat-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
  border-radius: 12px; padding: 1.5rem; text-align: center;
  border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  animation: cardFadeInUp 0.8s ease-out forwards; opacity: 0;
}
.assurance-stat-card:nth-child(1) { animation-delay: 0.1s; }
.assurance-stat-card:nth-child(2) { animation-delay: 0.3s; }
.assurance-stat-card:nth-child(3) { animation-delay: 0.5s; }
.assurance-stat-card:hover { transform: translateY(-10px) rotateX(8deg) rotateY(-6deg) scale(1.05); box-shadow: -12px 20px 35px rgba(0,0,0,0.15); border-color: rgba(128,0,0,0.2); }
.assurance-stat-card h3 { font-size: 2.5rem; color: var(--accent-primary); margin-bottom: 0.5rem; }
.assurance-stat-card p { color: var(--text-secondary); font-weight: 500; }

.refund-notice {
  background: rgba(128,0,0,0.05); border-left: 4px solid var(--accent-secondary);
  padding: 1.5rem; border-radius: 0 8px 8px 0; color: var(--text-secondary); line-height: 1.6;
}
.refund-notice strong { color: var(--text-primary); }

.testimonials-header { text-align: center; margin-bottom: 3rem; }

.video-testimonials-wrapper {
  margin-top: 2rem;
  width: 100vw; margin-left: calc(-50vw + 50%);
  overflow: visible; padding: 2rem 0 1rem 0;
}
.video-testimonials-scroll {
  display: flex; justify-content: center; flex-wrap: nowrap;
  gap: 1.5rem; padding: 0 2rem 2rem 2rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
.video-testimonials-scroll::-webkit-scrollbar { display: none; }
@media (max-width: 1200px) { .video-testimonials-scroll { justify-content: flex-start; } }

.video-card {
  flex: 0 0 280px; scroll-snap-align: center;
  display: flex; flex-direction: column; padding: 0; overflow: hidden;
  border-radius: 16px; cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 768px) { .video-card { flex: 0 0 320px; } }
.video-card:hover { transform: translateY(-8px) scale(1.02); }

.video-thumbnail { position: relative; width: 100%; height: 180px; overflow: hidden; background: #000; }
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.video-card:hover .video-thumbnail img { transform: scale(1.08); }

.video-overlay-yt {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.15); transition: background 0.3s ease;
}
.video-card:hover .video-overlay-yt { background: rgba(0,0,0,0.3); }
.play-button {
  width: 64px; height: 48px; background: #ff0000;
  color: white; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(255,0,0,0.4); transition: all 0.3s ease; border: none;
}
.video-card:hover .play-button { box-shadow: 0 6px 20px rgba(255,0,0,0.6); transform: scale(1.1); }

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  padding: 2rem; animation: modalFadeIn 0.3s ease-out forwards;
}
.video-modal-content {
  position: relative; width: 100%; max-width: 1000px;
  background: #000; border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5); overflow: hidden;
  animation: modalScaleUp 0.3s ease-out forwards;
}
.video-modal-close {
  position: absolute; top: -40px; right: 0;
  background: none; border: none; color: white; cursor: pointer;
  padding: 0; display: flex; align-items: center; justify-content: center;
  transition: color 0.2s; z-index: 10;
}
.video-modal-close:hover { color: var(--accent-primary); }
@media (min-width: 768px) {
  .video-modal-close { top: 1rem; right: 1rem; background: rgba(0,0,0,0.5); width: 40px; height: 40px; border-radius: 50%; }
}
.video-modal-iframe-container { position: relative; width: 100%; padding-top: 56.25%; }
.video-modal-iframe-container iframe { position: absolute; top: 0; left: 0; bottom: 0; right: 0; width: 100%; height: 100%; }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalScaleUp { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative; border-top: 1px solid var(--glass-border);
  padding: 1.5rem 0 0.5rem; overflow: hidden; z-index: 1;
}
.footer::before {
  content: ''; position: absolute; top: -10%; left: -10%; right: -10%; bottom: -10%;
  background-image: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.3)), url('bg3.png');
  background-size: cover; background-position: center; z-index: -1;
  animation: footerBgPan 25s infinite alternate ease-in-out;
}
@keyframes footerBgPan {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(2%, 2%); }
}
.footer-content { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .footer-content { grid-template-columns: 1fr 2fr; } }
.footer-brand { max-width: 300px; }
.footer-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.footer-desc { color: var(--text-secondary); margin-bottom: 1rem; font-size: 0.9rem; line-height: 1.5; }
.contact-info p { color: var(--text-primary); margin-bottom: 0.5rem; font-weight: 500; }
.footer-links-group { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-col h3 { font-size: 1.125rem; margin-bottom: 1.5rem; color: var(--text-primary); }
.footer-col a { display: block; color: var(--text-secondary); margin-bottom: 1rem; font-size: 0.9375rem; transition: all 0.3s ease; }
.footer-col a:hover { color: var(--accent-primary); transform: translateX(4px); }
.footer-bottom { text-align: center; padding-top: 1rem; border-top: 1px solid var(--glass-border); color: var(--text-muted); font-size: 0.875rem; }

/* SCHOLARSHIP SECTION */
.seep-scholarship {
  position: relative;
}
.scholarship-wrap {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
.total-benefit {
  background: var(--accent-gradient);
  color: #fff;
  text-align: center;
  padding: 2.5rem;
  border-radius: 24px;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(128, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.total-benefit::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.benefit-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
}
.total-benefit-text p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.total-benefit-text h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.total-benefit-text h3 .text-gradient {
  background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.benefit-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.b-card-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(128,0,0,0.1) 0%, rgba(128,0,0,0.02) 100%);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}
.benefit-card:hover .b-card-icon {
  background: var(--accent-gradient);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(128, 0, 0, 0.2);
}
.benefit-card h3 {
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.benefit-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  font-size: 0.95rem;
}
.benefit-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.benefit-list .label {
  color: var(--text-secondary);
  font-weight: 500;
}
.benefit-list .value {
  font-weight: 700;
  color: var(--text-primary);
}
.benefit-list .highlight {
  font-weight: 700;
  color: var(--success);
  background: rgba(5, 150, 105, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}
.benefit-list .free {
  font-weight: 800;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.income-box {
  padding: 0;
  margin-bottom: 3rem;
  overflow: hidden;
}
.income-header {
  background: var(--accent-gradient);
  padding: 1.5rem;
  text-align: center;
}
.income-header h3 {
  color: #fff;
  margin: 0;
  font-size: 1.25rem;
}
.table-responsive {
  overflow-x: auto;
  padding: 1rem 2rem 2rem;
}
.premium-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.5rem;
}
.premium-table th {
  text-align: left;
  padding: 1rem 1.5rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-bottom: 2px solid rgba(0,0,0,0.05);
}
.premium-table td {
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.5);
  color: var(--text-primary);
}
.premium-table tbody tr {
  transition: all 0.3s ease;
}
.premium-table tbody tr:hover td {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transform: scale(1.01);
}
.premium-table td:first-child {
  border-radius: 12px 0 0 12px;
  font-weight: 600;
}
.premium-table td:last-child {
  border-radius: 0 12px 12px 0;
}
.badge-success {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3);
}
.note-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 2rem;
  background: linear-gradient(to right, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.02));
  border-left: 4px solid #f59e0b;
}
.note-icon {
  color: #f59e0b;
  flex-shrink: 0;
}
.note-content p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.note-content strong {
  color: var(--text-primary);
}
@media (max-width: 768px) {
  .total-benefit { padding: 1.5rem; }
  .benefit-card { padding: 1.5rem; }
  .table-responsive { padding: 1rem; }
  .premium-table th, .premium-table td { padding: 1rem; }
  .note-box { flex-direction: column; gap: 1rem; }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}
@media(max-width: 600px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(138, 11, 31, 0.08);
}

.contact-card .icon {
  width: 50px;
  height: 50px;
  background: #fff1f2;
  color: #7a0012;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.contact-card:hover .icon { transform: scale(1.05); }

.contact-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
}

.contact-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
  font-weight: 600;
}

.whatsapp-box {
  background: #0f172a;
  color: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  max-width: 900px;
  margin: 0 auto;
}

.whatsapp-box h3 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
}

.whatsapp-box p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 500px;
}

.whatsapp-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.whatsapp-buttons a {
  background: #22c55e;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.whatsapp-buttons a:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

@media(max-width: 550px) {
  .whatsapp-box { padding: 2rem 1.5rem; }
  .whatsapp-buttons { flex-direction: column; }
  .whatsapp-buttons a { width: 100%; justify-content: center; }
}



/* --- SELECTION SECTION OVERHAUL --- */
.selection-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.process-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.process-card-new {
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.step-circle {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #8a0b1f 0%, #5a000a 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(138,11,31,0.2);
}

.process-card-new h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.process-card-new p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

.formula-box-premium {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.formula-icon {
  font-size: 3.5rem;
  color: var(--accent-secondary);
  opacity: 0.9;
}

.formula-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.formula-equation {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-secondary);
  margin-bottom: 0.5rem;
  background: rgba(255,255,255,0.05);
  padding: 12px 20px;
  border-radius: 12px;
  display: inline-block;
  line-height: 1.5;
}

.formula-content small {
  display: block;
  color: #9ca3af;
  font-size: 0.95rem;
}

@media(max-width: 1100px) {
  .process-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 768px) {
  .selection-highlight {
    grid-template-columns: 1fr;
  }
  .process-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .formula-box-premium {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

@media(max-width: 500px) {
  .process-grid-5 {
    grid-template-columns: 1fr;
  }
  .formula-equation {
    font-size: 1rem;
  }
}

/* Mobile Fixed Apply Button */
.mobile-fixed-btn {
  display: none !important;
}

@media (max-width: 768px) {
  .hero-btn {
    display: none !important;
  }
  .mobile-fixed-btn {
    display: flex !important;
    position: fixed !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 999999 !important;
    width: calc(100% - 40px) !important;
    max-width: 400px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }
}
