:root {
  /* --- जनरल ओशियन सेटिंग्स (इन्हें मत छेड़ना) --- */
  --hero-height: 60vh;
  --hero-width: 90%;
  --hero-top-space: 70px;
  --ocean-blue: #001a33; /* BADLO: #091e37 → #014087 (Real ocean blue) */
  --ocean-deep: #001021; /* BADLO: #051526 → #002a5c (Deeper blue) */
  --ocean-dark: #000814; /* BADLO: #020810 → #001a3d (Bottom blue) */
  --accent-cyan: #00d4ff;
  --accent-green: #39ff14;
  --font-main: "Inter", sans-serif;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-blur: 4px;
  --glow-strength: 0 0 20px rgba(0, 212, 255, 0.4);

  /* --- स्टोन बटन सेटिंग्स --- */
  --stone-img: url("stone-bg.png");
  --stone-glow: rgba(0, 212, 255, 0.6);
  --btn-width: 200px;
  --btn-height: 80px;

  /* --- ग्लोबल एनीमेशन सेटिंग्स (Fade in/out) --- */
  --gif-brightness: 1.5; /* मछली/केकड़े की चमक */
  --bubble-speed: 1.2s;
  --fade-in-stop: 10%; /* एनीमेशन के 10% हिस्से पर ही फुल दिखने लगेगा (Fast Fade-in) */
  --fade-out-start: 85%; /* एनीमेशन के 85% हिस्से के बाद गायब होना शुरू होगा (Slow Fade-out) */

  /* --- मछली (FISH) की अलग सेटिंग्स --- */
  --fish-box: 250px; /* मछली का बड़ा फ्रेम */
  --fish-speed: 1.5s; /* मछली की रफ़्तार */
  --fish-up: -250px; /* कितना ऊपर तैरेगी */

  /* --- केकड़ा (CRAB) की अलग सेटिंग्स --- */
  --crab-box: 180px; /* केकड़े का फ्रेम */
  --crab-speed: 2.5s; /* केकड़ा धीरे चलेगा */
  --crab-x: 150px; /* कितना दाएं जाएगा */
  --crab-y: -30px; /* हल्का सा ऊपर */
}

body,
html {
  margin: 0;
  padding: 0;
  background: linear-gradient(
    180deg,
    var(--ocean-blue) 0%,
    /* #014087 - Real ocean blue */ var(--ocean-deep) 40%,
    /* #002a5c - Deeper */ var(--ocean-dark) 100% /* #001a3d - Bottom */
  );
  color: white;
  font-family: var(--font-main);
  overflow-x: hidden;
  scroll-behavior: smooth;
  touch-action: pan-y;
}

/* --- BUBBLES --- */
#bubble-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.bubble {
  position: absolute;
  bottom: -20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: rise 12s infinite linear;
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}
@keyframes rise {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-110vh);
    opacity: 0;
  }
}

/* --- SHARK --- */
#shark-wrapper {
  position: absolute;
  width: 220px;
  display: none;
  z-index: 5;
  pointer-events: none;
  mix-blend-mode: screen;
}
#shark-video {
  width: 100%;
  filter: brightness(1.2);
}

/* --- HEADER --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(15px);
  box-sizing: border-box;
}
.logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: inherit;
  text-decoration: none;
}
.logo span {
  color: var(--accent-cyan);
}
nav a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}
.install-app-btn {
  background: linear-gradient(135deg, #00d4ff 0%, #39ff14 100%);
  color: #001a33;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 10px;
}
.install-app-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(57, 255, 20, 0.35);
  filter: brightness(1.05);
}
.install-app-btn:active {
  transform: translateY(0) scale(0.98);
}
.nav-btn {
  background: var(--accent-cyan);
  color: #001a33;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

/* --- HERO --- */
#hero {
  position: relative;
  height: var(--hero-height);
  width: var(--hero-width);
  border-radius: calc((100% - var(--hero-width)) * 0.5);
  margin: var(--hero-top-space) auto 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
  z-index: 3;
  background: transparent;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 4;
  pointer-events: none;
}

#hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: transparent;
  z-index: 8;
  pointer-events: none;
}

#hero-video {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
  /*mask-image:
    linear-gradient(to left, black 80%, transparent 100%),
    linear-gradient(to right, black 80%, transparent 100%), linear-gradient(
    to bottom,
    black 50%,
    transparent 100%
  );
  mask-composite: intersect;
  transition: opacity 1.5s ease; */
}
/*.video-blend-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 500px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(2, 8, 16, 0.2) 50%,
    rgba(2, 8, 16, 0.7) 100%
  );
  z-index: 2;
}*/

.hero-content {
  position: relative;
  z-index: 6;
  width: 100%;
  padding: 0 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-text-side {
  max-width: 600px;
  margin-left: -40px;
  animation: floatTag 6s ease-in-out infinite;
}

/* --- HEADLINE (UPDATED MARGINS & ALIGNMENT) --- */
h1 {
  font-size: 2.9rem;
  line-height: 1.2;
  margin-top: -30px; /* हेडलाइन को ऊपर करने के लिए नेगेटिव मार्जिन */
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -1px;
  background: linear-gradient(
    to right,
    #fff,
    var(--accent-cyan),
    var(--accent-green)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text-side p {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 50px; /* सब-टेक्स्ट के नीचे मार्जिन बढ़ाया ताकि बटन नीचे जाए */
}

.hero-status-msg {
  position: absolute;
  right: 5%; /* थोड़ा और राइट शिफ्ट किया (8% से कम करके 5%) */
  width: 45%;
  top: 40%; /* थोड़ा और ऊपर शिफ्ट किया (50% से कम करके 40%) */
  transform: translateY(-50%);
  text-align: center;
}

#special-msg {
  font-size: 2.8rem;
  color: var(--accent-cyan);
  opacity: 0;
  transition: opacity 1.2s ease;
  animation: floatParagraph 7s ease-in-out infinite;
  text-shadow: var(--glow-strength);
  font-weight: 800;
  padding-left: 100px; /* टेक्स्ट को थोड़ा और राइट धकेलने के लिए पैडिंग बढ़ाई */
}

/*.glow-cta-btn {
  background: transparent;
  color: var(--accent-cyan);
  border: 2px solid var(--accent-cyan);
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
}

.glow-cta-btn:hover {
  background: var(--accent-cyan);
  color: #001a33;
  box-shadow: 0 0 30px var(--accent-cyan);
}*/

/* --- TRUST & ADS --- */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 20;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.stat-item span {
  color: var(--accent-cyan);
  font-weight: 800;
}
.ad-container-top {
  width: 100%;
  max-width: 970px;
  height: 90px;
  margin: 40px auto;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  z-index: 20;
  position: relative;
}
.ad-container-top p {
  font-size: 0.7rem;
  letter-spacing: 2px;
  opacity: 0.4;
  margin: 0;
}

/* --- OCEAN BODY & CARDS --- */
.ocean-body {
  position: relative;
  padding: 80px 8%;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
}
.section-title span {
  color: var(--accent-cyan);
}

.step-row {
  display: flex;
  align-items: center;
  gap: 60px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(var(--card-blur));
  padding: 40px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.4s ease-in-out;
  margin-bottom: 50px;
  position: relative;
  z-index: 10;
}
.step-row:hover {
  transform: translateY(-10px) scale(1.01);
  background: rgba(0, 212, 255, 0.05);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
}
.step-row.reverse {
  flex-direction: row-reverse;
}
.step-badge {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-cyan);
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 15px;
}
.media-placeholder {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--glow-strength);
}
.media-placeholder img {
  width: 100%;
  display: block;
}

/* --- VIDIQ GRAPH SECTION (CENTERED & GLASSY) --- */
.premium-graph-container {
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 20;
  perspective: 2200px;
}

.graph-inner-box {
  max-width: 820px;
  width: 100%;
  background: rgba(0, 0, 0, 0.7); /* ओशियन से गहरा और पारदर्शी */
  backdrop-filter: blur(6px); /* शार्क और बुलबुले पीछे से दिखेंगे */
  -webkit-backdrop-filter: blur(6px);
  padding: 50px 35px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.18s ease-out,
    opacity 1.15s ease,
    filter 1.15s ease;
}

.graph-inner-box.graph-scroll-entrance {
  opacity: 0;
  filter: blur(0px);
  transform: translateY(-60vh) translateZ(-620px) rotateX(-8deg) scale(0.72);
  transition:
    transform 2.8s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 2s ease,
    filter 2s ease;
}

.graph-inner-box.graph-scroll-entrance.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) translateZ(0) rotateX(0deg) scale(1);
}

/* Mouse Tracking Ocean Glow */
.graph-inner-box {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.graph-inner-box::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 170, 255, 0.22) 0%,
    rgba(0, 110, 255, 0.1) 18%,
    transparent 68%
  );

  opacity: 0;
  transition: opacity 0.3s ease;

  pointer-events: none;
  z-index: 0;
}

.graph-inner-box:hover::before {
  opacity: 1;
}

.graph-text-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: floatTag 6.5s ease-in-out infinite;
}

.graph-text-content h2 span {
  color: var(--accent-cyan);
}

.graph-text-content p {
  opacity: 0.7;
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.6;
  animation: floatParagraph 8s ease-in-out infinite;
}

/* Center Badge above bars */
.graph-center-badge {
  display: inline-block;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 10px 25px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.graph-center-badge span {
  color: var(--accent-cyan);
}

/* Data Bars (Zig-Zag Bars) */
.real-graph-visual {
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bar {
  width: 35px;
  background: rgba(0, 212, 255, 0.12);
  border-radius: 4px 4px 0 0;
  transition: 0.5s ease;
}

.bar.highlight {
  background: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* --- GRAPH PEAK BAR (DARKER INDICATOR) --- */
.bar.peak {
  background: #0077b6; /* गहरा नीला-सयान कलर जो ओशियन थीम पर जमेगा */
  box-shadow: 0 0 25px rgba(0, 154, 237, 0.699); /* गहरा ग्लो इंडिकेशन के लिए */
  border: 1px solid var(--accent-cyan); /* हल्का सा बॉर्डर ताकि वह अलग से चमके */
}

/* Fix for CSS Yellow Warning in h1 */
h1 {
  background-clip: text !important; /* Standard property for compatibility */
}

/* --- UPDATED AI FEATURES OVERLAY STYLE --- */
.no-manual-editing-section {
  padding: 100px 8%;
  background: transparent;
  position: relative;
  z-index: 20;
}

.split-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.split-text-col {
  flex: 1;
  animation: floatTag 6.5s ease-in-out infinite;
}

.split-text-col h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.split-text-col h2 span {
  color: var(--accent-cyan);
}
.split-text-col p {
  opacity: 0.7;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* The container that floats everything together */
.ai-features-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  animation: floatImage 4s ease-in-out infinite;
}

.base-ai-img {
  width: 100%;
  max-width: 500px; /* Adjust size as needed */
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Overlay for text tags */
.features-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Modern Glassy Tag Style */
.feature-tag {
  position: absolute;
  background: rgba(0, 11, 25, 0.85);
  border: 1.5px solid rgba(0, 212, 255, 0.4);
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(0, 212, 255, 0.2);
  white-space: nowrap;
  backdrop-filter: blur(5px);
}

/* --- तीर वाली लाइन (Dotted Line) --- */
.feature-tag::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  height: 2px;
  background-image: linear-gradient(
    to right,
    var(--accent-cyan) 50%,
    transparent 50%
  );
  background-size: 8px 100%;
  background-repeat: repeat-x;
  transform: translateY(-50%);
  transition: width 0.3s ease; /* स्मूथ एडजस्टमेंट के लिए */
}

/* --- तीर का मुँह (Arrow Head) --- */
.feature-tag::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--accent-cyan);
}

/* --- हर तीर की लंबाई अलग से सेट करें (इमेज के झुकाव के हिसाब से) --- */

/* TOP Tag: लाइन थोड़ी छोटी ताकि इमेज के ऊपर न चढ़े */
.tag-top::after {
  width: 35px;
}
.tag-top::before {
  left: calc(100% + 35px);
}

/* MIDDLE Tag: यह ठीक है, इसे थोड़ा लंबा रख सकते हैं */
.tag-middle::after {
  width: 55px;
}
.tag-middle::before {
  left: calc(100% + 55px);
}

/* BOTTOM Tag: इसे भी छोटा रखना होगा क्योंकि यहाँ मोबाइल का कोना पास है */
.tag-bottom::after {
  width: 20px;
}
.tag-bottom::before {
  left: calc(100% + 20px);
}

.feature-tag i {
  color: var(--accent-cyan);
  font-size: 1.1rem;
}

/* Position adjustment for each tag */
.tag-top {
  top: 15%;
  left: 0%;
}
.tag-middle {
  top: 45%;
  left: -10%;
}
.tag-bottom {
  top: 75%;
  left: 0%;
}

/* Floating Animation */
@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

/* --- WHISPER SPECIAL SECTION STYLE --- */
.whisper-ai-special-section {
  padding: 80px 5%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 30;
}

.whisper-container-box {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

/* Text on Top */
.whisper-text-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  animation: floatTag 6s ease-in-out infinite;
}
.whisper-text-content h2 span {
  color: #39ff14; /* ग्रीन रंग "Make them pop" के लिए */
}
.whisper-text-content p {
  opacity: 0.7;
  max-width: 700px;
  margin: 0 auto 50px;
  animation: floatParagraph 8s ease-in-out infinite;
}

/* The Central Animation Area */
.whisper-central-visual {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 500px; /* Adjust based on your PNG size */
  animation: floatImage 4s ease-in-out infinite;
}

/* (A) Base Image - Only the Girl, locked in position */
.whisper-central-visual .base-image {
  width: 65%;
  height: auto;
  margin: 0 auto;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* (B) Typed Captions - Over the Girl's chest area */
.typed-captions-overlay {
  position: absolute;
  top: 65%; /* इमेज के बीच में लेफ्ट साइड */
  left: -30%; /* इमेज के बाहर लेफ्ट में */
  background: rgba(0, 11, 20, 0.9);
  padding: 10px 18px;
  border-radius: 8px;
  border: 1.5px solid #39ff14; /* Whisper AI वाला ग्रीन बॉर्डर */

  width: max-content;
  max-width: 220px;
  white-space: normal;
  text-align: center;

  color: white;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);

  /* तैरने वाला एनीमेशन */
  animation: floatTag 3s ease-in-out infinite;
}

/* --- स्टाइलिश तीर (Dotted Line + Arrow) --- */
.typed-captions-overlay::after {
  content: "";
  position: absolute;
  left: 100%; /* बॉक्स के राइट साइड से शुरू होगा */
  top: 50%;
  width: 60px; /* लाइन की लंबाई */
  height: 2px;
  background-image: linear-gradient(to right, #39ff14 50%, transparent 50%);
  background-size: 8px 100%;
  background-repeat: repeat-x;
  transform: translateY(-50%);
}

.typed-captions-overlay::before {
  content: "";
  position: absolute;
  left: calc(100% + 60px); /* लाइन के अंत में */
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #39ff14; /* ग्रीन तीर */
}

/* (C) Floating Style Class - vidIQ like tag on the Right */
.style-class-overlay {
  position: absolute;
  top: 30%; /* इमेज की मिडिल-टॉप पर */
  right: -25%; /* इमेज के बाहर निकलता हुआ */
  background: rgba(0, 11, 20, 0.9);
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1.5px solid #39ff14; /* ग्रीन बॉर्डर */
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);

  /* यह ऊपर-नीचे तैरता रहेगा */
  animation: floatTag 3s ease-in-out infinite;
}

.style-class-overlay i {
  color: #39ff14;
}

/* Typing Animation Logic */
@keyframes typingEffect {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes floatTag {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px) rotate(0.35deg);
  }
}

@keyframes floatParagraph {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ===== WORKFLOW SECTION REDESIGN ===== */
#how-it-works {
  padding: 10px 20px 100px;
  position: relative;
  overflow: hidden;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 60px auto 0;
  position: relative;
  z-index: 2;
}

/* ---- Base card ---- */
.workflow-card {
  position: relative;
  background: rgba(0, 8, 18, 0.72);
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 24px;
  padding: 36px 32px 30px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: visible;
  cursor: default;
  transition:
    transform 0.08s linear,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  isolation: isolate;
  transform-style: flat;
  will-change: transform;
}

.workflow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 212, 255, 0.13) 0%,
    transparent 62%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
  animation: workflowCardLight 6s ease-in-out infinite;
}

@keyframes workflowCardLight {
  0%,
  100% {
    transform: translateY(-7px);
  }
  50% {
    transform: translateY(7px);
  }
}

.workflow-card:hover::before {
  opacity: 1;
}

.workflow-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(0, 212, 255, 0.42);
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.42),
    0 0 44px rgba(0, 212, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.workflow-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.65),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.workflow-card:hover::after {
  opacity: 1;
}

.card-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  border-radius: 24px;
}

.card-bubbles span {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.workflow-card:hover .card-bubbles span {
  opacity: 1;
  transform: scale(1);
}

.card-bubbles span:nth-child(1) {
  width: 130px;
  height: 130px;
  bottom: -30px;
  right: -30px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.22), transparent 70%);
  transition-delay: 0s;
}
.card-bubbles span:nth-child(2) {
  width: 72px;
  height: 72px;
  top: 8px;
  right: 16px;
  background: radial-gradient(circle, rgba(0, 255, 180, 0.16), transparent 70%);
  transition-delay: 0.07s;
}
.card-bubbles span:nth-child(3) {
  width: 48px;
  height: 48px;
  bottom: 36px;
  left: 12px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.18), transparent 70%);
  transition-delay: 0.14s;
}

@keyframes workflowMobileBubbleFloat {
  0%,
  100% {
    transform: translateY(8px) scale(0.82);
    opacity: 0.35;
  }
  50% {
    transform: translateY(-12px) scale(1);
    opacity: 0.85;
  }
}

@keyframes floatWorkflowCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.workflow-step-num {
  position: absolute;
  top: 26px;
  right: 28px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: rgba(0, 212, 255, 0.45);
  text-transform: uppercase;
  z-index: 2;
  transition: color 0.3s ease;
}
.workflow-card:hover .workflow-step-num {
  color: rgba(0, 212, 255, 0.9);
}

.workflow-icon-wrap {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  background: linear-gradient(
    145deg,
    rgba(0, 180, 255, 0.22),
    rgba(0, 30, 70, 0.92)
  );
  border: 1px solid rgba(0, 212, 255, 0.28);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 30px rgba(0, 212, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -8px 18px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.35s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
  transform: translateY(0px);
}

.workflow-icon-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16),
    transparent 40%
  );
  opacity: 0.9;
}

.workflow-icon-wrap i {
  font-size: 28px;
  color: #18dcff;
  filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.55));
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.workflow-card:hover .workflow-icon-wrap {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow:
    0 0 45px rgba(0, 212, 255, 0.24),
    0 14px 35px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -8px 18px rgba(0, 0, 0, 0.28);
}

.workflow-card:hover .workflow-icon-wrap i {
  transform: scale(1.15);
  filter: drop-shadow(0 0 22px rgba(0, 212, 255, 0.9));
}

.workflow-card-title {
  position: relative;
  z-index: 2;
  font-size: 19px;
  font-weight: 800;
  color: #dceeff;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
  transition:
    color 0.3s ease,
    transform 0.35s ease;
  transform: none;
}
.workflow-card:hover .workflow-card-title {
  color: #fff;
  transform: translateY(-2px);
}

.workflow-card-desc {
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 1.68;
  color: rgba(170, 205, 235, 0.72);
  margin: 0 0 18px;
  transition:
    color 0.3s ease,
    transform 0.35s ease;
  transform: none;
}
.workflow-card:hover .workflow-card-desc {
  color: rgba(170, 205, 235, 0.96);
  transform: translateY(-1px);
}

.workflow-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.workflow-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 5px 11px;
  border-radius: 100px;
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.17);
  color: rgba(0, 212, 255, 0.75);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}
.workflow-card:hover .workflow-tag {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.4);
  color: #00d4ff;
}
.workflow-card:hover .workflow-tag:nth-child(1) {
  transform: translateY(-2px);
  transition-delay: 0.03s;
}
.workflow-card:hover .workflow-tag:nth-child(2) {
  transform: translateY(-2px);
  transition-delay: 0.07s;
}
.workflow-card:hover .workflow-tag:nth-child(3) {
  transform: translateY(-2px);
  transition-delay: 0.11s;
}

.workflow-connector {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 2px 0;
}

.connector-line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.28),
    transparent
  );
}

.connector-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.55);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.55);
  animation: wfDotPulse 2.2s ease-in-out infinite;
}

@keyframes wfDotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

.workflow-card.wide-card {
  grid-column: 1 / -1;
}

.wide-card-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.workflow-stats-row {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 36px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.wide-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.wide-stat-val {
  font-size: 27px;
  font-weight: 900;
  color: #00d4ff;
  letter-spacing: -1px;
  transition: transform 0.3s ease;
}
.workflow-card:hover .wide-stat-val {
  transform: scale(1.06);
}

.wide-stat-label {
  font-size: 11.5px;
  color: rgba(170, 205, 235, 0.58);
  font-weight: 500;
  letter-spacing: 0.4px;
}

.wide-card-icon-cluster {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}

.cluster-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition:
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.3s ease;
}
.cluster-icon:nth-child(1) {
  background: rgba(0, 212, 255, 0.09);
  color: #00d4ff;
}
.cluster-icon:nth-child(2) {
  background: rgba(0, 255, 180, 0.09);
  color: #00ffb4;
  border-color: rgba(0, 255, 180, 0.2);
}
.cluster-icon:nth-child(3) {
  background: rgba(255, 176, 0, 0.09);
  color: #ffb400;
  border-color: rgba(255, 176, 0, 0.2);
}

.workflow-card:hover .cluster-icon:nth-child(1) {
  transform: translateY(-6px) rotate(-7deg);
  transition-delay: 0s;
}
.workflow-card:hover .cluster-icon:nth-child(2) {
  transform: translateY(-6px) rotate(5deg);
  transition-delay: 0.06s;
}
.workflow-card:hover .cluster-icon:nth-child(3) {
  transform: translateY(-6px) rotate(-4deg);
  transition-delay: 0.12s;
}

.workflow-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.workflow-cta-text {
  font-size: 15px;
  color: rgba(170, 205, 235, 0.6);
  font-weight: 500;
}

.highlight-text {
  background: linear-gradient(90deg, #00d4ff, #7eeeff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.18);
  font-weight: 900;
}

.pressure-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(5px);
  z-index: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.95),
    rgba(0, 212, 255, 0.35)
  );
  box-shadow: 0 0 14px rgba(0, 212, 255, 0.35);
  opacity: 0;
  animation: waterBubbleFloat 1.8s ease-out forwards;
}

@keyframes waterBubbleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.4);
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-140px) translateX(var(--drift)) scale(1.5);
  }
}

@media (max-width: 768px) {
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .workflow-card.wide-card {
    grid-column: 1;
  }
  .wide-card-layout {
    grid-template-columns: 1fr;
  }
  .wide-card-icon-cluster {
    display: none;
  }
  .workflow-stats-row {
    gap: 22px;
  }
  .wide-stat-val {
    font-size: 22px;
  }
}

/* --- UPDATED REVIEWS SLIDER (Draggable & Infinite) --- */
#reviews-section {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.reviews-viewport {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  cursor: grab;
  user-select: none;
}

.reviews-viewport:active {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.review-card {
  min-width: 300px;
  max-width: 300px;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 20;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  padding: 25px;
  margin: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card.highlight {
  border-color: var(--accent-green);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.1);
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 20px;
  font-style: italic;
}

.user-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.user-meta h4 {
  margin: 0;
  font-size: 1rem;
}
.user-meta span {
  font-size: 0.75rem;
  opacity: 0.5;
  display: block;
}

.initial-box,
.user-meta img,
.avatar-fallback {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-330px * 50));
  }
}

/* ===== FAQ LINK ITEMS ===== */
.faq-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  z-index: 20;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  overflow: hidden;

  padding: 22px 26px;
  background: linear-gradient(
    135deg,
    rgba(0, 26, 51, 0.88),
    rgba(0, 45, 90, 0.55)
  );
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 16px;
  text-decoration: none;
  color: #dceeff;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.35s ease;
  cursor: pointer;
}

.faq-link-item:hover {
  border-color: rgba(0, 212, 255, 0.45);
  background: linear-gradient(
    135deg,
    rgba(0, 26, 51, 0.96),
    rgba(0, 45, 90, 0.72)
  );
  transform: translateY(-3px);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(0, 212, 255, 0.08);
}

.faq-link-item i {
  color: rgba(0, 212, 255, 0.55);
  font-size: 14px;
  transition: all 0.3s ease;
}

.faq-link-item:hover i {
  color: #00d4ff;
  transform: translateX(5px);
}

.faq-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  color: rgba(0, 212, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-view-all:hover {
  color: #00d4ff;
}

.faq-view-all i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.faq-view-all:hover i {
  transform: translateX(4px);
}

/* --- MODERN PROFESSIONAL FOOTER --- */
.footer-section {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 8% 20px;
  position: relative;
  z-index: 30; /* शार्क के ऊपर रखने के लिए */
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 50px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: var(--accent-cyan);
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-col p {
  opacity: 0.6;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.6;
  transition: 0.3s;
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--accent-cyan);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: var(--accent-cyan);
  color: #001a33;
  transform: translateY(-5px);
  box-shadow: 0 0 15px var(--accent-cyan);
}

.newsletter .glow-cta-btn {
  width: 100%;
  padding: 12px;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  opacity: 0.4;
  font-size: 0.85rem;
}

/* Responsiveness for Footer */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-section {
    padding: 50px 5% 20px;
  }
}

/* --- THE PIXEL-PERFECT STONE BUTTON --- */
.glow-cta-btn {
  position: relative !important;

  /* 1. पुराना बैकग्राउंड और बॉर्डर पूरी तरह खत्म */
  background-color: transparent !important;
  border: none !important;
  outline: none !important;

  /* 2. बटन का साइज (वेरिएबल्स से सेट) */
  width: var(--btn-width) !important;
  height: var(--btn-height) !important;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  color: #fff !important;
  font-weight: 900 !important;
  font-size: 1.1rem !important;
  cursor: pointer;
  overflow: visible !important;
  z-index: 10;
  transform-style: preserve-3d;
  transition: all 0.2s ease;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);

  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.65))
    drop-shadow(0 0 18px rgba(0, 212, 255, 0.18));
}

/* बटन के अंदर पत्थर की इमेज (Pseudo-element ::after) */
.glow-cta-btn::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;

  /* 3. स्टोन इमेज को पूरा 'Fill' करना */
  background: var(--stone-img) no-repeat center !important;
  background-size: 100% 100% !important; /* पत्थर को डब्बे के हिसाब से फिट करेगा */
  z-index: 2;
  transition: all 0.2s ease;
}

.glow-cta-btn span {
  position: relative;
  z-index: 3 !important;
}

/* Hover: जब कर्सर जाए तो सिर्फ पत्थर चमकेगा */
.glow-cta-btn:hover::after {
  filter: drop-shadow(0 0 22px var(--stone-glow)) brightness(1.12);
}

/* Hover/Active: बटन का हल्का दबना (Double Press) */
.glow-cta-btn:hover {
  transform: translateY(-4px) scale(1.03) !important;
  /* हल्का सा दबना */
}
.glow-cta-btn:active {
  transform: scale(0.96) !important; /* क्लिक पर ज्यादा दबना */
}

/* --- BUBBLES --- */
.btn-bubble,
.cursor-bubble {
  position: absolute; /* इसे fixed से बदलकर absolute कर दिया */
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

/* कर्सर बुलबुले - इन्हें 'Adrishya' करो ताकि बटन दबे नहीं */
.cursor-bubble {
  position: absolute !important;
  pointer-events: none !important; /* सबसे जरूरी: ताकि ये बटन को न ढकें */
  z-index: 50 !important;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: cursorFade 1s ease-out forwards;
}

/* बटन के बुलबुले - इन्हें पत्थर के पीछे ही रखो */
.btn-bubble {
  position: absolute !important;
  z-index: 1 !important;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  animation: btnBubbleRise 1.2s ease-out forwards;
}

@keyframes btnBubbleRise {
  0% {
    transform: translateY(0) scale(0.4);
    opacity: 1;
  }
  100% {
    transform: translateY(-150px) scale(1.2);
    opacity: 0;
  }
}

@keyframes cursorFade {
  0% {
    transform: scale(0.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5) translateY(-50px);
    opacity: 0;
  }
}

/* ===== HERO CTA ===== */

.hero-cta {
  width: 220px !important;
  height: 88px !important;
}

/* Hero glow pulse */
.hero-cta::before {
  content: "";
  position: absolute;
  inset: -4px;

  border-radius: 999px;

  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.22) 0%,
    rgba(0, 212, 255, 0.08) 50%,
    transparent 72%
  );

  filter: blur(10px);

  z-index: 1;

  opacity: 0.18;

  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
}

.hero-cta:hover::before {
  opacity: 1;
  filter: blur(16px);
}

/* Base Style (Common for both) */

.sea-creature {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%);
  pointer-events: none;

  /* यहाँ ध्यान दो: z-index को बढ़ा दिया ताकि पत्थर के ऊपर दिखे, 
       अगर पीछे चाहिए तो इसे 1 रखो और बटन को 2 */
  z-index: 1;

  opacity: 0;
  mix-blend-mode: screen;
  filter: brightness(var(--gif-brightness));

  /* ये दो लाइनें सबसे जरूरी हैं जो गायब थीं */
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;

  overflow: visible !important;
  will-change: transform, opacity;
}

/* FISH SPECIFIC */
.sea-creature.is-fish {
  display: block !important;
  width: var(--fish-box) !important;
  height: var(--fish-box) !important;
  /* Animation JS से हैंडल हो रही है पर यहाँ बैकअप के लिए है */
}

/* CRAB SPECIFIC */
.sea-creature.is-crab {
  display: block !important;
  width: var(--crab-box) !important;
  height: var(--crab-box) !important;
}

/* Animations (इनमें कोई दिक्कत नहीं थी, बस इनको रहने दो) */
@keyframes fishRun {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, var(--fish-up)) scale(1.1);
    opacity: 0;
  }
}

@keyframes crabRun {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--crab-x), var(--crab-y)) scale(1);
    opacity: 0;
  }
}

/* --- OCEAN BUBBLE BUST TRANSITION (BUST EFFECT) --- */

/* --- BUBBLE APPEARANCE LOGIC --- */
#bubble-whirlpool-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999; /* Sabse upar */
  pointer-events: none;
  overflow: hidden;
}

.whirlpool-bubble {
  position: absolute;
  bottom: -50px; /* Screen ke niche se start */
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.9),
    rgba(0, 212, 255, 0.5)
  );
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  animation: bubbleUp 1.5s ease-in forwards;
}

@keyframes bubbleUp {
  0% {
    transform: translateY(0) scale(0.5);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh) scale(1.5);
    opacity: 1;
  }
}

/* --- MOBILE OPTIMIZATION LAYER (landing + shared components) --- */
header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
}

@media (max-width: 1024px) {
  .hero-content {
    padding: 0 5%;
    gap: 20px;
  }

  .hero-text-side {
    margin-left: 0;
  }

  h1 {
    font-size: 2.35rem;
    margin-top: 0;
  }

  #special-msg {
    font-size: 2.2rem;
    padding-left: 0;
  }
}

@media (max-width: 860px), (hover: none) and (pointer: coarse) {
  html,
  body {
    scroll-behavior: auto;
    overflow-x: clip;
    overscroll-behavior-x: none;
  }

  header nav {
    flex-wrap: nowrap;
    gap: 6px;
  }

  header nav a {
    display: none;
  }

  header {
    padding: 10px 14px;
    left: 0;
    right: 0;
    max-width: 100vw;
    overflow: hidden;
  }

  .logo {
    font-size: 1.15rem;
    flex: 1 1 auto;
    min-width: 0;
  }

  .install-app-btn,
  .nav-btn {
    font-size: 0.78rem;
    padding: 8px 12px;
    margin-right: 0;
    border-radius: 999px;
    white-space: nowrap;
    touch-action: manipulation;
  }

  .nav-btn {
    display: none;
  }

  #hero {
    width: 100%;
    min-height: 540px;
    height: auto;
    align-items: flex-start;
    padding-top: 82px;
  }

  #hero-video {
    width: 100%;
    mask-image: none;
    opacity: 1;
  }

  .hero-content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-text-side,
  .hero-status-msg {
    width: 100%;
    max-width: 100%;
  }

  .hero-status-msg {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    text-align: left;
  }

  .hero-text-side p {
    margin-bottom: 30px;
  }

  .trust-bar {
    flex-wrap: wrap;
    gap: 18px;
    padding: 20px 14px;
  }

  .ocean-body {
    padding: 60px 5%;
  }

  .step-row,
  .step-row.reverse,
  .split-container {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  #shark-wrapper {
    width: 140px;
    opacity: 0.9;
    position: fixed;
    left: -300px;
    top: -300px;
  }

  .ai-features-wrapper {
    width: 100%;
    justify-content: center;
    animation: floatImage 4.8s ease-in-out infinite;
    max-width: 360px;
    margin: 0 auto;
    overflow: visible;
    padding-left: 0;
  }

  .base-ai-img {
    width: 100%;
    max-width: 260px;
    margin: 0 0 0 auto;
    display: block;
  }

  .features-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    overflow: visible;
  }

  .feature-tag {
    width: auto;
    max-width: none;
    font-size: 0.67rem;
    padding: 7px 10px;
    white-space: nowrap;
    line-height: 1;
    margin: 0;
  }

  .feature-tag::after,
  .feature-tag::before {
    display: none;
  }

  .tag-top {
    top: 12%;
    left: -18%;
  }
  .tag-middle {
    top: 45%;
    left: -20%;
  }
  .tag-bottom {
    top: 77%;
    left: -18%;
  }

  .graph-inner-box {
    padding: 36px 20px;
    border-radius: 22px;
  }

  .graph-text-content h2 {
    font-size: 1.8rem;
  }

  .bar {
    width: 24px;
  }
}

/* Tool page ke mobile header buttons ko hide na karo */
body.tool-page .nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .no-manual-editing-section {
    padding-bottom: 28px;
  }

  .whisper-ai-special-section {
    padding-top: 28px;
  }

  h1 {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .hero-text-side p,
  .graph-text-content p,
  .split-text-col p {
    font-size: 0.95rem;
  }

  .section-title,
  .split-text-col h2 {
    font-size: 1.55rem;
  }

  .reviews-viewport {
    padding: 20px 0;
  }

  .review-card {
    min-width: 260px;
    max-width: 260px;
  }

  .reviews-viewport {
    overflow-x: hidden;
    -webkit-overflow-scrolling: auto;
  }

  .reviews-track {
    animation: scrollInfinite 120s linear infinite;
    gap: 10px;
    padding: 0 10px;
    touch-action: pan-y;
  }

  .reviews-viewport::-webkit-scrollbar {
    display: none;
  }

  .real-graph-visual {
    gap: 8px;
    height: 160px;
  }

  .bar {
    width: 18px;
  }

  .whisper-central-visual {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .whisper-central-visual .base-image {
    width: 65%;
    margin: 0 auto;
  }

  .typed-captions-overlay {
    left: 0;
    max-width: 150px;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .style-class-overlay {
    top: -8%;
    right: 0;
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .workflow-card:hover {
    border-color: rgba(0, 212, 255, 0.14);
    box-shadow: none;
  }

  .workflow-card:hover .workflow-step-num,
  .workflow-card:hover .workflow-card-title,
  .workflow-card:hover .workflow-card-desc {
    color: inherit;
    transform: none;
  }

  .workflow-card:hover .workflow-icon-wrap {
    transform: none;
  }

  .workflow-card:hover .workflow-icon-wrap i {
    transform: none;
    filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.55));
  }

  .workflow-card:hover .workflow-tag {
    background: rgba(0, 212, 255, 0.07);
    border-color: rgba(0, 212, 255, 0.17);
    color: rgba(0, 212, 255, 0.75);
    transform: none;
  }

  .workflow-card:hover .card-bubbles span {
    opacity: 0.55;
  }

  .workflow-card {
    animation: floatWorkflowCard 6s ease-in-out infinite;
  }

  .workflow-card:nth-child(3n) {
    animation-delay: -2s;
  }

  .workflow-card:nth-child(3n + 1) {
    animation-delay: -4s;
  }

  .workflow-card::before {
    --mx: 50%;
    --my: 50%;
    opacity: 1;
  }

  .workflow-card::after {
    opacity: 0;
  }

  .card-bubbles span {
    opacity: 0.55;
    transform: scale(0.85);
    animation: workflowMobileBubbleFloat 4s ease-in-out infinite;
  }

  .card-bubbles span:nth-child(2) {
    animation-delay: -1.2s;
  }

  .card-bubbles span:nth-child(3) {
    animation-delay: -2.4s;
  }
}

/* ===== CINEMATIC OCEAN DEPTH ===== */

.ocean-depth-layer,
.ocean-light-rays,
.ocean-particles-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Deep Fog */
.ocean-depth-layer {
  z-index: 2;

  background: radial-gradient(
    circle at center,
    transparent 20%,
    rgba(0, 0, 20, 0.25) 60%,
    rgba(0, 0, 0, 0.65) 100%
  );

  mix-blend-mode: screen;
}

/* Light Rays */
.ocean-light-rays {
  z-index: 3;

  opacity: 0.22;

  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(0, 212, 255, 0.12) 35%,
    transparent 55%
  );

  filter: blur(30px);

  animation: oceanRays 8s ease-in-out infinite alternate;
}

@keyframes oceanRays {
  from {
    transform: translateX(-5%) translateY(-2%) scale(1);
  }

  to {
    transform: translateX(5%) translateY(2%) scale(1.08);
  }
}

/* Floating Ocean Particles */
.ocean-particles-layer {
  z-index: 4;

  background-image: radial-gradient(
    rgba(255, 255, 255, 0.16) 1px,
    transparent 1px
  );

  background-size: 120px 120px;

  opacity: 0.22;

  animation: particlesMove 18s linear infinite;
}

@keyframes particlesMove {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-120px);
  }
}

/* ===== ALIVE AI DASHBOARD ===== */

/* Animated breathing bars */
.bar {
  animation: graphBreath 3.2s ease-in-out infinite;
}

.bar:nth-child(2) {
  animation-delay: 0.3s;
}

.bar:nth-child(3) {
  animation-delay: 0.6s;
}

.bar:nth-child(4) {
  animation-delay: 0.2s;
}

.bar:nth-child(5) {
  animation-delay: 0.8s;
}

.bar:nth-child(6) {
  animation-delay: 0.4s;
}

.bar:nth-child(7) {
  animation-delay: 0.7s;
}

.bar:nth-child(8) {
  animation-delay: 0.5s;
}

@keyframes graphBreath {
  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(1.08);
  }
}

/* AI dashboard pulse */
.graph-inner-box {
  position: relative;

  overflow: hidden;

  animation: dashboardPulse 4s ease-in-out infinite;
}

@keyframes dashboardPulse {
  0%,
  100% {
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.06);
  }

  50% {
    box-shadow: 0 0 55px rgba(0, 212, 255, 0.14);
  }
}

/* Scanning sweep */
.graph-inner-box::after {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 40%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );

  transform: skewX(-18deg);

  animation: graphScan 5s linear infinite;

  pointer-events: none;
}

@keyframes graphScan {
  from {
    left: -120%;
  }

  to {
    left: 140%;
  }
}

/* Floating AI particles */
.real-graph-visual::before {
  content: "";

  position: absolute;

  inset: 0;

  background-image: radial-gradient(
    rgba(0, 212, 255, 0.35) 1px,
    transparent 1px
  );

  background-size: 80px 80px;

  opacity: 0.22;

  animation: graphParticles 16s linear infinite;

  pointer-events: none;
}

@keyframes graphParticles {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-80px);
  }
}

/* Floating live dots */
.graph-live-dots {
  position: absolute;

  inset: 0;

  pointer-events: none;
}

.graph-live-dots span {
  position: absolute;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #00d4ff;

  box-shadow: 0 0 12px rgba(0, 212, 255, 0.7);

  animation: liveDotFloat 4s linear infinite;
}

.graph-live-dots span:nth-child(1) {
  left: 12%;
  bottom: 20%;
  animation-delay: 0s;
}

.graph-live-dots span:nth-child(2) {
  left: 35%;
  bottom: 38%;
  animation-delay: 1s;
}

.graph-live-dots span:nth-child(3) {
  left: 58%;
  bottom: 28%;
  animation-delay: 2s;
}

.graph-live-dots span:nth-child(4) {
  left: 78%;
  bottom: 52%;
  animation-delay: 1.5s;
}

@keyframes liveDotFloat {
  0% {
    opacity: 0;

    transform: translateY(10px) scale(0.6);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;

    transform: translateY(-35px) scale(1.4);
  }
}

/* Reactive stats badge */
.graph-center-badge {
  animation: badgePulse 2.8s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* ===== OCEAN FRAME SEQUENCE ===== */

.ocean-world-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

#ocean-sequence {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.92;
}

.ocean-grade,
.ocean-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ocean-grade {
  background:
    linear-gradient(
      90deg,
      rgba(0, 6, 18, 0.76),
      rgba(0, 25, 52, 0.12) 48%,
      rgba(0, 5, 12, 0.72)
    ),
    linear-gradient(180deg, rgba(0, 26, 51, 0.12), rgba(0, 4, 12, 0.55));
}

.ocean-vignette {
  background: radial-gradient(
    circle at 50% 28%,
    transparent 18%,
    rgba(0, 0, 0, 0.28) 64%,
    rgba(0, 0, 0, 0.72)
  );
}

/*====================================================
WHY CHOOSE REEL STAR
PART 1
====================================================*/

.why-reelstar-section {
  position: relative;
  width: 100%;
  padding: 80px 8%;
  overflow: hidden;
  z-index: 1;
  background: transparent;
  box-sizing: border-box;
}

/*.why-reelstar-section::before {
  content: "";
  position: absolute;
  top: -250px;
  left: -250px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12), transparent 72%);
  filter: blur(30px);
  pointer-events: none;
}

.why-reelstar-section::after {
  content: "";
  position: absolute;
  right: -250px;
  bottom: -250px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.1), transparent 72%);
  filter: blur(35px);
  pointer-events: none;
}*/

.why-header {
  width: min(760px, 100%);
  margin: 0 auto 70px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  margin-bottom: 28px;

  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;

  color: #9cecff;

  border: 1px solid rgba(110, 220, 255, 0.25);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.why-badge i {
  color: #39d8ff;
  font-size: 0.95rem;
}

.why-header h2 {
  margin: 0;

  font-size: 2.2rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;

  color: #ffffff;
}

.why-header h2 span {
  display: block;
  margin-top: 10px;

  background: linear-gradient(90deg, #7ff3ff, #3ab8ff);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-header p {
  width: min(680px, 100%);
  margin: 22px auto 0;

  font-size: 1rem;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.78);
}

/*==============================
FEATURE WRAPPER
==============================*/

.why-row {
  width: min(1100px, 100%);
  margin: 0 auto 16px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;

  position: relative;
  z-index: 2;
}

.why-row:last-child {
  margin-bottom: 0;
}

.why-row.reverse .why-content {
  order: 2;
}

.why-row.reverse .why-visual {
  order: 1;
}

/*==============================
LEFT CONTENT
==============================*/

.why-content {
  max-width: 500px;
  animation: floatTag 6.5s ease-in-out infinite;
}

.why-icon {
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 30px;

  border-radius: 22px;

  background: linear-gradient(
    145deg,
    rgba(45, 210, 255, 0.18),
    rgba(0, 70, 130, 0.2)
  );

  border: 1px solid rgba(90, 220, 255, 0.18);

  backdrop-filter: blur(15px);

  box-shadow: 0 0 40px rgba(0, 200, 255, 0.12);
}

.why-icon i {
  font-size: 1.7rem;
  color: #62e7ff;
}

.why-content h3 {
  margin: 0 0 16px;

  color: #ffffff;

  font-size: 1.55rem;
  line-height: 1.3;
  font-weight: 700;
}

.why-content p {
  margin: 0;

  font-size: 1rem;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.78);

  max-width: 480px;
}

/*====================================================
WHY CHOOSE REEL STAR
PART 2
====================================================*/

/*==============================
RIGHT VISUAL
==============================*/

.why-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  animation: floatImage 4s ease-in-out infinite;
}

.why-visual::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 240, 255, 0.18),
    rgba(0, 180, 255, 0.08),
    transparent 72%
  );
  filter: blur(25px);
  animation: whyGlow 7s ease-in-out infinite;
}

.why-visual::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(80, 220, 255, 0.08);
  animation: whyRotate 30s linear infinite;
}

.why-visual img {
  position: relative;
  z-index: 2;

  width: min(100%, 360px);
  height: auto;

  object-fit: contain;

  filter: drop-shadow(0 20px 45px rgba(0, 200, 255, 0.25));

  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.why-row:hover .why-visual img {
  transform: translateY(-8px) scale(1.03);

  filter: drop-shadow(0 28px 70px rgba(0, 220, 255, 0.45));
}

.why-row:hover .why-icon {
  transform: translateY(-5px);

  box-shadow: 0 0 45px rgba(0, 220, 255, 0.22);

  transition: 0.45s ease;
}

.why-row:hover h3 {
  color: #8feeff;
  transition: 0.4s;
}

/*==============================
ANIMATIONS
==============================*/

@keyframes whyGlow {
  0% {
    transform: scale(0.95);
    opacity: 0.65;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.65;
  }
}

@keyframes whyRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/*==============================
TABLET
==============================*/

@media (max-width: 992px) {
  .why-reelstar-section {
    padding: 80px 8%;
  }

  .why-header {
    margin-bottom: 60px;
  }

  .why-row {
    grid-template-columns: 1fr;
    gap: 40px;

    text-align: center;

    margin-bottom: 30px;
  }

  .why-row.reverse .why-content,
  .why-row.reverse .why-visual {
    order: unset;
  }

  .why-content {
    max-width: 100%;
  }

  .why-content p {
    max-width: 700px;
    margin: auto;
  }

  .why-icon {
    margin: 0 auto 28px;
  }

  .why-visual {
    min-height: 270px;
  }
}

/*==============================
MOBILE
==============================*/

@media (max-width: 576px) {
  .why-reelstar-section {
    padding: 70px 8%;
  }

  .why-header {
    width: 100%;
    margin-bottom: 48px;
  }

  .why-header h2 {
    font-size: 1.55rem;
    line-height: 1.3;
  }

  .why-header p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .why-row {
    width: 100%;
    gap: 30px;
    margin-bottom: 24px;
  }

  .why-content h3 {
    font-size: 1.35rem;
  }

  .why-content p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .why-icon {
    width: 64px;
    height: 64px;
  }

  .why-visual {
    min-height: 220px;
  }

  .why-visual::before {
    width: 280px;
    height: 280px;
  }

  .why-visual::after {
    width: 340px;
    height: 340px;
  }

  .why-visual img {
    max-width: 280px;
  }
}
