/* ============================================================
   AI LAB TECHNOLOGIES — Premium Enterprise About Hero Styles
   File: css/about-hero.css
   ============================================================ */

/* ---- SECTION CONTAINER ---- */
.about-hero-section {
  position: relative;
  padding: 0 0 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  color: var(--accent-900);
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Dark Theme Override */
body.dark-theme .about-hero-section {
  background: linear-gradient(135deg, #070a12 0%, #0f172a 50%, #141c2e 100%);
  color: #ffffff;
}

/* ---- BACKGROUND LIGHTING & GRID ---- */
.about-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}

.about-hero-glow.glow-blue {
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.18);
}

.about-hero-glow.glow-red {
  bottom: -10%;
  right: -5%;
  width: 550px;
  height: 550px;
  background: rgba(223, 42, 25, 0.16);
}

.about-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 2;
}

body.dark-theme .about-hero-grid-bg {
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* Neural Network Particle Canvas */
#about-neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  opacity: 0.6;
}

/* Z-INDEX LAYER FOR CONTENT */
.about-hero-section .container {
  position: relative;
  z-index: 10;
}

/* ---- BREADCRUMB ---- */
.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

body.dark-theme .about-breadcrumb {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

.about-breadcrumb a {
  color: var(--accent-600);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

body.dark-theme .about-breadcrumb a {
  color: #cbd5e1;
}

.about-breadcrumb a:hover {
  color: var(--primary);
}

.about-breadcrumb .sep {
  font-size: 9px;
  color: var(--accent-500);
  opacity: 0.6;
}

.about-breadcrumb .current {
  color: var(--primary);
  font-weight: 700;
}

/* ---- SPLIT LAYOUT GRID ---- */
.about-hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
}

/* ---- LEFT COLUMN ---- */
.about-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Glass Pill Badge */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(223, 42, 25, 0.08);
  border: 1px solid rgba(223, 42, 25, 0.25);
  border-radius: 50px;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
}

body.dark-theme .about-badge {
  background: rgba(223, 42, 25, 0.15);
  border-color: rgba(223, 42, 25, 0.35);
}

.about-badge .badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.about-badge .badge-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Headline */
.about-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: var(--accent-900);
}

body.dark-theme .about-hero-title {
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #e11d48 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-enterprise-ai {
  background: linear-gradient(135deg, #df2a19 0%, #ff3b30 45%, #b91c1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
}

/* Concise Description */
.about-hero-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--accent-600);
  margin-bottom: 20px;
  max-width: 580px;
}

body.dark-theme .about-hero-desc {
  color: #94a3b8;
}

/* CTA Buttons */
.about-hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-glow {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff !important;
  border-radius: 12px;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(223, 42, 25, 0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(223, 42, 25, 0.48);
}

.btn-outline-glass {
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  color: var(--accent-900) !important;
  border-radius: 12px;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

body.dark-theme .btn-outline-glass {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
}

.btn-outline-glass:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  transform: translateY(-3px);
  background: rgba(223, 42, 25, 0.05);
}

/* Trust Badges Grid */


/* ---- RIGHT COLUMN (VISUAL COMPOSITION) ---- */
.about-hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Holographic Globe Container - Positioned to Left Side with Sleek Depth */
.hologram-globe-container {
  position: absolute;
  top: 15px;
  left: -20px;
  width: 420px;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(223, 42, 25, 0.05) 60%, transparent 70%);
}

.globe-sphere {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1.5px dashed rgba(59, 130, 246, 0.35);
  animation: rotateSphere 25s linear infinite;
}

@keyframes rotateSphere {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.25);
  pointer-events: none;
}

.globe-ring.ring-1 {
  width: 390px;
  height: 390px;
  border: 1.5px solid rgba(223, 42, 25, 0.45);
  transform: rotateX(70deg) rotateY(15deg);
  animation: spinRing1 18s linear infinite;
  box-shadow: 0 0 15px rgba(223, 42, 25, 0.22);
}

.globe-ring.ring-2 {
  width: 420px;
  height: 420px;
  border: 2px dashed rgba(0, 242, 254, 0.65);
  transform: rotateX(60deg) rotateY(-30deg);
  animation: spinRing2 22s linear infinite reverse;
  box-shadow: 0 0 18px rgba(0, 242, 254, 0.28);
}

.globe-ring.ring-3 {
  width: 450px;
  height: 450px;
  border: 1.5px solid rgba(147, 51, 234, 0.4);
  transform: rotateX(45deg) rotateY(45deg);
  animation: spinRing1 30s linear infinite;
  box-shadow: 0 0 15px rgba(147, 51, 234, 0.22);
}

@keyframes spinRing1 {
  from { transform: rotateX(70deg) rotateZ(0deg); }
  to { transform: rotateX(70deg) rotateZ(360deg); }
}

@keyframes spinRing2 {
  from { transform: rotateX(60deg) rotateZ(0deg); }
  to { transform: rotateX(60deg) rotateZ(360deg); }
}

/* Hologram Map Image Overlay - Sleek Holographic Depth & Blended Edges */
.hologram-map-img {
  width: 340px;
  height: auto;
  object-fit: contain;
  opacity: 0.82;
  filter: drop-shadow(0 8px 22px rgba(59, 130, 246, 0.4));
  mix-blend-mode: multiply;
  mask-image: radial-gradient(circle, black 52%, transparent 88%);
  -webkit-mask-image: radial-gradient(circle, black 52%, transparent 88%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

body.dark-theme .hologram-map-img {
  opacity: 0.85;
  filter: drop-shadow(0 0 24px rgba(59, 130, 246, 0.85));
  mix-blend-mode: screen;
}

@keyframes pulseMap {
  0% { opacity: 0.65; transform: scale(0.99); }
  100% { opacity: 0.80; transform: scale(1.01); }
}

/* SVG Network overlay */
.network-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.network-arc {
  fill: none;
  stroke: url(#arcGradSgMy);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 6, 4;
  animation: dashArc 20s linear infinite;
}

.network-arc.arc-sg-in {
  stroke: url(#arcGradSgIn);
}

@keyframes dashArc {
  to { stroke-dashoffset: -100; }
}

.pulse-signal {
  fill: #00f2fe;
  filter: drop-shadow(0 0 6px #00f2fe);
}

.pulse-signal.signal-2 {
  fill: var(--primary);
  filter: drop-shadow(0 0 6px var(--primary));
}

/* Location Node Markers */
.node-ripple {
  fill: rgba(223, 42, 25, 0.2);
  animation: rippleNode 2s infinite ease-out;
}

@keyframes rippleNode {
  0% { r: 4; opacity: 1; }
  100% { r: 16; opacity: 0; }
}

.node-core {
  fill: #00f2fe;
  stroke: #ffffff;
  stroke-width: 2;
}

.node-core.hq-core {
  fill: var(--primary);
  r: 7;
}

.node-label {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 800;
  fill: #0f172a;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 6px rgba(255, 255, 255, 1), 0 0 8px rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

body.dark-theme .node-label {
  fill: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.95), 0 0 10px rgba(0, 0, 0, 0.9);
}

.node-label.hq-label {
  fill: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

/* Active Node Highlight during AILA Presentation (Cyan / Electric Blue Glow) */
.location-node.active-pulse .node-core {
  fill: #00f2fe !important;
  r: 8 !important;
  filter: drop-shadow(0 0 14px #00f2fe);
}

.location-node.active-pulse .node-ripple {
  fill: rgba(0, 242, 254, 0.5) !important;
  animation: activeRipple 1.2s infinite ease-out !important;
}

.location-node.active-pulse .node-label {
  fill: var(--primary) !important;
  font-size: 12.5px !important;
  font-weight: 900 !important;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.8), 0 1px 6px rgba(255, 255, 255, 1) !important;
}

@keyframes activeRipple {
  0% { r: 6; opacity: 1; }
  100% { r: 22; opacity: 0; }
}

/* 3D AI Assistant & Dynamic Speech Bubble Container - Positioned Side-by-Side */
.ai-assistant-container {
  position: absolute;
  top: 110px;
  right: 15px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Glass Speech Bubble Positioned Safely Directly Above AILA Head */
.ai-speech-bubble {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(223, 42, 25, 0.22);
  border-radius: 16px;
  padding: 10px 14px;
  width: 225px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: floatBubble 5s ease-in-out infinite;
  transition: all 0.3s ease;
  z-index: 15;
}

body.dark-theme .ai-speech-bubble {
  background: rgba(15, 23, 42, 0.94);
  border-color: rgba(147, 51, 234, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.speech-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.speech-status-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.speech-time-greeting {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.speech-message {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--accent-900);
  margin: 0;
}

body.dark-theme .speech-message {
  color: #e2e8f0;
}

.speech-pointer {
  position: absolute;
  bottom: -6px;
  right: 45px;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-right: 1px solid rgba(223, 42, 25, 0.22);
  border-bottom: 1px solid rgba(223, 42, 25, 0.22);
  transform: rotate(45deg);
}

body.dark-theme .speech-pointer {
  background: rgba(15, 23, 42, 0.94);
  border-color: rgba(147, 51, 234, 0.35);
}

/* Friendly AI Robot Assistant Wrapper - Full 3D Body */
.ai-robot-wrapper {
  position: relative;
  width: 215px;
  pointer-events: none;
}

.ai-robot-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}

.float-wave-anim {
  animation: robotFloatWave 4.8s ease-in-out infinite;
}

body.dark-theme .ai-robot-img {
  mix-blend-mode: normal;
  filter: drop-shadow(0 15px 35px rgba(59, 130, 246, 0.4));
}

.robot-glow {
  position: absolute;
  bottom: -10px;
  left: 20%;
  width: 60%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(223, 42, 25, 0.3) 0%, transparent 70%);
  filter: blur(8px);
  z-index: -1;
  animation: shadowPulse 4.8s ease-in-out infinite;
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes robotFloatWave {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(1deg); }
  50% { transform: translateY(-12px) rotate(0deg); }
  75% { transform: translateY(-6px) rotate(-1deg); }
}

@keyframes shadowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(0.8); opacity: 0.3; }
}

/* ---- FLOATING GLASSMORPHISM STATISTIC CARDS ---- */
.glass-stat-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.dark-theme .glass-stat-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.glass-stat-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}



@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.stat-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.icon-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

.icon-red {
  background: rgba(223, 42, 25, 0.12);
  color: var(--primary);
}

.icon-green {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.icon-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--accent-900);
}

body.dark-theme .stat-number {
  color: #ffffff;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-500);
  white-space: nowrap;
}

body.dark-theme .stat-label {
  color: #94a3b8;
}

/* ---- RESPONSIVE MEDIA QUERIES ---- */
@media (max-width: 1024px) {
  .about-hero-split {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-hero-left {
    align-items: center;
    text-align: center;
  }

  .about-hero-desc {
    max-width: 100%;
  }

  .about-hero-ctas {
    justify-content: center;
  }

  .about-trust-badges {
    max-width: 100%;
  }

  .stat-card-1 { left: 10px; }
  .stat-card-2 { left: 10px; }
  .stat-card-3 { right: 10px; }
  .stat-card-4 { right: 10px; }
}

@media (max-width: 640px) {
  .about-hero-section {
    padding: 50px 0 70px;
  }

  .about-trust-badges {
    grid-template-columns: 1fr;
  }

  .about-hero-visual-wrapper {
    height: 440px;
  }

  .hologram-globe-container {
    width: 300px;
    height: 300px;
  }

  .ai-robot-wrapper {
    width: 180px;
    right: 10px;
  }

  .glass-stat-card {
    padding: 8px 12px;
  }

  .stat-number {
    font-size: 16px;
  }

  .stat-label {
    font-size: 11px;
  }
}
/* ============================================================
   AI LAB TECHNOLOGIES — Premium Enterprise "Who We Are" Section
   File: css/who-we-are.css
   ============================================================ */

/* ---- SECTION CONTAINER ---- */
.who-we-are-section {
  position: relative;
  padding: 50px 0 60px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--accent-900);
  overflow: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

body.dark-theme .who-we-are-section {
  background: linear-gradient(180deg, #0b0f19 0%, #070a12 100%);
  color: #ffffff;
}

/* Background Ambient Lighting Glows */
.who-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 1;
}

.who-glow.glow-cyan {
  top: 10%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: rgba(0, 242, 254, 0.12);
}

.who-glow.glow-purple {
  bottom: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(147, 51, 234, 0.12);
}

/* Grid Layout */
.who-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* ---- LEFT COLUMN: Header & 4 Interactive Glass Cards ---- */
.who-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.who-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(223, 42, 25, 0.08);
  border: 1px solid rgba(223, 42, 25, 0.2);
  border-radius: 20px;
  margin-bottom: 16px;
}

body.dark-theme .who-badge {
  background: rgba(223, 42, 25, 0.15);
  border-color: rgba(223, 42, 25, 0.35);
}

.who-badge .badge-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.who-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: var(--accent-900);
  margin-bottom: 16px;
}

body.dark-theme .who-title {
  color: #ffffff;
}

.who-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: var(--accent-600);
  margin-bottom: 28px;
}

body.dark-theme .who-subtitle {
  color: #94a3b8;
}

/* 4 Feature Cards Grid */
.who-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  margin-bottom: 30px;
}

.who-feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 18px 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  cursor: pointer;
}

body.dark-theme .who-feature-card {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.who-feature-card:hover,
.who-feature-card.active {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(223, 42, 25, 0.18);
}

body.dark-theme .who-feature-card:hover,
body.dark-theme .who-feature-card.active {
  border-color: #00f2fe;
  box-shadow: 0 12px 30px rgba(0, 242, 254, 0.22);
}

.feature-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(223, 42, 25, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 12px;
}

body.dark-theme .feature-icon-box {
  background: rgba(0, 242, 254, 0.12);
  color: #00f2fe;
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-900);
  margin-bottom: 6px;
}

body.dark-theme .feature-card-title {
  color: #ffffff;
}

.feature-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--accent-600);
  margin: 0;
}

body.dark-theme .feature-card-desc {
  color: #94a3b8;
}

/* ---- Capability Checklist ---- */
.who-check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.who-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(223, 42, 25, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: all 0.3s ease;
}

body.dark-theme .check-icon {
  background: rgba(0, 242, 254, 0.14);
  color: #00f2fe;
}

.check-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--accent-800);
}

body.dark-theme .check-text {
  color: #cbd5e1;
}

.who-check-item:hover .check-icon {
  transform: scale(1.12);
  background: var(--primary);
  color: #ffffff;
}

body.dark-theme .who-check-item:hover .check-icon {
  background: #00f2fe;
  color: #070a12;
}

/* ---- RIGHT COLUMN: Dynamic AI Ecosystem Graphic & AILA Presenter ---- */
.who-right-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.who-ecosystem-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 300px;
}

/* Glass Ecosystem Core Platform Card */
.ecosystem-glass-card {
  position: absolute;
  top: 30px;
  left: 0;
  width: 380px;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  z-index: 5;
}

body.dark-theme .ecosystem-glass-card {
  background: rgba(15, 23, 42, 0.82);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
}

.ecosystem-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.dark-theme .ecosystem-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.ecosystem-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

body.dark-theme .ecosystem-tag {
  color: #00f2fe;
}

.ecosystem-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

/* Connected Ecosystem Nodes Grid */
.ecosystem-nodes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.eco-node-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(241, 245, 249, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

body.dark-theme .eco-node-item {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(255, 255, 255, 0.06);
}

.eco-node-item:hover,
.eco-node-item.active {
  background: rgba(59, 130, 246, 0.12);
  border-color: var(--primary);
}

body.dark-theme .eco-node-item:hover,
body.dark-theme .eco-node-item.active {
  background: rgba(0, 242, 254, 0.15);
  border-color: #00f2fe;
}

.eco-node-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(223, 42, 25, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

body.dark-theme .eco-node-icon {
  background: rgba(0, 242, 254, 0.15);
  color: #00f2fe;
}

.eco-node-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-800);
}

body.dark-theme .eco-node-text {
  color: #e2e8f0;
}

/* Floating 3D AI Presenter AILA Positioned on Right of Card */
.who-robot-container {
  position: absolute;
  top: 40px;
  right: -10px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Speech Bubble above AILA */
.who-speech-bubble {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  width: 220px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(223, 42, 25, 0.22);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 15;
}

body.dark-theme .who-speech-bubble {
  background: rgba(15, 23, 42, 0.94);
  border-color: rgba(147, 51, 234, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.who-speech-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.who-speech-greeting {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.who-speech-msg {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--accent-900);
  margin: 0;
}

body.dark-theme .who-speech-msg {
  color: #e2e8f0;
}

.who-speech-pointer {
  position: absolute;
  bottom: -6px;
  right: 40px;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-right: 1px solid rgba(223, 42, 25, 0.22);
  border-bottom: 1px solid rgba(223, 42, 25, 0.22);
  transform: rotate(45deg);
}

body.dark-theme .who-speech-pointer {
  background: rgba(15, 23, 42, 0.94);
  border-color: rgba(147, 51, 234, 0.35);
}

.who-robot-wrapper {
  position: relative;
  width: 180px;
  pointer-events: none;
}

.who-robot-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(59, 130, 246, 0.3));
  animation: whoRobotFloat 4s ease-in-out infinite;
}

@keyframes whoRobotFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* YouTube Video Showcase Card in Right Column */
.who-video-card {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(223, 42, 25, 0.18);
  border-radius: 20px;
  padding: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  z-index: 6;
}

body.dark-theme .who-video-card {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
}

.who-video-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(223, 42, 25, 0.22);
}

body.dark-theme .who-video-card:hover {
  border-color: #00f2fe;
  box-shadow: 0 20px 50px rgba(0, 242, 254, 0.28);
}

.video-responsive-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #070a12;
  cursor: pointer;
}

.video-responsive-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
}

/* Poster + Play Button Facade (iframe loads only on click) */
.video-poster-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.who-video-card:hover .video-poster-img {
  transform: scale(1.04);
  filter: brightness(0.85);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 50px;
  padding: 0;
  border: none;
  border-radius: 14px;
  background: rgba(223, 42, 25, 0.95);
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(223, 42, 25, 0.45);
  transition: all 0.3s ease;
  z-index: 2;
}

.video-play-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 18px;
  border: 2px solid rgba(223, 42, 25, 0.45);
  animation: videoPlayPulse 2.2s ease-out infinite;
}

.video-play-btn:hover,
.video-play-btn:focus-visible {
  transform: translate(-50%, -50%) scale(1.1);
  background: #ff0000;
  box-shadow: 0 12px 32px rgba(255, 0, 0, 0.55);
  outline: none;
}

@keyframes videoPlayPulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

.video-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px 4px;
}

.video-title-tag {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-900);
  display: flex;
  align-items: center;
  gap: 8px;
}

body.dark-theme .video-title-tag {
  color: #ffffff;
}

.video-live-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Responsive Grid Adjustments */
@media (max-width: 991px) {
  .who-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .who-features-grid {
    grid-template-columns: 1fr;
  }

  .who-check-list {
    grid-template-columns: 1fr;
  }

  .who-right-visual {
    margin-top: 20px;
    flex-direction: column;
  }

  .who-ecosystem-wrapper {
    height: 340px;
  }
}
/* ============================================================
   AI LAB TECHNOLOGIES — Interactive Enterprise AI Roadmap
   File: css/our-story.css
   ============================================================ */

/* ---- SECTION CONTAINER ---- */
.our-story-section {
  position: relative;
  padding: 20px 0 25px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #ffffff 100%);
  color: var(--accent-900);
  overflow: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

body.dark-theme .our-story-section {
  background: linear-gradient(180deg, #070a12 0%, #0f172a 50%, #0b0f19 100%);
  color: #ffffff;
}

/* Background Ambient Lighting Glows */
.story-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.story-glow.glow-left {
  top: 15%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: rgba(59, 130, 246, 0.15);
}

.story-glow.glow-right {
  bottom: 15%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(223, 42, 25, 0.12);
}

/* Header Styling */
.story-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 5;
}

.story-header .story-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(223, 42, 25, 0.08);
  border: 1px solid rgba(223, 42, 25, 0.2);
  border-radius: 16px;
  margin-bottom: 8px;
}

body.dark-theme .story-header .story-badge {
  background: rgba(223, 42, 25, 0.15);
  border-color: rgba(223, 42, 25, 0.35);
}

.story-header .badge-text {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.story-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--accent-900);
  margin-bottom: 6px;
}

body.dark-theme .story-title {
  color: #ffffff;
}

.story-desc {
  font-size: 14px;
  line-height: 1.45;
  color: var(--accent-600);
  margin: 0 auto;
}

body.dark-theme .story-desc {
  color: #94a3b8;
}

/* ---- ROADMAP STEPPER NAVIGATION TABS ---- */
.roadmap-nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}

.roadmap-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent-700);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

body.dark-theme .roadmap-tab-btn {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

.roadmap-tab-btn .tab-year {
  padding: 2px 6px;
  border-radius: 10px;
  background: rgba(223, 42, 25, 0.1);
  color: var(--primary);
  font-size: 10px;
  font-weight: 900;
}

body.dark-theme .roadmap-tab-btn .tab-year {
  background: rgba(0, 242, 254, 0.15);
  color: #00f2fe;
}

.roadmap-tab-btn:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--primary);
}

.roadmap-tab-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 100%);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(223, 42, 25, 0.3);
}

.roadmap-tab-btn.active .tab-year {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* ---- ROADMAP CANVAS WRAPPER ---- */
.roadmap-canvas-wrapper {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  min-height: 350px;
}

/* Winding Road SVG Path Background */
.roadmap-svg-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.road-back-line {
  fill: none;
  stroke: rgba(203, 213, 225, 0.6);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.dark-theme .road-back-line {
  stroke: rgba(51, 65, 85, 0.6);
}

.road-laser-line {
  fill: none;
  stroke: url(#roadGrad);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 10 7;
  animation: dashRoad 25s linear infinite;
  filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.6));
}

@keyframes dashRoad {
  to { stroke-dashoffset: -200; }
}

/* ---- ROADMAP MILESTONE NODES & CARDS GRID ---- */
.roadmap-nodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 14px;
  position: relative;
  z-index: 5;
  padding: 8px 0;
}

/* Individual Milestone Card Box */
.roadmap-node-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(223, 42, 25, 0.15);
  border-radius: 14px;
  padding: 12px 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  cursor: pointer;
}

body.dark-theme .roadmap-node-card {
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(147, 51, 234, 0.25);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.roadmap-node-card:hover,
.roadmap-node-card.active-card {
  transform: translateY(-5px) scale(1.01);
  border-color: var(--primary);
  box-shadow: 0 14px 35px rgba(223, 42, 25, 0.2);
  z-index: 8;
}

body.dark-theme .roadmap-node-card:hover,
body.dark-theme .roadmap-node-card.active-card {
  border-color: #00f2fe;
  box-shadow: 0 14px 35px rgba(0, 242, 254, 0.25);
  z-index: 8;
}

/* Milestone Badge Header */
.node-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.node-step-badge {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 10px;
  border-radius: 16px;
  background: rgba(223, 42, 25, 0.1);
  color: var(--primary);
}

body.dark-theme .node-step-badge {
  background: rgba(0, 242, 254, 0.15);
  color: #00f2fe;
}

.node-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(223, 42, 25, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

body.dark-theme .node-icon-wrap {
  background: rgba(147, 51, 234, 0.15);
  color: #c084fc;
}

.node-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent-900);
  margin-bottom: 6px;
}

body.dark-theme .node-card-title {
  color: #ffffff;
}

.node-card-desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--accent-600);
  margin-bottom: 8px;
}

body.dark-theme .node-card-desc {
  color: #94a3b8;
}

/* Location Chips for Step 05 */
.node-locations-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.location-chip {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

body.dark-theme .location-chip {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.35);
}

/* Glowing Road Node Dot */
.road-node-dot {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 2.5px solid var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  z-index: 10;
  transition: all 0.3s ease;
}

body.dark-theme .road-node-dot {
  background: #0f172a;
  border-color: #00f2fe;
  box-shadow: 0 0 12px #00f2fe;
}

.roadmap-node-card.active-card .road-node-dot {
  background: var(--primary);
  border-color: #ffffff;
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 0 16px var(--primary);
}

body.dark-theme .roadmap-node-card.active-card .road-node-dot {
  background: #00f2fe;
  border-color: #ffffff;
  box-shadow: 0 0 22px #00f2fe;
}

/* ---- FLOATING ROBOT COMPANION AILA ALONG ROADMAP ---- */
.roadmap-robot-presenter {
  position: absolute;
  bottom: -60px;
  right: 20px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.roadmap-speech-bubble {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(223, 42, 25, 0.25);
  border-radius: 16px;
  padding: 12px 18px;
  max-width: 280px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: left;
}

body.dark-theme .roadmap-speech-bubble {
  background: rgba(15, 23, 42, 0.94);
  border-color: rgba(147, 51, 234, 0.35);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.speech-badge-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.speech-live-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.speech-step-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.speech-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--accent-900);
  margin: 0;
}

body.dark-theme .speech-text {
  color: #e2e8f0;
}

.speech-right-pointer {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(223, 42, 25, 0.25);
  border-right: 1px solid rgba(223, 42, 25, 0.25);
}

body.dark-theme .speech-right-pointer {
  background: rgba(15, 23, 42, 0.94);
  border-color: rgba(147, 51, 234, 0.35);
}

.roadmap-robot-img {
  width: 110px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(59, 130, 246, 0.35));
  animation: robotRoadFloat 4s ease-in-out infinite;
}

@keyframes robotRoadFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .roadmap-nodes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .roadmap-robot-presenter {
    position: relative;
    bottom: 0;
    right: 0;
    justify-content: center;
    margin-top: 30px;
  }
}
/* ============================================================
   AI LAB TECHNOLOGIES — Live AI Presentation Stage Section
   File: css/why-us.css
   ============================================================ */

/* ---- SECTION CONTAINER ---- */
.why-us-section {
  position: relative;
  padding: 24px 0 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  color: var(--accent-900);
  overflow: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

body.dark-theme .why-us-section {
  background: linear-gradient(180deg, #070a12 0%, #0b0f19 50%, #05070d 100%);
  color: #ffffff;
}

/* Neural Background Canvas */
#why-neural-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

/* Ambient Glow Blobs */
.why-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.why-glow.glow-blue {
  top: 5%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(0, 242, 254, 0.12);
}

.why-glow.glow-purple {
  bottom: 10%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: rgba(147, 51, 234, 0.13);
}

/* ---- SECTION HEADER ---- */
.why-header {
  position: relative;
  z-index: 5;
  margin-bottom: 16px;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(223, 42, 25, 0.08);
  border: 1px solid rgba(223, 42, 25, 0.2);
  border-radius: 16px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(223, 42, 25, 0.08);
}

body.dark-theme .why-badge {
  background: rgba(223, 42, 25, 0.15);
  border-color: rgba(223, 42, 25, 0.35);
}

.why-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: pulseDot 2s infinite;
}

.why-badge .badge-text {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--accent-900);
  margin-bottom: 6px;
}

body.dark-theme .why-title {
  color: #ffffff;
}

.why-subtitle {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--accent-600);
  max-width: 680px;
  margin: 0 auto;
}

body.dark-theme .why-subtitle {
  color: #94a3b8;
}

/* ============================================================
   MAIN PRESENTATION STAGE WRAPPER
   ============================================================ */
.presentation-stage-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
  z-index: 5;
  margin-bottom: 10px;
}

/* SVG Projection Beam Overlay */
.projection-beam-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8;
}

.beam-cone-path {
  fill: url(#beamGrad);
  opacity: 0.18;
  transition: all 0.4s ease;
}

.beam-line-path {
  fill: none;
  stroke: url(#beamGrad);
  stroke-width: 2.5;
  stroke-dasharray: 6 6;
  animation: beamFlow 1.2s linear infinite;
  opacity: 0.8;
}

@keyframes beamFlow {
  to {
    stroke-dashoffset: -24;
  }
}

/* ============================================================
   LEFT COLUMN: AI PRESENTER STAGE & AILA ROBOT
   ============================================================ */
.presenter-stage-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Presentation Speech Bubble Above AILA */
.presentation-speech-bubble {
  position: relative;
  width: 100%;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid rgba(223, 42, 25, 0.22);
  border-radius: 16px;
  padding: 11px 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-bottom: 12px;
  transition: all 0.35s ease;
  z-index: 12;
}

body.dark-theme .presentation-speech-bubble {
  background: rgba(15, 23, 42, 0.94);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

.speech-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.dark-theme .speech-header-row {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.speech-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 2s infinite;
}

.speech-robot-name {
  font-size: 10px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

body.dark-theme .speech-robot-name {
  color: #00f2fe;
}

.speech-topic-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-600);
}

body.dark-theme .speech-topic-tag {
  color: #94a3b8;
}

.speech-text-body {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--accent-900);
  margin: 0;
  transition: opacity 0.3s ease;
}

body.dark-theme .speech-text-body {
  color: #e2e8f0;
}

.speech-bottom-pointer {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.94);
  border-right: 1.5px solid rgba(223, 42, 25, 0.22);
  border-bottom: 1.5px solid rgba(223, 42, 25, 0.22);
}

body.dark-theme .speech-bottom-pointer {
  background: rgba(15, 23, 42, 0.94);
  border-color: rgba(0, 242, 254, 0.35);
}

/* Presenter Robot Graphic & 3D Stage Platform */
.presenter-robot-wrap {
  position: relative;
  width: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.presenter-robot-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(223, 42, 25, 0.22));
  animation: presenterFloat 4.5s ease-in-out infinite;
  transition: transform 0.4s ease;
}

body.dark-theme .presenter-robot-img {
  filter: drop-shadow(0 12px 24px rgba(0, 242, 254, 0.3));
}

.presenter-robot-img.robot-gesture {
  animation: presenterGesture 0.8s ease-in-out;
}

@keyframes presenterFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1.5deg); }
}

@keyframes presenterGesture {
  0% { transform: scale(1) rotate(0deg); }
  40% { transform: scale(1.05) rotate(-3deg) translateY(-5px); }
  100% { transform: scale(1) rotate(0deg); }
}

/* Circular Stage Platform beneath Robot */
.stage-glowing-platform {
  position: relative;
  width: 150px;
  height: 24px;
  margin-top: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-ring {
  position: absolute;
  border-radius: 50%;
  transform: rotateX(72deg);
}

.platform-ring.ring-outer {
  width: 140px;
  height: 140px;
  border: 2px dashed rgba(223, 42, 25, 0.4);
  animation: platformSpin 12s linear infinite;
}

body.dark-theme .platform-ring.ring-outer {
  border-color: rgba(0, 242, 254, 0.45);
}

.platform-ring.ring-middle {
  width: 100px;
  height: 100px;
  border: 1.5px solid rgba(223, 42, 25, 0.6);
  animation: platformSpin 8s linear infinite reverse;
}

body.dark-theme .platform-ring.ring-middle {
  border-color: rgba(147, 51, 234, 0.6);
}

.platform-core-glow {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 42, 25, 0.35) 0%, transparent 70%);
  transform: rotateX(72deg);
  filter: blur(6px);
}

body.dark-theme .platform-core-glow {
  background: radial-gradient(circle, rgba(0, 242, 254, 0.4) 0%, transparent 70%);
}

@keyframes platformSpin {
  from { transform: rotateX(72deg) rotate(0deg); }
  to { transform: rotateX(72deg) rotate(360deg); }
}

/* ============================================================
   RIGHT COLUMN: HOLOGRAPHIC DISPLAY SCREEN
   ============================================================ */
.hologram-screen-right {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(223, 42, 25, 0.2);
  border-radius: 18px;
  padding: 18px 22px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  overflow: hidden;
  z-index: 10;
}

body.dark-theme .hologram-screen-right {
  background: rgba(15, 23, 42, 0.84);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.hologram-screen-right:hover {
  border-color: var(--primary);
  box-shadow: 0 18px 45px rgba(223, 42, 25, 0.15);
}

body.dark-theme .hologram-screen-right:hover {
  border-color: #00f2fe;
  box-shadow: 0 18px 45px rgba(0, 242, 254, 0.2);
}

/* Sci-fi Corner Brackets */
.hologram-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--primary);
  border-style: solid;
  pointer-events: none;
  z-index: 12;
}

body.dark-theme .hologram-corner {
  border-color: #00f2fe;
}

.corner-tl { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.corner-tr { top: 8px; right: 8px; border-width: 2px 2px 0 0; }
.corner-bl { bottom: 8px; left: 8px; border-width: 0 0 2px 2px; }
.corner-br { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }

/* Hologram Scanline Effect Overlay (Removed as requested) */
.hologram-scanline {
  display: none !important;
}

@keyframes scanlineAnim {
  0% { top: 0; opacity: 0.2; }
  50% { opacity: 0.8; }
  100% { top: 100%; opacity: 0.2; }
}

/* ---- HOLOGRAM TOP BAR & PROGRESS CONTROLS ---- */
.hologram-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

body.dark-theme .hologram-top-bar {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.holo-status-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

body.dark-theme .holo-status-tag {
  color: #00f2fe;
}

.holo-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: pulseDot 2s infinite;
}

body.dark-theme .holo-pulse-dot {
  background-color: #00f2fe;
  box-shadow: 0 0 8px #00f2fe;
}

/* Progress Pills Indicator */
.holo-progress-pills {
  display: flex;
  align-items: center;
  gap: 5px;
}

.progress-pill {
  width: 18px;
  height: 3.5px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
  cursor: pointer;
}

body.dark-theme .progress-pill {
  background: rgba(255, 255, 255, 0.15);
}

.progress-pill.active {
  width: 32px;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(223, 42, 25, 0.4);
}

body.dark-theme .progress-pill.active {
  background: #00f2fe;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

/* Manual Navigation Controls */
.holo-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.holo-nav-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--accent-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

body.dark-theme .holo-nav-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.holo-nav-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(223, 42, 25, 0.3);
}

body.dark-theme .holo-nav-btn:hover {
  background: #00f2fe;
  color: #070a12;
  border-color: #00f2fe;
  box-shadow: 0 4px 12px rgba(0, 242, 254, 0.35);
}

/* ---- HOLOGRAM SLIDES STAGE ---- */
.hologram-slides-stage {
  position: relative;
  min-height: 160px;
  margin-bottom: 14px;
}

.hologram-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(20px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hologram-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

/* Split Slide Layout: Left Info + Right Mini Viz (Wider 310px Viz Card) */
.slide-content-split {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 20px;
  align-items: center;
}

/* Left Info Side */
.slide-info-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.slide-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(223, 42, 25, 0.15) 0%, rgba(255, 107, 0, 0.15) 100%);
  border: 1px solid rgba(223, 42, 25, 0.25);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(223, 42, 25, 0.12);
}

body.dark-theme .slide-icon-box {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.18) 0%, rgba(147, 51, 234, 0.18) 100%);
  border-color: rgba(0, 242, 254, 0.3);
  color: #00f2fe;
  box-shadow: 0 4px 14px rgba(0, 242, 254, 0.2);
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-900);
  margin-bottom: 6px;
  line-height: 1.2;
}

body.dark-theme .slide-title {
  color: #ffffff;
}

.slide-desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--accent-600);
  margin-bottom: 0;
}

body.dark-theme .slide-desc {
  color: #94a3b8;
}

.slide-highlight-pill {
  display: none !important;
}

/* Right Mini Data Visualization Card - Increased Width to 310px */
.slide-viz-side {
  display: block !important;
  width: 310px;
}

body.dark-theme .slide-highlight-pill {
  background: rgba(0, 242, 254, 0.12);
  border-color: rgba(0, 242, 254, 0.3);
  color: #00f2fe;
}

/* Right Mini Data Visualization Card */
.slide-viz-side {
  width: 310px;
  max-width: 100%;
}

.mini-viz-card {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  background: rgba(248, 250, 252, 0.9);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

body.dark-theme .mini-viz-card {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.viz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-800);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.dark-theme .viz-header {
  color: #e2e8f0;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.viz-status-online {
  font-size: 10px;
  font-weight: 800;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 8px;
  border-radius: 10px;
}

/* Viz Animations */
.viz-neural-nodes {
  position: relative;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 10px;
}

.node-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
  animation: nodeBounce 2s infinite ease-in-out;
}

body.dark-theme .node-dot {
  background: #00f2fe;
  box-shadow: 0 0 12px #00f2fe;
}

.node-dot.dot-2 { animation-delay: 0.3s; }
.node-dot.dot-3 { animation-delay: 0.6s; }
.node-dot.dot-4 { animation-delay: 0.9s; }

@keyframes nodeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.viz-metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--accent-600);
}

body.dark-theme .viz-metric-row {
  color: #94a3b8;
}

/* Agents Flow Viz */
.viz-agents-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 12px;
  width: 100%;
}

.agent-chip {
  font-size: 10px;
  font-weight: 700;
  padding: 5px 8px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  color: var(--accent-700);
  white-space: nowrap;
  flex: 0 0 auto;
}

body.dark-theme .agent-chip {
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

.agent-chip.active {
  background: rgba(223, 42, 25, 0.15);
  color: var(--primary);
  border: 1px solid rgba(223, 42, 25, 0.3);
}

body.dark-theme .agent-chip.active {
  background: rgba(0, 242, 254, 0.18);
  color: #00f2fe;
  border-color: rgba(0, 242, 254, 0.4);
}

.flow-arrow {
  font-size: 11px;
  color: var(--primary);
  animation: arrowPulse 1.5s infinite;
}

body.dark-theme .flow-arrow {
  color: #00f2fe;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Velocity Meter Bar */
.viz-velocity-bar-wrap {
  margin-bottom: 8px;
}

.viz-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-700);
  margin: 4px 0 2px;
}

body.dark-theme .viz-bar-label {
  color: #cbd5e1;
}

.viz-bar-bg {
  width: 100%;
  height: 7px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

body.dark-theme .viz-bar-bg {
  background: rgba(255, 255, 255, 0.1);
}

.viz-bar-fill.fill-old {
  width: 10%;
  height: 100%;
  background: #94a3b8;
}

.viz-bar-fill.fill-new {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #00f2fe);
  border-radius: 10px;
  animation: barGlow 2s infinite ease-in-out;
}

@keyframes barGlow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* Shield Pulse Viz */
.viz-shield-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  margin-bottom: 8px;
}

.viz-shield-icon {
  font-size: 36px;
  color: var(--primary);
  z-index: 2;
}

body.dark-theme .viz-shield-icon {
  color: #00f2fe;
}

.shield-pulse-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(223, 42, 25, 0.4);
  animation: shieldPulse 2s infinite;
}

body.dark-theme .shield-pulse-ring {
  border-color: rgba(0, 242, 254, 0.5);
}

@keyframes shieldPulse {
  0% { transform: scale(0.7); opacity: 0.9; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Global Hubs Viz */
.viz-hubs-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hub-item {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-800);
}

body.dark-theme .hub-item {
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
}

/* Stack Tags Viz */
.viz-stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.viz-stack-tags span {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  background: rgba(223, 42, 25, 0.1);
  color: var(--primary);
  border-radius: 6px;
}

body.dark-theme .viz-stack-tags span {
  background: rgba(0, 242, 254, 0.12);
  color: #00f2fe;
}

/* ---- HOLOGRAM BOTTOM TABS BAR ---- */
.hologram-tabs-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

body.dark-theme .hologram-tabs-bar {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.topic-tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 8px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-700);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

body.dark-theme .topic-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

.topic-tab-btn:hover,
.topic-tab-btn.active {
  background: rgba(223, 42, 25, 0.12);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(223, 42, 25, 0.15);
}

body.dark-theme .topic-tab-btn:hover,
body.dark-theme .topic-tab-btn.active {
  background: rgba(0, 242, 254, 0.15);
  border-color: #00f2fe;
  color: #00f2fe;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25);
}

/* ============================================================
   BOTTOM ACHIEVEMENT COUNTERS BAR
   ============================================================ */
.why-counters-bar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: 24px;
  padding: 32px 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

body.dark-theme .why-counters-bar {
  background: rgba(15, 23, 42, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4);
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.counter-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

body.dark-theme .counter-item:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.08);
}

.counter-icon {
  width: 44px;
  height: 36px ;
  border-radius: 12px;
  background: rgba(223, 42, 25, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

body.dark-theme .counter-icon {
  background: rgba(0, 242, 254, 0.12);
  color: #00f2fe;
}

.counter-number-wrap {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--accent-900);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark-theme .counter-number-wrap {
  color: #ffffff;
}

.counter-plus,
.counter-percent {
  color: var(--primary);
  font-size: 32px;
  margin-left: 2px;
}

body.dark-theme .counter-plus,
body.dark-theme .counter-percent {
  color: #00f2fe;
}

.counter-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-600);
}

body.dark-theme .counter-label {
  color: #94a3b8;
}

/* ---- RESPONSIVE MEDIA QUERIES ---- */
@media (max-width: 1199px) {
  .presentation-stage-wrapper {
    grid-template-columns: 300px 1fr;
    gap: 30px;
  }

  .slide-content-split {
    grid-template-columns: 1fr 200px;
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .presentation-stage-wrapper {
    grid-template-columns: 1fr;
  }

  .presenter-stage-left {
    margin-bottom: 30px;
  }

  .projection-beam-svg {
    display: none;
  }

  .slide-content-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hologram-tabs-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-counters-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    padding: 26px 20px;
  }

  .counter-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-title {
    font-size: 32px;
  }

  .why-subtitle {
    font-size: 15px;
  }

  .hologram-tabs-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-counters-bar {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* ============================================================
   AI LAB TECHNOLOGIES — Mission, Vision & Core Values Section
   File: css/mission-vision.css
   ============================================================ */

.mission-vision-section {
  position: relative;
  padding: 16px 0 20px;
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 50%, #f8fafc 100%);
  color: var(--accent-900);
  overflow: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

body.dark-theme .mission-vision-section {
  background: linear-gradient(180deg, #05070d 0%, #0b0f19 50%, #070a12 100%);
  color: #ffffff;
}

/* Background Ambient Lighting Glows */
.mv-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.mv-glow.glow-cyan {
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(0, 242, 254, 0.12);
}

.mv-glow.glow-purple {
  bottom: 10%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: rgba(147, 51, 234, 0.13);
}

#mv-neural-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* Section Header */
.mv-header {
  position: relative;
  z-index: 5;
  margin-bottom: 14px;
}

.mv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  background: rgba(223, 42, 25, 0.08);
  border: 1px solid rgba(223, 42, 25, 0.2);
  border-radius: 16px;
  margin-bottom: 6px;
}

body.dark-theme .mv-badge {
  background: rgba(223, 42, 25, 0.15);
  border-color: rgba(223, 42, 25, 0.35);
}

.mv-badge .badge-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.mv-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--accent-900);
  margin-bottom: 4px;
}

body.dark-theme .mv-title {
  color: #ffffff;
}

.mv-subtitle {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--accent-600);
  max-width: 650px;
  margin: 0 auto;
}

body.dark-theme .mv-subtitle {
  color: #94a3b8;
}

/* ---- 3-COLUMN PILLARS GRID ---- */
.mv-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* Base Pillar Glass Card */
.mv-pillar-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 14px 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

body.dark-theme .mv-pillar-card {
  background: rgba(15, 23, 42, 0.78);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.mv-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

body.dark-theme .mv-pillar-card:hover {
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
}

/* Pillar Header Icon Container */
.pillar-visual-header {
  position: relative;
  margin-bottom: 8px;
}

.pillar-icon-ring {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 2;
}

/* Mission Pillar Styling */
.mv-pillar-card.pillar-mission {
  border-top: 3px solid var(--primary);
}

body.dark-theme .mv-pillar-card.pillar-mission {
  border-top-color: var(--primary);
}

.pillar-mission .pillar-icon-ring {
  background: linear-gradient(135deg, rgba(223, 42, 25, 0.15) 0%, rgba(255, 107, 0, 0.15) 100%);
  border: 1.5px solid rgba(223, 42, 25, 0.3);
  color: var(--primary);
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.5), 0 6px 14px rgba(223, 42, 25, 0.18);
}

body.dark-theme .pillar-mission .pillar-icon-ring {
  background: linear-gradient(135deg, rgba(223, 42, 25, 0.22) 0%, rgba(255, 82, 59, 0.22) 100%);
  border-color: rgba(223, 42, 25, 0.4);
  color: #ff523b;
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.15), 0 6px 18px rgba(223, 42, 25, 0.3);
}

/* Orbiting Particles around Mission Icon */
.particle-orbit-wrap {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  animation: orbitRotate 8s linear infinite;
  pointer-events: none;
}

.orbit-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 6px var(--primary);
}

.dot-a { top: 0; left: 50%; transform: translateX(-50%); }
.dot-b { bottom: 0; left: 50%; transform: translateX(-50%); }

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Vision Pillar Styling */
.mv-pillar-card.pillar-vision {
  border-top: 3px solid var(--primary);
}

.pillar-vision .pillar-icon-ring {
  background: linear-gradient(135deg, rgba(223, 42, 25, 0.15) 0%, rgba(255, 82, 59, 0.15) 100%);
  border: 1.5px solid rgba(223, 42, 25, 0.3);
  color: var(--primary);
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.5), 0 6px 14px rgba(223, 42, 25, 0.18);
}

body.dark-theme .pillar-vision .pillar-icon-ring {
  background: linear-gradient(135deg, rgba(223, 42, 25, 0.22) 0%, rgba(255, 82, 59, 0.22) 100%);
  border-color: rgba(223, 42, 25, 0.4);
  color: #ff523b;
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.15), 0 6px 18px rgba(223, 42, 25, 0.3);
}

.vision-pulse-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(223, 42, 25, 0.4);
  animation: visionPulse 2.5s ease-out infinite;
}

@keyframes visionPulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* Core Values Pillar Styling */
.mv-pillar-card.pillar-values {
  border-top: 3px solid var(--primary);
}

.pillar-values .pillar-icon-ring {
  background: linear-gradient(135deg, rgba(223, 42, 25, 0.15) 0%, rgba(255, 82, 59, 0.15) 100%);
  border: 1.5px solid rgba(223, 42, 25, 0.3);
  color: var(--primary);
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.5), 0 6px 14px rgba(223, 42, 25, 0.18);
}

body.dark-theme .pillar-values .pillar-icon-ring {
  background: linear-gradient(135deg, rgba(223, 42, 25, 0.22) 0%, rgba(255, 82, 59, 0.22) 100%);
  color: #ff523b;
  border-color: rgba(223, 42, 25, 0.4);
}

/* Typography in Pillar Cards */
.pillar-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--accent-900);
  margin-bottom: 4px;
}

body.dark-theme .pillar-title {
  color: #ffffff;
}

.pillar-desc {
  font-size: 12px;
  line-height: 1.4;
  color: var(--accent-600);
  margin-bottom: 10px;
}

body.dark-theme .pillar-desc {
  color: #94a3b8;
}

/* Pillar Highlight Chip at Bottom */
.pillar-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent-800);
  margin-top: auto;
}

body.dark-theme .pillar-badge-chip {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

/* Feature Points Checklist inside Pillar Cards */
.pillar-points-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pillar-points-list li {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--accent-800);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 6px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 6px;
}

body.dark-theme .pillar-points-list li {
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
}

.pillar-points-list li i {
  color: var(--primary);
  font-size: 9px;
}

body.dark-theme .pillar-points-list li i {
  color: #00f2fe;
}

/* ---- 6 INTERACTIVE VALUE CHIPS GRID (Inside Column 3) ---- */
.values-chips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 100%;
  margin-bottom: 6px;
}

.value-chip-card {
  position: relative;
  padding: 5px 8px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

body.dark-theme .value-chip-card {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(255, 255, 255, 0.06);
}

.value-chip-card:hover,
.value-chip-card.active {
  background: rgba(223, 42, 25, 0.12);
  border-color: var(--primary);
  transform: translateY(-1px);
}

body.dark-theme .value-chip-card:hover,
body.dark-theme .value-chip-card.active {
  background: rgba(223, 42, 25, 0.2);
  border-color: #ff523b;
}

.chip-icon {
  font-size: 11px;
  color: var(--primary);
}

body.dark-theme .chip-icon {
  color: #ff523b;
}

.chip-name {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent-900);
}

body.dark-theme .chip-name {
  color: #ffffff;
}

/* Active Value Explanation Box */
.values-explanation-box {
  width: 100%;
  min-height: 32px;
  background: rgba(223, 42, 25, 0.08);
  border: 1px dashed rgba(223, 42, 25, 0.25);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--accent-900);
  text-align: left;
  transition: all 0.3s ease;
}

body.dark-theme .values-explanation-box {
  background: rgba(223, 42, 25, 0.15);
  border-color: rgba(255, 82, 59, 0.35);
  color: #e2e8f0;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 991px) {
  .mv-pillars-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .mv-title {
    font-size: 32px;
  }

  .values-chips-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   AI LAB TECHNOLOGIES — Trusted By Industry Leaders Showcase
   File: css/clients-showcase.css
   ============================================================ */

.clients-showcase-section {
  position: relative;
  padding: 16px 0 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  color: var(--accent-900);
  overflow: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

body.dark-theme .clients-showcase-section {
  background: linear-gradient(180deg, #070a12 0%, #0b0f19 50%, #05070d 100%);
  color: #ffffff;
}

/* Background Ambient Lighting Blobs */
.clients-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.clients-glow.glow-blue {
  top: 10%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: rgba(0, 242, 254, 0.12);
}

.clients-glow.glow-purple {
  bottom: 5%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(147, 51, 234, 0.13);
}

/* Section Header */
.cs-header {
  position: relative;
  z-index: 5;
  margin-bottom: 12px;
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  background: rgba(223, 42, 25, 0.08);
  border: 1px solid rgba(223, 42, 25, 0.2);
  border-radius: 16px;
  margin-bottom: 6px;
}

body.dark-theme .cs-badge {
  background: rgba(223, 42, 25, 0.15);
  border-color: rgba(223, 42, 25, 0.35);
}

.cs-badge .badge-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.cs-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--accent-900);
  margin-bottom: 4px;
}

body.dark-theme .cs-title {
  color: #ffffff;
}

.cs-subtitle {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--accent-600);
  max-width: 680px;
  margin: 0 auto;
}

body.dark-theme .cs-subtitle {
  color: #94a3b8;
}

/* ---- TRUST INDICATORS / STATS COUNTERS BAR ---- */
.cs-stats-bar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 12px 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  margin-bottom: 14px;
}

body.dark-theme .cs-stats-bar {
  background: rgba(15, 23, 42, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.cs-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.cs-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

body.dark-theme .cs-stat-item:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.08);
}

.cs-stat-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(223, 42, 25, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 4px;
}

body.dark-theme .cs-stat-icon {
  background: rgba(0, 242, 254, 0.12);
  color: #00f2fe;
}

.cs-stat-val-wrap {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--accent-900);
  margin-bottom: 2px;
}

body.dark-theme .cs-stat-val-wrap {
  color: #ffffff;
}

.cs-stat-val-wrap span {
  color: var(--primary);
}

body.dark-theme .cs-stat-val-wrap span {
  color: #00f2fe;
}

.cs-stat-lbl {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-600);
}

body.dark-theme .cs-stat-lbl {
  color: #94a3b8;
}

.cs-valuable-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-900);
}

body.dark-theme .cs-valuable-title {
  color: #ffffff;
}

/* ---- INDUSTRY CATEGORIES FILTER TABS ---- */
.cs-filter-tabs {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.cs-filter-btn {
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent-700);
  cursor: pointer;
  transition: all 0.3s ease;
}

body.dark-theme .cs-filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

.cs-filter-btn:hover,
.cs-filter-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(223, 42, 25, 0.25);
}

body.dark-theme .cs-filter-btn:hover,
body.dark-theme .cs-filter-btn.active {
  background: #00f2fe;
  color: #070a12;
  border-color: #00f2fe;
  box-shadow: 0 4px 16px rgba(0, 242, 254, 0.3);
}

/* ---- CLIENT LOGO SHOWCASE CARDS GRID ---- */
.cs-cards-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.cs-client-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 10px 12px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
}

body.dark-theme .cs-client-card {
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.cs-client-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(223, 42, 25, 0.15);
}

body.dark-theme .cs-client-card:hover {
  border-color: #00f2fe;
  box-shadow: 0 10px 28px rgba(0, 242, 254, 0.2);
}

/* Logo Styling: Full Clear & High Visibility */
.client-logo-box {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.client-logo-box img {
  max-height: 32px;
  max-width: 120px;
  object-fit: contain;
  filter: none;
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cs-client-card:hover .client-logo-box img {
  opacity: 1;
  transform: scale(1.05);
}

.client-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-900);
  margin-bottom: 2px;
}

body.dark-theme .client-name {
  color: #ffffff;
}

.client-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

body.dark-theme .client-tag {
  color: #00f2fe;
}

.client-cta-hint {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent-600);
  display: flex;
  align-items: center;
  gap: 5px;
}

.cs-client-card:hover .client-cta-hint {
  color: var(--primary);
}

body.dark-theme .cs-client-card:hover .client-cta-hint {
  color: #00f2fe;
}

/* ---- INFINITE HORIZONTAL MARQUEE CAROUSEL ---- */
.cs-marquee-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-theme .cs-marquee-wrapper {
  background: rgba(15, 23, 42, 0.4);
  border-color: rgba(255, 255, 255, 0.06);
}

.cs-marquee-track {
  display: flex;
  align-items: center;
  gap: 45px;
  width: max-content;
  animation: marqueeLoop 50s linear infinite;
}

.cs-marquee-wrapper:hover .cs-marquee-track {
  animation-play-state: paused;
}

.marquee-logo-item {
  height: 40px;
  display: flex;
  align-items: center;
}

.marquee-logo-item img {
  max-height: 36px;
  max-width: 130px;
  object-fit: contain;
  filter: none;
  opacity: 0.88;
  transition: all 0.3s ease;
}

.marquee-logo-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

@keyframes marqueeLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- INTERACTIVE CLIENT DETAIL MODAL / DRAWER ---- */
.cs-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 18, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cs-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.cs-modal-content {
  position: relative;
  width: 90%;
  max-width: 580px;
  background: #ffffff;
  border: 1.5px solid rgba(223, 42, 25, 0.25);
  border-radius: 26px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-theme .cs-modal-content {
  background: #0f172a;
  border-color: rgba(0, 242, 254, 0.35);
  color: #ffffff;
}

.cs-modal-backdrop.active .cs-modal-content {
  transform: translateY(0) scale(1);
}

.cs-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 16px;
  color: var(--accent-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

body.dark-theme .cs-modal-close {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.cs-modal-close:hover {
  background: var(--primary);
  color: #ffffff;
}

body.dark-theme .cs-modal-close:hover {
  background: #00f2fe;
  color: #070a12;
}

.modal-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.modal-logo-wrap {
  width: 90px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
}

body.dark-theme .modal-logo-wrap {
  background: rgba(255, 255, 255, 0.06);
}

.modal-logo-wrap img {
  max-height: 45px;
  max-width: 80px;
  object-fit: contain;
}

.modal-title-wrap h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.modal-title-wrap span {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

body.dark-theme .modal-title-wrap span {
  color: #00f2fe;
}

.modal-details-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-detail-item {
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.dark-theme .modal-detail-item {
  background: rgba(255, 255, 255, 0.05);
}

.modal-detail-item label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-600);
}

body.dark-theme .modal-detail-item label {
  color: #94a3b8;
}

.modal-detail-item p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 991px) {
  .cs-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cs-stat-item:not(:last-child)::after {
    display: none;
  }

  .cs-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .cs-title {
    font-size: 32px;
  }

  .cs-stats-bar {
    grid-template-columns: 1fr;
  }

  .cs-cards-grid {
    grid-template-columns: 1fr;
  }
}



/* ==========================================================================
   PERFECT DESKTOP DROPDOWN & MEGA MENU ALIGNMENT ENGINE (Fixes Off-Screen Shift)
   ========================================================================== */
@media (min-width: 1025px) {
  .site-header .nav-wrap,
  .nav-wrap {
    position: relative !important;
  }

  .site-header nav .nav-list,
  .nav-list {
    position: static !important;
  }

  .site-header .has-dropdown,
  .has-dropdown {
    position: static !important;
  }

  .dropdown-menu,
  .dropdown-menu.focus-mega-menu,
  .dropdown-menu.services-list-menu,
  .dropdown-menu.mega-menu-cards.platforms-list-menu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(12px) !important;
    margin: 0 auto !important;
    z-index: 1100 !important;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:hover .dropdown-menu.focus-mega-menu,
  .has-dropdown:hover .dropdown-menu.services-list-menu,
  .has-dropdown:hover .dropdown-menu.mega-menu-cards.platforms-list-menu {
    transform: translateX(-50%) translateY(0) !important;
  }

  .dropdown-menu.focus-mega-menu {
    width: 1040px !important;
    max-width: min(1040px, calc(100vw - 48px)) !important;
  }

  .dropdown-menu.services-list-menu {
    width: 840px !important;
    max-width: min(840px, calc(100vw - 48px)) !important;
  }

  .dropdown-menu.mega-menu-cards.platforms-list-menu {
    width: 640px !important;
    max-width: min(640px, calc(100vw - 48px)) !important;
  }
}






/* ==========================================================================
   EXACT IMAGE 1 CARD VIEW & MEGA MENU ENGINE (Applied Universally across All Pages)
   ========================================================================== */
@media (min-width: 1025px) {
  .dropdown-menu.focus-mega-menu,
  .focus-mega-menu {
    width: 1080px !important;
    max-width: min(1080px, calc(100vw - 48px)) !important;
    padding: 24px !important;
    gap: 24px !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12) !important;
    border: 1px solid #e2e8f0 !important;
    align-items: stretch !important;
  }

  .focus-sidebar {
    width: 310px !important;
    gap: 6px !important;
    flex-shrink: 0 !important;
  }

  .focus-sidebar .focus-btn {
    padding: 9px 14px !important;
    gap: 12px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
  }

  .focus-sidebar .focus-btn .icon-box {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
  }

  .focus-sidebar .focus-btn span {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    color: #1e293b !important;
  }

  .focus-sidebar .focus-btn .arrow-icon {
    font-size: 12px !important;
    color: #64748b !important;
  }

  .focus-sidebar .focus-btn.active {
    border: 1.5px solid rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.08) !important;
  }

  .focus-sidebar .focus-btn.active .icon-box {
    background: rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
  }

  .focus-sidebar .focus-btn.active span,
  .focus-sidebar .focus-btn.active .arrow-icon {
    color: #ffffff !important;
  }

  .focus-main-content {
    gap: 24px !important;
    grid-template-columns: 1fr 260px !important;
    flex: 1 !important;
  }

  /* Exact Card View Matching Image 1 */
  .focus-info-col {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
  }

  .focus-overview-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 24px 26px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    min-height: 240px !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .focus-overview-card:hover {
    border-color: #df2a19 !important;
    box-shadow: 0 8px 28px rgba(223, 42, 25, 0.12) !important;
  }

  .overview-card-header {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 16px !important;
  }

  .overview-card-icon {
    width: 44px !important;
    height: 36px  !important;
    border-radius: 12px !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important; color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    flex-shrink: 0 !important;
  }

  .overview-card-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 !important;
    line-height: 1.25 !important;
  }

  .overview-card-desc {
    font-size: 13.5px !important;
    color: #475569 !important;
    line-height: 1.6 !important;
    margin: 0 0 20px 0 !important;
    flex: 1 !important;
  }

  .overview-card-footer {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: auto !important;
  }

  .overview-card-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .overview-card-btn:hover {
    color: #ffffff !important;
    transform: translateX(4px) !important;
  }

  .focus-visual-col {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
  }

  .focus-image-wrapper {
    width: 100% !important;
    height: 100% !important;
    min-height: 220px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  .focus-image-wrapper img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 20px !important;
  }
}



/* ==========================================================================
   EXACT REFERENCE CARD VIEW ENGINE FOR FOCUS AREA DROPDOWN LIST (IMAGE 1 SPEC)
   ========================================================================== */
.focus-info-col {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.focus-overview-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 22px 24px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.focus-overview-card:hover {
  border-color: #cbd5e1 !important;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06) !important;
}

.overview-card-header {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 16px !important;
}

.overview-card-icon {
  width: 44px !important;
  height: 36px  !important;
  min-width: 44px !important;
  border-radius: 12px !important;
  --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important; color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  flex-shrink: 0 !important;
}

.overview-card-title {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.overview-card-desc {
  font-size: 13.5px !important;
  color: #475569 !important;
  line-height: 1.6 !important;
  margin: 0 0 20px 0 !important;
}

.overview-card-footer {
  display: flex !important;
  justify-content: flex-end !important;
  margin-top: auto !important;
}

.overview-card-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.overview-card-btn:hover {
  color: #ffffff !important;
  transform: translateX(4px) !important;
}



/* ==========================================================================
   FOCUS PREVIEW SUBMENU - 1 COLUMN X 4 ROWS VERTICAL STACKED LAYOUT
   ========================================================================== */
.focus-preview-submenu .submodules-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: repeat(4, auto) !important;
  gap: 10px !important;
  margin-top: 10px !important;
}

.focus-preview-submenu .submodule-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 16px !important;
  gap: 16px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.focus-preview-submenu .submodule-card:hover {
  border-color: #df2a19 !important;
  box-shadow: 0 6px 18px rgba(223, 42, 25, 0.12) !important;
  transform: translateX(4px) !important;
  background: #fffbfb !important;
}

.focus-preview-submenu .submodule-top {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 0 !important;
  flex-shrink: 0 !important;
}

.focus-preview-submenu .submodule-info {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
}

.focus-preview-submenu .submodule-card h4 {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  margin: 0 0 2px 0 !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.focus-preview-submenu .submodule-card p {
  font-size: 11.5px !important;
  color: #64748b !important;
  margin: 0 !important;
  line-height: 1.35 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.focus-preview-submenu .submodule-arrow-link {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #df2a19 !important;
  flex-shrink: 0 !important;
  margin-left: auto !important;
  transition: transform 0.2s ease !important;
}

.focus-preview-submenu .submodule-card:hover .submodule-arrow-link {
  transform: translateX(4px) !important;
}

/* Light Theme overrides for 1 Col Submodule Card */
[data-theme="light"] .focus-preview-submenu .submodule-card,
body.light-theme .focus-preview-submenu .submodule-card {
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
}

[data-theme="light"] .focus-preview-submenu .submodule-card h4,
body.light-theme .focus-preview-submenu .submodule-card h4 {
  color: #0f172a !important;
}

[data-theme="light"] .focus-preview-submenu .submodule-card p,
body.light-theme .focus-preview-submenu .submodule-card p {
  color: #475569 !important;
}





/* ==========================================================================
   REMOVE FOCUS OVERVIEW CARD INNER EMPTY SPACE FIX
   ========================================================================== */
@media (min-width: 1025px) {
  .dropdown-menu.focus-mega-menu {
    width: 960px !important;
    max-width: min(960px, calc(100vw - 48px)) !important;
    display: flex !important;
    padding: 24px !important;
    gap: 24px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12) !important;
    border: 1px solid #e2e8f0 !important;
    align-items: center !important;
  }

  .focus-sidebar {
    width: 280px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .focus-main-content {
    flex: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 260px !important;
    gap: 20px !important;
    align-items: center !important;
    min-width: 0 !important;
  }

  .focus-info-col {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    height: 100% !important;
    min-width: 0 !important;
    position: relative !important;
  }

  /* Submodules Grid (1 Column x 4 Rows) */
  .focus-preview-submenu {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .focus-preview-submenu[style*="display: none"] {
    display: none !important;
  }

  .focus-preview-submenu .submodules-heading {
    font-size: 11.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    color: #0f172a !important;
    text-transform: uppercase !important;
    margin-bottom: 4px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .focus-preview-submenu .submodules-heading i {
    color: #df2a19 !important;
  }

  .focus-preview-submenu .submodules-heading-line {
    width: 32px !important;
    height: 2.5px !important;
    background: #df2a19 !important;
    border-radius: 2px !important;
    margin-bottom: 10px !important;
  }

  .focus-preview-submenu .submodules-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(4, auto) !important;
    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .focus-preview-submenu .submodule-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 14px !important;
    gap: 12px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .focus-preview-submenu .submodule-card:hover {
    border-color: #df2a19 !important;
    box-shadow: 0 4px 14px rgba(223, 42, 25, 0.12) !important;
    transform: translateX(3px) !important;
    background: #fffbfb !important;
  }

  .focus-preview-submenu .submodule-top {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }

  .focus-preview-submenu .submodule-info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .focus-preview-submenu .submodule-card h4 {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 1px 0 !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .focus-preview-submenu .submodule-card p {
    font-size: 11px !important;
    color: #64748b !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .focus-preview-submenu .submodule-arrow-link {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: #df2a19 !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    transition: transform 0.2s ease !important;
  }

  .focus-preview-submenu .submodule-card:hover .submodule-arrow-link {
    transform: translateX(3px) !important;
  }

  /* Compact Focus Overview Card (Zero Inner Empty Space) */
  .focus-overview-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 22px 24px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    height: auto !important;
    width: 100% !important;
    align-self: center !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-sizing: border-box !important;
  }

  .focus-overview-card[style*="display: none"] {
    display: none !important;
  }
  .focus-overview-card[style*="display: block"] {
    display: flex !important;
  }

  .focus-overview-card:hover {
    border-color: #df2a19 !important;
    box-shadow: 0 8px 28px rgba(223, 42, 25, 0.12) !important;
  }

  .overview-card-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 0 !important;
  }

  .overview-card-icon {
    width: 44px !important;
    height: 36px  !important;
    border-radius: 10px !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important; color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    flex-shrink: 0 !important;
  }

  .overview-card-title {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 !important;
  }

  .overview-card-desc {
    font-size: 13px !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }

  .overview-card-footer {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: 4px !important;
  }

  .overview-card-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    color: #ffffff !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .overview-card-btn:hover {
    background: #b91c1c !important;
    transform: translateX(3px) !important;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2) !important;
  }

  .focus-visual-col {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 260px !important;
    flex-shrink: 0 !important;
  }

  .focus-image-wrapper {
    width: 100% !important;
    height: 100% !important;
    min-height: 250px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08) !important;
  }

  .focus-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
}

/* ==========================================================================
   USER CUSTOM FOCUS OVERVIEW CARD STYLES
   ========================================================================== */
.focus-overview-card {
    display: block;
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border: 1px solid #d7dce5;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: auto;
    min-height: unset;
}

.focus-overview-card[style*="display: none"] {
    display: none !important;
}

.overview-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.overview-card-icon {
    width: 65px;
    height: 65px;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.overview-card-icon i {
    font-size: 30px;
    color: #ffffff !important;
}

.overview-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.overview-card-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 25px;
}

.overview-card-footer {
    margin-top: 15px;
}

.overview-card-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 10px;
    background: #009f78;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.overview-card-btn:hover {
    background: #007d5d;
}




/* ==========================================================================
   COMPACT FOCUS MEGA MENU - REDUCED WIDTH & HEIGHT ENGINE
   ========================================================================== */
@media (min-width: 1025px) {
  .dropdown-menu.focus-mega-menu {
    width: 830px !important;
    max-width: min(830px, calc(100vw - 32px)) !important;
    display: flex !important;
    padding: 16px !important;
    gap: 16px !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12) !important;
    border: 1px solid #e2e8f0 !important;
    align-items: stretch !important;
  }

  /* Compact Sidebar List */
  .focus-sidebar {
    width: 240px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  .focus-sidebar .focus-btn {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 7px 10px !important;
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    font-size: 12.5px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    width: 100% !important;
  }

  .focus-sidebar .focus-btn .icon-box {
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
    background: #fee2e2 !important;
    color: #dc2626 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
  }

  .focus-sidebar .focus-btn span {
    flex: 1 !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    font-size: 12.5px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .focus-sidebar .focus-btn .arrow-icon {
    font-size: 11px !important;
    color: #94a3b8 !important;
  }

  .focus-sidebar .focus-btn.active {
    border: 1.5px solid rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08) !important;
  }

  .focus-sidebar .focus-btn.active .icon-box {
    background: rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
  }

  .focus-sidebar .focus-btn.active span,
  .focus-sidebar .focus-btn.active .arrow-icon {
    color: #ffffff !important;
  }

  /* Compact Main Content Grid */
  .focus-main-content {
    flex: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 210px !important;
    gap: 14px !important;
    align-items: stretch !important;
    min-width: 0 !important;
  }

  .focus-info-col {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: 100% !important;
    min-width: 0 !important;
    position: relative !important;
  }

  /* Submodules Grid (1 Column x 4 Rows - Compact) */
  .focus-preview-submenu {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .focus-preview-submenu[style*="display: none"] {
    display: none !important;
  }

  .focus-preview-submenu .submodules-heading {
    font-size: 10.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    color: #0f172a !important;
    text-transform: uppercase !important;
    margin-bottom: 2px !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
  }

  .focus-preview-submenu .submodules-heading i {
    color: #df2a19 !important;
  }

  .focus-preview-submenu .submodules-heading-line {
    width: 26px !important;
    height: 2px !important;
    background: #df2a19 !important;
    border-radius: 2px !important;
    margin-bottom: 6px !important;
  }

  .focus-preview-submenu .submodules-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(4, 1fr) !important;
    gap: 6px !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
  }

  .focus-preview-submenu .submodule-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 8px 10px !important;
    gap: 10px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .focus-preview-submenu .submodule-card:hover {
    border-color: #df2a19 !important;
    box-shadow: 0 3px 10px rgba(223, 42, 25, 0.1) !important;
    transform: translateX(2px) !important;
    background: #fffbfb !important;
  }

  .focus-preview-submenu .submodule-top {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }

  .focus-preview-submenu .submodule-icon-box {
    width: 26px !important;
    height: 26px !important;
    border-radius: 6px !important;
    font-size: 11.5px !important;
  }

  .focus-preview-submenu .submodule-stat-val {
    font-size: 13px !important;
    font-weight: 800 !important;
  }

  .focus-preview-submenu .submodule-info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .focus-preview-submenu .submodule-card h4 {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 1px 0 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .focus-preview-submenu .submodule-card p {
    font-size: 10.5px !important;
    color: #64748b !important;
    margin: 0 !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .focus-preview-submenu .submodule-arrow-link {
    font-size: 10.5px !important;
    font-weight: 700 !important;
    color: #df2a19 !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }

  /* Compact Overview Card View */
  .focus-overview-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 16px 18px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    min-height: 310px !important;
    width: 100% !important;
    align-self: stretch !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
  }

  .focus-overview-card[style*="display: none"] {
    display: none !important;
  }
  .focus-overview-card[style*="display: block"] {
    display: flex !important;
  }

  .focus-overview-card:hover {
    border-color: #df2a19 !important;
    box-shadow: 0 6px 20px rgba(223, 42, 25, 0.1) !important;
  }

  .overview-card-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 8px !important;
  }

  .overview-card-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important; color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
  }

  .overview-card-title {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 !important;
  }

  .overview-card-desc {
    font-size: 12px !important;
    color: #64748b !important;
    line-height: 1.55 !important;
    margin: 0 0 12px 0 !important;
  }

  .overview-card-footer {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: auto !important;
  }

  .overview-card-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    color: #ffffff !important;
    padding: 7px 15px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .overview-card-btn:hover {
    background: #b91c1c !important;
    transform: translateX(2px) !important;
    box-shadow: 0 3px 10px rgba(5, 150, 105, 0.2) !important;
  }

  /* Compact Visual Column Image */
  .focus-visual-col {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 210px !important;
    flex-shrink: 0 !important;
  }

  .focus-image-wrapper {
    width: 100% !important;
    height: 100% !important;
    min-height: 310px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
  }

  .focus-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
}




/* ==========================================================================
   WIDE SIDEBAR & ZERO CENTER CARD EMPTY SPACE ENGINE
   ========================================================================== */
@media (min-width: 1025px) {
  .dropdown-menu.focus-mega-menu {
    width: 920px !important;
    max-width: min(920px, calc(100vw - 32px)) !important;
    display: flex !important;
    padding: 20px !important;
    gap: 20px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12) !important;
    border: 1px solid #e2e8f0 !important;
    align-items: stretch !important;
  }

  /* Wide Sidebar (No Text Truncation) */
  .focus-sidebar {
    width: 275px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
  }

  .focus-sidebar .focus-btn {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 8px 12px !important;
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 9px !important;
    text-decoration: none !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    width: 100% !important;
  }

  .focus-sidebar .focus-btn .icon-box {
    width: 32px !important;
    height: 32px !important;
    border-radius: 7px !important;
    background: #fee2e2 !important;
    color: #dc2626 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
  }

  .focus-sidebar .focus-btn span {
    flex: 1 !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .focus-sidebar .focus-btn .arrow-icon {
    font-size: 11.5px !important;
    color: #94a3b8 !important;
  }

  .focus-sidebar .focus-btn.active {
    border: 1.5px solid rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.08) !important;
  }

  .focus-sidebar .focus-btn.active .icon-box {
    background: rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
  }

  .focus-sidebar .focus-btn.active span,
  .focus-sidebar .focus-btn.active .arrow-icon {
    color: #ffffff !important;
  }

  /* Main Content Layout */
  .focus-main-content {
    flex: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 240px !important;
    gap: 16px !important;
    align-items: center !important;
    min-width: 0 !important;
  }

  .focus-info-col {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    height: 100% !important;
    min-width: 0 !important;
    position: relative !important;
  }

  /* Submodules Grid (1 Column x 4 Rows) */
  .focus-preview-submenu {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .focus-preview-submenu[style*="display: none"] {
    display: none !important;
  }

  .focus-preview-submenu .submodules-heading {
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    color: #0f172a !important;
    text-transform: uppercase !important;
    margin-bottom: 3px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .focus-preview-submenu .submodules-heading i {
    color: #df2a19 !important;
  }

  .focus-preview-submenu .submodules-heading-line {
    width: 28px !important;
    height: 2px !important;
    background: #df2a19 !important;
    border-radius: 2px !important;
    margin-bottom: 8px !important;
  }

  .focus-preview-submenu .submodules-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(4, auto) !important;
    gap: 7px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .focus-preview-submenu .submodule-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 9px 12px !important;
    gap: 10px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .focus-preview-submenu .submodule-card:hover {
    border-color: #df2a19 !important;
    box-shadow: 0 3px 10px rgba(223, 42, 25, 0.1) !important;
    transform: translateX(2px) !important;
    background: #fffbfb !important;
  }

  .focus-preview-submenu .submodule-top {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }

  .focus-preview-submenu .submodule-icon-box {
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
  }

  .focus-preview-submenu .submodule-stat-val {
    font-size: 13.5px !important;
    font-weight: 800 !important;
  }

  .focus-preview-submenu .submodule-info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .focus-preview-submenu .submodule-card h4 {
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 1px 0 !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .focus-preview-submenu .submodule-card p {
    font-size: 11px !important;
    color: #64748b !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .focus-preview-submenu .submodule-arrow-link {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #df2a19 !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }

  /* Compact Overview Card View (ZERO Center Empty Space) */
  .focus-overview-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 20px 22px !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    height: auto !important;
    width: 100% !important;
    align-self: center !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
  }

  .focus-overview-card[style*="display: none"] {
    display: none !important;
  }
  .focus-overview-card[style*="display: block"] {
    display: flex !important;
  }

  .focus-overview-card:hover {
    border-color: #df2a19 !important;
    box-shadow: 0 6px 20px rgba(223, 42, 25, 0.1) !important;
  }

  .overview-card-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 0 !important;
  }

  .overview-card-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 9px !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important; color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    flex-shrink: 0 !important;
  }

  .overview-card-title {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 !important;
  }

  .overview-card-desc {
    font-size: 13px !important;
    color: #475569 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }

  .overview-card-footer {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: 4px !important;
  }

  .overview-card-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    color: #ffffff !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 12.5px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .overview-card-btn:hover {
    background: #b91c1c !important;
    transform: translateX(3px) !important;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2) !important;
  }

  /* Visual Column Image */
  .focus-visual-col {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 240px !important;
    flex-shrink: 0 !important;
  }

  .focus-image-wrapper {
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  }

  .focus-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
}


/* Force white text on Hero Banners even in Light Theme for Focus Area pages */
html[data-theme="light"] .hero-banner .hero-content h1,
html[data-theme="light"] .hero-banner .hero-content p,
body.light-theme .hero-banner .hero-content h1,
body.light-theme .hero-banner .hero-content p,
html[data-theme="light"] .service-hero .hero-content h1,
html[data-theme="light"] .service-hero .hero-content p,
body.light-theme .service-hero .hero-content h1,
body.light-theme .service-hero .hero-content p {
    color: #ffffff !important;
}


/* ==========================================================================
   FOCUS AREAS DROPDOWN LIGHT RED HIGHLIGHT EFFECT (Matching Services Menu Style)
   ========================================================================== */
.focus-sidebar .focus-btn:hover,
.focus-sidebar .focus-btn.active {
  background: #fff8f6 !important;
  border: 1px solid rgba(223, 42, 25, 0.25) !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(223, 42, 25, 0.06) !important;
}

.focus-sidebar .focus-btn.active .icon-box,
.focus-sidebar .focus-btn:hover .icon-box {
  background: rgba(223, 42, 25, 0.12) !important;
  color: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
  border-radius: 8px !important;
}

.focus-sidebar .focus-btn.active span,
.focus-sidebar .focus-btn:hover span {
  color: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
  font-weight: 700 !important;
}

.focus-sidebar .focus-btn.active .arrow-icon,
.focus-sidebar .focus-btn:hover .arrow-icon {
  color: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
}

/* Overview Learn More Button */
.overview-card-btn,
.focus-overview-card .overview-card-btn {
  background: #fff8f6 !important;
  border: 1px solid rgba(223, 42, 25, 0.3) !important;
  color: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  padding: 10px 22px !important;
  transition: all 0.2s ease !important;
}

.overview-card-btn:hover,
.focus-overview-card .overview-card-btn:hover {
  --tw-bg-opacity: 1;
  background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
  color: #ffffff !important;
  border-color: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
}

/* Dark Mode Adjustments */
[data-theme="dark"] .focus-sidebar .focus-btn:hover,
[data-theme="dark"] .focus-sidebar .focus-btn.active,
body.dark-theme .focus-sidebar .focus-btn:hover,
body.dark-theme .focus-sidebar .focus-btn.active {
  background: rgba(223, 42, 25, 0.15) !important;
  border-color: rgba(223, 42, 25, 0.35) !important;
}

[data-theme="dark"] .focus-sidebar .focus-btn.active .icon-box,
[data-theme="dark"] .focus-sidebar .focus-btn:hover .icon-box,
body.dark-theme .focus-sidebar .focus-btn.active .icon-box,
body.dark-theme .focus-sidebar .focus-btn:hover .icon-box {
  background: rgba(223, 42, 25, 0.25) !important;
  color: #ff6b5b !important;
}

[data-theme="dark"] .focus-sidebar .focus-btn.active span,
[data-theme="dark"] .focus-sidebar .focus-btn:hover span,
body.dark-theme .focus-sidebar .focus-btn.active span,
body.dark-theme .focus-sidebar .focus-btn:hover span,
[data-theme="dark"] .focus-sidebar .focus-btn.active .arrow-icon,
[data-theme="dark"] .focus-sidebar .focus-btn:hover .arrow-icon,
body.dark-theme .focus-sidebar .focus-btn.active .arrow-icon,
body.dark-theme .focus-sidebar .focus-btn:hover .arrow-icon {
  color: #ff6b5b !important;
}


/* ==========================================================================
   COMPACT & PROFESSIONAL HEADER LAYOUT (Reduced Top Spacing & Clean Height)
   ========================================================================== */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  transition: all 0.3s ease !important;
}

.nav-wrap,
.site-header .nav-wrap {
  height: 58px !important;
  min-height: 58px !important;
  gap: 16px !important;
}

.logo-img,
.site-logo .logo-img {
  height: 36px !important;
  max-height: 36px !important;
  width: auto !important;
}

.nav-list a,
.site-header nav .nav-list > li > a {
  padding: 6px 12px !important;
  font-size: 13.5px !important;
}