/* ==========================================================================
   SEE THE FRAME - ULTRA-MODERN 2026 HYPER-FUTURISTIC DESIGN SYSTEM
   Color Palette: Neon Lime (#97DE24 / #A3E635) + Obsidian Void (#050805)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700;800&family=Syne:wght@700;800&display=swap');

:root {
  /* Adapted Brand Tokens from Logo */
  --primary-lime: #8DC63F;
  --neon-lime: #8DC63F;
  --neon-lime-bright: #97DE24;
  --neon-lime-glow: rgba(141, 198, 63, 0.45);
  --neon-lime-subtle: rgba(141, 198, 63, 0.12);
  --lime-border: rgba(141, 198, 63, 0.3);

  /* Cyber Accents */
  --accent-cyan: #06B6D4;
  --accent-emerald: #10B981;

  /* Obsidian Dark Void Palette */
  --bg-void: #070A07;
  --bg-surface: #0E130E;
  --bg-card: rgba(14, 20, 14, 0.75);
  --bg-card-hover: rgba(20, 30, 20, 0.9);
  --bg-glass: rgba(10, 14, 10, 0.88);

  /* Text & Borders */
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(141, 198, 63, 0.4);

  /* Fonts */
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-display: 'Syne', sans-serif;

  /* Glass & Shadows */
  --glass-blur: blur(20px);
  --shadow-neon: 0 0 35px rgba(151, 222, 36, 0.4);
  --shadow-card: 0 25px 50px -15px rgba(0, 0, 0, 0.9);

  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Lenis Smooth Scroll Setup */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Base Resets & Font Smoothing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

@media (max-width: 768px) {
  html {
    font-size: 17px;
  }
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-void);
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

/* Custom Selection */
::selection {
  background-color: var(--neon-lime);
  color: #050805;
}

/* Ultra-Smooth Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-void);
}
::-webkit-scrollbar-thumb {
  background: rgba(151, 222, 36, 0.35);
  border-radius: var(--radius-full);
  transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-lime);
  box-shadow: 0 0 10px rgba(151, 222, 36, 0.6);
}

/* Smooth GPU Acceleration & Reveal Utility Classes */
.gpu-accel {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.reveal-element {
  opacity: 0;
  transform: translateY(35px) scale(0.98);
  filter: blur(4px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Cinematic Text Smooth Scroll Reveal Styles */
.text-smooth-reveal {
  opacity: 0 !important;
  transform: translateY(26px) scale(0.99) !important;
  filter: blur(4px) !important;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform, filter;
}

.text-smooth-revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0px) !important;
}

/* Ambient Background Grid & Scanline FX */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 30%, rgba(151, 222, 36, 0.08) 0%, transparent 60%),
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 100%, 50px 50px, 50px 50px;
  pointer-events: none;
  z-index: -2;
}

.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
  animation: pulseOrb 12s infinite alternate ease-in-out;
}
.orb-1 {
  width: 550px;
  height: 550px;
  background: var(--neon-lime);
  top: -120px;
  left: -120px;
}
.orb-2 {
  width: 650px;
  height: 650px;
  background: #06B6D4;
  bottom: 5%;
  right: -180px;
  animation-delay: -6s;
}

@keyframes pulseOrb {
  0% { transform: scale(1) translate(0, 0); opacity: 0.4; }
  100% { transform: scale(1.2) translate(50px, 40px); opacity: 0.65; }
}

/* Cursor Trail Glow */
.cursor-glow {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(151, 222, 36, 0.18) 0%, transparent 70%);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transition: transform 0.05s ease-out;
}

/* CAMERA HUD OVERLAY (HIDDEN FOR CLEAN DIGITAL MARKETING INTERFACE) */
.hud-overlay,
.hud-corner-tl,
.hud-corner-tr,
.hud-corner-bl,
.hud-corner-br {
  display: none !important;
}

/* Typography Hierarchy Standardization */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--neon-lime) 70%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(151, 222, 36, 0.3));
}

.text-lime {
  color: var(--neon-lime);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--neon-lime-subtle);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius-full);
  color: var(--neon-lime);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(151, 222, 36, 0.15);
}
.badge-tag .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--neon-lime);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neon-lime);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.3; }
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Full-Width Expansive Container for Footer to Fuse Side Free Space */
.site-footer .container {
  max-width: 1560px !important;
  padding: 0 40px !important;
}

/* Magnetic Futuristic Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-lime-bright) 0%, var(--neon-lime) 100%);
  color: #050805;
  box-shadow: var(--shadow-neon);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::after {
  left: 100%;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 45px rgba(163, 230, 53, 0.7);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--lime-border);
  backdrop-filter: var(--glass-blur);
}
.btn-secondary:hover {
  background: var(--neon-lime-subtle);
  border-color: var(--neon-lime);
  color: var(--neon-lime);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(151, 222, 36, 0.3);
}

/* Top Announcement Banner */
.top-banner {
  background: linear-gradient(90deg, #050805 0%, #121E12 50%, #050805 100%);
  border-bottom: 1px solid var(--lime-border);
  padding: 10px 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.5px;
}
.top-banner span {
  color: var(--neon-lime);
  margin-left: 8px;
  text-decoration: underline;
  cursor: pointer;
}

/* Glass Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 8, 5, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, border 0.3s ease;
}
.navbar.scrolled {
  position: fixed;
  top: 0;
  background: rgba(5, 8, 5, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--lime-border);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 16px;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  flex-shrink: 0;
}
.brand-logo svg, .brand-logo img {
  height: 42px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}
.brand-logo:hover svg, .brand-logo:hover img {
  transform: scale(1.06) rotate(-1deg);
  filter: drop-shadow(0 0 12px var(--neon-lime));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 6px 10px;
  white-space: nowrap;
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--neon-lime);
  text-shadow: 0 0 10px rgba(151, 222, 36, 0.5);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--neon-lime);
  box-shadow: 0 0 10px var(--neon-lime);
  transition: width var(--transition-fast);
  border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-cta .btn {
  padding: 9px 20px;
  font-size: 0.88rem;
  white-space: nowrap;
}

/* Navigation Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--neon-lime);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 290px;
  background: rgba(10, 15, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(151, 222, 36, 0.25);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(151, 222, 36, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 6px 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}

.dropdown-item::after {
  display: none !important;
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--neon-lime);
  transition: all 0.2s ease;
}

.dropdown-icon svg {
  width: 18px;
  height: 18px;
}

.dropdown-item:hover .dropdown-icon {
  background: var(--neon-lime);
  color: #070907;
  border-color: var(--neon-lime);
  box-shadow: 0 0 15px rgba(151, 222, 36, 0.4);
}

.dropdown-info {
  display: flex;
  flex-direction: column;
}

.dropdown-title {
  color: #F8FAFC;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.dropdown-item:hover .dropdown-title {
  color: var(--neon-lime);
}

.dropdown-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
  margin-top: 2px;
}



.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO SECTION with 3D Holographic Canvas */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.stat-item h3 {
  font-size: 2.2rem;
  color: var(--neon-lime);
  font-weight: 800;
  text-shadow: 0 0 15px rgba(151, 222, 36, 0.4);
}
.stat-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   3D ROTATING KINETIC CUBE CAROUSEL
   ========================================================================== */
.cube-section-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.cube-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.glow-badge {
  background: rgba(141, 198, 63, 0.15) !important;
  border-color: var(--neon-lime) !important;
  box-shadow: 0 0 20px rgba(141, 198, 63, 0.25);
  margin-bottom: 18px !important;
  display: inline-flex;
}

.cube-section-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}

.animated-gradient-text {
  background: linear-gradient(90deg, #97DE24, #06B6D4, #10B981, #97DE24);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cube-section-desc {
  font-size: 1.05rem;
  color: #CBD5E1;
  line-height: 1.7;
}

/* 3D PERSPECTIVE STAGE */
.cube-3d-stage {
  perspective: 1200px;
  perspective-origin: 50% 50%;
  width: 100%;
  max-width: 780px;
  height: 500px;
  margin: 0 auto 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* THE 3D CUBE CONTAINER */
.cube-3d {
  width: 580px;
  height: 420px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 3D CUBE FACES */
.cube-face {
  position: absolute;
  width: 580px;
  height: 420px;
  background: linear-gradient(135deg, rgba(14, 24, 14, 0.95) 0%, rgba(5, 10, 5, 0.98) 100%);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), inset 0 0 30px rgba(141, 198, 63, 0.08);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.cube-face::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #97DE24, #06B6D4);
}

/* 3D FACE TRANSLATIONS FOR A 580px WIDE CUBE (Depth radius ~ 290px) */
.cube-face-front  { transform: rotateY(  0deg) translateZ(290px); }
.cube-face-right  { transform: rotateY( 90deg) translateZ(290px); border-color: #06B6D4; }
.cube-face-right::before { background: linear-gradient(90deg, #06B6D4, #10B981); }

.cube-face-back   { transform: rotateY(180deg) translateZ(290px); border-color: #10B981; }
.cube-face-back::before { background: linear-gradient(90deg, #10B981, #97DE24); }

.cube-face-left   { transform: rotateY(-90deg) translateZ(290px); border-color: rgba(141, 198, 63, 0.5); }

/* CUBE FACE CONTENT */
.c-face-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon-lime);
  background: rgba(141, 198, 63, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(141, 198, 63, 0.25);
  margin-bottom: 12px;
  align-self: flex-start;
}

.cube-face-right .c-face-tag { color: #06B6D4; background: rgba(6, 182, 212, 0.12); border-color: rgba(6, 182, 212, 0.25); }
.cube-face-back .c-face-tag { color: #10B981; background: rgba(16, 185, 129, 0.12); border-color: rgba(16, 185, 129, 0.25); }

.c-face-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 10px;
}

.c-face-desc {
  font-size: 0.94rem;
  color: #94A3B8;
  line-height: 1.55;
  margin-bottom: 16px;
}

.c-face-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.c-face-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: #E2E8F0;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.c-face-bullets li i {
  color: var(--neon-lime);
  width: 15px;
  height: 15px;
}

.cube-face-right .c-face-bullets li i { color: #06B6D4; }
.cube-face-back .c-face-bullets li i { color: #10B981; }

.c-face-footer {
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.c-face-stat-val {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--neon-lime);
  line-height: 1;
}

.cube-face-right .c-face-stat-val { color: #06B6D4; }
.cube-face-back .c-face-stat-val { color: #10B981; }

.c-face-stat-lbl {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* 3D CONTROLS BAR */
.cube-controls-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 10px;
}

.cube-btn {
  background: rgba(18, 30, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cube-btn:hover {
  background: rgba(30, 50, 30, 0.9);
  border-color: var(--neon-lime);
  color: #FFFFFF;
  transform: translateY(-2deg);
}

.cube-btn.active {
  background: var(--neon-lime);
  border-color: var(--neon-lime);
  color: #050805;
  box-shadow: 0 0 20px rgba(141, 198, 63, 0.4);
}

.cube-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(18, 30, 18, 0.8);
  border: 1px solid var(--lime-border);
  color: var(--neon-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cube-arrow-btn:hover {
  background: var(--neon-lime);
  color: #050805;
  box-shadow: 0 0 20px rgba(141, 198, 63, 0.5);
}

@media (max-width: 768px) {
  .cube-3d-stage {
    height: 480px;
  }
  .cube-3d, .cube-face {
    width: 320px;
    height: 440px;
  }
  .cube-face-front  { transform: rotateY(  0deg) translateZ(160px); }
  .cube-face-right  { transform: rotateY( 90deg) translateZ(160px); }
  .cube-face-back   { transform: rotateY(180deg) translateZ(160px); }
  .cube-face-left   { transform: rotateY(-90deg) translateZ(160px); }
  
  .cube-controls-bar {
    flex-wrap: wrap;
  }
}

/* 3D Canvas Visualizer Wrapper */
.hero-3d-wrapper {
  position: relative;
  width: 100%;
  height: 540px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at center, rgba(15, 26, 15, 0.5) 0%, rgba(5, 8, 5, 0.9) 100%);
  border: 1px solid var(--lime-border);
  box-shadow: 0 0 60px rgba(151, 222, 36, 0.2);
  overflow: hidden;
}
#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.canvas-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--lime-border);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  box-shadow: var(--shadow-card);
}
.canvas-overlay-badge i {
  color: var(--neon-lime);
}

/* 3D KINETIC SPINNING RING CAROUSEL */
.logo-carousel-section {
  padding: 80px 0 120px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.logo-carousel-stage {
  position: relative;
  width: 100%;
  height: 420px;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  user-select: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(151, 222, 36, 0.08) 0%, transparent 100%);
}
.logo-carousel-pedestal {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(151, 222, 36, 0.12) 0%, rgba(151, 222, 36, 0.01) 60%, transparent 80%);
  border: 1px solid rgba(151, 222, 36, 0.15);
  border-radius: 50%;
  transform: rotateX(80deg) translateY(120px) translateZ(-120px);
  box-shadow: 0 0 50px rgba(151, 222, 36, 0.2), inset 0 0 50px rgba(151, 222, 36, 0.1);
  pointer-events: none;
  z-index: 1;
}
.logo-carousel-grid-base {
  position: absolute;
  width: 680px;
  height: 680px;
  border: 2px dashed rgba(151, 222, 36, 0.3);
  border-radius: 50%;
  transform: rotateX(80deg) translateY(120px) translateZ(-120px);
  pointer-events: none;
  z-index: 1;
  animation: rotate-grid-base 45s linear infinite;
}
@keyframes rotate-grid-base {
  0% { transform: rotateX(80deg) translateY(120px) translateZ(-120px) rotate(0deg); }
  100% { transform: rotateX(80deg) translateY(120px) translateZ(-120px) rotate(360deg); }
}
.logo-carousel-ring {
  position: absolute;
  width: 180px;
  height: 100px;
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
  cursor: grab;
  z-index: 2;
}
.logo-carousel-ring-top {
  top: 70px;
}
.logo-carousel-ring-bottom {
  top: 230px;
}
.logo-carousel-ring:active {
  cursor: grabbing;
}
.logo-carousel-ring .glass-logo-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 100px;
  background: rgba(10, 24, 10, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(151, 222, 36, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.logo-carousel-ring-bottom .glass-logo-item {
  /* Reflection only on the bottom ring closer to pedestal */
  -webkit-box-reflect: bottom 8px linear-gradient(transparent, transparent 50%, rgba(255, 255, 255, 0.15));
}
.logo-carousel-ring .glass-logo-item {
  opacity: 0.85;
  filter: none;
}
.logo-carousel-ring .glass-logo-item:hover {
  opacity: 1;
  filter: brightness(1.1);
  border-color: rgba(151, 222, 36, 0.7);
  background: rgba(15, 35, 15, 0.75);
  box-shadow: 0 0 35px rgba(151, 222, 36, 0.45);
}
.brand-logo-svg {
  width: auto;
  height: 40px;
  max-width: 120px;
  transform: translateZ(25px);
  transition: transform 0.4s ease;
}
.brand-logo-img {
  max-width: 154px;
  max-height: 76px;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: translateZ(25px);
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
  border-radius: 8px;
  background: #ffffff;
  padding: 6px 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.logo-carousel-ring .glass-logo-item:hover .brand-logo-svg,
.logo-carousel-ring .glass-logo-item:hover .brand-logo-img {
  transform: translateZ(40px) scale(1.08);
  box-shadow: 0 0 25px rgba(151, 222, 36, 0.5);
}

/* SERVICES SECTION (Glowing Cards) */
.section-padding {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

/* Glowing 3D Glass Cards */
.service-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition-smooth);
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(151, 222, 36, 0.15), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--neon-lime);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px -15px rgba(151, 222, 36, 0.3);
  background: var(--bg-card-hover);
}
.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--neon-lime-subtle);
  border: 1px solid var(--lime-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-lime);
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: transform var(--transition-smooth);
}
.service-card:hover .service-icon {
  transform: scale(1.12) rotate(6deg);
  background: var(--neon-lime);
  color: #050805;
  box-shadow: 0 0 20px var(--neon-lime);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 24px;
}
.service-features {
  list-style: none;
  margin-bottom: 24px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-features li i, .service-features li svg {
  color: var(--neon-lime);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--neon-lime);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.95rem;
}
.service-link i {
  transition: transform var(--transition-fast);
}
.service-link:hover i {
  transform: translateX(6px);
}

/* PROJECT BUDGET ESTIMATOR BOX */
.estimator-box {
  background: linear-gradient(135deg, rgba(10, 16, 10, 0.95) 0%, rgba(18, 28, 18, 0.95) 100%);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.estimator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.estimator-options h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--neon-lime);
}
.option-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.option-btn {
  padding: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.option-btn:hover, .option-btn.selected {
  border-color: var(--neon-lime);
  background: var(--neon-lime-subtle);
  color: var(--neon-lime);
  box-shadow: 0 0 15px rgba(151, 222, 36, 0.2);
}
.option-btn span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.estimate-summary {
  background: var(--bg-void);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.estimate-price {
  font-size: 3.4rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--neon-lime);
  margin: 16px 0;
  text-shadow: 0 0 20px rgba(151, 222, 36, 0.4);
}

/* ABOUT US SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-card-stack {
  position: relative;
  height: 420px;
}
.stack-card {
  position: absolute;
  width: 85%;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--lime-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth);
}
.stack-card-1 { top: 0; left: 0; z-index: 3; }
.stack-card-2 { top: 60px; left: 40px; z-index: 2; opacity: 0.8; transform: scale(0.95); }
.stack-card-3 { top: 120px; left: 80px; z-index: 1; opacity: 0.6; transform: scale(0.9); }

/* PORTFOLIO / CASE STUDIES (FILTERABLE) */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--neon-lime);
  color: #050805;
  border-color: var(--neon-lime);
  box-shadow: var(--shadow-neon);
}

/* ==========================================================================
   CINEMATIC WIDE VIDEO BANNER SHOWCASE
   ========================================================================== */
.video-banner-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.video-banner-card {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--lime-border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(141, 198, 63, 0.2);
  cursor: pointer;
  transition: all var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-banner-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--neon-lime);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.95), 0 0 50px rgba(141, 198, 63, 0.45);
}

.video-banner-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.banner-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 7, 0.45) 0%, rgba(7, 10, 7, 0.88) 100%);
  transition: background 0.3s ease;
}

.video-banner-card:hover .video-banner-overlay {
  background: linear-gradient(180deg, rgba(7, 10, 7, 0.35) 0%, rgba(7, 10, 7, 0.8) 100%);
}

.video-banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-banner-play-btn {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-lime-bright) 0%, var(--neon-lime) 100%);
  color: #050805;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 35px rgba(141, 198, 63, 0.6);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-banner-play-btn svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
}

.video-banner-card:hover .video-banner-play-btn {
  transform: scale(1.15);
  box-shadow: 0 0 55px rgba(141, 198, 63, 0.9);
}

.video-banner-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.video-banner-subtitle {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neon-lime);
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* CUSTOM FLOATING SOUND CONTROL BUTTON */
.video-sound-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(14, 20, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius-full);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(141, 198, 63, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.video-sound-btn:hover {
  transform: translateY(-3px) scale(1.04);
  background: rgba(20, 30, 20, 0.95);
  border-color: var(--neon-lime);
  color: var(--neon-lime);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(141, 198, 63, 0.5);
}

.video-sound-btn.unmuted {
  background: linear-gradient(135deg, var(--neon-lime-bright) 0%, var(--neon-lime) 100%);
  color: #050805;
  border-color: var(--neon-lime-bright);
  box-shadow: 0 0 35px rgba(163, 230, 53, 0.7);
}

.video-sound-btn.unmuted:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 45px rgba(163, 230, 53, 0.9);
}

.sound-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sound-icon-wrap svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .video-banner-card {
    height: 340px;
    border-radius: 16px;
  }
  .video-banner-title {
    font-size: 1.7rem;
  }
  .video-banner-subtitle {
    font-size: 0.95rem;
  }
  .video-banner-play-btn {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }
  .video-banner-play-btn svg {
    width: 24px;
    height: 24px;
  }
  .video-sound-btn {
    bottom: 14px;
    right: 14px;
    padding: 8px 14px;
    font-size: 0.75rem;
  }
}

.showcase-split-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

/* 1. VERTICAL VIDEO SHORTS SMARTPHONE MOCKUP */
.video-shorts-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.shorts-phone-frame {
  width: 320px;
  height: 530px;
  background: #000;
  border: 10px solid #1E293B;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 25px rgba(141, 198, 63, 0.15);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.shorts-phone-frame:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--neon-lime);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 35px rgba(141, 198, 63, 0.35);
}

/* Phone Notch/Island */
.shorts-phone-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #1E293B;
  border-radius: 10px;
  z-index: 15;
}

/* Phone Screen Media Area */
.shorts-screen-content {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%), url('../assets/natural-brand.png') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px 20px 20px 20px;
}

/* Shorts Vertical Action Overlay Buttons */
.shorts-actions-overlay {
  position: absolute;
  right: 12px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 5;
}

.shorts-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  font-size: 0.7rem;
  font-weight: 700;
}

.shorts-action-btn i {
  width: 32px;
  height: 32px;
  background: rgba(18, 30, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.shorts-phone-frame:hover .shorts-action-btn:nth-child(1) i {
  color: #EF4444; /* Like button turns red */
  background: rgba(239, 68, 68, 0.15);
  border-color: #EF4444;
  transform: scale(1.1);
}

.shorts-phone-frame:hover .shorts-action-btn:nth-child(2) i {
  color: #06B6D4; /* Comment button turns cyan */
  background: rgba(6, 182, 212, 0.15);
  border-color: #06B6D4;
  transform: scale(1.1);
}

/* Rotating CD/Sound Icon */
.shorts-music-disc {
  width: 30px;
  height: 30px;
  background: conic-gradient(#1e293b, #97de24, #1e293b);
  border: 3px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: rotateDisc 4s linear infinite;
  margin-top: 4px;
}

@keyframes rotateDisc {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Text Overlay Details */
.shorts-info-overlay {
  z-index: 5;
  color: #FFFFFF;
  text-align: left;
  max-width: 80%;
}

.shorts-author {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--neon-lime);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.shorts-author span {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
}

.shorts-caption {
  font-size: 0.78rem;
  line-height: 1.4;
  color: #E2E8F0;
  margin-bottom: 10px;
}

.shorts-music-track {
  font-size: 0.72rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.shorts-music-track i {
  width: 12px;
  height: 12px;
  animation: bounceMusic 1s infinite alternate;
}

@keyframes bounceMusic {
  0% { transform: translateY(0); }
  100% { transform: translateY(-3px); }
}

/* Custom indicator line at the bottom center of the phone */
.shorts-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  z-index: 15;
}

.video-play-trigger-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--neon-lime);
  color: #050805;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(141, 198, 63, 0.5);
  transition: all 0.3s ease;
  z-index: 2;
}

.shorts-phone-frame:hover .video-play-trigger-btn {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 35px rgba(141, 198, 63, 0.85);
}

.video-play-trigger-btn i {
  width: 20px;
  height: 20px;
  fill: currentColor;
  margin-left: 3px;
}

.video-audio-waves {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  margin-left: auto;
}

.video-audio-waves span {
  width: 2.5px;
  background: var(--neon-lime);
  border-radius: 1px;
  animation: wavePulse 1.2s infinite ease-in-out alternate;
}
.video-audio-waves span:nth-child(2) { height: 10px; animation-delay: 0.2s; }
.video-audio-waves span:nth-child(3) { height: 16px; animation-delay: 0.4s; }
.video-audio-waves span:nth-child(4) { height: 12px; animation-delay: 0.1s; }
.video-audio-waves span:nth-child(5) { height: 6px; animation-delay: 0.3s; }

@keyframes wavePulse {
  0% { height: 3px; }
  100% { height: 20px; }
}

.video-card-details h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 12px;
}

.video-card-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* 2. WORKED WEBSITE CARD (BROWSER MOCKUP) */
.worked-website-card {
  position: relative;
  height: 480px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transition: all var(--transition-smooth);
}

.worked-website-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.7), 0 0 35px rgba(6, 182, 212, 0.25);
  border-color: #06B6D4;
}

.browser-header-mockup {
  height: 44px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 16px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #FF5F56; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #27C93F; }

.browser-address-bar {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  height: 26px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 0.72rem;
  color: #94A3B8;
  font-family: monospace;
}

.browser-address-bar i {
  width: 12px;
  height: 12px;
  margin-right: 6px;
  color: #10B981;
}

.browser-content-area {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #0A0F0A;
}

.browser-website-scroll {
  width: 100%;
  height: 100%;
  background: url('../assets/natural-seo.png') no-repeat top center;
  background-size: cover;
  transition: background-position 5s ease-in-out;
}

.worked-website-card:hover .browser-website-scroll {
  background-position: bottom center;
}

.browser-metric-floating {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(5, 10, 5, 0.9);
  border: 1px solid rgba(6, 182, 212, 0.3);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-metric-floating i {
  color: #06B6D4;
}

.browser-metric-floating .num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
}

.browser-metric-floating .lbl {
  font-size: 0.72rem;
  color: #94A3B8;
}

@media (max-width: 991px) {
  .showcase-split-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .work-video-card, .worked-website-card {
    height: 420px;
  }
}

/* SUBPAGE HERO BANNER */
.subpage-hero {
  padding: 80px 0 60px;
  background: radial-gradient(circle at 50% 20%, rgba(151, 222, 36, 0.14) 0%, rgba(5, 8, 5, 0.95) 70%);
  border-bottom: 1px solid var(--lime-border);
  text-align: center;
}
.subpage-hero h1 {
  font-size: 3.4rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.subpage-hero p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 24px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.breadcrumbs a {
  color: var(--neon-lime);
  text-decoration: none;
}

/* FAQ ACCORDION STYLES */
/* PREMIUM 3D FAQ SECTION & ACCORDION STYLES */
.faq-accordion {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  perspective: 1200px;
}

.faq-item {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 28, 23, 0.75), rgba(10, 15, 12, 0.85));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(151, 222, 36, 0.18);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-style: preserve-3d;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--neon-lime), #00F2FE);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 4px 0 0 4px;
}

.faq-item:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(151, 222, 36, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(151, 222, 36, 0.2);
}

.faq-item:hover::before,
.faq-item.active::before {
  opacity: 1;
}

.faq-item.active {
  border-color: var(--neon-lime);
  background: linear-gradient(135deg, rgba(24, 34, 28, 0.9), rgba(12, 18, 15, 0.95));
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7), 0 0 35px rgba(151, 222, 36, 0.28);
}

.faq-question {
  padding: 24px 30px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  user-select: none;
}

.faq-question-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--neon-lime);
  background: rgba(151, 222, 36, 0.12);
  border: 1px solid rgba(151, 222, 36, 0.3);
  padding: 4px 12px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(151, 222, 36, 0.2);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.faq-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(151, 222, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-lime);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.faq-item:hover .faq-icon-box {
  background: rgba(151, 222, 36, 0.15);
  border-color: var(--neon-lime);
  box-shadow: 0 0 15px rgba(151, 222, 36, 0.3);
}

.faq-item.active .faq-icon-box {
  background: var(--neon-lime);
  color: #0A0F0D;
  transform: rotate(180deg);
  box-shadow: 0 0 20px rgba(151, 222, 36, 0.5);
  border-color: var(--neon-lime);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.4s ease, opacity 0.3s ease;
  padding: 0 30px;
  opacity: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 30px 26px 30px;
}

/* 3D Highlight Pills Bar */
.faq-3d-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.faq-highlight-pill {
  background: rgba(20, 28, 23, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(151, 222, 36, 0.25);
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.faq-highlight-pill:hover {
  border-color: var(--neon-lime);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6), 0 0 20px rgba(151,222,36,0.25);
}

.faq-highlight-pill i {
  color: var(--neon-lime);
  font-size: 1.1rem;
}

/* PREMIUM 3D FAQ SECTION & VISUAL STYLES */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.faq-3d-card {
  position: relative;
  border-radius: 24px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(151, 222, 36, 0.04));
  border: 1px solid rgba(151, 222, 36, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(151, 222, 36, 0.18);
  perspective: 1000px;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease, border-color 0.6s ease;
}

.faq-3d-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.85), 0 0 50px rgba(151, 222, 36, 0.35);
  border-color: rgba(151, 222, 36, 0.6);
}

.faq-3d-visual-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #090e0c;
}

.faq-3d-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: brightness(1.05) contrast(1.05);
}

.faq-3d-card:hover .faq-3d-image {
  transform: scale(1.05);
}

/* Floating Glass Badges */
.faq-floating-badge {
  position: absolute;
  background: rgba(12, 18, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(151, 222, 36, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 700;
  z-index: 5;
  animation: floatBadge 4.5s ease-in-out infinite alternate;
}

.faq-floating-badge.badge-top-left {
  top: 28px;
  left: 28px;
  animation-delay: 0s;
}

.faq-floating-badge.badge-bottom-right {
  bottom: 28px;
  right: 28px;
  animation-delay: 2.2s;
}

.faq-floating-badge i {
  color: var(--neon-lime);
  font-size: 1.15rem;
}

.faq-badge-pulse {
  width: 10px;
  height: 10px;
  background-color: var(--neon-lime);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neon-lime);
  animation: pulseGlow 1.6s infinite alternate;
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

@keyframes pulseGlow {
  0% { opacity: 0.4; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1.35); }
}

.faq-glow-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(151, 222, 36, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
  top: -60px;
  left: -60px;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
}

/* PRICING TIERS GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition-smooth);
}
.pricing-card.featured {
  border-color: var(--neon-lime);
  box-shadow: 0 0 45px rgba(151, 222, 36, 0.3);
  background: linear-gradient(180deg, rgba(18, 28, 18, 0.95) 0%, rgba(10, 16, 10, 0.95) 100%);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  right: 32px;
  background: var(--neon-lime);
  color: #050805;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}
.pricing-price {
  font-size: 3.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--neon-lime);
  margin: 16px 0;
}
.pricing-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.pricing-card ul li i, .pricing-card ul li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: all var(--transition-smooth);
}
.team-card:hover {
  border-color: var(--neon-lime);
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(151, 222, 36, 0.2);
}
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--neon-lime);
  object-fit: cover;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(151, 222, 36, 0.4);
}

/* BLOG & ARTICLES SECTION */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-card:hover {
  border-color: var(--neon-lime);
  transform: translateY(-6px);
  background: var(--bg-card-hover);
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.blog-meta .cat {
  color: var(--neon-lime);
  font-weight: 800;
}

/* CONTACT SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.method-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--neon-lime-subtle);
  border: 1px solid var(--lime-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-lime);
  font-size: 1.3rem;
}

.contact-form-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-main);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-void);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--neon-lime);
  box-shadow: 0 0 20px rgba(151, 222, 36, 0.3);
}

/* =============================================
   ULTRA-PREMIUM GLOBAL FOOTER DESIGN SYSTEM
   ============================================= */

.site-footer {
  position: relative;
  background: #020402;
  border-top: 1px solid rgba(141, 198, 63, 0.2);
  padding: 0 0 36px;
  color: var(--text-muted);
  overflow: hidden;
}

.footer-ambient-glow {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 350px;
  background: radial-gradient(ellipse at center, rgba(141, 198, 63, 0.1) 0%, rgba(6, 182, 212, 0.04) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

/* Footer Top Status Bar & Watermark */
.footer-top-status-bar {
  background: rgba(10, 16, 10, 0.85);
  border-bottom: 1px solid rgba(141, 198, 63, 0.15);
  padding: 16px 0;
  margin-bottom: 64px;
}

/* ULTRA-PREMIUM FOOTER REDESIGN */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #070B09 0%, #030504 100%);
  border-top: 1px solid rgba(151, 222, 36, 0.2);
  padding: 0 0 40px 0;
  overflow: hidden;
  color: #e2e8f0;
}

.footer-ambient-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(151, 222, 36, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  filter: blur(80px);
}

/* Top Status & Watermark Bar */
.footer-top-status-bar {
  background: rgba(15, 22, 18, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(151, 222, 36, 0.15);
  padding: 16px 0;
  margin-bottom: 60px;
}

.footer-status-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-agency-status {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(151, 222, 36, 0.08);
  border: 1px solid rgba(151, 222, 36, 0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 500;
}

.status-dot-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-lime);
  box-shadow: 0 0 14px var(--neon-lime);
  animation: statusPulse 1.8s infinite ease-in-out;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--neon-lime); }
  50% { opacity: 0.5; transform: scale(1.3); box-shadow: 0 0 20px var(--neon-lime); }
}

.footer-watermark-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  background: linear-gradient(90deg, rgba(151, 222, 36, 0.6), rgba(255, 255, 255, 0.9), rgba(151, 222, 36, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  user-select: none;
}

.footer-top-cta-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--neon-lime);
  background: rgba(151, 222, 36, 0.1);
  border: 1px solid rgba(151, 222, 36, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.footer-top-cta-link:hover {
  background: var(--neon-lime);
  color: #0A0F0D;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(151, 222, 36, 0.5);
}

/* Footer 4-Column Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.1fr 1.8fr;
  gap: 48px;
  margin-top: 60px;
  margin-bottom: 60px;
  align-items: start;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-brand-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 400px;
}

/* Big Size Social Buttons Bar & Authentic Original Brand Colors */
.footer-social-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-social-btn {
  width: 54px !important;
  height: 54px !important;
  border-radius: 16px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.footer-social-btn svg {
  width: 24px !important;
  height: 24px !important;
  stroke: #ffffff !important;
  color: #ffffff !important;
  fill: none !important;
  stroke-width: 2px !important;
  display: block !important;
  transition: transform 0.35s ease;
}

/* 1. LinkedIn (Original Tone: #0A66C2) */
.footer-social-btn.linkedin {
  background: #0A66C2 !important;
  border: 1px solid #0d73da !important;
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.45);
}
.footer-social-btn.linkedin:hover {
  transform: translateY(-5px) scale(1.12);
  box-shadow: 0 14px 30px rgba(10, 102, 194, 0.75), 0 0 20px rgba(10, 102, 194, 0.5);
  background: #0077b5 !important;
}

/* 2. Twitter / X (Original Tone: Sky Blue #1DA1F2) */
.footer-social-btn.twitter {
  background: #1DA1F2 !important;
  border: 1px solid #38b0f8 !important;
  box-shadow: 0 8px 20px rgba(29, 161, 242, 0.45);
}
.footer-social-btn.twitter:hover {
  transform: translateY(-5px) scale(1.12);
  box-shadow: 0 14px 30px rgba(29, 161, 242, 0.75), 0 0 20px rgba(29, 161, 242, 0.5);
  background: #0c85d0 !important;
}

/* 3. Instagram (Original Tone: Authentic Multi-Color Gradient) */
.footer-social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.45);
}
.footer-social-btn.instagram:hover {
  transform: translateY(-5px) scale(1.12);
  box-shadow: 0 14px 30px rgba(225, 48, 108, 0.75), 0 0 20px rgba(225, 48, 108, 0.5);
  filter: brightness(1.12);
}

/* 4. YouTube (Original Tone: #FF0000) */
.footer-social-btn.youtube {
  background: #FF0000 !important;
  border: 1px solid #ff3333 !important;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.45);
}
.footer-social-btn.youtube:hover {
  transform: translateY(-5px) scale(1.12);
  box-shadow: 0 14px 30px rgba(255, 0, 0, 0.75), 0 0 20px rgba(255, 0, 0, 0.5);
  background: #e60000 !important;
}

/* 5. GitHub (Original Tone: Dark Metallic #181717) */
.footer-social-btn.github {
  background: #181717 !important;
  border: 1.5px solid #333333 !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}
.footer-social-btn.github:hover {
  transform: translateY(-5px) scale(1.12);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.25), 0 0 20px rgba(255, 255, 255, 0.15);
  background: #24292e !important;
  border-color: #555555 !important;
}

.footer-social-btn:hover svg {
  transform: scale(1.1);
}

/* Contact Pills Group & Phone Pill */
.footer-contact-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(151, 222, 36, 0.08);
  border: 1px solid rgba(151, 222, 36, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neon-lime);
  width: fit-content;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-location-pill i,
.footer-location-pill svg,
.perk-tag svg {
  width: 14px;
  height: 14px;
  color: var(--neon-lime);
}

/* ==========================================================================
   ULTRA-CREATIVE CLOCK ANIMATION DESIGN & WIDGET STYLES
   ========================================================================== */

/* 1. FOOTER MINI ANIMATED CLOCK PILL */
.footer-hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.09) 0%, rgba(141, 198, 63, 0.09) 100%);
  border: 1px solid rgba(0, 242, 254, 0.35);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00F2FE;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.15);
  transition: all 0.35s ease;
  position: relative;
}

.footer-hours-pill:hover {
  border-color: var(--neon-lime, #8dc63f);
  box-shadow: 0 6px 25px rgba(141, 198, 63, 0.35);
  transform: translateY(-2px);
}

.animated-mini-clock {
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-clock-dial {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.8px solid #00F2FE;
  position: relative;
  box-shadow: 0 0 8px rgba(0, 242, 254, 0.6);
  animation: miniDialGlow 3s infinite alternate ease-in-out;
}

.mini-clock-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: 50% 100%;
  border-radius: 2px;
}

.mini-hour-hand {
  width: 1.8px;
  height: 5.5px;
  background: #8dc63f;
  margin-left: -0.9px;
  animation: clockRotate 16s linear infinite;
  box-shadow: 0 0 4px #8dc63f;
}

.mini-minute-hand {
  width: 1.4px;
  height: 8.5px;
  background: #00F2FE;
  margin-left: -0.7px;
  animation: clockRotate 2.5s linear infinite;
  box-shadow: 0 0 4px #00F2FE;
}

.mini-clock-center {
  width: 3px;
  height: 3px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 4px #ffffff;
}

.live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  background: rgba(141, 198, 63, 0.18);
  border: 1px solid rgba(141, 198, 63, 0.4);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #8dc63f;
  letter-spacing: 0.05em;
  margin-left: 2px;
}

.live-status-badge.closed {
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.live-status-badge.closed .status-dot {
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8dc63f;
  box-shadow: 0 0 8px #8dc63f;
  animation: statusPulse 1.5s infinite ease-in-out;
}

/* 2. LARGE CREATIVE CLOCK WIDGET STYLING */
.creative-clock-container {
  width: 90px;
  height: 90px;
  position: relative;
  margin: 0 auto 12px;
}

.clock-radar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(0, 242, 254, 0.3) 70%, #8dc63f 100%);
  animation: radarSpin 4s linear infinite;
  mask: radial-gradient(transparent 58%, black 60%);
  -webkit-mask: radial-gradient(transparent 58%, black 60%);
  filter: drop-shadow(0 0 10px rgba(141, 198, 63, 0.6));
}

.clock-dial-frame {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 15, 0.95) 0%, rgba(5, 8, 5, 0.98) 100%);
  border: 2px solid rgba(141, 198, 63, 0.4);
  box-shadow: inset 0 0 15px rgba(0, 242, 254, 0.2), 0 0 20px rgba(0, 0, 0, 0.8);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clock-tick {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}
.tick-12 { top: 6px; left: 50%; width: 2px; height: 7px; transform: translateX(-50%); background: #8dc63f; box-shadow: 0 0 6px #8dc63f; }
.tick-6  { bottom: 6px; left: 50%; width: 2px; height: 7px; transform: translateX(-50%); background: #00F2FE; box-shadow: 0 0 6px #00F2FE; }
.tick-3  { right: 6px; top: 50%; width: 7px; height: 2px; transform: translateY(-50%); background: rgba(255, 255, 255, 0.6); }
.tick-9  { left: 6px; top: 50%; width: 7px; height: 2px; transform: translateY(-50%); background: rgba(255, 255, 255, 0.6); }

.clock-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: 50% 100%;
  border-radius: 3px;
  transition: transform 0.5s cubic-bezier(0.4, 2.08, 0.55, 0.44);
}

.hour-hand {
  width: 3.5px;
  height: 24px;
  background: linear-gradient(to top, #8dc63f, #bbf246);
  margin-left: -1.75px;
  box-shadow: 0 0 8px rgba(141, 198, 63, 0.8);
  z-index: 2;
}

.minute-hand {
  width: 2.5px;
  height: 33px;
  background: linear-gradient(to top, #00F2FE, #4facfe);
  margin-left: -1.25px;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.9);
  z-index: 3;
}

.second-hand {
  width: 1.5px;
  height: 38px;
  background: #ef4444;
  margin-left: -0.75px;
  box-shadow: 0 0 8px #ef4444;
  z-index: 4;
}

.clock-cap {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border: 2px solid #ef4444;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  box-shadow: 0 0 10px #ffffff;
}

.clock-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(141, 198, 63, 0.12);
  border: 1px solid rgba(141, 198, 63, 0.35);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #8dc63f;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.status-dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8dc63f;
  box-shadow: 0 0 10px #8dc63f;
  animation: statusPulse 1.4s ease-in-out infinite;
}

.live-pst-clock-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(5, 8, 5, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: #00F2FE;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  margin-top: 6px;
}

/* ANIMATIONS */
@keyframes clockRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes radarSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes miniDialGlow {
  0% { border-color: #00F2FE; box-shadow: 0 0 6px rgba(0, 242, 254, 0.5); }
  100% { border-color: #8dc63f; box-shadow: 0 0 12px rgba(141, 198, 63, 0.8); }
}

@keyframes statusPulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 6px #8dc63f; }
  50% { transform: scale(1.4); opacity: 0.4; box-shadow: 0 0 14px #8dc63f; }
}



/* ==========================================================================
   ULTRA-PREMIUM 3D VISION & MISSION SECTION STYLING
   ========================================================================== */
.vm-section {
  position: relative;
  background: radial-gradient(circle at 50% 20%, rgba(15, 25, 18, 0.8) 0%, rgba(5, 9, 6, 0.98) 80%);
  overflow: hidden;
  border-top: 1px solid rgba(151, 222, 36, 0.2);
  border-bottom: 1px solid rgba(151, 222, 36, 0.2);
}

.vm-tab-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(12, 18, 14, 0.85);
  border: 1px solid rgba(151, 222, 36, 0.3);
  padding: 8px 12px;
  border-radius: 50px;
  margin-top: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
  justify-content: center;
}

.vm-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vm-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.vm-tab-btn.active {
  background: linear-gradient(135deg, var(--neon-lime), #82d81b);
  color: #060a08;
  box-shadow: 0 0 20px rgba(151, 222, 36, 0.5);
}

.vm-tab-btn.active svg {
  stroke: #060a08;
}

.vm-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 50px;
  margin-bottom: 50px;
  perspective: 1000px;
}

@media (max-width: 992px) {
  .vm-cards-grid {
    grid-template-columns: 1fr;
  }
}

.vm-card {
  position: relative;
  background: linear-gradient(145deg, rgba(16, 24, 19, 0.9), rgba(8, 14, 10, 0.96));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(151, 222, 36, 0.3);
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vm-card.photo-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.vm-card-photo-header {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vm-card-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.vm-card:hover .vm-card-photo-img {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.15);
}

.vm-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 10, 0.2) 0%, rgba(8, 14, 10, 0.85) 100%);
  z-index: 1;
}

.vm-header-top {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.vm-card-body {
  padding: 36px 40px;
}

.vm-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  border-color: rgba(151, 222, 36, 0.7);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(151, 222, 36, 0.3);
}

.vm-card.mission-card:hover {
  border-color: rgba(0, 242, 254, 0.7);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 242, 254, 0.3);
}

.vm-card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(151, 222, 36, 0.25) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  filter: blur(40px);
  border-radius: 50%;
}

.mission-orb {
  background: radial-gradient(circle, rgba(0, 242, 254, 0.25) 0%, rgba(0,0,0,0) 70%);
}

.vm-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.vm-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.vision-glow {
  background: rgba(151, 222, 36, 0.12);
  border: 1.5px solid rgba(151, 222, 36, 0.4);
  color: var(--neon-lime);
  box-shadow: 0 0 20px rgba(151, 222, 36, 0.3);
}

.mission-glow {
  background: rgba(0, 242, 254, 0.12);
  border: 1.5px solid rgba(0, 242, 254, 0.4);
  color: #00F2FE;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.vm-card:hover .vm-icon-wrap {
  transform: scale(1.1) rotate(6deg);
}

.vm-pillar-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 50px;
}

.vision-badge {
  background: rgba(151, 222, 36, 0.12);
  border: 1px solid rgba(151, 222, 36, 0.4);
  color: var(--neon-lime);
}

.mission-badge {
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.4);
  color: #00F2FE;
}

.vm-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 16px;
}

.vm-card-desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 20px;
}

/* Clean Elegant Quote Box (No Bullet Points or Technical Numbers) */
.vm-quote-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(12, 18, 14, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  border-radius: 18px;
  margin-top: 24px;
}

.vision-quote {
  border-color: rgba(151, 222, 36, 0.3);
  background: rgba(151, 222, 36, 0.05);
}

.mission-quote {
  border-color: rgba(0, 242, 254, 0.3);
  background: rgba(0, 242, 254, 0.05);
}

.quote-bar {
  width: 4px;
  height: 48px;
  border-radius: 4px;
  flex-shrink: 0;
}

.vision-bar {
  background: var(--neon-lime);
  box-shadow: 0 0 10px var(--neon-lime);
}

.mission-bar {
  background: #00F2FE;
  box-shadow: 0 0 10px #00F2FE;
}

.quote-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

.vm-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vm-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bullet-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.vision-check {
  background: rgba(151, 222, 36, 0.15);
  border: 1px solid rgba(151, 222, 36, 0.4);
  color: var(--neon-lime);
}

.mission-check {
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(0, 242, 254, 0.4);
  color: #00F2FE;
}

.vm-bullet-list strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 3px;
}

.vm-bullet-list p {
  font-size: 0.88rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

.vm-metric-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(151, 222, 36, 0.08);
  border: 1px solid rgba(151, 222, 36, 0.3);
  padding: 14px 22px;
  border-radius: 18px;
}

.mission-pill {
  background: rgba(0, 242, 254, 0.08);
  border-color: rgba(0, 242, 254, 0.3);
}

.metric-spark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(151, 222, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.cyan-spark {
  background: rgba(0, 242, 254, 0.2);
}

.metric-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.metric-label {
  font-size: 0.82rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Core Values 4-Column Spotlight Grid */
.vm-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .vm-values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .vm-values-grid {
    grid-template-columns: 1fr;
  }
}

.vm-value-card {
  background: rgba(12, 18, 14, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.vm-value-card:hover {
  background: rgba(18, 28, 20, 0.9);
  border-color: rgba(151, 222, 36, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.value-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(151, 222, 36, 0.35);
  margin-bottom: 12px;
}

.vm-value-card:hover .value-num {
  color: var(--neon-lime);
}

.vm-value-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.vm-value-card p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   ULTRA-PREMIUM 3D EXECUTIVE LEADERSHIP SHOWCASE STYLING
   ========================================================================== */
.leadership-section {
  position: relative;
  background: linear-gradient(180deg, #090F0B 0%, #040705 100%);
  overflow: hidden;
  padding: 100px 0;
  border-top: 1px solid rgba(151, 222, 36, 0.15);
  border-bottom: 1px solid rgba(151, 222, 36, 0.15);
}

.leadership-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(151, 222, 36, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  filter: blur(90px);
}

.exec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  perspective: 1000px;
}

@media (max-width: 992px) {
  .exec-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* 3D CIRCULAR AVATAR WALL & HERO SPOTLIGHT DESIGN */
.creative-team-showcase {
  position: relative;
  background: #030206;
  background-image: 
    radial-gradient(circle at 50% 10%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
  padding: 110px 0 130px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team-showcase-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.team-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.section-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.35);
  padding: 8px 22px;
  border-radius: 30px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.team-showcase-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .team-showcase-title {
    font-size: 2.4rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #c4b5fd 0%, #38bdf8 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-showcase-subtitle {
  font-size: 1.08rem;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0 auto;
}

/* FEATURED SPOTLIGHT CARD */
.spotlight-card-wrapper {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  background: linear-gradient(145deg, rgba(15, 20, 32, 0.9) 0%, rgba(8, 10, 18, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95);
  margin-bottom: 54px;
  transition: all 0.4s ease;
  align-items: center;
}

@media (max-width: 900px) {
  .spotlight-card-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px;
    gap: 28px;
  }
}

.spotlight-avatar-box {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
  background: #0b0f19; /* Neutral dark studio background - NO purple wash on faces */
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

@media (max-width: 900px) {
  .spotlight-avatar-box {
    height: 300px;
    max-width: 320px;
    margin: 0 auto;
  }
}

.spotlight-ring-glow {
  display: none; /* Completely removed purple overlay tint over person's face */
}

.spotlight-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.35s ease, transform 0.5s ease;
}

.spotlight-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 3;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.spotlight-details-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 900px) {
  .spotlight-details-box {
    align-items: center;
    text-align: center;
  }
}

.spotlight-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.spotlight-index {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  color: #94a3b8;
  letter-spacing: 0.12em;
}

.spotlight-status-dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 10px #34d399;
}

.spotlight-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.spotlight-role {
  font-size: 1.15rem;
  color: #38bdf8;
  font-weight: 600;
  margin-bottom: 18px;
}

.spotlight-bio {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 600px;
}

.spotlight-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: #e2e8f0;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 16px;
  border-radius: 20px;
}

/* CIRCULAR AVATAR WALL GRID */
.circular-avatar-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  justify-items: center;
}

@media (max-width: 1100px) {
  .circular-avatar-wall {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .circular-avatar-wall {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .circular-avatar-wall {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

.circle-avatar-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  outline: none;
  transition: transform 0.35s ease;
  width: 100%;
}

.circle-avatar-btn:hover {
  transform: translateY(-5px);
}

.circle-photo-frame {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
  background: #0b0f19; /* Neutral dark studio backdrop */
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  transition: all 0.35s ease;
}

.circle-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.circle-avatar-btn.active .circle-photo-frame,
.circle-avatar-btn:hover .circle-photo-frame {
  border-color: #38bdf8;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.5), 0 0 10px rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}

.circle-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.circle-avatar-btn.active .circle-name,
.circle-avatar-btn:hover .circle-name {
  color: #ffffff;
}

.circle-role {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 500;
}

.yellow-dot-accent {
  background: #eab308;
}

.exec-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(151, 222, 36, 0.2) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  filter: blur(35px);
  border-radius: 50%;
}

.david-glow {
  background: radial-gradient(circle, rgba(0, 242, 254, 0.2) 0%, rgba(0,0,0,0) 70%);
}

.elena-glow {
  background: radial-gradient(circle, rgba(225, 48, 108, 0.2) 0%, rgba(0,0,0,0) 70%);
}

.exec-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.exec-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 30px;
}

.marcus-badge {
  background: rgba(151, 222, 36, 0.12);
  border: 1px solid rgba(151, 222, 36, 0.35);
  color: var(--neon-lime);
}

.david-badge {
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.35);
  color: #00F2FE;
}

.elena-badge {
  background: rgba(225, 48, 108, 0.12);
  border: 1px solid rgba(225, 48, 108, 0.35);
  color: #E1306C;
}

.exec-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-lime);
  box-shadow: 0 0 10px var(--neon-lime);
}

.cyan-dot {
  background: #00F2FE;
  box-shadow: 0 0 10px #00F2FE;
}

.magenta-dot {
  background: #E1306C;
  box-shadow: 0 0 10px #E1306C;
}

/* BIG PHOTO BANNER WRAPPER (280px High Full Width Portrait) */
.exec-portrait-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.exec-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.exec-card:hover .exec-portrait {
  transform: scale(1.08);
}

.portrait-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  left: auto;
  transform: none;
  background: rgba(6, 10, 8, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--neon-lime);
  color: var(--neon-lime);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.8);
}

.cyan-pbadge {
  border-color: #00F2FE;
  color: #00F2FE;
}

.magenta-pbadge {
  border-color: #E1306C;
  color: #E1306C;
}

.exec-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.exec-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.exec-role {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--neon-lime);
  margin-bottom: 12px;
}

.david-card .exec-role {
  color: #00F2FE;
}

.elena-card .exec-role {
  color: #E1306C;
}

.exec-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 18px;
}

.exec-tags {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.exec-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.cyan-tag {
  background: rgba(0, 242, 254, 0.05);
  border-color: rgba(0, 242, 254, 0.2);
}

.magenta-tag {
  background: rgba(225, 48, 108, 0.05);
  border-color: rgba(225, 48, 108, 0.2);
}

.exec-connect-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  width: 100%;
  justify-content: flex-start;
}

.exec-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.exec-social-btn.linkedin {
  background: rgba(10, 102, 194, 0.15);
  border: 1px solid rgba(10, 102, 194, 0.4);
  color: #0A66C2;
}

.exec-social-btn.linkedin svg {
  stroke: #0A66C2;
}

.exec-social-btn.linkedin:hover {
  background: #0A66C2;
  box-shadow: 0 6px 18px rgba(10, 102, 194, 0.6);
  transform: translateY(-3px);
}

.exec-social-btn.linkedin:hover svg {
  stroke: #ffffff;
}

.exec-social-btn.email {
  background: rgba(151, 222, 36, 0.12);
  border: 1px solid rgba(151, 222, 36, 0.35);
  color: var(--neon-lime);
}

.exec-social-btn.email svg {
  stroke: var(--neon-lime);
}

.exec-social-btn.email:hover {
  background: var(--neon-lime);
  box-shadow: 0 6px 18px rgba(151, 222, 36, 0.6);
  transform: translateY(-3px);
}

.exec-social-btn.email:hover svg {
  stroke: #060a08;
}

.footer-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #00F2FE;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.footer-phone-pill svg {
  width: 16px;
  height: 16px;
  stroke: #00F2FE;
  transition: stroke 0.3s ease;
}

.footer-phone-pill:hover {
  background: #00F2FE;
  color: #060a08;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.45);
}

.footer-phone-pill:hover svg {
  stroke: #060a08;
}

/* Official Partners Bar (Utilizing Free Area) */
.footer-partners-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.partner-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.partner-badge:hover {
  color: #ffffff;
  border-color: var(--neon-lime);
  background: rgba(151, 222, 36, 0.08);
}

/* Nav Column Titles & Lists */
.footer-brand-col .brand-logo {
  display: block;
  margin-top: 0;
  margin-bottom: 20px;
}

.footer-brand-col .brand-logo svg,
.footer-brand-col .brand-logo img {
  width: auto !important;
  max-width: 185px !important;
  height: 46px !important;
  display: block;
  object-fit: contain;
}

.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
  line-height: 1.2;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-lime, #8dc63f), #00F2FE);
  border-radius: 3px;
}

.footer-nav-list,
.footer-links-list,
.site-footer ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav-list li,
.footer-links-list li,
.site-footer li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-nav-list li a,
.footer-links-list li a,
.site-footer ul li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.footer-nav-list li a i,
.footer-nav-list li a svg,
.footer-links-list li a i,
.footer-links-list li a svg,
.site-footer ul li a i,
.site-footer ul li a svg {
  width: 15px !important;
  height: 15px !important;
  color: var(--neon-lime, #8dc63f) !important;
  stroke: var(--neon-lime, #8dc63f) !important;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-nav-list li a:hover,
.footer-links-list li a:hover,
.site-footer ul li a:hover {
  color: #ffffff !important;
  transform: translateX(6px);
}

.footer-nav-list li a:hover i,
.footer-nav-list li a:hover svg,
.footer-links-list li a:hover i,
.footer-links-list li a:hover svg,
.site-footer ul li a:hover i,
.site-footer ul li a:hover svg {
  transform: translateX(4px);
  color: var(--neon-lime, #8dc63f) !important;
}

/* CYBER-GLOW GROWTH INSIGHTS HUB CARD */
.footer-newsletter-col {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 30, 24, 0.95), rgba(8, 14, 11, 0.98));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(151, 222, 36, 0.35);
  border-radius: 20px !important;
  padding: 34px 28px 30px 28px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.footer-newsletter-col:hover {
  transform: translateY(-4px);
  border-color: rgba(151, 222, 36, 0.65);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 40px rgba(151, 222, 36, 0.28);
}

/* Internal Card Ambient Glow Orb */
.newsletter-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(151, 222, 36, 0.25) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  filter: blur(30px);
  border-radius: 50%;
}

.newsletter-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.newsletter-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.newsletter-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.newsletter-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px !important;
  background: rgba(151, 222, 36, 0.12);
  border: 1px solid rgba(151, 222, 36, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-lime, #8dc63f);
  box-shadow: 0 0 12px rgba(151, 222, 36, 0.2);
  flex-shrink: 0;
}

.newsletter-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--neon-lime, #8dc63f);
  background: rgba(151, 222, 36, 0.1);
  border: 1px solid rgba(151, 222, 36, 0.3);
  padding: 4px 10px;
  border-radius: 30px !important;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-newsletter-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 18px;
  text-align: left;
}

/* Stacked High-Impact Input & Button Layout */
.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-input-wrapper {
  position: relative;
  width: 100%;
}

.footer-input-wrapper .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neon-lime, #8dc63f) !important;
  stroke: var(--neon-lime, #8dc63f) !important;
  width: 18px !important;
  height: 18px !important;
  pointer-events: none;
  z-index: 5;
}

.footer-email-input {
  width: 100%;
  padding: 13px 14px 13px 44px !important;
  background: rgba(6, 10, 8, 0.9);
  border: 1.5px solid rgba(151, 222, 36, 0.25);
  border-radius: 12px !important;
  color: #ffffff;
  font-size: 0.92rem;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.6);
}

.footer-email-input::placeholder {
  color: #64748b;
  opacity: 1;
}

.footer-email-input:focus {
  border-color: var(--neon-lime, #8dc63f);
  box-shadow: 0 0 20px rgba(151, 222, 36, 0.3), inset 0 2px 5px rgba(0,0,0,0.6);
  background: rgba(10, 16, 13, 0.98);
}

/* Full Width Glowing Neon Submit Button */
.footer-action-btn {
  width: 100%;
  padding: 13px 18px;
  border-radius: 12px !important;
  background: linear-gradient(135deg, var(--neon-lime, #8dc63f), #82d81b);
  border: none;
  color: #060a08;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.93rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 6px 20px rgba(151, 222, 36, 0.35);
}

.footer-action-btn svg,
.footer-action-btn i {
  width: 16px !important;
  height: 16px !important;
  stroke: #060a08 !important;
  color: #060a08 !important;
  transition: transform 0.3s ease;
}

.footer-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(151, 222, 36, 0.6);
  background: linear-gradient(135deg, #aef836, var(--neon-lime, #8dc63f));
}

.footer-action-btn:hover svg,
.footer-action-btn:hover i {
  transform: translateX(4px);
}

/* Benefit Tags Pills */
.newsletter-perks-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.perk-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 6px !important;
}

.perk-tag svg,
.perk-tag i {
  color: var(--neon-lime, #8dc63f) !important;
  stroke: var(--neon-lime, #8dc63f) !important;
  width: 14px !important;
  height: 14px !important;
}

/* Bottom Legal & Back to Top */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #64748b;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--neon-lime);
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(151, 222, 36, 0.3);
  border-radius: 50px;
  color: var(--neon-lime);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.back-to-top-btn:hover {
  background: var(--neon-lime);
  color: #0A0F0D;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(151, 222, 36, 0.5);
}

.footer-email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: #ffffff;
}

.footer-email-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-submit-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--neon-lime);
  border: none;
  color: var(--bg-void);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.footer-submit-btn svg {
  width: 18px;
  height: 18px;
}

.footer-submit-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 16px rgba(141, 198, 63, 0.6);
}

.footer-trust-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
}

.footer-trust-note svg {
  width: 13px;
  height: 13px;
  color: var(--neon-lime);
}

/* Footer Bottom Legal Bar */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  color: #64748b;
  flex-wrap: wrap;
}

.footer-copyright strong {
  color: #cbd5e1;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal-links a {
  color: #64748b;
  transition: color 0.25s ease;
}

.footer-legal-links a:hover {
  color: var(--neon-lime);
}

.dot-sep {
  opacity: 0.3;
}

/* Back to Top Button */
.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-to-top-btn svg {
  width: 15px;
  height: 15px;
  color: var(--neon-lime);
  transition: transform 0.3s ease;
}

.back-to-top-btn:hover {
  background: var(--neon-lime);
  border-color: var(--neon-lime);
  color: var(--bg-void);
  box-shadow: 0 0 16px rgba(141, 198, 63, 0.4);
}

.back-to-top-btn:hover svg {
  color: var(--bg-void);
  transform: translateY(-2px);
}

/* MODAL WINDOWS */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 3, 0.88);
  backdrop-filter: var(--glass-blur);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-backdrop.active .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-void);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover {
  background: var(--neon-lime);
  color: #050805;
}

/* FULL SCREEN VIDEO HERO BANNER COMPONENT */
.hero-full-video-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-full-video-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  background: #000;
  border-radius: 0;
  border: none;
  box-shadow: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ambient High-Performance Radial Glow Backdrop */
.hero-ambient-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 40%, rgba(141, 198, 63, 0.22) 0%, rgba(14, 20, 14, 0.85) 60%, rgba(7, 10, 7, 1) 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}

.hero-video-bg-blur {
  display: none;
}

.hero-full-video-element {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(1) contrast(1);
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.video-overlay-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 7, 0.3) 0%, rgba(7, 10, 7, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  pointer-events: none;
}

.video-overlay-layer * {
  pointer-events: auto;
}

.video-top-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-play-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  background: var(--neon-lime);
  color: #050805;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 40px var(--neon-lime-glow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.video-play-trigger::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px dashed var(--neon-lime);
  border-radius: 50%;
  animation: rotateBorder 12s linear infinite;
}

@keyframes rotateBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.video-play-trigger:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 60px var(--neon-lime);
}

.video-controls-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--lime-border);
}

.video-control-btn {
  background: transparent;
  border: none;
  color: var(--neon-lime);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.video-control-btn:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   CONNECTED KINETIC GROWTH TIMELINE FLOW (4-STEP FRAMEWORK)
   ========================================================================== */
.timeline-framework-wrapper {
  position: relative;
  margin-top: 50px;
}

.timeline-progress-track {
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.timeline-progress-fill-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #97DE24 0%, #06B6D4 50%, #10B981 100%);
  box-shadow: 0 0 15px rgba(141, 198, 63, 0.8);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-progress-track::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background: #FFFFFF;
  border-radius: var(--radius-full);
  box-shadow: 0 0 20px #FFFFFF, 0 0 30px var(--neon-lime);
  animation: trackPulse 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  display: none; /* We use the dynamic fill bar instead */
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.process-card {
  background: linear-gradient(145deg, rgba(14, 24, 14, 0.9) 0%, rgba(5, 10, 5, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Animated Flowing Connector Arrows between cards */
.process-card::after {
  content: 'âž”';
  position: absolute;
  top: 48px;
  right: -24px;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--neon-lime);
  text-shadow: 0 0 10px var(--neon-lime);
  font-weight: bold;
  z-index: 10;
  animation: arrowFlowPulse 1.5s infinite ease-in-out;
  opacity: 0.8;
}

.process-card:nth-child(2)::after {
  color: #06B6D4;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}

.process-card:nth-child(3)::after {
  color: #10B981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

.process-card:last-child::after {
  display: none;
}

@keyframes arrowFlowPulse {
  0% {
    transform: translateY(-50%) translateX(-4px);
    opacity: 0.4;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 15px currentColor;
  }
  100% {
    transform: translateY(-50%) translateX(4px);
    opacity: 0.4;
  }
}

@media (max-width: 991px) {
  .process-card::after {
    content: 'âž”';
    transform: translateY(0) rotate(90deg);
    top: auto;
    bottom: -26px;
    right: auto;
    left: 50%;
    margin-left: -8px;
    animation: arrowFlowPulseVertical 1.5s infinite ease-in-out;
  }
}

@keyframes arrowFlowPulseVertical {
  0% {
    transform: rotate(90deg) translateX(-4px);
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(90deg) translateX(4px);
    opacity: 0.4;
  }
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #97DE24, #06B6D4);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0.7;
}

.process-card:nth-child(2)::before { background: linear-gradient(90deg, #06B6D4, #10B981); }
.process-card:nth-child(3)::before { background: linear-gradient(90deg, #10B981, #97DE24); }
.process-card:nth-child(4)::before { background: linear-gradient(90deg, #97DE24, #06B6D4); }

.process-card:hover,
.process-card.active {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--neon-lime);
  background: linear-gradient(145deg, rgba(20, 36, 20, 0.95) 0%, rgba(8, 14, 8, 0.98) 100%);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(141, 198, 63, 0.25);
}

.process-card:nth-child(2):hover,
.process-card:nth-child(2).active {
  border-color: #06B6D4;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(6, 182, 212, 0.25);
}

.process-card:nth-child(3):hover,
.process-card:nth-child(3).active {
  border-color: #10B981;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(16, 185, 129, 0.25);
}

.process-card:nth-child(4):hover,
.process-card:nth-child(4).active {
  border-color: var(--neon-lime);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(141, 198, 63, 0.25);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.process-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #050805;
  background: var(--neon-lime);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 0 20px rgba(141, 198, 63, 0.4);
  flex-shrink: 0;
}

.process-card:nth-child(2) .process-number {
  background: #06B6D4;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.process-card:nth-child(3) .process-number {
  background: #10B981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.process-card:nth-child(4) .process-number {
  background: var(--neon-lime);
  box-shadow: 0 0 20px rgba(141, 198, 63, 0.4);
}

.step-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-lime);
}

.step-badge-pill {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--neon-lime);
  background: rgba(141, 198, 63, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(141, 198, 63, 0.2);
  margin-bottom: 12px;
  align-self: flex-start;
}

.process-card:nth-child(2) .step-badge-pill { color: #06B6D4; background: rgba(6, 182, 212, 0.1); border-color: rgba(6, 182, 212, 0.2); }
.process-card:nth-child(3) .step-badge-pill { color: #10B981; background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.2); }

.process-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #FFFFFF;
  line-height: 1.3;
}

.process-card p {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 0;
}

/* WHY CHOOSE US GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.why-card.photo-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.why-card-photo {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.why-card:hover .why-card-img {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.15);
}

.why-card-body {
  padding: 28px 24px;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-lime), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.why-card:hover {
  border-color: var(--lime-border);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(141, 198, 63, 0.15);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--neon-lime-subtle);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius-md);
  color: var(--neon-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================================================
   TESTIMONIALS â€“ HEADER ABOVE BOX DESIGN PATTERN
   ========================================================= */

.testi-top-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.testi-header-text {
  max-width: 680px;
}

.testi-top-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 14px 0 12px;
}

.testi-top-title .highlight-lime {
  color: var(--neon-lime);
  text-shadow: 0 0 30px rgba(141, 198, 63, 0.45);
}

.testi-top-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.testi-header-counter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* Counter badge */
.testi-counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--neon-lime);
  background: rgba(141, 198, 63, 0.08);
  border: 1px solid rgba(141, 198, 63, 0.25);
  padding: 6px 16px;
  border-radius: 20px;
  width: fit-content;
  letter-spacing: 0.05em;
}

.testi-counter-badge span#testi-counter-current {
  color: #ffffff;
}

.testi-progress-bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
}

.testi-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon-lime), #06B6D4);
  box-shadow: 0 0 8px var(--neon-lime);
  border-radius: 4px;
}

/* Card stage below header */
.testi-card-stage {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Side navigation arrows - ENLARGED */
.testi-card-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(14, 20, 14, 0.9);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(141, 198, 63, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  z-index: 10;
}

.testi-card-arrow svg {
  width: 24px;
  height: 24px;
}

.testi-card-arrow:hover {
  background: var(--neon-lime);
  border-color: var(--neon-lime);
  color: var(--bg-void);
  transform: scale(1.12);
  box-shadow: 0 0 24px rgba(141, 198, 63, 0.55);
}

/* Main Spotlight Testimonial Card - ENLARGED */
.testi-main-card {
  position: relative;
  flex: 1;
  background: rgba(14, 20, 14, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(141, 198, 63, 0.4);
  border-radius: 28px;
  padding: 56px 54px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.65), 0 0 60px rgba(141, 198, 63, 0.12);
  overflow: hidden;
  min-height: 380px;
}

/* Big green quote mark inside top-right of card */
.testi-card-quote-mark {
  position: absolute;
  top: 24px;
  right: 48px;
  font-family: var(--font-display);
  font-size: 7.5rem;
  line-height: 1;
  color: var(--neon-lime);
  opacity: 0.22;
  user-select: none;
  pointer-events: none;
}

/* Card Inner Layout: Avatar Frame (Left) + Content (Right) */
.testi-card-inner {
  display: flex;
  gap: 48px;
  align-items: center;
}

/* Square Avatar Box with Green Border - ENLARGED TO 260px x 260px */
.testi-avatar-box {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 22px;
  border: 3px solid var(--neon-lime);
  box-shadow: 0 0 32px rgba(141, 198, 63, 0.4), inset 0 0 15px rgba(141, 198, 63, 0.15);
  overflow: hidden;
  flex-shrink: 0;
}

.testi-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.testi-main-card:hover .testi-avatar-img {
  transform: scale(1.06);
}

/* Stat Tag overlay at bottom of avatar */
.testi-stat-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 16, 10, 0.88);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-lime);
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(141, 198, 63, 0.35);
}

/* Right Content Column */
.testi-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testi-stars {
  color: var(--neon-lime);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testi-quote-text {
  font-family: var(--font-heading);
  font-size: 1.42rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: #f1f5f9;
  margin: 0 0 32px;
  border: none;
  padding: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Author metadata in UPPERCASE format */
.testi-author-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testi-author-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--neon-lime);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.testi-author-role {
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

/* Holographic sweep flash */
.testi-hologram-flash {
  position: absolute;
  top: -50%;
  left: -100%;
  width: 45%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(141,198,63,0.4) 45%,
    rgba(255,255,255,0.9) 50%,
    rgba(141,198,63,0.4) 55%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(22deg);
  pointer-events: none;
  z-index: 20;
  opacity: 0;
}

.testi-flash-active {
  animation: testiHologramSweep 0.35s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes testiHologramSweep {
  0%   { left: -100%; opacity: 0.9; }
  100% { left: 180%;  opacity: 0; }
}

/* Text slide-out transitions */
.testi-text-out {
  opacity: 0;
  transform: translateY(-8px);
  filter: blur(2px);
  transition: all 0.18s ease-in;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .testi-split-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .testi-side-title {
    font-size: 2.2rem;
  }
  .testi-card-inner {
    flex-direction: column;
    gap: 24px;
  }
  .testi-avatar-box {
    width: 140px;
    height: 140px;
  }
  .testi-main-card {
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .testi-card-stage {
    gap: 8px;
  }
  .testi-card-arrow {
    width: 36px;
    height: 36px;
  }
  .testi-main-card {
    padding: 24px 18px;
  }
  .testi-quote-text {
    font-size: 1.05rem;
  }
}

/* ---- Thumbnail switcher carousel (supports 10+ clients) ---- */
.testi-thumb-row-wrapper {
  position: relative;
  margin-top: 24px;
  display: flex;
  align-items: center;
}




/* ---- Responsive ---- */
@media (max-width: 991px) {
  .testi-spotlight {
    grid-template-columns: 1fr;
  }
  .testi-photo-panel {
    height: 320px;
  }
  .testi-photo-gradient {
    background:
      linear-gradient(to bottom, rgba(5,8,5,0) 30%, rgba(14,19,14,1) 100%),
      linear-gradient(to right, rgba(5,8,5,0) 0%, rgba(5,8,5,0.3) 100%);
  }
  .testi-content-panel {
    padding: 36px 28px 32px;
  }
  .testi-quote-text {
    font-size: 1.1rem;
  }
  .testi-thumb-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .testi-content-panel {
    padding: 28px 20px 24px;
  }
  .testi-quote-mark {
    font-size: 5rem;
  }
}


/* CTA BANNER SECTION - KEN BURNS ANIMATION & LIGHT SHIMMER SWEEP */
.cta-box-container {
  background: rgba(10, 18, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.cta-box-container:hover {
  border-color: var(--neon-lime, #97DE24);
  transform: translateY(-4px);
}

.cta-bg-layer {
  position: absolute;
  inset: -10px;
  background: url('../assets/indian-digital-marketing-cta-bg.png') center/cover no-repeat;
  animation: ctaBgZoom 20s ease-in-out infinite alternate;
  z-index: 0;
  filter: brightness(0.92) contrast(1.1);
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 20, 12, 0.55) 0%, rgba(4, 12, 6, 0.72) 100%);
  z-index: 1;
}

.cta-shimmer-beam {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(45deg, transparent 45%, rgba(151, 222, 36, 0.18) 50%, transparent 55%);
  animation: ctaShimmerSweep 7s infinite cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}

.cta-content-inner {
  position: relative;
  z-index: 3;
}

@keyframes ctaBgZoom {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(-10px, -6px);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

@keyframes ctaShimmerSweep {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(25deg);
  }
  35%, 100% {
    transform: translateX(100%) translateY(100%) rotate(25deg);
  }
}

.cta-box-container h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #ffffff;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95), 0 0 35px rgba(0, 0, 0, 0.9);
}

.cta-box-container p {
  font-size: 1.25rem;
  color: #f0fdf4;
  max-width: 720px;
  margin: 0 auto 38px;
  font-weight: 500;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.95);
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .process-grid, .why-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero-video-wrapper {
    height: 340px;
  }
  .cta-box-container {
    padding: 40px 20px;
  }
  .cta-box-container h2 {
    font-size: 2.2rem;
  }
}


@media (max-width: 1024px) {
  .hero-grid, .about-grid, .estimator-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 3.2rem;
  }
  .hero-3d-wrapper {
    height: 420px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .navbar {
    height: 64px !important;
  }
  .nav-container {
    height: 64px !important;
    padding: 0 16px !important;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 64px) !important;
    max-height: calc(100vh - 64px) !important;
    background: radial-gradient(circle at 50% 0%, rgba(14, 28, 18, 0.98) 0%, rgba(4, 8, 5, 0.99) 100%) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 20px 18px 90px !important;
    border-top: 1px solid rgba(151, 222, 36, 0.25) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 99999 !important;
    gap: 10px !important;
    box-sizing: border-box !important;
  }

  .nav-links.show,
  .nav-links.active {
    display: flex !important;
  }

  /* Staggered entrance animation for mobile drawer items */
  .nav-links.show > li,
  .nav-links.active > li {
    animation: mobileNavStaggerSlide 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .nav-links.show > li:nth-child(1), .nav-links.active > li:nth-child(1) { animation-delay: 0.03s; }
  .nav-links.show > li:nth-child(2), .nav-links.active > li:nth-child(2) { animation-delay: 0.06s; }
  .nav-links.show > li:nth-child(3), .nav-links.active > li:nth-child(3) { animation-delay: 0.09s; }
  .nav-links.show > li:nth-child(4), .nav-links.active > li:nth-child(4) { animation-delay: 0.12s; }
  .nav-links.show > li:nth-child(5), .nav-links.active > li:nth-child(5) { animation-delay: 0.15s; }
  .nav-links.show > li:nth-child(6), .nav-links.active > li:nth-child(6) { animation-delay: 0.18s; }

  @keyframes mobileNavStaggerSlide {
    0% {
      opacity: 0;
      transform: translateY(18px) scale(0.96);
      filter: blur(6px);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }
  }

  .nav-links > li {
    width: 100% !important;
    margin: 0 !important;
  }

  .nav-links > li > a {
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 15px 20px !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #E2E8F0 !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  /* Active Menu Item Glowing Accent */
  .nav-links > li > a.active {
    background: linear-gradient(135deg, rgba(141, 198, 63, 0.18) 0%, rgba(0, 242, 254, 0.08) 100%) !important;
    border-color: rgba(141, 198, 63, 0.45) !important;
    color: #97DE24 !important;
    box-shadow: 0 0 25px rgba(141, 198, 63, 0.25), inset 0 0 15px rgba(141, 198, 63, 0.1) !important;
  }

  .nav-links > li > a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 4px;
    background: linear-gradient(180deg, #97DE24, #00F2FE);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 12px #97DE24;
  }

  /* Shiny Hover Shimmer Sweep Effect */
  .nav-links > li > a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
  }

  .nav-links > li > a:hover::after,
  .nav-links > li > a:active::after {
    left: 140%;
  }

  .dropdown-chevron {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    width: 18px !important;
    height: 18px !important;
  }

  /* Services Dropdown Accordion on Mobile */
  .nav-dropdown {
    width: 100% !important;
  }
  .dropdown-menu {
    display: none !important;
    position: static !important;
    transform: none !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: radial-gradient(circle at 50% 0%, rgba(12, 22, 14, 0.95) 0%, rgba(5, 10, 6, 0.98) 100%) !important;
    border: 1px solid rgba(141, 198, 63, 0.3) !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(141, 198, 63, 0.08) !important;
    margin-top: 8px !important;
    padding: 12px !important;
    gap: 8px !important;
    box-sizing: border-box !important;
    flex-direction: column !important;
  }

  .nav-dropdown.open .dropdown-menu {
    display: flex !important;
    animation: expandNavAccordion 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes expandNavAccordion {
    0% { opacity: 0; transform: translateY(-8px) scale(0.97); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }

  .nav-dropdown.open .dropdown-item {
    animation: subItemSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes subItemSlide {
    0% { opacity: 0; transform: translateX(-10px); }
    100% { opacity: 1; transform: translateX(0); }
  }

  .nav-dropdown.open .dropdown-item:nth-child(1) { animation-delay: 0.02s; }
  .nav-dropdown.open .dropdown-item:nth-child(3) { animation-delay: 0.05s; }
  .nav-dropdown.open .dropdown-item:nth-child(4) { animation-delay: 0.08s; }
  .nav-dropdown.open .dropdown-item:nth-child(5) { animation-delay: 0.11s; }
  .nav-dropdown.open .dropdown-item:nth-child(6) { animation-delay: 0.14s; }
  .nav-dropdown.open .dropdown-item:nth-child(7) { animation-delay: 0.17s; }
  .nav-dropdown.open .dropdown-item:nth-child(8) { animation-delay: 0.20s; }

  .dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  .dropdown-item:hover, .dropdown-item:active {
    background: rgba(141, 198, 63, 0.15) !important;
    border-color: rgba(141, 198, 63, 0.4) !important;
    transform: translateX(4px) !important;
  }
  .dropdown-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    background: rgba(141, 198, 63, 0.12) !important;
    color: var(--neon-lime, #8dc63f) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 12px rgba(141, 198, 63, 0.15) !important;
  }
  .dropdown-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  .dropdown-title {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #F8FAFC !important;
    margin: 0 !important;
  }
  .dropdown-divider {
    height: 1px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    margin: 4px 0 !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #FFFFFF !important;
    font-size: 1.4rem !important;
    cursor: pointer !important;
    z-index: 100000 !important;
    transition: all 0.25s ease !important;
  }
  .mobile-toggle:hover {
    background: rgba(141, 198, 63, 0.2) !important;
    border-color: rgba(141, 198, 63, 0.4) !important;
  }

  /* Hide floating Framee AI widget when mobile menu drawer is open so it never covers menu links */
  body.mobile-nav-open .framee-launcher-wrapper,
  body.mobile-nav-open .framee-chat-window,
  body.mobile-nav-open #framee-ai-widget,
  body:has(.nav-links.show) .framee-launcher-wrapper,
  body:has(.nav-links.active) .framee-launcher-wrapper,
  body:has(.nav-links.show) .framee-chat-window,
  body:has(.nav-links.active) .framee-chat-window,
  body:has(.nav-links.show) .framee-ai-floating-btn,
  body:has(.nav-links.active) .framee-ai-floating-btn,
  body:has(.nav-links.show) #framee-ai-widget,
  body:has(.nav-links.active) #framee-ai-widget {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* Open Positions Grid & Role Selector Mobile Responsiveness */
.open-positions-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 36px;
  align-items: start;
}

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 1024px) {
  .open-positions-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .form-row-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  #hero-spotlight-card {
    padding: 20px 16px !important;
    border-radius: 20px !important;
  }
}

@media (max-width: 600px) {
  #hero-spotlight-card {
    padding: 18px 14px !important;
  }
  #hero-role-title {
    font-size: 1.4rem !important;
  }
  .role-selector-card {
    padding: 14px 14px !important;
    gap: 12px !important;
  }
  .role-selector-card img {
    width: 58px !important;
    height: 58px !important;
  }
  .role-selector-card h4 {
    font-size: 1rem !important;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .section-header h2 {
    font-size: 2.2rem;
  }
  .subpage-hero h1 {
    font-size: 2.4rem;
  }
  .hud-overlay {
    display: none;
  }
  .contact-main-row, .featured-role-grid, .career-hud-grid, .bento-job-card, .role-drawer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   RELATED CONTENT & LOGO CARDS COMPONENT
   ========================================================================== */
.related-content-section {
  position: relative;
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.related-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-lime), transparent);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.related-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.related-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-lime), var(--primary-lime-bright));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.related-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: var(--neon-lime);
  box-shadow: 0 20px 45px -10px rgba(151, 222, 36, 0.25);
  background: var(--bg-card-hover);
}

.related-card:hover::before {
  opacity: 1;
}

.related-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.related-logo-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(151, 222, 36, 0.08);
  border: 1px solid var(--lime-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-lime);
  font-size: 1.6rem;
  box-shadow: 0 0 15px rgba(151, 222, 36, 0.15);
  transition: all 0.3s ease;
}

.related-card:hover .related-logo-badge {
  background: var(--neon-lime);
  color: #050805;
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 0 25px var(--neon-lime);
}

.related-platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.related-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.related-chip svg, .related-chip i {
  width: 14px;
  height: 14px;
}

.related-card:hover .related-chip {
  border-color: rgba(151, 222, 36, 0.3);
  color: #FFFFFF;
}

.related-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 12px;
  line-height: 1.35;
}

.related-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.related-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--neon-lime);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.related-card:hover .related-link {
  gap: 12px;
  color: var(--primary-lime-bright);
}

/* ==========================================================================
   BIG COLORFUL ANIMATED ICONS & GIF-LIKE EFFECTS
   ========================================================================== */

@keyframes iconGifShimmer {
  0% { transform: translate(-100%, -100%) rotate(0deg); }
  100% { transform: translate(100%, 100%) rotate(360deg); }
}

@keyframes iconPulseGlow {
  0%, 100% { 
    box-shadow: 0 0 18px var(--glow-color, rgba(151, 222, 36, 0.4)), inset 0 0 12px var(--glow-color, rgba(151, 222, 36, 0.2)); 
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 35px var(--glow-color, rgba(151, 222, 36, 0.85)), inset 0 0 22px var(--glow-color, rgba(151, 222, 36, 0.5)); 
    transform: scale(1.06);
  }
}

/* Bigger Service Icon Container */
.service-icon, .related-logo-badge {
  position: relative;
  width: 78px !important;
  height: 78px !important;
  border-radius: 22px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem !important;
  margin-bottom: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  overflow: hidden;
  z-index: 1;
}

/* Animated GIF shimmer overlay inside icon */
.service-icon::before, .related-logo-badge::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255, 255, 255, 0.4) 25%, transparent 50%, rgba(255, 255, 255, 0.4) 75%, transparent 100%);
  animation: iconGifShimmer 3.5s linear infinite;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}

/* Inner glow mask */
.service-icon::after, .related-logo-badge::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 19px;
  background: rgba(10, 15, 10, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1;
  transition: background 0.3s ease;
}

.service-icon i, .service-icon svg,
.related-logo-badge i, .related-logo-badge svg {
  position: relative;
  z-index: 2;
  width: 36px !important;
  height: 36px !important;
  transition: transform 0.3s ease, filter 0.3s ease, color 0.3s ease;
}

.service-icon img,
.service-icon-img,
.related-logo-badge img {
  position: relative;
  z-index: 2;
  width: 48px !important;
  height: 48px !important;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

.service-card:hover .service-icon img,
.service-card:hover .service-icon-img,
.related-card:hover .related-logo-badge img {
  transform: scale(1.15) rotate(4deg);
  filter: drop-shadow(0 8px 20px rgba(255, 255, 255, 0.4));
}


/* COLOR THEME VARIATIONS */
/* Pink / Magenta / Cyberpunk */
.icon-theme-pink, .related-logo-badge.theme-pink {
  --glow-color: rgba(255, 42, 133, 0.75);
  background: linear-gradient(135deg, #FF2A85, #9B51E0, #FF758C) !important;
  color: #FF758C !important;
  animation: iconPulseGlow 3s infinite ease-in-out;
}

/* Cyan / Electric Blue */
.icon-theme-cyan, .related-logo-badge.theme-cyan {
  --glow-color: rgba(0, 242, 254, 0.75);
  background: linear-gradient(135deg, #00F2FE, #4FACFE, #00C6FF) !important;
  color: #00F2FE !important;
  animation: iconPulseGlow 3s infinite ease-in-out 0.6s;
}

/* Lime / Neon Green */
.icon-theme-lime, .related-logo-badge.theme-lime {
  --glow-color: rgba(151, 222, 36, 0.75);
  background: linear-gradient(135deg, #97DE24, #00E676, #A8FF78) !important;
  color: #97DE24 !important;
  animation: iconPulseGlow 3s infinite ease-in-out 1.2s;
}

/* Orange / Sunset Gold */
.icon-theme-orange, .related-logo-badge.theme-orange {
  --glow-color: rgba(255, 140, 0, 0.75);
  background: linear-gradient(135deg, #FF9000, #FF4500, #FFBA00) !important;
  color: #FF9000 !important;
  animation: iconPulseGlow 3s infinite ease-in-out 1.8s;
}

/* Purple / Ultra Violet */
.icon-theme-purple, .related-logo-badge.theme-purple {
  --glow-color: rgba(157, 78, 221, 0.75);
  background: linear-gradient(135deg, #7928CA, #FF0080, #9D4EDD) !important;
  color: #E0AAFF !important;
  animation: iconPulseGlow 3s infinite ease-in-out 2.4s;
}

/* Hover effects for Big Color Icons */
.service-card:hover .service-icon,
.related-card:hover .related-logo-badge {
  transform: scale(1.15) rotate(8deg) !important;
  box-shadow: 0 0 40px var(--glow-color, rgba(151, 222, 36, 0.95)) !important;
}

.service-card:hover .service-icon::after,
.related-card:hover .related-logo-badge::after {
  background: rgba(10, 15, 10, 0.35);
}

/* ==========================================================================
   MINIMALIST DARK GLASS GRID DESIGN WITH ORIGINAL PHOTO HEADERS & 110PX LOGOS
   ========================================================================== */

/* Expansive Full-Width Container to Use Side Space Left & Right */
.container-expansive {
  width: 95% !important;
  max-width: 1850px !important;
  padding: 0 50px !important;
  margin: 0 auto !important;
}

.pure-glass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

@media (max-width: 1400px) {
  .pure-glass-grid {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .pure-glass-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .pure-glass-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.glass-service-card {
  position: relative;
  background: rgba(15, 23, 20, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.glass-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient, linear-gradient(90deg, var(--neon-lime), var(--primary-lime-bright)));
  opacity: 0.5;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.glass-service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color, var(--neon-lime));
  box-shadow: 0 25px 60px -10px var(--glow-color, rgba(151, 222, 36, 0.35));
  background: rgba(20, 30, 25, 0.85);
}

.glass-service-card:hover::before {
  opacity: 1;
}

/* Original Photo Media Header Frame */
.card-photo-header {
  position: relative;
  width: 100%;
  height: 255px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  filter: brightness(0.88) contrast(1.08);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.glass-service-card:hover .card-photo-img {
  transform: scale(1.08);
  filter: brightness(0.98) contrast(1.15);
}

.card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 12, 0.2) 0%, rgba(15, 23, 20, 0.85) 100%);
  z-index: 1;
}

/* Floating 100px Logo Box & Micro-Badge overlaying Photo Header */
.card-header-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.glass-icon-box {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: var(--accent-gradient, linear-gradient(135deg, rgba(151, 222, 36, 0.25), rgba(0, 230, 118, 0.1)));
  border: 2px solid var(--accent-color, var(--neon-lime));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px var(--glow-color, rgba(151, 222, 36, 0.45));
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.glass-service-card:hover .glass-icon-box {
  transform: scale(1.08) translateY(-3px) rotate(3deg);
  box-shadow: 0 18px 45px var(--glow-color, rgba(151, 222, 36, 0.6));
}

.glass-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  filter: brightness(1.05) contrast(1.1);
  transition: transform 0.4s ease;
  z-index: 2;
}

.glass-service-card:hover .glass-icon-img {
  transform: scale(1.12);
}

/* Animated GIF Shimmer Beam */
.glass-icon-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(255, 255, 255, 0.25), transparent 30%);
  animation: iconGifShimmer 4s linear infinite;
}

.glass-icon-box i, .glass-icon-box svg {
  width: 38px;
  height: 38px;
  color: var(--accent-color, var(--neon-lime));
  z-index: 2;
  filter: drop-shadow(0 0 8px var(--accent-color, var(--neon-lime)));
}

.glass-micro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-color, var(--neon-lime));
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Card Inner Content Container */
.glass-card-body {
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

/* Typography */
.glass-card-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #F8FAFC;
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.glass-card-desc {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Capability Checkmark Pills */
.glass-caps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.glass-cap-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.glass-cap-item span {
  display: inline-block;
  line-height: 1.4;
}

.glass-service-card:hover .glass-cap-item {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.glass-cap-item i, .glass-cap-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent-color, var(--neon-lime));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Full Width Glowing CTA Button */
.glass-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #F8FAFC;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.glass-service-card:hover .glass-cta-btn {
  background: var(--accent-color, var(--neon-lime));
  color: #050805;
  border-color: var(--accent-color, var(--neon-lime));
  box-shadow: 0 0 25px var(--accent-color, var(--neon-lime));
}

.glass-cta-btn i, .glass-cta-btn svg {
  transition: transform 0.3s ease;
}

.glass-service-card:hover .glass-cta-btn i,
.glass-service-card:hover .glass-cta-btn svg {
  transform: translateX(4px);
}

/* Theme Variations */
.theme-pink {
  --accent-color: #FF2A85;
  --accent-gradient: linear-gradient(135deg, #FF2A85, #9B51E0);
  --glow-color: rgba(255, 42, 133, 0.35);
}

.theme-orange {
  --accent-color: #FF9000;
  --accent-gradient: linear-gradient(135deg, #FF9000, #FF4500);
  --glow-color: rgba(255, 144, 0, 0.35);
}

.theme-cyan {
  --accent-color: #00F2FE;
  --accent-gradient: linear-gradient(135deg, #00F2FE, #4FACFE);
  --glow-color: rgba(0, 242, 254, 0.35);
}

.theme-purple {
  --accent-color: #9D4EDD;
  --accent-gradient: linear-gradient(135deg, #7928CA, #FF0080);
  --glow-color: rgba(157, 78, 221, 0.35);
}

.theme-lime {
  --accent-color: #97DE24;
  --accent-gradient: linear-gradient(135deg, #97DE24, #00E676);
  --glow-color: rgba(151, 222, 36, 0.35);
}

/* ==========================================================================
   INTERACTIVE TABBED VISUAL DASHBOARD DESIGN
   ========================================================================== */

.services-dashboard {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.services-dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-lime), var(--primary-lime-bright), #00F2FE, #FF2A85);
}

/* Tab Bar Navigation */
.dash-tab-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
  scrollbar-color: var(--lime-border) transparent;
}

.dash-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dash-tab i, .dash-tab svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.dash-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

.dash-tab.active {
  background: var(--active-gradient, linear-gradient(135deg, #97DE24, #00E676));
  color: #050805 !important;
  border-color: var(--active-color, #97DE24);
  box-shadow: 0 0 25px var(--active-glow, rgba(151, 222, 36, 0.4));
}

.dash-tab.active i, .dash-tab.active svg {
  color: #050805 !important;
  transform: scale(1.15);
}

/* Dashboard Stage Split */
.dash-stage-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 992px) {
  .dash-stage-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Media Frame */
.dash-media-frame {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.dash-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) contrast(1.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.dash-media-frame:hover .dash-media-img {
  transform: scale(1.05);
  filter: brightness(0.98) contrast(1.15);
}

.dash-hud-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(10, 15, 10, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--active-color, #97DE24);
  letter-spacing: 0.05em;
}

.dash-metric-pill {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--active-gradient, linear-gradient(90deg, var(--neon-lime), var(--primary-lime-bright)));
  color: #050805;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Content Area */
.dash-content-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: fadeInDash 0.4s ease forwards;
}

@keyframes fadeInDash {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dash-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--active-color, #97DE24);
  margin-bottom: 16px;
}

.dash-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #F8FAFC;
  margin-bottom: 14px;
  line-height: 1.2;
}

.dash-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 26px;
}

.dash-capabilities {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  width: 100%;
}

.dash-cap-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #F8FAFC;
  font-size: 0.92rem;
  font-weight: 600;
}

.dash-cap-item i, .dash-cap-item svg {
  width: 16px;
  height: 16px;
  color: var(--active-color, #97DE24);
}

.dash-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  background: var(--active-gradient, linear-gradient(135deg, #97DE24, #00E676));
  color: #050805;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 0 30px var(--active-glow, rgba(151, 222, 36, 0.4));
  transition: all 0.3s ease;
}

.dash-action-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 45px var(--active-glow, rgba(151, 222, 36, 0.7));
}

/* ==========================================================================
   WHAT WE DO - DARK THEMED TIMELINE WITH ANIMATIONS
   ========================================================================== */

.dark-timeline-wrapper {
  position: relative;
  max-width: 920px;
  margin: 50px auto 0 auto;
  padding: 20px 0;
}

.dark-timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, var(--neon-lime, #8dc63f), #06B6D4);
  box-shadow: 0 0 14px rgba(141, 198, 63, 0.45);
  transform: translateX(-50%);
}

/* Animated Laser Beam traveling down the vertical line */
.dark-timeline-laser {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, #8dc63f 50%, #ffffff 80%, transparent 100%);
  box-shadow: 0 0 20px #8dc63f, 0 0 40px #8dc63f, 0 0 60px #06B6D4;
  transform: translateX(-50%);
  border-radius: 10px;
  animation: axisLaserFlow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes axisLaserFlow {
  0% { top: 0%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 92%; opacity: 0; }
}

.dark-timeline-row {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 65px;
  width: 100%;
}

.dark-timeline-row:last-child {
  margin-bottom: 0;
}

.dark-timeline-row.right {
  justify-content: flex-end;
}

.dark-timeline-row.left {
  justify-content: flex-start;
}

/* Scroll Animation classes for Timeline Cards */
.dark-timeline-row.left .dark-timeline-card {
  opacity: 0;
  transform: translateX(-60px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.dark-timeline-row.right .dark-timeline-card {
  opacity: 0;
  transform: translateX(60px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.dark-timeline-row.visible .dark-timeline-card {
  opacity: 1 !important;
  transform: translateX(0) scale(1) !important;
}

.dark-timeline-card {
  width: 44%;
  background: rgba(14, 22, 14, 0.8);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg, 16px);
  padding: 28px;
  border: 1.5px solid rgba(141, 198, 63, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.dark-timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-lime, #8dc63f), transparent);
  opacity: 0.6;
}

.dark-timeline-card:hover {
  transform: translateY(-8px) scale(1.03) !important;
  border-color: rgba(141, 198, 63, 0.7);
  box-shadow: 0 20px 50px rgba(141, 198, 63, 0.25);
}

.dark-timeline-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dark-timeline-card p {
  color: var(--text-muted, #94a3b8);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Pulsing & floating animated nodes */
.dark-timeline-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(249, 115, 22, 0.7);
  border: 2.5px solid rgba(255, 255, 255, 0.5);
  z-index: 4;
  animation: nodeGlowPulse 2.5s infinite cubic-bezier(0.4, 0, 0.6, 1), nodeFloat 3s ease-in-out infinite alternate;
}

@keyframes nodeGlowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.8), 0 0 15px rgba(249, 115, 22, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(249, 115, 22, 0), 0 0 30px rgba(249, 115, 22, 0.9);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0), 0 0 15px rgba(249, 115, 22, 0.7);
  }
}

@keyframes nodeFloat {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -54%) scale(1.06); }
}

.dark-timeline-node svg, .dark-timeline-node i {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.dark-timeline-bracket {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #f97316;
  font-size: 2.4rem;
  font-weight: 300;
  user-select: none;
  z-index: 3;
  animation: bracketPulse 1.8s ease-in-out infinite alternate;
}

@keyframes bracketPulse {
  from { opacity: 0.6; transform: translateY(-50%) scale(0.9); }
  to { opacity: 1; transform: translateY(-50%) scale(1.15); text-shadow: 0 0 12px rgba(249, 115, 22, 0.9); }
}

.dark-timeline-row.right .dark-timeline-bracket {
  left: calc(50% + 32px);
}

.dark-timeline-row.left .dark-timeline-bracket {
  right: calc(50% + 32px);
}

@media (max-width: 768px) {
  .dark-timeline-wrapper::before, .dark-timeline-laser {
    left: 24px;
  }
  
  .dark-timeline-row.left, .dark-timeline-row.right {
    justify-content: flex-start;
    padding-left: 60px;
  }
  
  .dark-timeline-card {
    width: 100%;
  }
  
  .dark-timeline-node {
    left: 24px;
  }
  
  .dark-timeline-bracket {
    display: none;
  }
}

/* ==========================================================================
   WHAT YOU WILL GET SECTION STYLES
   ========================================================================== */
.wyg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 20px;
}

.wyg-card {
  background: var(--bg-card, rgba(14, 20, 14, 0.75));
  backdrop-filter: var(--glass-blur, blur(20px));
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
  border-radius: var(--radius-lg, 24px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-smooth, 0.4s cubic-bezier(0.16, 1, 0.3, 1));
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
}

.wyg-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--neon-lime, #8dc63f);
  box-shadow: 0 20px 45px -10px rgba(141, 198, 63, 0.25);
  background: var(--bg-card-hover, rgba(20, 30, 20, 0.9));
}

.wyg-img-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wyg-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.wyg-card:hover .wyg-img-wrapper img {
  transform: scale(1.08);
}

.wyg-card-content {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wyg-card-content h3 {
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
}

.wyg-card-content p {
  font-family: var(--font-main, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-muted, #94A3B8);
  margin: 0;
}

@media (max-width: 1024px) {
  .wyg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .wyg-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wyg-img-wrapper {
    height: 210px;
  }
}

/* ==========================================================================
   TRENDING REELS & SHORTS CAROUSEL STYLES
   ========================================================================== */
.reels-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 10px 24px;
  overflow: hidden;
}

.reels-track {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 35px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.reels-track::-webkit-scrollbar {
  display: none;
}

.reel-card {
  width: 255px;
  height: 440px;
  flex-shrink: 0;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: #0E130E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.reel-card:hover img {
  transform: scale(1.06);
}

.reel-card.active,
.reel-card:hover {
  border: 2px solid var(--neon-lime, #8dc63f);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(141, 198, 63, 0.35), 0 0 20px rgba(141, 198, 63, 0.2);
  z-index: 2;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 8, 5, 0.94) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 16px;
  transition: background 0.3s ease;
}

.reel-play-icon {
  width: 52px;
  height: 52px;
  background: rgba(141, 198, 63, 0.9);
  color: #050805;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  box-shadow: 0 0 20px rgba(141, 198, 63, 0.6);
  transform: scale(0.9);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.reel-card:hover .reel-play-icon {
  transform: scale(1.1);
  opacity: 1;
  background: var(--neon-lime, #8dc63f);
  box-shadow: 0 0 25px var(--neon-lime, #8dc63f);
}

.reel-info {
  text-align: left;
}

.reel-info h4 {
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.reel-info span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neon-lime, #8dc63f);
}

.reels-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(14, 20, 14, 0.9);
  border: 1px solid var(--lime-border, rgba(141, 198, 63, 0.3));
  color: var(--neon-lime, #8dc63f);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
}

.reels-nav-btn.prev {
  left: 20px;
}

.reels-nav-btn.next {
  right: 20px;
}

.reels-nav-btn:hover {
  background: var(--neon-lime, #8dc63f);
  color: #050805;
  box-shadow: 0 0 20px rgba(141, 198, 63, 0.6);
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .reels-carousel-wrapper {
    padding: 10px 10px;
  }
  .reel-card {
    width: 190px;
    height: 330px;
  }
  .reels-nav-btn {
    width: 40px;
    height: 40px;
  }
}

/* ULTRA-FUTURISTIC SPLIT-SCREEN SHUTTER PRELOADER */
.site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  overflow: hidden;
  pointer-events: auto;
  background: transparent;
}

/* Glowing Laser Seam Line - REMOVED PER USER REQUEST */
.preloader-seam-line {
  display: none !important;
}

/* Split Shutter Panels (Top 50% & Bottom 50%) */
.preloader-shutter {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 50vh;
  background: #030604;
  overflow: hidden;
  z-index: 1000000;
  transition: transform 0.95s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.preloader-shutter-top {
  top: 0;
  border-bottom: none;
}

.preloader-shutter-bottom {
  top: 50vh;
  border-top: none;
}

/* Content Alignment inside Split Panels */
.preloader-content-wrapper {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-shutter-top .preloader-content-wrapper {
  top: 50vh;
}

.preloader-shutter-bottom .preloader-content-wrapper {
  top: 0;
}

/* DISMISSAL ANIMATION (TOP SLIDES UP, BOTTOM SLIDES DOWN, LOGO SPLITS IN HALF) */
.site-preloader.preloader-hidden .preloader-shutter-top {
  transform: translateY(-100%) !important;
}

.site-preloader.preloader-hidden .preloader-shutter-bottom {
  transform: translateY(100%) !important;
}

.site-preloader.preloader-hidden .preloader-seam-line {
  opacity: 0 !important;
  transform: translateY(-50%) scaleX(1.4) !important;
}

.site-preloader.preloader-hidden {
  pointer-events: none !important;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.arc-reactor-container {
  position: relative;
  width: 460px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arc-reactor-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Phase 1: Circular Loading Arc Progress (r=140 -> stroke-dasharray: 880) */
.arc-progress-circle {
  stroke-dasharray: 880;
  stroke-dashoffset: 880;
  transform-origin: 260px 175px;
  transform: rotate(-90deg);
  animation: arcProgressFill 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 16 Radial Energy Tick Marks lighting up sequentially in a circular loop (0s to 1.5s) */
.arc-ticks-group,
.arc-tick {
  display: none !important;
}

.tick-1  { animation-delay: 0.00s; }
.tick-2  { animation-delay: 0.08s; }
.tick-3  { animation-delay: 0.16s; }
.tick-4  { animation-delay: 0.24s; }
.tick-5  { animation-delay: 0.32s; }
.tick-6  { animation-delay: 0.40s; }
.tick-7  { animation-delay: 0.48s; }
.tick-8  { animation-delay: 0.56s; }
.tick-9  { animation-delay: 0.64s; }
.tick-10 { animation-delay: 0.72s; }
.tick-11 { animation-delay: 0.80s; }
.tick-12 { animation-delay: 0.88s; }
.tick-13 { animation-delay: 0.96s; }
.tick-14 { animation-delay: 1.04s; }
.tick-15 { animation-delay: 1.12s; }
.tick-16 { animation-delay: 1.20s; }

/* Phase 2: Outer Triangular Frame Ignition (polygon length ~ 1550) */
.arc-outer-frame {
  stroke-dasharray: 1550;
  stroke-dashoffset: 1550;
  opacity: 1;
  animation: outerFrameIgnite 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s forwards;
}

/* Central Core Logo (Bold 225px Hero Sizing fits 100% inside 290px circle with generous padding!) */
.arc-core-logo {
  position: absolute;
  top: 155px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  animation: arcCorePulse 3.0s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 25px rgba(141, 198, 63, 0.85));
}

.arc-core-logo img {
  width: 225px;
  height: auto;
  display: block;
}

/* Keyframe Animations */
@keyframes arcProgressFill {
  0% { stroke-dashoffset: 880; }
  50% { stroke-dashoffset: 300; }
  100% { stroke-dashoffset: 0; }
}

@keyframes arcTickPowerUp {
  0% {
    stroke: rgba(141, 198, 63, 0.15);
    filter: none;
  }
  50% {
    stroke: #00F2FE;
    filter: drop-shadow(0 0 6px #00F2FE);
  }
  100% {
    stroke: #97DE24;
    filter: drop-shadow(0 0 10px #97DE24);
  }
}

@keyframes outerFrameIgnite {
  0% {
    stroke-dashoffset: 1550;
    opacity: 0.3;
    filter: drop-shadow(0 0 10px rgba(151, 222, 36, 0.4));
  }
  50% {
    opacity: 1;
    stroke-dashoffset: 700;
    filter: drop-shadow(0 0 20px #00F2FE);
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
    filter: drop-shadow(0 0 28px rgba(151, 222, 36, 0.9));
  }
}

@keyframes arcCorePulse {
  0% {
    transform: translate(-50%, -50%) scale(0.96);
    filter: drop-shadow(0 0 15px rgba(141, 198, 63, 0.4));
  }
  100% {
    transform: translate(-50%, -50%) scale(1.04);
    filter: drop-shadow(0 0 40px rgba(141, 198, 63, 0.9));
  }
}

/* ==========================================
   3D PAGE PEEL FLIPBOOK SHOWCASE SECTION
   ========================================== */
.flipbook-section {
  padding: 80px 0;
  background: radial-gradient(circle at center, rgba(14, 20, 14, 0.95) 0%, rgba(7, 10, 7, 1) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.flipbook-container {
  max-width: 860px;
  margin: 40px auto 0;
  perspective: 2000px;
  position: relative;
}

.flipbook-stage {
  width: 100%;
  aspect-ratio: 0.77;
  max-height: 780px;
  position: relative;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 40px rgba(141, 198, 63, 0.25);
  background: #0E140E;
}

.flipbook-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.8s ease, z-index 0.3s;
  backface-visibility: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.flipbook-page img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #FFFFFF;
  display: block;
}

/* Page Flipped state */
.flipbook-page.flipped {
  transform: rotateY(-180deg);
  pointer-events: none;
}

/* Page Peel Corner Hover Effect */
.flipbook-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, transparent 50%, rgba(141, 198, 63, 0.5) 50%, rgba(255, 255, 255, 0.95) 100%);
  border-bottom-right-radius: 20px;
  box-shadow: -5px -5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0.85;
}

.flipbook-page:hover::after {
  width: 95px;
  height: 95px;
  opacity: 1;
  box-shadow: -8px -8px 25px rgba(141, 198, 63, 0.7);
}

/* Controls Bar */
.flipbook-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.flipbook-btn {
  background: linear-gradient(135deg, rgba(20, 30, 20, 0.9) 0%, rgba(10, 15, 10, 0.95) 100%);
  border: 1px solid var(--neon-lime-glow, rgba(141,198,63,0.4));
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  font-family: var(--font-heading);
}

.flipbook-btn:hover:not(:disabled) {
  background: var(--primary-lime, #8DC63F);
  color: #050805;
  box-shadow: 0 0 20px rgba(141, 198, 63, 0.5);
  transform: translateY(-2px);
}

.flipbook-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.1);
}

.flipbook-indicator {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--neon-lime-bright, #97DE24);
  background: rgba(14, 20, 14, 0.8);
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(141, 198, 63, 0.25);
}

/* ==========================================================================
   STF PHYSICAL BROCHURE REPLICA & 3D PEEL ENGINE STYLES
   ========================================================================== */

/* Flipbook Toolbar & Mode Selectors */
.stf-flipbook-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.stf-mode-selector {
  display: flex;
  background: rgba(15, 25, 15, 0.85);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(141, 198, 63, 0.2);
}

.flip-mode-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.flip-mode-btn.active, .flip-mode-btn:hover {
  background: var(--primary-lime, #8DC63F);
  color: #050805;
  box-shadow: 0 4px 12px rgba(141, 198, 63, 0.3);
}

.stf-toolbar-actions {
  display: flex;
  gap: 10px;
}

.stf-icon-btn {
  background: rgba(20, 30, 20, 0.8);
  border: 1px solid rgba(141, 198, 63, 0.3);
  color: #FFF;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.stf-icon-btn:hover {
  background: var(--primary-lime, #8DC63F);
  color: #000;
  transform: translateY(-2px);
}

.stf-icon-btn.muted {
  opacity: 0.5;
  border-color: rgba(255, 255, 255, 0.1);
}

/* Stage & Brochure Canvas Container */
/* Stage & Open Book Canvas Container */
/* -------------------------------------------------------------
   StPageFlip 3D WEGL & CANVAS BROCHURE ENGINE (MATCHING PHOTO 1 & 2)
   ------------------------------------------------------------- */
.stf-flipbook-wrapper {
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
}

.stf-flipbook-stage {
  margin: 0 auto;
  position: relative;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.95), 0 0 60px rgba(141, 198, 63, 0.25);
  border-radius: 12px;
  background: #FFFFFF;
  overflow: hidden;
}

.stf-page-card {
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
}

.stf-page-card img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.stf-base-left {
  left: 0;
  border-radius: 16px 0 0 16px;
}

.stf-base-right {
  right: 0;
  border-radius: 0 16px 16px 0;
}

.stf-base-left img, .stf-base-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 3D Turning Leaf (Hinged at Center Spine) */
.stf-3d-leaf {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.9s ease;
  cursor: pointer;
  z-index: 10;
}

.stf-3d-leaf.flipped {
  transform: rotateY(-180deg);
}

/* Front & Back Faces of Turning Leaf */
.stf-leaf-front, .stf-leaf-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.stf-leaf-front img, .stf-leaf-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stf-leaf-back {
  transform: rotateY(180deg);
  border-radius: 16px 0 0 16px;
}

/* Curved Paper Lighting & Shadow while Flipping */
.stf-3d-leaf::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(0,0,0,0.3) 50%, rgba(255,255,255,0.75) 55%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 50;
}

.stf-3d-leaf.turning::after {
  opacity: 1;
}

/* Corner Peel Cue Effect on Leaf Front */
.stf-leaf-front::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, transparent 50%, rgba(141, 198, 63, 0.6) 50%, rgba(255, 255, 255, 0.98) 100%);
  border-bottom-right-radius: 16px;
  box-shadow: -8px -8px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  z-index: 45;
}

.stf-3d-leaf:hover .stf-leaf-front::after {
  width: 120px;
  height: 120px;
  box-shadow: -12px -12px 35px rgba(141, 198, 63, 0.85);
  transform: translate(-3px, -3px);
}
.stf-brochure-page {
  color: #1A202C;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex;
  flex-direction: column;
}

/* Flipped 3D transform state */
.stf-brochure-page.flipped {
  transform: rotateY(-180deg);
  pointer-events: none;
}

.stf-brochure-page.inactive {
  display: none !important;
}

/* Realistic Page Peel Curl Corner Effect */
.stf-brochure-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(141, 198, 63, 0.6) 50%, rgba(255, 255, 255, 0.98) 100%);
  border-bottom-right-radius: 16px;
  box-shadow: -6px -6px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 50;
  pointer-events: none;
}

.stf-brochure-page:hover::after {
  width: 110px;
  height: 110px;
  box-shadow: -10px -10px 30px rgba(141, 198, 63, 0.8);
}

/* -------------------------------------------------------------
   EXACT BROCHURE LAYOUT DESIGN (MATCHING USER'S 3 PHOTOS)
   ------------------------------------------------------------- */

/* Header Underline Style */
.stf-title-green {
  color: #2E7D32;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.stf-title-green::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #388E3C;
  border-radius: 2px;
}

/* PAGE 1: COVER VIEW (Image 3) */
.stf-page-cover {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  position: relative;
}

.stf-cover-top-gear {
  height: 42%;
  width: 100%;
  background: url('assets/about-studio.png') center/cover no-repeat;
  position: relative;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.stf-cover-top-gear::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.stf-cover-card-container {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translateX(-50%);
  width: 86%;
  background: #FFFFFF;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  padding: 30px 24px;
  text-align: center;
  z-index: 10;
}

.stf-cover-logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.stf-cover-logo-img {
  height: 48px;
  width: auto;
}

.stf-cover-agency-badge {
  background: #111827;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 14px auto;
  display: inline-block;
}

.stf-whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 2px solid #25D366;
  color: #128C7E;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  text-decoration: none;
  transition: all 0.2s ease;
}

.stf-whatsapp-pill:hover {
  background: #25D366;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.stf-cover-bottom-film {
  height: 32%;
  width: 100%;
  margin-top: auto;
  background: linear-gradient(135deg, #7CB342 0%, #689F38 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 10px 20px;
  overflow: hidden;
}

.stf-film-reel-bg {
  width: 100%;
  height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 2px, transparent 3px);
  background-size: 16px 16px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
}

/* Vector Camera Projector Film Reel Artwork */
.stf-film-camera-vector {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.stf-film-camera-icon {
  width: 90px;
  height: 75px;
  background: #2E3B2B;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.stf-film-camera-icon::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 4px solid #8DC63F;
  background: #111;
}

.stf-film-camera-icon::after {
  content: '';
  position: absolute;
  top: -30px;
  right: 10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 4px solid #8DC63F;
  background: #111;
}

/* PAGE 2: INSIDE LEFT (Image 1 & 2) */
.stf-page-content {
  padding: 24px 28px;
  background: #FFFFFF;
  position: relative;
  overflow-y: auto;
}

.stf-section-block {
  margin-bottom: 18px;
}

.stf-section-block h3 {
  font-size: 1.3rem;
}

.stf-section-block p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #334155;
}

.stf-grid-vision-mission {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.stf-grid-mission {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.stf-thumb-box {
  width: 100%;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  background: #F1F5F9;
}

.stf-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PAGE 3: CORE VALUES & EQUIPMENT (Image 2) */
.stf-page-values {
  background: #FFFFFF;
  position: relative;
}

.stf-values-top-gear {
  height: 35%;
  width: 100%;
  background: url('assets/studio-hero.png') center/cover no-repeat;
  position: relative;
}

.stf-values-card {
  margin: -40px 24px 0 24px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  z-index: 5;
  text-align: center;
}

.stf-values-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
  text-align: center;
}

.stf-value-item h4 {
  color: #2E7D32;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.stf-value-item p {
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.4;
}

/* PAGE 4: SERVICES & WHY CHOOSE US (Image 1) */
.stf-page-services {
  padding: 24px 28px;
  background: #FFFFFF;
}

.stf-why-box {
  background: #F8FAFC;
  border-left: 4px solid #2E7D32;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.stf-why-box h3 {
  font-size: 1.15rem;
  color: #1E293B;
  margin-bottom: 10px;
  font-weight: 800;
}

.stf-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stf-why-list li {
  font-size: 0.85rem;
  color: #334155;
  position: relative;
  padding-left: 18px;
}

.stf-why-list li::before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  color: #2E7D32;
  font-weight: bold;
}

.stf-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.stf-service-pill {
  background: #F1F5F9;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1E293B;
  border: 1px solid #E2E8F0;
}

.stf-service-pill i {
  color: #2E7D32;
  width: 18px;
  height: 18px;
}

/* Film Reel Footer Shared across inside pages */
.stf-film-footer {
  margin-top: auto;
  height: 70px;
  background: linear-gradient(135deg, #7CB342 0%, #689F38 100%);
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
}

/* Lightbox Zoom Modal */
.stf-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.stf-zoom-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.stf-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}

.stf-zoom-content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: #FFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
}

.stf-zoom-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  color: #FFF;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 20;
}

/* ==========================================================================
   HOMEPAGE HEADER EXCLUSIVE ANIMATED CLOCK BAR & NAVBAR BADGE
   ========================================================================== */

.header-top-hours-bar {
  background: linear-gradient(90deg, #050805 0%, #0d1612 50%, #050805 100%);
  border-bottom: 1px solid rgba(141, 198, 63, 0.25);
  padding: 7px 0;
  font-size: 0.8rem;
  position: relative;
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.top-hours-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.header-clock-widget {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-mini-clock {
  width: 22px;
  height: 22px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.top-clock-radar {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(0, 242, 254, 0.4) 60%, #8dc63f 100%);
  animation: radarSpin 3s linear infinite;
  mask: radial-gradient(transparent 58%, black 60%);
  -webkit-mask: radial-gradient(transparent 58%, black 60%);
  filter: drop-shadow(0 0 6px #8dc63f);
}

.top-clock-dial {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.8px solid #8dc63f;
  background: rgba(5, 8, 5, 0.95);
  position: relative;
  box-shadow: 0 0 10px rgba(141, 198, 63, 0.5);
}

.top-clock-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: 50% 100%;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.4, 2.08, 0.55, 0.44);
}

.top-hour-hand {
  width: 1.8px;
  height: 6px;
  background: #8dc63f;
  margin-left: -0.9px;
  box-shadow: 0 0 4px #8dc63f;
}

.top-minute-hand {
  width: 1.5px;
  height: 8.5px;
  background: #00F2FE;
  margin-left: -0.75px;
  box-shadow: 0 0 4px #00F2FE;
}

.top-second-hand {
  width: 1px;
  height: 9.5px;
  background: #ef4444;
  margin-left: -0.5px;
  box-shadow: 0 0 4px #ef4444;
}

.top-clock-center {
  width: 3.5px;
  height: 3.5px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 5px #ffffff;
}

.top-hours-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f8fafc;
}

.top-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8dc63f;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}

.top-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8dc63f;
  box-shadow: 0 0 8px #8dc63f;
  animation: statusPulse 1.4s ease-in-out infinite;
}

.top-hours-time {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.top-hours-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: #94a3b8;
}

.top-pst-ticker {
  font-family: monospace;
  font-weight: 700;
  color: #00F2FE;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 242, 254, 0.08);
  padding: 2px 10px;
  border-radius: 4px;
  border: 1px solid rgba(0, 242, 254, 0.2);
}

.top-divider {
  color: rgba(255, 255, 255, 0.2);
}

.top-phone-link {
  color: #f8fafc;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.top-phone-link:hover {
  color: #8dc63f;
}

/* NAVBAR HEADER CLOCK PILL FOR HOMEPAGE */
.nav-header-clock-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(15, 23, 15, 0.9);
  border: 1px solid rgba(141, 198, 63, 0.35);
  border-radius: 50px;
  margin-right: 10px;
  box-shadow: 0 0 15px rgba(141, 198, 63, 0.15);
  transition: all 0.3s ease;
  cursor: default;
}

.nav-header-clock-pill:hover {
  border-color: #00F2FE;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.nav-clock-graphic {
  width: 22px;
  height: 22px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-clock-dial {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.8px solid #8dc63f;
  position: relative;
  box-shadow: 0 0 8px rgba(141, 198, 63, 0.6);
  animation: miniDialGlow 3s infinite alternate ease-in-out;
}

.nav-clock-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: 50% 100%;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.4, 2.08, 0.55, 0.44);
}

.nav-h-hand {
  width: 1.8px;
  height: 6px;
  background: #8dc63f;
  margin-left: -0.9px;
  box-shadow: 0 0 4px #8dc63f;
}

.nav-m-hand {
  width: 1.5px;
  height: 8.5px;
  background: #00F2FE;
  margin-left: -0.75px;
  box-shadow: 0 0 4px #00F2FE;
}

.nav-s-hand {
  width: 1px;
  height: 9.5px;
  background: #ef4444;
  margin-left: -0.5px;
  box-shadow: 0 0 4px #ef4444;
}

.nav-clock-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.nav-clock-status {
  font-size: 0.68rem;
  font-weight: 800;
  color: #8dc63f;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-clock-status.closed {
  color: #ef4444;
}

.nav-clock-status.closed .nav-dot {
  background: #ef4444;
  box-shadow: 0 0 6px #ef4444;
}

.nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8dc63f;
  box-shadow: 0 0 6px #8dc63f;
  animation: statusPulse 1.5s infinite ease-in-out;
}

.nav-clock-hours {
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 991px) {
  .header-top-hours-bar {
    display: none;
  }
  .nav-header-clock-pill {
    display: none;
  }
}

/* ==========================================================================
   ULTRA-CREATIVE HERO LIVE SERVICE COUNTDOWN & AVAILABILITY TIMER WIDGET
   ========================================================================== */

.hero-service-timer-card {
  background: linear-gradient(135deg, rgba(15, 23, 15, 0.94) 0%, rgba(5, 12, 10, 0.97) 100%);
  border: 1px solid rgba(141, 198, 63, 0.38);
  border-radius: 18px;
  padding: 18px 22px;
  margin-top: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.12);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.hero-service-timer-card:hover {
  border-color: #00F2FE;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 242, 254, 0.25);
  transform: translateY(-2px);
}

.timer-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.timer-badge-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.timer-ring-icon {
  width: 28px;
  height: 28px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.timer-svg-ring {
  width: 28px;
  height: 28px;
  transform: rotate(-90deg);
}

.timer-center-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00F2FE;
  box-shadow: 0 0 8px #00F2FE;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: statusPulse 1.4s infinite ease-in-out;
}

.timer-label {
  font-size: 0.76rem;
  font-weight: 800;
  color: #8dc63f;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(141, 198, 63, 0.15);
  border: 1px solid rgba(141, 198, 63, 0.4);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #8dc63f;
  letter-spacing: 0.05em;
}

.timer-status-pill.closed-status {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.timer-display-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(5, 8, 5, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 18px;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.timer-num {
  font-family: var(--font-heading), monospace;
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(180deg, #ffffff 0%, #00F2FE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  text-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.timer-lbl {
  font-size: 0.6rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.timer-sep {
  font-size: 1.3rem;
  font-weight: 800;
  color: #8dc63f;
  animation: statusPulse 1s infinite alternate;
  line-height: 1;
  margin-top: -6px;
}

.timer-mode-info {
  margin-left: auto;
  text-align: right;
  max-width: 210px;
}

.timer-window-text {
  font-size: 0.74rem;
  color: #94a3b8;
  line-height: 1.35;
  display: block;
}

@media (max-width: 576px) {
  .timer-display-grid {
    flex-wrap: wrap;
  }
  .timer-mode-info {
    margin-left: 0;
    text-align: left;
    max-width: 100%;
    margin-top: 8px;
    width: 100%;
  }
}

/* ==========================================================================
   COMBINED HOLOGRAPHIC CLOCK + COUNTDOWN TIMER HUD STYLES
   ========================================================================== */

.holographic-clock-timer-card {
  background: linear-gradient(135deg, rgba(12, 20, 15, 0.95) 0%, rgba(5, 10, 8, 0.98) 100%);
  border: 1px solid rgba(0, 242, 254, 0.4);
  border-radius: 20px;
  padding: 22px 24px;
  margin-top: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 242, 254, 0.15);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.holographic-clock-timer-card:hover {
  border-color: var(--neon-lime, #8dc63f);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(141, 198, 63, 0.3);
  transform: translateY(-3px);
}

.hud-ambient-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 242, 254, 0.08) 0%, rgba(141, 198, 63, 0.05) 40%, transparent 70%);
  pointer-events: none;
}

.hud-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hud-title-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hud-pulse-ring {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00F2FE;
  box-shadow: 0 0 10px #00F2FE;
  animation: statusPulse 1.4s ease-in-out infinite;
}

.hud-title-text {
  font-size: 0.78rem;
  font-weight: 800;
  color: #00F2FE;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hud-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(141, 198, 63, 0.15);
  border: 1px solid rgba(141, 198, 63, 0.4);
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 800;
  color: #8dc63f;
  letter-spacing: 0.05em;
}

.hud-status-badge.closed-status {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.hud-center-layout {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* LEFT: CREATIVE ANALOG CLOCK CONTAINER */
.hud-analog-clock-container {
  width: 105px;
  height: 105px;
  position: relative;
  flex-shrink: 0;
}

.hud-radar-laser-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(0, 242, 254, 0.4) 60%, #8dc63f 100%);
  animation: radarSpin 3.5s linear infinite;
  mask: radial-gradient(transparent 58%, black 60%);
  -webkit-mask: radial-gradient(transparent 58%, black 60%);
  filter: drop-shadow(0 0 10px rgba(141, 198, 63, 0.6));
}

.hud-clock-dial {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 15, 0.98) 0%, rgba(5, 8, 5, 0.99) 100%);
  border: 2px solid rgba(0, 242, 254, 0.4);
  box-shadow: inset 0 0 15px rgba(0, 242, 254, 0.25), 0 0 20px rgba(0, 0, 0, 0.8);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hud-tick {
  position: absolute;
  font-size: 0.62rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-heading);
}
.t-12 { top: 4px; left: 50%; transform: translateX(-50%); color: #8dc63f; }
.t-6  { bottom: 4px; left: 50%; transform: translateX(-50%); color: #00F2FE; }
.t-3  { right: 6px; top: 50%; transform: translateY(-50%); }
.t-9  { left: 6px; top: 50%; transform: translateY(-50%); }

.hud-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: 50% 100%;
  border-radius: 3px;
  transition: transform 0.4s cubic-bezier(0.4, 2.08, 0.55, 0.44);
}

.hud-hand.hour-hand {
  width: 3.5px;
  height: 26px;
  background: linear-gradient(to top, #8dc63f, #bbf246);
  margin-left: -1.75px;
  box-shadow: 0 0 8px rgba(141, 198, 63, 0.8);
  z-index: 2;
}

.hud-hand.minute-hand {
  width: 2.5px;
  height: 36px;
  background: linear-gradient(to top, #00F2FE, #4facfe);
  margin-left: -1.25px;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.9);
  z-index: 3;
}

.hud-hand.second-hand {
  width: 1.5px;
  height: 42px;
  background: #ef4444;
  margin-left: -0.75px;
  box-shadow: 0 0 8px #ef4444;
  z-index: 4;
}

.hud-center-cap {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border: 2px solid #ef4444;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  box-shadow: 0 0 10px #ffffff;
}

/* RIGHT: DIGITAL COUNTDOWN CONTAINER */
.hud-digital-countdown-container {
  flex: 1;
}

.hud-countdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 10px;
  flex-wrap: wrap;
}

.hud-cd-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hud-pst-clock-tag {
  font-family: monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: #00F2FE;
  background: rgba(0, 242, 254, 0.08);
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 242, 254, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hud-flip-grid {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(5, 8, 5, 0.85);
  border: 1px solid rgba(141, 198, 63, 0.25);
  border-radius: 12px;
  padding: 10px 16px;
  width: fit-content;
}

.hud-flip-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.hud-flip-num {
  font-family: var(--font-heading), monospace;
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(180deg, #ffffff 0%, #00F2FE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  text-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.hud-flip-label {
  font-size: 0.58rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.1em;
  margin-top: 3px;
}

.hud-flip-colon {
  font-size: 1.4rem;
  font-weight: 800;
  color: #8dc63f;
  animation: statusPulse 1s infinite alternate;
  line-height: 1;
  margin-top: -6px;
}

.hud-window-subtext {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 8px;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .hud-center-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hud-flip-grid {
    margin: 0 auto;
  }
  .hud-window-subtext {
    text-align: center;
  }
}

/* MOBILE RESPONSIVE DESIGN FIXES FOR VIDEO HERO & NAVBAR */
@media (max-width: 991px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  .hero-video-bg-blur {
    display: none !important;
  }
  .hero-full-video-section {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0 !important;
    padding-top: 75px !important;
    padding-bottom: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    background: #000;
  }
  .hero-full-video-wrapper {
    position: relative;
    width: 100vw;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 16 / 9 !important;
    background: #000 !important;
    overflow: hidden !important;
  }
  .hero-full-video-element {
    position: relative;
    z-index: 2;
    width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 16px;
    height: 70px;
    max-width: 100vw;
  }
  .brand-logo svg, .brand-logo img {
    height: 34px;
    max-width: 130px;
  }
  .nav-cta {
    gap: 10px;
  }
  .nav-cta .btn-primary {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .nav-header-clock-pill {
    display: none;
  }
  .hero-full-video-section {
    padding-top: 70px !important;
  }
  .hero-full-video-wrapper {
    width: 100vw;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 16 / 9 !important;
  }
  .hero-full-video-element {
    object-fit: contain !important;
    object-position: center center !important;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 12px;
    height: 64px;
    max-width: 100vw;
  }
  .brand-logo svg, .brand-logo img {
    height: 28px;
    max-width: 110px;
  }
  .nav-cta .btn-primary {
    padding: 6px 10px;
    font-size: 0.75rem;
    letter-spacing: 0;
  }
  .hero-full-video-section {
    padding-top: 64px !important;
  }
  .hero-full-video-wrapper {
    width: 100vw;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 16 / 9 !important;
  }
  .hero-full-video-element {
    object-fit: contain !important;
    object-position: center center !important;
  }
}

/* ==========================================================================
   3D BRAND CAROUSEL MOBILE & RESPONSIVE DESIGN OVERRIDES
   ========================================================================== */
@media (max-width: 991px) {
  .logo-carousel-section {
    padding: 60px 0 90px;
  }
  .logo-carousel-stage {
    height: 380px;
    perspective: 950px;
    margin-top: 20px;
  }
  .logo-carousel-pedestal {
    width: 480px;
    height: 480px;
    transform: rotateX(80deg) translateY(70px) translateZ(-70px);
  }
  .logo-carousel-grid-base {
    width: 420px;
    height: 420px;
    transform: rotateX(80deg) translateY(70px) translateZ(-70px);
  }
  .logo-carousel-ring {
    width: 145px;
    height: 82px;
  }
  .logo-carousel-ring-top {
    top: 55px;
  }
  .logo-carousel-ring-bottom {
    top: 205px;
  }
  .logo-carousel-ring .glass-logo-item {
    width: 145px;
    height: 82px;
    border-radius: 10px;
  }
  .brand-logo-img {
    max-width: 124px;
    max-height: 62px;
    padding: 4px 10px;
  }
}

@media (max-width: 768px) {
  .logo-carousel-section {
    padding: 45px 0 70px;
  }
  .logo-carousel-stage {
    height: 340px;
    perspective: 750px;
    margin-top: 15px;
  }
  .logo-carousel-pedestal {
    width: 360px;
    height: 360px;
    transform: rotateX(80deg) translateY(50px) translateZ(-50px);
  }
  .logo-carousel-grid-base {
    width: 320px;
    height: 320px;
    transform: rotateX(80deg) translateY(50px) translateZ(-50px);
  }
  .logo-carousel-ring {
    width: 125px;
    height: 70px;
  }
  .logo-carousel-ring-top {
    top: 45px;
  }
  .logo-carousel-ring-bottom {
    top: 180px;
  }
  .logo-carousel-ring .glass-logo-item {
    width: 125px;
    height: 70px;
    border-radius: 8px;
  }
  .brand-logo-img {
    max-width: 106px;
    max-height: 52px;
    padding: 4px 8px;
  }
  .logo-carousel-ring-bottom .glass-logo-item {
    -webkit-box-reflect: bottom 4px linear-gradient(transparent, transparent 70%, rgba(255, 255, 255, 0.1));
  }
}

@media (max-width: 480px) {
  .logo-carousel-section {
    padding: 35px 0 55px;
  }
  .logo-carousel-stage {
    height: 310px;
    perspective: 600px;
    margin-top: 10px;
  }
  .logo-carousel-pedestal {
    width: 290px;
    height: 290px;
    transform: rotateX(80deg) translateY(40px) translateZ(-40px);
  }
  .logo-carousel-grid-base {
    width: 260px;
    height: 260px;
    transform: rotateX(80deg) translateY(40px) translateZ(-40px);
  }
  .logo-carousel-ring {
    width: 110px;
    height: 60px;
  }
  .logo-carousel-ring-top {
    top: 35px;
  }
  .logo-carousel-ring-bottom {
    top: 160px;
  }
  .logo-carousel-ring .glass-logo-item {
    width: 110px;
    height: 60px;
    border-radius: 8px;
  }
  .brand-logo-img {
    max-width: 92px;
    max-height: 44px;
    padding: 3px 6px;
  }
}

@media (max-width: 360px) {
  .logo-carousel-stage {
    height: 285px;
    perspective: 500px;
  }
  .logo-carousel-ring {
    width: 95px;
    height: 52px;
  }
  .logo-carousel-ring-top {
    top: 30px;
  }
  .logo-carousel-ring-bottom {
    top: 142px;
  }
  .logo-carousel-ring .glass-logo-item {
    width: 95px;
    height: 52px;
    border-radius: 6px;
  }
  .brand-logo-img {
    max-width: 80px;
    max-height: 38px;
    padding: 2px 5px;
  }
}

/* ==========================================================================
   3D PORTFOLIO FLIPBOOK BROCHURE MOBILE RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 768px) {
  .flipbook-section {
    padding: 40px 0 80px;
    overflow: hidden;
  }
  .stf-flipbook-toolbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px !important;
  }
  .stf-mode-selector {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
  .flip-mode-btn {
    flex: 1;
    padding: 7px 10px;
    font-size: 11px;
    justify-content: center;
    gap: 4px;
  }
  .stf-toolbar-actions {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .stf-toolbar-actions .btn {
    padding: 7px 14px;
    font-size: 0.8rem;
  }
  .stf-flipbook-wrapper {
    width: 100% !important;
    max-width: 100vw !important;
    padding: 0 10px;
    box-sizing: border-box;
    overflow: hidden;
  }
  .stf-flipbook-stage {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    overflow: hidden;
  }
  .stf__parent, .stf__wrapper, .stf__container {
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  .stf-page-card img {
    object-fit: contain !important;
  }
  .flipbook-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px !important;
    margin-bottom: 50px !important;
    position: relative;
    z-index: 10;
  }
  .flipbook-indicator {
    order: -1;
    width: 100%;
    max-width: 320px;
    text-align: center;
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 4px;
  }
  .flipbook-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .stf-mode-selector {
    max-width: 100%;
  }
  .flip-mode-btn {
    padding: 6px 6px;
    font-size: 10.5px;
  }
  .flip-mode-btn i {
    width: 13px;
    height: 13px;
  }
  .stf-flipbook-wrapper {
    padding: 0 5px;
  }
  .flipbook-controls {
    margin-bottom: 65px !important;
  }
}

/* ==========================================================================
   SITE FOOTER MOBILE RESPONSIVE OVERRIDES (ALL PAGES)
   ========================================================================== */
@media (max-width: 768px) {
  .site-footer {
    padding-top: 50px !important;
    padding-bottom: 95px !important; /* Space for floating Framee AI assistant widget */
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  .site-footer .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-top: 20px !important;
    margin-bottom: 35px !important;
  }
  .footer-col {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .footer-brand-col {
    gap: 18px !important;
  }
  .footer-brand-bio {
    max-width: 100% !important;
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
  }
  .footer-social-bar {
    gap: 10px !important;
    margin-bottom: 16px !important;
  }
  .footer-social-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
  }
  .footer-social-btn svg {
    width: 20px !important;
    height: 20px !important;
  }
  .footer-contact-pills {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .footer-location-pill,
  .footer-phone-pill,
  .footer-hours-pill {
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    font-size: 0.82rem !important;
    padding: 8px 14px !important;
    white-space: normal !important;
    word-break: break-word !important;
    line-height: 1.4 !important;
  }
  .footer-hours-pill {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .footer-col-title {
    font-size: 1.05rem !important;
    margin-bottom: 14px !important;
  }
  .footer-nav-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }
  .footer-nav-list li a {
    font-size: 0.88rem !important;
    padding: 3px 0 !important;
    line-height: 1.5 !important;
  }
  .footer-newsletter-col {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }
  .footer-newsletter-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .footer-input-wrapper {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .footer-email-input {
    width: 100% !important;
    font-size: 0.85rem !important;
  }
  .footer-action-btn {
    width: 100% !important;
    justify-content: center !important;
    height: 44px !important;
    font-size: 0.85rem !important;
    border-radius: 10px !important;
  }
  .newsletter-perks-list {
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 12px !important;
  }
  .footer-bottom-bar {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
    padding-top: 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
  .footer-copyright {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }
  .footer-legal-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px 12px !important;
    font-size: 0.8rem !important;
  }
  .back-to-top-btn {
    margin-top: 6px !important;
    font-size: 0.82rem !important;
    padding: 8px 18px !important;
  }

  /* Header button hide on mobile for clean logo & menu layout */
  .nav-container > .btn,
  .nav-container > a.btn {
    display: none !important;
  }

  /* Footer list alignment reset */
  .footer-nav-list {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }
  .footer-nav-list li {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  /* Contact Page Grid & Form Stacking */
  .contact-main-row {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .form-row-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}






