/*Hero Section CSS By Rishabh Starts*/
/* ===== LOGIZENT QA HERO SECTION - CSS ===== */
/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Root Variables ── */
:root {
  --lzt-bg:        #0a0b0d;
  --lzt-surface:   #0f1115;
  --lzt-accent:    #e8920a;
  --lzt-accent2:   #f5a623;
  --lzt-green:     #22c55e;
  --lzt-text:      #f0ede8;
  --lzt-muted:     #7a7e8a;
  --lzt-border:    rgba(232, 146, 10, 0.18);
  --lzt-font-head: 'Syne', sans-serif;
  --lzt-font-mono: 'JetBrains Mono', monospace;
}

/* ── Section Wrap ── */
.lzt-hero-wrap {
  position: relative;
  width: 100%;
  min-height: 92vh;
  background: var(--lzt-bg);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
  box-sizing: border-box;
}

/* ── Canvas Background ── */
.lzt-canvas-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.55;
}

/* ── Grid Overlay ── */
.lzt-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(232, 146, 10, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 146, 10, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* ── Animated Scanning Lens ── */
.lzt-lens-ring {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 680px;
  height: 680px;
  z-index: 2;
  pointer-events: none;
  animation: lztLensFloat 6s ease-in-out infinite;
}

@keyframes lztLensFloat {
  0%, 100% { transform: translateY(-50%) translateX(0px); }
  50%       { transform: translateY(calc(-50% - 18px)) translateX(-10px); }
}

.lzt-lens-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 146, 10, 0.3);
  box-shadow:
    0 0 0 20px rgba(232, 146, 10, 0.03),
    0 0 0 40px rgba(232, 146, 10, 0.02),
    0 0 80px rgba(232, 146, 10, 0.08),
    inset 0 0 100px rgba(232, 146, 10, 0.04);
}

/* Second ring */
.lzt-lens-inner::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(232, 146, 10, 0.15);
}

/* Third ring */
.lzt-lens-inner::after {
  content: '';
  position: absolute;
  inset: 100px;
  border-radius: 50%;
  border: 1px dashed rgba(232, 146, 10, 0.1);
  animation: lztSpin 12s linear infinite;
}

@keyframes lztSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Crosshairs */
.lzt-lens-cross {
  position: absolute;
  background: rgba(232, 146, 10, 0.2);
}
.lzt-cross-h {
  top: 50%; left: 10%;
  width: 80%; height: 1px;
  transform: translateY(-50%);
}
.lzt-cross-v {
  left: 50%; top: 10%;
  height: 80%; width: 1px;
  transform: translateX(-50%);
}

/* Corner Arcs */
.lzt-lens-arc {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(232, 146, 10, 0.5);
}
.lzt-arc-tl { top: 60px; left: 60px; border-right: none; border-bottom: none; border-radius: 6px 0 0 0; }
.lzt-arc-tr { top: 60px; right: 60px; border-left: none; border-bottom: none; border-radius: 0 6px 0 0; }
.lzt-arc-bl { bottom: 60px; left: 60px; border-right: none; border-top: none; border-radius: 0 0 0 6px; }
.lzt-arc-br { bottom: 60px; right: 60px; border-left: none; border-top: none; border-radius: 0 0 6px 0; }

/* Scanning Line */
.lzt-lens-scan {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
}
.lzt-lens-scan::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 2px;
  height: 50%;
  background: linear-gradient(to bottom, rgba(232, 146, 10, 0.0), rgba(232, 146, 10, 0.7));
  transform-origin: bottom center;
  animation: lztRadar 3s linear infinite;
}

@keyframes lztRadar {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Center Dot */
.lzt-lens-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  background: var(--lzt-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px var(--lzt-accent);
  animation: lztPulse 2s ease-in-out infinite;
}

@keyframes lztPulse {
  0%, 100% { box-shadow: 0 0 10px var(--lzt-accent); transform: translate(-50%, -50%) scale(1); }
  50%       { box-shadow: 0 0 30px var(--lzt-accent); transform: translate(-50%, -50%) scale(1.3); }
}

/* ── Floating Code Badges ── */
.lzt-badge {
  position: absolute;
  z-index: 4;
  background: rgba(15, 17, 21, 0.85);
  border: 1px solid rgba(232, 146, 10, 0.2);
  padding: 7px 14px;
  border-radius: 6px;
  font-family: var(--lzt-font-mono);
  font-size: 12px;
  color: var(--lzt-muted);
  display: flex;
  align-items: center;
  gap: 7px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.lzt-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.lzt-dot-g { background: var(--lzt-green); box-shadow: 0 0 6px var(--lzt-green); }
.lzt-dot-o { background: var(--lzt-accent); box-shadow: 0 0 6px var(--lzt-accent); }

.lzt-b1 { top: 18%; left: 58%; animation: lztBadgeFloat 5s ease-in-out infinite; }
.lzt-b2 { top: 32%; right: 5%;  animation: lztBadgeFloat 5s ease-in-out infinite 1s; }
.lzt-b3 { bottom: 28%; left: 56%; animation: lztBadgeFloat 5s ease-in-out infinite 2s; }
.lzt-b4 { bottom: 18%; right: 8%; animation: lztBadgeFloat 5s ease-in-out infinite 0.5s; }

@keyframes lztBadgeFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* ── Hero Content ── */
.lzt-hero-content {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  box-sizing: border-box;
}

/* Tag Line */
.lzt-tag-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lzt-font-mono);
  font-size: 12px;
  color: var(--lzt-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid rgba(232, 146, 10, 0.15);
  border-radius: 30px;
  background: rgba(232, 146, 10, 0.04);
}

.lzt-tag-dot {
  width: 6px; height: 6px;
  background: var(--lzt-accent);
  border-radius: 50%;
  animation: lztPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Main Heading */
.lzt-heading {
  font-family: Arial;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--lzt-text);
  margin: 0 0 22px;
}

.lzt-h-static {
  display: inline;
}

.lzt-h-accent {
  color: var(--lzt-accent);
}

.lzt-h-type {
  font-family: Arial;
  font-weight: 800;
  color: var(--lzt-text);
}

/* Blinking Cursor */
.lzt-cursor {
  color: var(--lzt-accent);
  font-weight: 300;
  animation: lztBlink 0.8s step-end infinite;
}

@keyframes lztBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Sub-text */
.lzt-subtext {
  font-family: var(--lzt-font-head);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  color: var(--lzt-muted);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 520px;
}

/* ── CTA Buttons ── */
.lzt-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.lzt-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lzt-accent);
  color: #0a0b0d;
  font-family: var(--lzt-font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.lzt-btn-primary:hover {
  background: var(--lzt-accent2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 146, 10, 0.3);
}

.lzt-btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--lzt-font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--lzt-text);
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid rgba(240, 237, 232, 0.2);
  border-radius: 8px;
  transition: all 0.25s ease;
}

.lzt-btn-ghost:hover {
  border-color: rgba(232, 146, 10, 0.5);
  color: var(--lzt-accent);
}

/* ── Stats Row ── */
.lzt-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.lzt-stat {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}

.lzt-stat-num {
  font-family: var(--lzt-font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--lzt-text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.lzt-stat-sym {
  font-family: var(--lzt-font-head);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--lzt-accent);
  line-height: 1;
  vertical-align: super;
}

.lzt-stat-label {
  font-family: var(--lzt-font-mono);
  font-size: 11px;
  color: var(--lzt-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.lzt-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(232, 146, 10, 0.15);
  margin-right: 40px;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .lzt-lens-ring {
    width: 480px;
    height: 480px;
    right: -80px;
  }
  .lzt-b1, .lzt-b2, .lzt-b3, .lzt-b4 { display: none; }
}

@media (max-width: 768px) {
  .lzt-hero-wrap {
    padding: 70px 0 50px;
    min-height: auto;
  }
  .lzt-lens-ring {
    width: 320px;
    height: 320px;
    right: -100px;
    opacity: 0.4;
  }
  .lzt-hero-content {
    padding: 0 24px;
  }
  .lzt-stats-row {
    gap: 24px;
  }
  .lzt-stat { padding-right: 0; }
  .lzt-stat-divider { display: none; }
  .lzt-cta-row { gap: 12px; }
  .lzt-btn-primary, .lzt-btn-ghost { font-size: 14px; padding: 12px 22px; }
}

@media (max-width: 480px) {
  .lzt-lens-ring { display: none; }
  .lzt-heading { font-size: 40px; }
  .lzt-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .lzt-stat-divider { display: none; }
}
/* ===== END CSS ===== */

/*Hero Section CSS By Rishabh Ends*/

/*Infinite section CSS by Rishabh Starts*/
/* ===== LOGIZENT QA INFINITE ROAD SECTION - CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --qrd-bg:        #080a0e;
  --qrd-accent:    #e8920a;
  --qrd-teal:      #0fa896;
  --qrd-blue:      #3b82f6;
  --qrd-text:      #f0ede8;
  --qrd-muted:     #626775;
  --qrd-border:    rgba(255,255,255,0.06);
  --qrd-fh:        'Syne', sans-serif;
  --qrd-fm:        'JetBrains Mono', monospace;
}

/* ── Section ── */
.qrd-section {
  position: relative;
  width: 100%;
  background: var(--qrd-bg);
  padding: 68px 0 0;
  overflow: hidden;
  box-sizing: border-box;
}

/* Top separator glow */
.qrd-section::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15,168,150,0.4), rgba(59,130,246,0.4), transparent);
}

/* BG canvas */
.qrd-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ── Header ── */
.qrd-header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 36px;
}

.qrd-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--qrd-fm);
  font-size: 11px;
  color: var(--qrd-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border: 1px solid rgba(15,168,150,0.2);
  border-radius: 40px;
  background: rgba(15,168,150,0.05);
  margin-bottom: 20px;
}

.qrd-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--qrd-teal);
  flex-shrink: 0;
  animation: qrdPulse 2s ease-in-out infinite;
}

@keyframes qrdPulse {
  0%,100%{ box-shadow:0 0 6px var(--qrd-teal); opacity:1; }
  50%    { box-shadow:0 0 16px var(--qrd-teal); opacity:0.6; }
}

.qrd-title {
  font-family: Arial;
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 800;
  color: var(--qrd-text);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 14px;
}

.qrd-title em {
  font-style: normal;
  color: var(--qrd-accent);
}

.qrd-desc {
  font-family: Arial;
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--qrd-muted);
  line-height: 1.75;
  margin: 0 auto;
  max-width: 580px;
}

/* ── Road Canvas Wrap ── */
.qrd-road-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  /* tall enough to show full ∞ */
  height: clamp(380px, 52vw, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qrd-road-canvas {
  display: block;
  width: 100%;
  height: 200%;
}

/* ── Feature Cards ── */
.qrd-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--qrd-border);
}

.qrd-card {
  position: relative;
  padding: 32px 26px 30px;
  border-right: 1px solid var(--qrd-border);
  overflow: hidden;
  cursor: default;
  transition: background 0.35s ease;
}

.qrd-card:last-child { border-right: none; }

/* Hover background bloom */
.qrd-card::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c, rgba(232,146,10,0.12)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.6);
  pointer-events: none;
}

.qrd-card:hover::before { opacity: 1; transform: scale(1); }
.qrd-card[data-color="#e8920a"]:hover { --c: rgba(232,146,10,0.1); }
.qrd-card[data-color="#0fa896"]:hover { --c: rgba(15,168,150,0.1); }
.qrd-card[data-color="#3b82f6"]:hover { --c: rgba(59,130,246,0.1); }
.qrd-card[data-color="#22c55e"]:hover { --c: rgba(34,197,94,0.1);  }
.qrd-card[data-color="#a855f7"]:hover { --c: rgba(168,85,247,0.1); }

/* card top row */
.qrd-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

/* icon box */
.qrd-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qrd-icon-amber  { color:#e8920a; background:rgba(232,146,10,0.1);  border-color:rgba(232,146,10,0.2);  }
.qrd-icon-teal   { color:#0fa896; background:rgba(15,168,150,0.1);  border-color:rgba(15,168,150,0.2);  }
.qrd-icon-blue   { color:#3b82f6; background:rgba(59,130,246,0.1);  border-color:rgba(59,130,246,0.2);  }
.qrd-icon-green  { color:#22c55e; background:rgba(34,197,94,0.1);   border-color:rgba(34,197,94,0.2);   }
.qrd-icon-purple { color:#a855f7; background:rgba(168,85,247,0.1);  border-color:rgba(168,85,247,0.2);  }

.qrd-card:hover .qrd-icon { transform: translateY(-5px); }
.qrd-card:hover .qrd-icon-amber  { box-shadow:0 8px 24px rgba(232,146,10,0.25); }
.qrd-card:hover .qrd-icon-teal   { box-shadow:0 8px 24px rgba(15,168,150,0.25); }
.qrd-card:hover .qrd-icon-blue   { box-shadow:0 8px 24px rgba(59,130,246,0.25); }
.qrd-card:hover .qrd-icon-green  { box-shadow:0 8px 24px rgba(34,197,94,0.25);  }
.qrd-card:hover .qrd-icon-purple { box-shadow:0 8px 24px rgba(168,85,247,0.25); }

/* number */
.qrd-card-num {
  font-family: var(--qrd-fm);
  font-size: 11px;
  color: rgba(255,255,255,0.12);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.qrd-card:hover .qrd-card-num { color: rgba(255,255,255,0.25); }

/* title */
.qrd-card-title {
  font-family: Arial;
  font-size: 15px;
  font-weight: 700;
  color: var(--qrd-text);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.qrd-card:hover .qrd-card-title { color: #fff; }

/* body */
.qrd-card-body {
  font-family: var(--qrd-fh);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--qrd-muted);
  line-height: 1.72;
  margin: 0 0 22px;
}

/* bottom color line */
.qrd-card-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(.22,1,.36,1);
  border-radius: 0;
}
.qrd-line-amber  { background: #e8920a; }
.qrd-line-teal   { background: #0fa896; }
.qrd-line-blue   { background: #3b82f6; }
.qrd-line-green  { background: #22c55e; }
.qrd-line-purple { background: #a855f7; }

.qrd-card:hover .qrd-card-line { transform: scaleX(1); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .qrd-cards { grid-template-columns: repeat(3, 1fr); }
  .qrd-card:nth-child(3) { border-right: none; }
  .qrd-card:nth-child(4), .qrd-card:nth-child(5) { border-top: 1px solid var(--qrd-border); }
  .qrd-card:nth-child(5) { border-right: none; }
}

@media (max-width: 768px) {
  .qrd-section { padding: 52px 0 0; }
  .qrd-cards { grid-template-columns: repeat(2, 1fr); }
  .qrd-card:nth-child(2n) { border-right: none; }
  .qrd-card:nth-child(n+3) { border-top: 1px solid var(--qrd-border); }
  .qrd-road-wrap { height: clamp(280px, 60vw, 420px); }
}

@media (max-width: 480px) {
  .qrd-cards { grid-template-columns: 1fr; }
  .qrd-card  { border-right: none; border-top: 1px solid var(--qrd-border); }
  .qrd-card:first-child { border-top: none; }
  .qrd-road-wrap { height: clamp(220px, 70vw, 320px); }
}
/* ===== END CSS ===== */

/*Infinite section CSS by Rishabh Ends*/

/*Graph Stopper section CSS by Rishabh Starts*/
/* =====================================================
   QA & TEST AUTOMATION — Process Section
   Class prefix: qaps__  (qa-process-section)
   Zero external dependency — drop-in safe
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&display=swap');

/* ---- reset (scoped) ---- */
.qaps__scroll-root *,
.qaps__scroll-root *::before,
.qaps__scroll-root *::after {
  box-sizing: border-box;
}

/* ====================================================
   SCROLL ROOT — tall container that creates the scroll
   ==================================================== */
.qaps__scroll-root {
  position: relative;
  /* 6 nodes + entry + exit = 8 × 100vh gives smooth pacing */
  height: 800vh;
  width: 100%;
}

/* ====================================================
   STICKY STAGE — pins to viewport while root scrolls
   ==================================================== */
.qaps__stage {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #08080f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  font-family: 'Syne', 'Helvetica Neue', Arial, sans-serif;
}

/* ====================================================
   AMBIENT GLOW BLOB (background atmosphere)
   ==================================================== */
.qaps__glow-blob {
  position: absolute;
  width: 800px;
  height: 560px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  background: radial-gradient(ellipse, rgba(61,107,255,.18) 0%, transparent 70%);
  transition: background 1s ease, left 1s ease;
  z-index: 0;
}

/* ====================================================
   HEADING BLOCK
   ==================================================== */
.qaps__head {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 23px 24px 32px;
}

.qaps__head h2 {
  font-family: 'poppins', sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 14px;
}

.qaps__head p {
  font-family: 'Syne', sans-serif;
  font-size: clamp(.82rem, 1.25vw, .96rem);
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, .42);
  max-width: 540px;
  margin: 0 auto;
  letter-spacing: .012em;
}

/* ====================================================
   DIAGRAM CONTAINER
   ==================================================== */
.qaps__diagram {
  position: relative;
  z-index: 2;
  width: 100%;
  /* flex fill remaining height in the stage */
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

/* ====================================================
   PHASE LABELS ROW
   ==================================================== */
.qaps__phases-row {
  position: absolute;
  top: 6px;
  left: 2.5%;
  right: 2%;
  height: 100px;
  pointer-events: none;
  z-index: 3;
}

.qaps__ph {
  position: absolute;
  width: 16%;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .5s ease, transform .5s ease;
}

.qaps__ph.on {
  opacity: 1;
  transform: translateY(0);
}

.qaps__ph-name {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-left: 2px solid;
  padding-left: 7px;
  line-height: 1;
  margin-bottom: 9px;
}

.qaps__ph-name.c-blue   { color: #5c87ff; border-color: #5c87ff; }
.qaps__ph-name.c-violet { color: #9f6fff; border-color: #9f6fff; }
.qaps__ph-name.c-pink   { color: #e8547a; border-color: #e8547a; }
.qaps__ph-name.c-orange { color: #f0922a; border-color: #f0922a; }

.qaps__ph ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qaps__ph ul li {
  font-family: 'Syne', sans-serif;
  font-size: .62rem;
  color: rgba(255, 255, 255, .48);
  line-height: 1.8;
  padding-left: 12px;
  position: relative;
}

.qaps__ph ul li::before {
  content: '·';
  position: absolute;
  left: 3px;
  color: rgba(255, 255, 255, .3);
  font-size: .7rem;
  top: 0;
}

/* ====================================================
   SVG
   ==================================================== */
.qaps__svg {
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 0;
  display: block;
  overflow: visible;
}

/* SVG element transitions */
.qaps-node-circle {
  transition: opacity .7s ease, filter .7s ease;
}

.qaps-node-label {
  transition: fill .6s ease;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  letter-spacing: .035em;
  pointer-events: none;
}

.qaps-dot {
  transition: r .4s ease, opacity .5s ease;
}

.qaps-arc {
  transition: stroke .7s ease, opacity .7s ease;
}

.qaps-space-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  fill: rgba(255, 255, 255, .22);
  letter-spacing: .06em;
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 900px) {
  .qaps__scroll-root { height: 900vh; }

  .qaps__diagram {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .qaps__svg     { min-width: 760px; }
  .qaps__phases-row { min-width: 760px; }

  .qaps__head h2 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .qaps__scroll-root { height: 1000vh; }
  .qaps__head { padding-bottom: 20px; }
}

/*Graph Stopper section CSS by Rishabh Ends*/

/*CTA Section CSS By Rishabh Starts*/
/* =====================================================
   QA CTA SECTION — cta-section.css
   Prefix: qacta__
   Zero conflicts. Drop-in safe.
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ── Variables ── */
.qacta__root {
  --qacta-bg:         #06060d;
  --qacta-surface:    #0c0c18;
  --qacta-border:     rgba(255,255,255,.07);
  --qacta-blue:       #3d6bff;
  --qacta-violet:     #7c3fff;
  --qacta-cyan:       #00e5ff;
  --qacta-green:      #00e676;
  --qacta-red:        #ff3d6b;
  --qacta-orange:     #f0922a;
  --qacta-text:       #ffffff;
  --qacta-muted:      rgba(255,255,255,.42);
  --qacta-mono:       'JetBrains Mono', 'Courier New', monospace;
  --qacta-sans:       'Syne', 'Helvetica Neue', Arial, sans-serif;
}

/* ── Root ── */
.qacta__root {
  position: relative;
  width: 100%;
  background: var(--qacta-bg);
  overflow: hidden;
  padding: 100px 0 110px;
  font-family: var(--qacta-sans);
  color: var(--qacta-text);
  isolation: isolate;
}

/* ── Canvas (neural grid + particles) ── */
.qacta__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .55;
}

/* ── Scanlines ── */
.qacta__scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,.18) 3px,
    rgba(0,0,0,.18) 4px
  );
  animation: qacta-scan 8s linear infinite;
}
@keyframes qacta-scan {
  0%   { background-position-y: 0; }
  100% { background-position-y: 4px; }
}

/* ── Grain texture ── */
.qacta__grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 1;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: qacta-grain 0.4s steps(1) infinite;
}
@keyframes qacta-grain {
  0%,100% { transform: translate(0,0); }
  10%     { transform: translate(-2%,-3%); }
  20%     { transform: translate(2%,3%); }
  30%     { transform: translate(-3%,1%); }
  40%     { transform: translate(3%,-2%); }
  50%     { transform: translate(-1%,4%); }
  60%     { transform: translate(1%,-1%); }
  70%     { transform: translate(-4%,2%); }
  80%     { transform: translate(4%,-3%); }
  90%     { transform: translate(-2%,1%); }
}

/* ── HUD corner brackets ── */
.qacta__hud {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 2;
  pointer-events: none;
  opacity: .35;
}
.qacta__hud--tl { top: 18px; left: 18px;
  border-top: 1.5px solid var(--qacta-cyan);
  border-left: 1.5px solid var(--qacta-cyan); }
.qacta__hud--tr { top: 18px; right: 18px;
  border-top: 1.5px solid var(--qacta-cyan);
  border-right: 1.5px solid var(--qacta-cyan); }
.qacta__hud--bl { bottom: 18px; left: 18px;
  border-bottom: 1.5px solid var(--qacta-cyan);
  border-left: 1.5px solid var(--qacta-cyan); }
.qacta__hud--br { bottom: 18px; right: 18px;
  border-bottom: 1.5px solid var(--qacta-cyan);
  border-right: 1.5px solid var(--qacta-cyan); }

/* ── Inner grid ── */
.qacta__inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ============================================================
   TERMINAL WINDOW
   ============================================================ */
.qacta__terminal {
  background: rgba(10, 10, 20, .82);
  border: 1px solid rgba(61, 107, 255, .22);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(61,107,255,.08),
    0 32px 80px rgba(0,0,0,.6),
    0 0 80px rgba(61,107,255,.06) inset;
  animation: qacta-term-in 1s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .2s;
}
@keyframes qacta-term-in {
  from { opacity:0; transform: translateY(32px) scale(.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}

/* Chrome bar */
.qacta__term-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: rgba(255,255,255,.035);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.qacta__term-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.qacta__term-dot--r { background: #ff5f57; }
.qacta__term-dot--y { background: #febc2e; }
.qacta__term-dot--g { background: #28c840; }

.qacta__term-title {
  font-family: var(--qacta-mono);
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  margin-left: 8px;
  flex: 1;
  letter-spacing: .04em;
}
.qacta__blink-cursor {
  animation: qacta-blink .8s step-end infinite;
  color: var(--qacta-cyan);
}
@keyframes qacta-blink {
  0%,100% { opacity:1; }
  50%     { opacity:0; }
}
.qacta__term-badge {
  font-family: var(--qacta-mono);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--qacta-green);
  border: 1px solid rgba(0,230,118,.3);
  border-radius: 4px;
  padding: 2px 8px;
  animation: qacta-badge-pulse 2.4s ease-in-out infinite;
}
@keyframes qacta-badge-pulse {
  0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(0,230,118,0); }
  50%     { opacity:.75; box-shadow: 0 0 8px 2px rgba(0,230,118,.2); }
}

/* Terminal body */
.qacta__term-body {
  height: 280px;
  overflow: hidden;
  padding: 16px 18px 12px;
  font-family: var(--qacta-mono);
  font-size: .72rem;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  position: relative;
  /* subtle top fade for scroll illusion */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

/* Individual log lines */
.qacta__log-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
  animation: qacta-line-in .25s ease both;
}
@keyframes qacta-line-in {
  from { opacity:0; transform: translateX(-6px); }
  to   { opacity:1; transform: translateX(0); }
}

.qacta__log-ts {
  color: rgba(255,255,255,.22);
  flex-shrink: 0;
  font-size: .65rem;
}
.qacta__log-tag {
  font-weight: 700;
  font-size: .65rem;
  border-radius: 3px;
  padding: 1px 5px;
  flex-shrink: 0;
}
.qacta__log-tag--pass { color: var(--qacta-green);  background: rgba(0,230,118,.1); }
.qacta__log-tag--fail { color: var(--qacta-red);    background: rgba(255,61,107,.1); }
.qacta__log-tag--run  { color: var(--qacta-cyan);   background: rgba(0,229,255,.08); }
.qacta__log-tag--warn { color: var(--qacta-orange); background: rgba(240,146,42,.1); }
.qacta__log-tag--info { color: var(--qacta-muted);  background: rgba(255,255,255,.05); }
.qacta__log-tag--ai   { color: var(--qacta-violet); background: rgba(124,63,255,.12); }

.qacta__log-msg { color: rgba(255,255,255,.62); overflow: hidden; text-overflow: ellipsis; }
.qacta__log-msg--pass { color: rgba(0,230,118,.85); }
.qacta__log-msg--fail { color: rgba(255,61,107,.85); }
.qacta__log-msg--ai   { color: rgba(124,63,255,.9); }

/* Stats bar */
.qacta__term-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 18px;
  background: rgba(255,255,255,.025);
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.qacta__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.qacta__stat-val {
  font-family: var(--qacta-mono);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
.qacta__stat-val--pass { color: var(--qacta-green); }
.qacta__stat-val--fail { color: var(--qacta-red); }
.qacta__stat-val--cov  { color: var(--qacta-cyan); }
.qacta__stat-lbl {
  font-family: var(--qacta-mono);
  font-size: .55rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  margin-top: 3px;
}
.qacta__stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.08);
}
.qacta__progress-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.06);
}
.qacta__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--qacta-blue), var(--qacta-violet), var(--qacta-cyan));
  transition: width .4s ease;
  box-shadow: 0 0 10px var(--qacta-cyan);
}

/* ============================================================
   COPY SIDE
   ============================================================ */
.qacta__copy {
  animation: qacta-copy-in 1s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .4s;
}
@keyframes qacta-copy-in {
  from { opacity:0; transform: translateX(24px); }
  to   { opacity:1; transform: translateX(0); }
}

/* Eyebrow */
.qacta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--qacta-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--qacta-cyan);
  margin-bottom: 22px;
}
.qacta__eye-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--qacta-cyan);
  box-shadow: 0 0 10px var(--qacta-cyan);
  animation: qacta-dot-pulse 2s ease-in-out infinite;
}
@keyframes qacta-dot-pulse {
  0%,100% { transform: scale(1); opacity:1; }
  50%     { transform: scale(1.5); opacity:.6; }
}

/* Headline */
.qacta__headline {
  font-family: 'poppins', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 22px;
}

/* Animated cycling word */
.qacta__word-cycle {
  display: inline-block;
  color: var(--qacta-cyan);
  position: relative;
  white-space: nowrap;
  transition: opacity .2s ease;
}
.qacta__word-cycle::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--qacta-cyan), var(--qacta-violet));
  border-radius: 2px;
  transform-origin: left;
  animation: qacta-underline 3.2s ease-in-out infinite;
}
@keyframes qacta-underline {
  0%,10%  { transform: scaleX(0); }
  30%,80% { transform: scaleX(1); }
  100%    { transform: scaleX(0); }
}

/* Sub */
.qacta__sub {
  font-family: var(--qacta-sans);
  font-size: clamp(.85rem, 1.2vw, .98rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,.48);
  margin-bottom: 36px;
  max-width: 480px;
  letter-spacing: .008em;
}

/* Metrics */
.qacta__metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}
.qacta__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.qacta__metric-num {
  font-family: var(--qacta-mono);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -.02em;
}
.qacta__metric-unit {
  font-family: var(--qacta-mono);
  font-size: 1.1rem;
  color: var(--qacta-cyan);
  vertical-align: super;
  font-weight: 700;
}
.qacta__metric-lbl {
  font-family: var(--qacta-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  display: block;
}

/* CTA Buttons */
.qacta__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.qacta__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--qacta-sans);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: 10px;
  padding: 14px 28px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .3s ease;
  overflow: hidden;
}

/* Primary button */
.qacta__btn--primary {
  background: linear-gradient(135deg, var(--qacta-blue) 0%, var(--qacta-violet) 100%);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(61,107,255,0);
}
.qacta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(61,107,255,.45), 0 0 0 1px rgba(124,63,255,.4);
}
.qacta__btn--primary:hover .qacta__btn-glow {
  opacity: 1;
}

/* Animated glow sweep on hover */
.qacta__btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity .1s ease;
  animation: qacta-btn-sweep 2.8s ease-in-out infinite;
}
@keyframes qacta-btn-sweep {
  0%   { transform: translateX(-100%); }
  40%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.qacta__btn-arrow {
  transition: transform .2s ease;
  flex-shrink: 0;
}
.qacta__btn--primary:hover .qacta__btn-arrow {
  transform: translateX(4px);
}

/* Ghost button */
.qacta__btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.18);
}
.qacta__btn--ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,.45);
  transform: translateY(-2px);
  background: rgba(255,255,255,.05);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .qacta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 28px;
  }
  .qacta__terminal { order: 2; }
  .qacta__copy     { order: 1; }
  .qacta__root { padding: 72px 0 80px; }
}

@media (max-width: 600px) {
  .qacta__root { padding: 56px 0 64px; }
  .qacta__inner { padding: 0 20px; gap: 36px; }
  .qacta__term-body { height: 220px; }
  .qacta__metrics { gap: 20px; }
  .qacta__metric-num { font-size: 1.4rem; }
  .qacta__actions { flex-direction: column; align-items: flex-start; }
  .qacta__btn { width: 100%; justify-content: center; }
}

/*CTA Section CSS By Rishabh Ends*/