/* ================================================================
   body.css — Vivek Pal | FINAL FIXED
   ✅ Mobile blink BAND — animation-duration fix
   ✅ Education scroll smooth
   ✅ Backdrop blur off on mobile
   ✅ Ambient glow effect added (aurora blobs + cursor glow)
   ✅ Fluid cursor layer — ab poore page/viewport par (fixed, full-page)
   ================================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
body {
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  min-height: 100vh;
  line-height: 1.6;
}
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
}
.highlight {
  color: #00f2ff;
  text-shadow: 0 0 10px rgba(0,242,255,0.5);
}
.highlight-red {
  color: #ff2d55;
  text-shadow: 0 0 10px rgba(255,45,85,0.5);
}
::selection {
  background: rgba(0,242,255,0.3);
  color: #fff;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #00f2ff, #ff2d55);
  border-radius: 10px;
}

/* ================================================================
   AMBIENT GLOW EFFECT — aurora blobs + cursor-following glow
   ================================================================ */
.glow-blob-wrapper {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  will-change: transform;
}

.glow-blob.b1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #00f2ff, transparent 70%);
  top: 10%;
  left: -10%;
  animation: floatBlob1 22s ease-in-out infinite;
}

.glow-blob.b2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #a855f7, transparent 70%);
  bottom: -10%;
  right: -5%;
  animation: floatBlob2 26s ease-in-out infinite;
}

.glow-blob.b3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #ff2d55, transparent 70%);
  top: 50%;
  left: 40%;
  animation: floatBlob3 30s ease-in-out infinite;
}

@keyframes floatBlob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(120px, 80px) scale(1.15); }
}

@keyframes floatBlob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-100px, -60px) scale(1.1); }
}

@keyframes floatBlob3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, 100px) scale(0.9); }
}

#cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  will-change: transform;
  mix-blend-mode: screen;
}

/* ================================================================
   FLUID CURSOR LAYER — multi-color WebGL splash (fluid-cursor.js)
   ✅ Poore page/viewport par fixed — hero section tak limited nahi
   ✅ #bg-canvas aur .glow-blob-wrapper (dono z-index:-1) ke UPAR,
      #cursor-glow (z-index:0) ke SAATH same layer par baithta hai
   ✅ pointer-events:none — clicks/scroll niche content tak jaate hain
   ================================================================ */
.fluid-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.fluid-layer canvas {
  width: 100%;
  height: 100%;
  display: block;
}
body.fluid-cursor-unavailable .fluid-layer {
  display: none;
}

/* ================================================================
   MOBILE FIX
   ✅ animation-duration SAHI rakha — qualification dots blink nahi karenge
   ✅ sirf scan-line, liquid-overflow band kiya
   ✅ backdrop-filter off — scroll smooth
   ✅ glow effect off — mobile performance ke liye
   ✅ fluid-layer bhi mobile par off — performance ke liye
   ================================================================ */
@media (max-width: 1024px) {
  .liquid-glass,
  .info-card-box {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .scan-line,
  .liquid-overflow {
    animation: none !important;
  }
  .photoside-ring {
    animation-duration: 6s !important;
  }
  section,
  .hero-wrapper,
  .qual-container,
  .hero-container {
    -webkit-overflow-scrolling: touch;
  }
  .photo-box .ph {
    transform: translateZ(0);
    will-change: transform;
  }
  .stack-container .page-layer {
    animation: none !important;
    transform: none !important;
  }
  .dot {
    animation-duration: 4s !important;
  }
  .qual-item {
    transition: opacity 0.6s ease, transform 0.6s ease !important;
  }
  .content::after {
    animation: none !important;
  }
  .qual-title {
    animation-duration: 6s !important;
  }
  .qual-title::after {
    animation-duration: 4s !important;
  }
  .glow-blob-wrapper,
  #cursor-glow {
    display: none !important;
  }
  .fluid-layer {
    display: none !important;
  }
}



/* ============ CAPSULE-STYLE HERO — gradient heading + pill badges + glow CTA ============ */
.hero-capsule-style {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.hero-gradient-title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #ffffff 0%, #00f2ff 50%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.hero-gradient-accent {
  background: linear-gradient(90deg, #00f2ff, #ff2d55);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-gradient-sub {
  color: #aab4bd;
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 242, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #d8f5ff;
  transition: all 0.3s ease;
}
.hero-pill i { color: #00f2ff; font-size: 13px; }
.hero-pill:hover {
  border-color: #00f2ff;
  box-shadow: 0 0 16px rgba(0, 242, 255, 0.35);
  transform: translateY(-2px);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00f2ff, #a855f7);
  color: #05050a;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 22px rgba(0, 242, 255, 0.45);
  transition: all 0.3s ease;
}
.hero-btn-primary:hover {
  box-shadow: 0 0 32px rgba(0, 242, 255, 0.7);
  transform: translateY(-3px);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e6faff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.hero-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .hero-pill-row { gap: 10px; }
  .hero-pill { padding: 8px 16px; font-size: 13px; }
}