/*Hero Section CSS by Rishabh Starts*/
/* ============================================================
   LogiZent Technologies Pvt Ltd
   DevOps Automation Services — Hero Section CSS
   Prefix: lzt-  (all classes randomised to avoid conflicts)
   ============================================================ */

/* ── Variables ── */
:root {
  --lzt-bg-deep:      #030a12;
  --lzt-bg-mid:       #040f1e;
  --lzt-cyan:         #00d4ff;
  --lzt-indigo:       #6366f1;
  --lzt-cyan-soft:    rgba(0, 212, 255, 0.15);
  --lzt-indigo-soft:  rgba(99, 102, 241, 0.15);
  --lzt-text-primary: #f0f6ff;
  --lzt-text-muted:   rgba(200, 220, 255, 0.55);
  --lzt-border:       rgba(0, 212, 255, 0.14);
  --lzt-font:         'Arial', sans-serif;
  --lzt-radius:       14px;
  --lzt-transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
.lzt-hero-wrap *,
.lzt-hero-wrap *::before,
.lzt-hero-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Outer Section ── */
.lzt-hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--lzt-bg-deep);
  font-family: var(--lzt-font);
  color: var(--lzt-text-primary);
  padding: 64px 0 56px;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* ── Background Canvas ── */
.lzt-bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.lzt-grid-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lzt-circuit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Dashed pipeline animation */
.lzt-pipe {
  animation: lzt-dash-flow 3s linear infinite;
}
.lzt-pipe-2 { animation-duration: 4.5s; animation-direction: reverse; }
.lzt-pipe-3 { animation-duration: 5s; }
.lzt-pipe-4 { animation-duration: 6s; animation-direction: reverse; }

@keyframes lzt-dash-flow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -88px; }
}

/* Circuit node pulse */
.lzt-node {
  animation: lzt-node-pulse 2.8s ease-in-out infinite;
}
.lzt-nd-b { animation-delay: 0.5s; }
.lzt-nd-c { animation-delay: 1s; }
.lzt-nd-d { animation-delay: 1.5s; }
.lzt-nd-e { animation-delay: 0.7s; }
.lzt-nd-f { animation-delay: 1.2s; }
.lzt-nd-g { animation-delay: 0.3s; }

@keyframes lzt-node-pulse {
  0%,100% { opacity: 0.4; r: 4px; }
  50%      { opacity: 1;   r: 7px; }
}

/* Floating orbs */
.lzt-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: lzt-orb-drift 12s ease-in-out infinite alternate;
}
.lzt-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,212,255,0.10) 0%, transparent 70%);
  top: -120px; left: -80px;
  animation-duration: 14s;
}
.lzt-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  animation-duration: 10s; animation-delay: -3s;
}
.lzt-orb-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation-duration: 18s; animation-delay: -6s;
}
@keyframes lzt-orb-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 40px) scale(1.08); }
}

/* ── Ticker Bar ── */
.lzt-ticker-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--lzt-border);
  border-bottom: 1px solid var(--lzt-border);
  background: rgba(0,10,25,0.6);
  backdrop-filter: blur(8px);
  padding: 9px 0;
  margin-bottom: 52px;
}

.lzt-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  animation: lzt-ticker-scroll 38s linear infinite;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lzt-cyan);
  opacity: 0.75;
}

.lzt-tick-sep {
  color: var(--lzt-indigo);
  opacity: 0.6;
  font-size: 10px;
}

@keyframes lzt-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Inner Layout ── */
.lzt-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
}

/* ── Badge ── */
.lzt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 50px;
  border: 1px solid var(--lzt-border);
  background: rgba(0,212,255,0.06);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--lzt-cyan);
  text-transform: uppercase;
  margin-bottom: 22px;
  width: fit-content;
  animation: lzt-fadein-up 0.7s ease both;
}

.lzt-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lzt-cyan);
  box-shadow: 0 0 8px var(--lzt-cyan);
  animation: lzt-blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes lzt-blink {
  0%,100% { opacity: 1; box-shadow: 0 0 8px var(--lzt-cyan); }
  50%      { opacity: 0.4; box-shadow: 0 0 2px var(--lzt-cyan); }
}

/* ── Headline ── */
.lzt-hero-h1 {
  font-family: var(--lzt-font);
  font-weight: 700;
  color: var(--lzt-text-primary);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lzt-h1-line {
  display: block;
  font-size: clamp(34px, 4.2vw, 56px);
  background: linear-gradient(135deg, #f0f6ff 0%, #a8d4ff 55%, var(--lzt-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lzt-line-1 {
  animation: lzt-fadein-up 0.8s 0.1s ease both;
}
.lzt-line-2 {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-wrap: wrap;
  animation: lzt-fadein-up 0.8s 0.25s ease both;
}

.lzt-static-word {
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: linear-gradient(135deg, #f0f6ff 0%, #a8d4ff 55%, var(--lzt-cyan) 100%);
}

/* Word rotator */
.lzt-word-rotator {
  display: inline-block;
  position: relative;
  height: 1.15em;
  overflow: hidden;
  min-width: 200px;
  vertical-align: bottom;
}
.lzt-word {
  display: block;
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--lzt-cyan) 0%, var(--lzt-indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.lzt-word.lzt-word-active {
  opacity: 1;
  transform: translateY(0);
}
.lzt-word.lzt-word-exit {
  opacity: 0;
  transform: translateY(-40px);
}

/* ── Subheading ── */
.lzt-hero-sub {
  font-size: clamp(14.5px, 1.55vw, 17px);
  line-height: 1.7;
  color: var(--lzt-text-muted);
  max-width: 560px;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
  animation: lzt-fadein-up 0.8s 0.4s ease both;
}
.lzt-hero-sub strong {
  color: rgba(200,230,255,0.9);
  font-weight: 600;
}

/* ── Stats Row ── */
.lzt-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  animation: lzt-fadein-up 0.8s 0.5s ease both;
}

.lzt-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lzt-stat-num {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--lzt-cyan) 0%, var(--lzt-indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lzt-stat-unit {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--lzt-cyan) 0%, var(--lzt-indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lzt-stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lzt-text-muted);
  margin-top: 3px;
  font-weight: 600;
}

.lzt-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--lzt-border);
  flex-shrink: 0;
}

/* ── CTA Buttons ── */
.lzt-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: lzt-fadein-up 0.8s 0.6s ease both;
}

.lzt-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--lzt-cyan) 0%, var(--lzt-indigo) 100%);
  color: #fff;
  font-family: var(--lzt-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--lzt-transition), box-shadow var(--lzt-transition);
  box-shadow: 0 4px 24px rgba(0,212,255,0.28), 0 0 0 1px rgba(0,212,255,0.2);
}
.lzt-btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 36px rgba(0,212,255,0.42), 0 0 0 1px rgba(0,212,255,0.35);
}
.lzt-btn-primary:active { transform: translateY(0) scale(0.99); }

.lzt-btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.18) 100%);
  pointer-events: none;
}

.lzt-btn-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.lzt-btn-primary:hover .lzt-btn-icon {
  transform: translateX(4px);
}

.lzt-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--lzt-border);
  color: var(--lzt-text-primary);
  font-family: var(--lzt-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color var(--lzt-transition), background var(--lzt-transition), color var(--lzt-transition);
  backdrop-filter: blur(6px);
}
.lzt-btn-secondary:hover {
  border-color: rgba(0,212,255,0.45);
  background: rgba(0,212,255,0.06);
  color: var(--lzt-cyan);
}

.lzt-play-icon {
  width: 18px; height: 18px; flex-shrink: 0;
}

/* ── Trust Row ── */
.lzt-trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: lzt-fadein-up 0.8s 0.75s ease both;
}
.lzt-trust-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lzt-text-muted);
  font-weight: 600;
  flex-shrink: 0;
}
.lzt-trust-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.lzt-trust-logo {
  padding: 5px 10px;
  border: 1px solid var(--lzt-border);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  transition: border-color var(--lzt-transition), background var(--lzt-transition);
  cursor: default;
  height: 32px;
  display: flex;
  align-items: center;
}
.lzt-trust-logo:hover {
  border-color: rgba(0,212,255,0.35);
  background: rgba(0,212,255,0.06);
}
.lzt-trust-logo svg {
  height: 20px;
  display: block;
}

/* ── Right Visual ── */
.lzt-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lzt-fadein-right 1s 0.3s ease both;
}

.lzt-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.lzt-pipeline-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 24px rgba(0,212,255,0.08));
}

/* Stage card animations */
.lzt-stage-card {
  animation: lzt-card-glow 3s ease-in-out infinite alternate;
}
.lzt-card-delay-1 { animation-delay: 0.6s; }
.lzt-card-delay-2 { animation-delay: 1.2s; }
.lzt-card-delay-3 { animation-delay: 1.8s; }
.lzt-card-delay-4 { animation-delay: 2.4s; }

@keyframes lzt-card-glow {
  from { filter: brightness(0.9); }
  to   { filter: brightness(1.15) drop-shadow(0 0 10px rgba(0,212,255,0.18)); }
}

/* Pulse dots on cards */
.lzt-pulse-dot {
  animation: lzt-pulse 1.8s ease-in-out infinite;
}
@keyframes lzt-pulse {
  0%,100% { opacity: 0.5; r: 4px; }
  50%      { opacity: 1; r: 7px; }
}

/* Spine line dash animation */
.lzt-spine-line {
  animation: lzt-spine-dash 2s linear infinite;
}
@keyframes lzt-spine-dash {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -24px; }
}

/* Floating badges */
.lzt-vbadge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid var(--lzt-border);
  background: rgba(3,10,18,0.85);
  backdrop-filter: blur(10px);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--lzt-text-primary);
  letter-spacing: 0.05em;
  white-space: nowrap;
  animation: lzt-badge-float 4s ease-in-out infinite alternate;
}
.lzt-vbadge-tr {
  top: 12px; right: -16px;
  animation-delay: 0s;
}
.lzt-vbadge-bl {
  bottom: 60px; left: -20px;
  animation-delay: -2s;
}
@keyframes lzt-badge-float {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

.lzt-vb-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: lzt-blink 1.6s ease-in-out infinite;
}
.lzt-vb-green { background: #22c55e; box-shadow: 0 0 6px #22c55e; }
.lzt-vb-cyan  { background: var(--lzt-cyan); box-shadow: 0 0 6px var(--lzt-cyan); }

/* ── Bottom Fade ── */
.lzt-hero-fade-btm {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(3,10,18,0.7));
  pointer-events: none;
  z-index: 2;
}

/* ── Shared Animations ── */
@keyframes lzt-fadein-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lzt-fadein-right {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Responsive ── */

/* Large desktops */
@media (max-width: 1100px) {
  .lzt-hero-inner {
    grid-template-columns: 1fr 380px;
    gap: 36px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .lzt-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .lzt-hero-visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  .lzt-visual-wrap {
    max-width: 320px;
  }
  .lzt-vbadge-tr { right: 0; }
  .lzt-vbadge-bl { left: 0; }
  .lzt-hero-sub  { max-width: 100%; }
  .lzt-hero-wrap { padding: 52px 0 48px; }
}

/* Mobile large */
@media (max-width: 600px) {
  .lzt-hero-wrap { padding: 44px 0 40px; }
  .lzt-ticker-bar { margin-bottom: 36px; }
  .lzt-hero-inner { padding: 0 18px; gap: 32px; }
  .lzt-stats-row  { gap: 12px; }
  .lzt-cta-group  { flex-direction: column; align-items: flex-start; }
  .lzt-btn-primary,
  .lzt-btn-secondary { width: 100%; justify-content: center; }
  .lzt-trust-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .lzt-trust-logos { gap: 7px; }
}

/* Mobile small */
@media (max-width: 380px) {
  .lzt-badge { font-size: 10px; }
  .lzt-hero-sub { font-size: 13.5px; }
  .lzt-stat-num { font-size: 24px; }
}

/*Hero Section CSS by Rishabh Ends*/

/*Second Ball Section CSS by Rishabh Starts*/
/* ============================================================
   LogiZent — DevOps Three Orb Section  [REBUILT v2]
   Prefix: qvx-   (conflict-safe)
   ============================================================ */

/* ── Variables ── */
:root {
  --qvx-bg:         #030a12;
  --qvx-cyan:       #00e5ff;
  --qvx-pink:       #e040a0;
  --qvx-blue:       #5b8aff;
  --qvx-gold:       #ffa040;
  --qvx-text:       #eef4ff;
  --qvx-muted:      rgba(180, 210, 255, 0.50);
  --qvx-font:       'Arial', sans-serif;
  --qvx-ease:       cubic-bezier(0.16, 1, 0.3, 1);

  /* Orb sizes */
  --qvx-orb-size:   320px;
  --qvx-orb-r:      160px;   /* half of size */
}

/* ── Reset ── */
.qvx-section *,
.qvx-section *::before,
.qvx-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Section ── */
.qvx-section {
  position: relative;
  width: 100%;
  background: var(--qvx-bg);
  font-family: var(--qvx-font);
  color: var(--qvx-text);
  overflow: hidden;
  padding: 80px 24px 90px;
  isolation: isolate;
  cursor: none; /* hide default cursor inside section */
}

/* ── Animated Background Canvas ── */
.qvx-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ── Custom cursor glow ── */
.qvx-cursor-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(0, 229, 255, 0.13) 0%,
    rgba(99, 102, 241, 0.07) 40%,
    transparent 70%
  );
  transition: opacity 0.3s ease;
  opacity: 0;
  mix-blend-mode: screen;
}
.qvx-cursor-glow.qvx-cursor-active {
  opacity: 1;
}

/* ── Section Header ── */
.qvx-header {
  position: relative;
  z-index: 3;
  max-width: 740px;
  margin: 0 auto 80px;
  text-align: center;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--qvx-ease), transform 1s var(--qvx-ease);
}
.qvx-header.qvx-in {
  opacity: 1;
  transform: translateY(0);
}

.qvx-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--qvx-cyan);
  margin-bottom: 16px;
}

.qvx-title {
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.5px;
  color: var(--qvx-text);
  margin-bottom: 20px;
}

.qvx-title-accent {
  background: linear-gradient(110deg, var(--qvx-cyan) 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.qvx-subtitle {
  font-size: clamp(14px, 1.5vw, 16.5px);
  line-height: 1.78;
  color: var(--qvx-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ── Stage: the 3-orb layout ── */
.qvx-stage {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  /* Grid-based: top orb centred, two bottom orbs side by side */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  align-items: center;
  justify-items: center;
  min-height: 680px;
}

/* ── Orb units ── */
.qvx-orb-unit {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Top orb — centred, spanning all 3 columns, stacked label below */
.qvx-unit-top {
  grid-column: 1 / 4;
  grid-row: 1;
  flex-direction: column;
  align-items: center;
  margin-bottom: -80px; /* overlap into bottom row */
  z-index: 4;

  /* Entry animation */
  opacity: 0;
  transform: translateY(-80px);
  transition: opacity 1s var(--qvx-ease), transform 1s var(--qvx-ease);
}
.qvx-unit-top.qvx-in {
  opacity: 1;
  transform: translateY(0);
}

/* Left orb unit — label on left, orb on right */
.qvx-unit-left {
  grid-column: 1;
  grid-row: 2;
  flex-direction: row;
  justify-content: flex-end;
  padding-right: 20px;

  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1s 0.25s var(--qvx-ease), transform 1s 0.25s var(--qvx-ease);
}
.qvx-unit-left.qvx-in {
  opacity: 1;
  transform: translateX(0);
}

/* Right orb unit — orb on left, label on right */
.qvx-unit-right {
  grid-column: 3;
  grid-row: 2;
  flex-direction: row;
  justify-content: flex-start;
  padding-left: 20px;

  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1s 0.5s var(--qvx-ease), transform 1s 0.5s var(--qvx-ease);
}
.qvx-unit-right.qvx-in {
  opacity: 1;
  transform: translateX(0);
}

/* ── Individual Orb Ball ── */
.qvx-orb {
  flex-shrink: 0;
  width: var(--qvx-orb-size);
  height: var(--qvx-orb-size);
  border-radius: 50%;
  position: relative;
  cursor: none;
}

/* Inner glow layer */
.qvx-orb-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transition: transform 0.6s var(--qvx-ease);
}

/* Highlight shine */
.qvx-orb-shine {
  position: absolute;
  width: 45%;
  height: 35%;
  top: 12%;
  left: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 100%);
  animation: qvx-shine-drift 6s ease-in-out infinite;
  pointer-events: none;
}

/* Dashed ring */
.qvx-orb-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px dashed transparent;
  animation: qvx-ring-spin 20s linear infinite;
}

@keyframes qvx-shine-drift {
  0%,100% { transform: translate(0,0) scale(1); opacity: 1; }
  50%      { transform: translate(8px,-6px) scale(1.05); opacity: 0.6; }
}
@keyframes qvx-ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── TOP ORB — Cyan/Teal ── */
.qvx-orb-top .qvx-orb-inner {
  background: radial-gradient(ellipse at 42% 32%,
    #00e5ff 0%,
    #00b8d9 20%,
    #006080 50%,
    #001a2a 80%,
    transparent 100%
  );
  box-shadow:
    0 0 80px 20px rgba(0, 229, 255, 0.22),
    0 0 140px 40px rgba(0, 180, 220, 0.10),
    inset 0 0 60px rgba(0, 229, 255, 0.08);
}
.qvx-orb-top .qvx-orb-ring {
  border-color: rgba(0, 229, 255, 0.20);
}
.qvx-orb-top:hover .qvx-orb-inner {
  box-shadow:
    0 0 100px 30px rgba(0, 229, 255, 0.38),
    0 0 180px 60px rgba(0, 180, 220, 0.16),
    inset 0 0 80px rgba(0, 229, 255, 0.14);
  transform: scale(1.04);
}

/* ── LEFT ORB — Magenta/Purple ── */
.qvx-orb-left .qvx-orb-inner {
  background: radial-gradient(ellipse at 38% 38%,
    #e040a0 0%,
    #9c27b0 25%,
    #4a0070 55%,
    #0e001a 85%,
    transparent 100%
  );
  box-shadow:
    0 0 80px 20px rgba(224, 64, 160, 0.22),
    0 0 140px 40px rgba(156, 39, 176, 0.10),
    inset 0 0 60px rgba(224, 64, 160, 0.08);
}
.qvx-orb-left .qvx-orb-ring {
  border-color: rgba(224, 64, 160, 0.20);
  animation-direction: reverse;
  animation-duration: 24s;
}
.qvx-orb-left:hover .qvx-orb-inner {
  box-shadow:
    0 0 100px 30px rgba(224, 64, 160, 0.38),
    0 0 180px 60px rgba(156, 39, 176, 0.16),
    inset 0 0 80px rgba(224, 64, 160, 0.14);
  transform: scale(1.04);
}

/* ── RIGHT ORB — Blue/Indigo ── */
.qvx-orb-right .qvx-orb-inner {
  background: radial-gradient(ellipse at 42% 36%,
    #6699ff 0%,
    #3355cc 22%,
    #1a2070 52%,
    #00051a 83%,
    transparent 100%
  );
  box-shadow:
    0 0 80px 20px rgba(91, 138, 255, 0.22),
    0 0 140px 40px rgba(51, 85, 204, 0.10),
    inset 0 0 60px rgba(91, 138, 255, 0.08);
}
.qvx-orb-right .qvx-orb-ring {
  border-color: rgba(91, 138, 255, 0.20);
  animation-duration: 28s;
}
.qvx-orb-right:hover .qvx-orb-inner {
  box-shadow:
    0 0 100px 30px rgba(91, 138, 255, 0.38),
    0 0 180px 60px rgba(51, 85, 204, 0.16),
    inset 0 0 80px rgba(91, 138, 255, 0.14);
  transform: scale(1.04);
}

/* Breathe animation for all orbs */
@keyframes qvx-breathe {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}
.qvx-orb-top.qvx-breathing    { animation: qvx-breathe 7s ease-in-out infinite; }
.qvx-orb-left.qvx-breathing   { animation: qvx-breathe 5.5s ease-in-out 1s infinite; }
.qvx-orb-right.qvx-breathing  { animation: qvx-breathe 6.5s ease-in-out 2.5s infinite; }

/* Hover cursor colour matching per orb */
.qvx-orb-top:hover   ~ .qvx-cursor-glow { background: radial-gradient(circle, rgba(0,229,255,0.18) 0%, transparent 65%); }
.qvx-orb-left:hover  ~ .qvx-cursor-glow { background: radial-gradient(circle, rgba(224,64,160,0.18) 0%, transparent 65%); }
.qvx-orb-right:hover ~ .qvx-cursor-glow { background: radial-gradient(circle, rgba(91,138,255,0.18) 0%, transparent 65%); }

/* ── Labels ── */
.qvx-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 210px;
}

.qvx-label-top {
  text-align: center;
  max-width: 260px;
  margin-top: 18px;
}
.qvx-label-left  { text-align: right; }
.qvx-label-right { text-align: left; }

.qvx-label-name {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.3;
}
.qvx-label-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--qvx-muted);
}

.qvx-col-cyan  { color: var(--qvx-cyan); }
.qvx-col-pink  { color: var(--qvx-pink); }
.qvx-col-blue  { color: var(--qvx-blue); }

/* ── Centre intersection label ── */
.qvx-centre {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 5;
  text-align: center;
  padding: 0 16px;
  margin-top: -20px;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s 0.9s var(--qvx-ease), transform 1s 0.9s var(--qvx-ease);
}
.qvx-centre.qvx-in {
  opacity: 1;
  transform: translateY(0);
}

.qvx-centre-icon {
  width: 72px;
  height: 64px;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 12px rgba(255,160,64,0.5));
}
.qvx-centre-icon svg { width: 100%; height: 100%; }

.qvx-centre-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--qvx-gold);
  letter-spacing: 0.04em;
}
.qvx-centre-text {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255, 190, 100, 0.65);
}

/* ── Responsive ── */

/* Compact orbs on medium screens */
@media (max-width: 1000px) {
  :root { --qvx-orb-size: 260px; }
  .qvx-stage { gap: 0; min-height: 580px; }
  .qvx-unit-top { margin-bottom: -70px; }
  .qvx-label-name { font-size: 13px; }
  .qvx-label-text { font-size: 12px; }
  .qvx-label { max-width: 170px; }
}

/* Tablet: stack into single column */
@media (max-width: 768px) {
  :root { --qvx-orb-size: 220px; }

  .qvx-section { padding: 60px 20px 70px; cursor: auto; }
  .qvx-cursor-glow { display: none; }

  .qvx-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    min-height: auto;
  }

  .qvx-unit-top    { flex-direction: column; margin-bottom: 0; }
  .qvx-unit-left   { flex-direction: column; padding: 0; gap: 16px; }
  .qvx-unit-right  { flex-direction: column; padding: 0; gap: 16px; }

  .qvx-label,
  .qvx-label-top,
  .qvx-label-left,
  .qvx-label-right { text-align: center; max-width: 100%; }

  .qvx-centre { position: static; transform: none; margin: 0; }
  .qvx-header { margin-bottom: 50px; }
}

/* Mobile */
@media (max-width: 480px) {
  :root { --qvx-orb-size: 200px; }
  .qvx-title { font-size: 28px; }
  .qvx-stage { gap: 24px; }
}

/*Second Ball Section CSS by Rishabh Ends*/

/*Third Section Stopper CSS by Rishabh STarts*/
/* ============================================================
   LogiZent — DevOps Scroll-Stopper SVG Glow Section CSS v3
   Prefix: spx-   (conflict-safe)
   ============================================================ */

:root {
  --spx-bg:    #030a12;
  --spx-font:  'Arial', sans-serif;
  --spx-text:  #eef4ff;
  --spx-muted: rgba(180, 210, 255, 0.48);
  --spx-ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --spx-c0: #00e5ff;
  --spx-c1: #6366f1;
  --spx-c2: #22d3ee;
  --spx-c3: #a78bfa;
  --spx-c4: #34d399;
  --spx-c5: #fbbf24;
}

.spx-scroll-track *,
.spx-scroll-track *::before,
.spx-scroll-track *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Outer track: tall enough for 6 scroll-steps ── */
.spx-scroll-track {
  position: relative;
  height: 700vh;
  width: 100%;
}

/* ── Sticky panel ── */
.spx-sticky-wrap {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--spx-bg);
  font-family: var(--spx-font);
  color: var(--spx-text);
  display: flex;
  flex-direction: column;
}

/* ── Background canvas ── */
.spx-bg-cvs {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.42;
}

/* ── Grain ── */
.spx-grain {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px; opacity: 0.35;
}

/* ── Header ── */
.spx-top-bar {
  position: relative; z-index: 4;
  text-align: center;
  padding: 26px 24px 14px;
  flex-shrink: 0;         /* never compress the header */
}

.spx-eyebrow {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--spx-c0); margin-bottom: 7px;
}

.spx-heading {
  font-size: clamp(20px, 2.6vw, 38px);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.3px;
  color: var(--spx-text); margin-bottom: 8px;
}

.spx-heading-grad {
  background: linear-gradient(110deg, var(--spx-c0) 0%, var(--spx-c1) 55%, var(--spx-c3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.spx-subhead {
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.65; color: var(--spx-muted);
  max-width: 480px; margin: 0 auto;
}

/* ── Stage: SVG left | content right, fills remaining height ── */
.spx-stage {
  position: relative; z-index: 3;
  flex: 1;
  min-height: 0;          /* CRITICAL — lets flex child shrink below content size */
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0 48px;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 8px 48px 20px 32px;
  align-items: stretch;   /* both columns fill height */
  overflow: hidden;
}

/* ── SVG wrapper ── */
.spx-diagram-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  min-height: 0;
}

/*
  KEY FIX:
  - height: 100%  → SVG stretches to fill the flex column height
  - width: auto   → maintains aspect ratio; never wider than container
  - max-height    → subtracts header (~130px) + stage padding
  - overflow: visible → glow filters can bleed out without clipping
*/
.spx-svg {
  display: block;
  width: auto;
  height: 100%;
  max-height: calc(100vh - 150px);
  max-width: 210px;
  overflow: visible;
}

/* ── SVG node default ── */
.spx-hex-body   { transition: fill .55s ease, stroke .55s ease; }
.spx-hex-ring,
.spx-hex-mid    { transition: stroke .55s ease, opacity .55s ease; }
.spx-icon-text  { transition: fill .45s ease; }
.spx-step-num   { transition: fill .45s ease; }
.spx-connector  { transition: stroke .65s ease; }

/* ── NODE LIT states ── */
.spx-node-0.spx-lit .spx-hex-body  { fill:rgba(0,20,35,.9);   stroke:var(--spx-c0); filter:url(#spx-glow-cyan);   }
.spx-node-0.spx-lit .spx-hex-ring  { stroke:rgba(0,229,255,.6); }
.spx-node-0.spx-lit .spx-hex-mid   { stroke:rgba(0,229,255,.28); }
.spx-node-0.spx-lit .spx-icon-text { fill:var(--spx-c0); }
.spx-node-0.spx-lit .spx-step-num  { fill:rgba(0,229,255,.85); }

.spx-node-1.spx-lit .spx-hex-body  { fill:rgba(10,5,30,.9);   stroke:var(--spx-c1); filter:url(#spx-glow-indigo); }
.spx-node-1.spx-lit .spx-hex-ring  { stroke:rgba(99,102,241,.6); }
.spx-node-1.spx-lit .spx-hex-mid   { stroke:rgba(99,102,241,.28); }
.spx-node-1.spx-lit .spx-icon-text { fill:var(--spx-c1); }
.spx-node-1.spx-lit .spx-step-num  { fill:rgba(99,102,241,.85); }

.spx-node-2.spx-lit .spx-hex-body  { fill:rgba(0,12,20,.9);   stroke:var(--spx-c2); filter:url(#spx-glow-teal);   }
.spx-node-2.spx-lit .spx-hex-ring  { stroke:rgba(34,211,238,.6); }
.spx-node-2.spx-lit .spx-hex-mid   { stroke:rgba(34,211,238,.28); }
.spx-node-2.spx-lit .spx-icon-text { fill:var(--spx-c2); }
.spx-node-2.spx-lit .spx-step-num  { fill:rgba(34,211,238,.85); }

.spx-node-3.spx-lit .spx-hex-body  { fill:rgba(8,4,22,.9);    stroke:var(--spx-c3); filter:url(#spx-glow-violet); }
.spx-node-3.spx-lit .spx-hex-ring  { stroke:rgba(167,139,250,.6); }
.spx-node-3.spx-lit .spx-hex-mid   { stroke:rgba(167,139,250,.28); }
.spx-node-3.spx-lit .spx-icon-text { fill:var(--spx-c3); }
.spx-node-3.spx-lit .spx-step-num  { fill:rgba(167,139,250,.85); }

.spx-node-4.spx-lit .spx-hex-body  { fill:rgba(0,8,12,.9);    stroke:var(--spx-c4); filter:url(#spx-glow-green);  }
.spx-node-4.spx-lit .spx-hex-ring  { stroke:rgba(52,211,153,.6); }
.spx-node-4.spx-lit .spx-hex-mid   { stroke:rgba(52,211,153,.28); }
.spx-node-4.spx-lit .spx-icon-text { fill:var(--spx-c4); }
.spx-node-4.spx-lit .spx-step-num  { fill:rgba(52,211,153,.85); }

.spx-node-5.spx-lit .spx-hex-body  { fill:rgba(14,10,0,.9);   stroke:var(--spx-c5); filter:url(#spx-glow-gold);   }
.spx-node-5.spx-lit .spx-hex-ring  { stroke:rgba(251,191,36,.6); }
.spx-node-5.spx-lit .spx-hex-mid   { stroke:rgba(251,191,36,.28); }
.spx-node-5.spx-lit .spx-icon-text { fill:var(--spx-c5); }
.spx-node-5.spx-lit .spx-step-num  { fill:rgba(251,191,36,.85); }

/* ── CONNECTOR LIT ── */
.spx-conn-0.spx-lit { stroke:url(#spx-line-01); opacity:.8; animation:spx-flow 1.4s linear infinite; }
.spx-conn-1.spx-lit { stroke:url(#spx-line-12); opacity:.8; animation:spx-flow 1.4s linear infinite; }
.spx-conn-2.spx-lit { stroke:url(#spx-line-23); opacity:.8; animation:spx-flow 1.4s linear infinite; }
.spx-conn-3.spx-lit { stroke:url(#spx-line-34); opacity:.8; animation:spx-flow 1.4s linear infinite; }
.spx-conn-4.spx-lit { stroke:url(#spx-line-45); opacity:.8; animation:spx-flow 1.4s linear infinite; }

@keyframes spx-flow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -22px; }
}

/* ── CONTENT PANELS ── */
.spx-content-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 0;
}

.spx-panel {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 12px 0;
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
  transition: opacity .6s var(--spx-ease), transform .6s var(--spx-ease);
}
.spx-panel.spx-panel-active {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}

.spx-panel-tag {
  display: inline-flex; align-items: center;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; border: 1px solid;
  width: fit-content;
}

.spx-panel-title {
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 700; line-height: 1.22; letter-spacing: -0.25px;
  color: var(--spx-text);
}

.spx-panel-body {
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.78; color: var(--spx-muted);
  max-width: 520px;
}

.spx-panel-chips {
  display: flex; flex-wrap: wrap;
  gap: 8px; list-style: none; margin-top: 2px;
}
.spx-panel-chips li {
  padding: 5px 13px; border-radius: 50px;
  font-size: 11px; font-weight: 600; letter-spacing: .05em;
  background: var(--spx-chip-col);
  border: 1px solid var(--spx-chip-border);
  color: rgba(220,235,255,.85);
}

/* ── Progress bar ── */
.spx-progress-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: rgba(255,255,255,.05); z-index: 6;
}
.spx-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--spx-c0), var(--spx-c1), var(--spx-c3), var(--spx-c4), var(--spx-c5));
  background-size: 200% 100%;
  animation: spx-prog-shift 4s linear infinite;
  transition: width .12s linear;
}
@keyframes spx-prog-shift {
  from { background-position:0%; } to { background-position:200%; }
}

/* ── Dot nav ── */
.spx-dots {
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  z-index: 6; display: flex; flex-direction: column; gap: 12px;
}
.spx-dot {
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent; cursor: pointer;
  transition: background .4s, border-color .4s, box-shadow .4s, transform .3s;
}
.spx-dot-0.spx-dot-active { background:var(--spx-c0); border-color:var(--spx-c0); box-shadow:0 0 9px var(--spx-c0); transform:scale(1.5); }
.spx-dot-1.spx-dot-active { background:var(--spx-c1); border-color:var(--spx-c1); box-shadow:0 0 9px var(--spx-c1); transform:scale(1.5); }
.spx-dot-2.spx-dot-active { background:var(--spx-c2); border-color:var(--spx-c2); box-shadow:0 0 9px var(--spx-c2); transform:scale(1.5); }
.spx-dot-3.spx-dot-active { background:var(--spx-c3); border-color:var(--spx-c3); box-shadow:0 0 9px var(--spx-c3); transform:scale(1.5); }
.spx-dot-4.spx-dot-active { background:var(--spx-c4); border-color:var(--spx-c4); box-shadow:0 0 9px var(--spx-c4); transform:scale(1.5); }
.spx-dot-5.spx-dot-active { background:var(--spx-c5); border-color:var(--spx-c5); box-shadow:0 0 9px var(--spx-c5); transform:scale(1.5); }
.spx-dot.spx-dot-done     { background:rgba(255,255,255,.2); border-color:rgba(255,255,255,.3); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .spx-stage { grid-template-columns: 190px 1fr; gap: 0 24px; padding: 8px 24px 16px 16px; }
  .spx-svg   { max-width: 160px; }
}

@media (max-width: 640px) {
  .spx-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    padding: 0 14px 12px;
    gap: 0;
    align-items: start;
  }
  .spx-diagram-wrap { height: auto; padding: 6px 0; justify-content: center; }
  .spx-svg { height: auto; width: 100%; max-width: 280px; max-height: 200px; }
  .spx-content-wrap { position: relative; height: auto; min-height: 260px; }
  .spx-panel { position: relative; inset: auto; padding: 8px 0; }
  .spx-panel:not(.spx-panel-active) { display: none; }
  .spx-dots  { right: 8px; gap: 9px; }
  .spx-dot   { width: 6px; height: 6px; }
}

@media (max-width: 420px) {
  .spx-heading { font-size: 19px; }
  .spx-top-bar { padding: 18px 14px 10px; }
  .spx-panel-title { font-size: 16px; }
  .spx-panel-body  { font-size: 12.5px; }
}

/*Third Section Stopper CSS by Rishabh Ends*/

/*Circle Ring Section Stopper CSS by Rishabh Starts*/
/* ============================================================
   LogiZent — Ring Glow Scroll Section CSS v4
   Prefix: rlg-
   ============================================================ */

:root {
  --rlg-bg:    #030a12;
  --rlg-font:  'Arial', sans-serif;
  --rlg-text:  #eef4ff;
  --rlg-muted: rgba(180,210,255,0.50);
  --rlg-ease:  cubic-bezier(0.16, 1, 0.3, 1);
}

.rlg-track *, .rlg-track *::before, .rlg-track *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

/* Outer scroll track — 800vh gives 6 generous steps + exit */
.rlg-track {
  position: relative;
  height: 800vh;
  width: 100%;
}

/* Sticky panel */
.rlg-sticky {
  position: sticky;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--rlg-bg);
  font-family: var(--rlg-font);
  color: var(--rlg-text);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Particle canvas ── */
.rlg-particle-cvs {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  opacity: 0.4;
}

/* ── Ambient blobs ── */
.rlg-blob {
  position: absolute; z-index: 0; pointer-events: none;
  border-radius: 50%; filter: blur(110px);
  animation: rlg-blob 16s ease-in-out infinite alternate;
}
.rlg-blob-l {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,80,180,0.28) 0%, transparent 70%);
  left: -180px; top: 10%;
}
.rlg-blob-r {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(100,0,180,0.22) 0%, transparent 70%);
  right: -120px; top: 25%;
  animation-delay: -8s; animation-duration: 12s;
}
@keyframes rlg-blob {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(24px,36px) scale(1.07); }
}

/* ── Header ── */
.rlg-header {
  position: relative; z-index: 4;
  text-align: center;
  padding: 36px 24px 0;
  flex-shrink: 0;
  max-width: 760px;
}
.rlg-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #00e5ff; margin-bottom: 10px;
}
.rlg-h2 {
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 700; line-height: 1.14; letter-spacing: -0.4px;
  color: var(--rlg-text); margin-bottom: 12px;
}
.rlg-h2-grad {
  background: linear-gradient(110deg, #00e5ff 0%, #6366f1 55%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rlg-lead {
  font-size: clamp(12.5px, 1.2vw, 14.5px);
  line-height: 1.7; color: var(--rlg-muted);
}

/* ── Main area: ring + content side by side ── */
.rlg-main {
  position: relative; z-index: 3;
  flex: 1; min-height: 0;
  width: 100%; max-width: 1100px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 40px;
  padding: 16px 40px 0 40px;
  align-items: center;
}

/* ── Ring box: canvas + centre label overlay ── */
.rlg-ring-box {
  position: relative;
  width: clamp(280px, 38vmin, 440px);
  height: clamp(280px, 38vmin, 440px);
  flex-shrink: 0;
}

.rlg-ring-cvs {
  width: 100%; height: 100%;
  display: block;
  /* The canvas itself is square; JS draws the ring inside */
}

/* Centre overlay text */
.rlg-ring-centre {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column;
  align-items: center;
  pointer-events: none;
  user-select: none;
}
.rlg-ctr-num {
  font-size: clamp(28px, 4vmin, 48px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #00e5ff, #6366f1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transition: all 0.4s ease;
}
.rlg-ctr-slash {
  font-size: clamp(12px, 1.5vmin, 16px);
  color: rgba(255,255,255,0.2);
  line-height: 1;
}
.rlg-ctr-total {
  font-size: clamp(12px, 1.5vmin, 16px);
  color: rgba(255,255,255,0.2);
  line-height: 1;
}
.rlg-ctr-label {
  font-size: clamp(8px, 1vmin, 10px);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  margin-top: 6px; font-weight: 600;
  transition: all 0.4s ease;
}

/* ── Content area (right side) ── */
.rlg-content-area {
  height: 100%;
  display: flex; align-items: center;
  padding: 8px 0;
  min-height: 0;
}

/* Default idle message */
.rlg-default-msg {
  display: flex; flex-direction: column; gap: 16px;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.rlg-default-msg.rlg-hidden { opacity: 0; pointer-events: none; }

.rlg-def-icon svg { width: 48px; height: 48px; }

.rlg-def-text {
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.75; color: var(--rlg-muted);
  max-width: 420px;
}
.rlg-def-text strong { color: rgba(255,255,255,0.7); font-weight: 600; }

/* Stage detail panel */
.rlg-stage-panel {
  display: flex; flex-direction: column; gap: 14px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s var(--rlg-ease), transform 0.45s var(--rlg-ease);
  width: 100%; max-width: 500px;
}
.rlg-stage-panel.rlg-sp-visible {
  opacity: 1; transform: translateY(0);
}

.rlg-sp-tag {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  width: fit-content;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.rlg-sp-icon-wrap { display: flex; align-items: center; gap: 12px; }

.rlg-sp-icon {
  width: 48px; height: 48px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.rlg-sp-icon svg { width: 24px; height: 24px; }

.rlg-sp-title {
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 700; line-height: 1.18; letter-spacing: -0.3px;
  color: var(--rlg-text);
  transition: color 0.4s ease;
}

.rlg-sp-body {
  font-size: clamp(13.5px, 1.3vw, 15.5px);
  line-height: 1.78; color: var(--rlg-muted);
  max-width: 480px;
}

.rlg-sp-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none; margin-top: 4px;
}
.rlg-sp-chips li {
  padding: 5px 14px; border-radius: 50px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  background: var(--rlg-chip-bg, rgba(255,255,255,0.05));
  border: 1px solid var(--rlg-chip-bd, rgba(255,255,255,0.1));
  color: rgba(220,235,255,0.85);
}

/* ── Stage bar ── */
.rlg-bar {
  position: relative; z-index: 4;
  width: 100%;
  display: flex;
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(255,255,255,0.055);
  border-bottom: 1px solid rgba(255,255,255,0.055);
  flex-shrink: 0;
  overflow: hidden;
}
.rlg-bar-item {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 6px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.25);
  border-right: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: color 0.4s, background 0.4s;
  white-space: nowrap;
  user-select: none;
}
.rlg-bar-item:last-child { border-right: none; }
.rlg-bar-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--dc);
  opacity: 0.25; flex-shrink: 0;
  transition: opacity 0.4s, box-shadow 0.4s, transform 0.3s;
}
.rlg-bar-item.rlg-bar-done   { color: rgba(255,255,255,0.45); }
.rlg-bar-item.rlg-bar-done .rlg-bar-dot { opacity: 0.55; }
.rlg-bar-item.rlg-bar-active { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.04); }
.rlg-bar-item.rlg-bar-active .rlg-bar-dot {
  opacity: 1; transform: scale(1.5);
  box-shadow: 0 0 10px var(--dc);
}

/* ── Scroll hint ── */
.rlg-hint {
  position: absolute; bottom: 52px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: opacity 0.5s ease;
}
.rlg-hint.rlg-hint-off { opacity: 0; pointer-events: none; }
.rlg-hint-arrow {
  font-size: 18px; color: rgba(0,229,255,0.5);
  animation: rlg-bounce 1.8s ease-in-out infinite;
}
.rlg-hint-txt {
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.2); font-weight: 600;
}
@keyframes rlg-bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .rlg-main {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 16px 0;
    padding: 12px 20px 0;
    justify-items: center;
  }
  .rlg-ring-box { width: clamp(220px, 55vw, 320px); height: clamp(220px, 55vw, 320px); }
  .rlg-content-area { justify-content: center; text-align: center; padding: 0; }
  .rlg-sp-chips { justify-content: center; }
  .rlg-sp-icon-wrap { justify-content: center; }
  .rlg-def-text { max-width: 100%; }
}

@media (max-width: 600px) {
  .rlg-bar { flex-wrap: wrap; }
  .rlg-bar-item { flex: 0 0 33.33%; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 10px; padding: 10px 4px; }
  .rlg-h2 { font-size: 20px; }
  .rlg-header { padding: 22px 16px 0; }
  .rlg-ring-box { width: clamp(200px, 70vw, 280px); height: clamp(200px, 70vw, 280px); }
}

@media (max-width: 380px) {
  .rlg-bar-item { font-size: 9px; padding: 8px 2px; }
  .rlg-bar-label { display: none; }
}

/*Circle Ring Section Stopper CSS by Rishabh Ends*/