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

:root {
  /* Brotech Official Brand Color System (Derived directly from Official Logo) */
  --brand-purple: #673ddf;
  --brand-purple-dark: #5125d4;
  --brand-purple-deep: #3b17a6;
  --brand-purple-light: rgba(103, 61, 223, 0.08);
  --brand-purple-glow: rgba(103, 61, 223, 0.35);

  --brand-yellow: #f7dd0c;
  --brand-yellow-gold: #facc15;
  --brand-yellow-amber: #eab308;
  --brand-yellow-light: rgba(247, 221, 12, 0.15);
  --brand-yellow-glow: rgba(247, 221, 12, 0.4);
  --brand-yellow-text: #854d0e;

  /* Surfaces & Clean Modern Canvas */
  --bg-main: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.94);
  --bg-card-solid: #ffffff;
  --bg-card-hover: #ffffff;
  --border-subtle: rgba(226, 232, 240, 0.9);
  --border-glow: rgba(103, 61, 223, 0.3);
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;
  
  /* Status Accent */
  --accent-emerald: #10b981;
  --accent-emerald-light: rgba(16, 185, 129, 0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --shadow-sm: 0 2px 8px rgba(103, 61, 223, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(103, 61, 223, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 40px -10px rgba(103, 61, 223, 0.16), 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-purple: 0 10px 26px -4px rgba(103, 61, 223, 0.35);
  --shadow-yellow: 0 8px 20px -3px rgba(247, 221, 12, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 8%, rgba(103, 61, 223, 0.09), transparent 45%),
    radial-gradient(circle at 90% 15%, rgba(247, 221, 12, 0.12), transparent 45%),
    radial-gradient(circle at 50% 60%, rgba(103, 61, 223, 0.06), transparent 50%);
  background-attachment: fixed;
}

/* Modern Typography */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #0f172a;
}

.font-mono {
  font-family: var(--font-mono);
}

.gradient-text-multi {
  background: linear-gradient(135deg, #673ddf 0%, #5125d4 55%, #eab308 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-purple {
  background: linear-gradient(135deg, #673ddf 0%, #5125d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-yellow {
  background: linear-gradient(135deg, #f7dd0c 0%, #eab308 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphic & Modern Cards */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
  border-color: rgba(103, 61, 223, 0.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (max-width: 640px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(103, 61, 223, 0.08);
  border: 1px solid rgba(103, 61, 223, 0.22);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: #673ddf;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #0f172a;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, #673ddf 0%, #5125d4 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 20px -2px rgba(103, 61, 223, 0.4);
  border: 1px solid rgba(247, 221, 12, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5b2be2 0%, #431aa8 100%);
  box-shadow: 0 10px 28px rgba(103, 61, 223, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ffffff;
  color: #0f172a !important;
  border: 1px solid #cbd5e1;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #f8fafc;
  color: #673ddf !important;
  border-color: #673ddf;
  transform: translateY(-2px);
}

/* ==================== SENIOR GRADE RESPONSIVE FLOATING NAVBAR ==================== */
.navbar-wrap {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 1rem;
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.75rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 35px -5px rgba(103, 61, 223, 0.14);
  transition: all 0.25s ease;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(103, 61, 223, 0.3);
  border: 2px solid #f7dd0c;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.08) rotate(5deg);
}

.brand-badge {
  background: #f7dd0c;
  color: #5125d4;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(247, 221, 12, 0.35);
  border: 1px solid rgba(103, 61, 223, 0.15);
  flex-shrink: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 880px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: #475569;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #673ddf;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-cta-btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.navbar-hamburger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}

.navbar-hamburger-btn:hover {
  background: #e2e8f0;
  color: #673ddf;
  transform: scale(1.05);
}

/* ==================== MOBILE RESPONSIVE NAVBAR OPTIMIZATION ==================== */
@media (max-width: 879px) {
  .navbar-wrap {
    top: 0.75rem;
    padding: 0 0.85rem;
  }

  .navbar {
    padding: 0.55rem 1.15rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  }

  .brand-logo {
    gap: 0.5rem;
    font-size: 1.15rem;
  }

  .brand-logo-img {
    width: 32px;
    height: 32px;
  }

  .brand-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
  }

  .navbar-hamburger-btn {
    display: inline-flex !important;
  }

  /* Hide bulky cramped button from the top floating pill on mobile */
  .nav-cta-btn {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .navbar-wrap {
    top: 0.5rem;
    padding: 0 0.65rem;
  }

  .navbar {
    padding: 0.5rem 0.95rem;
  }

  .brand-logo {
    font-size: 1.05rem;
  }

  .brand-logo-img {
    width: 28px;
    height: 28px;
  }
}

/* ==================== LUXURY DARK GLASS MOBILE DRAWER ==================== */
#mobile-menu {
  display: none;
  background: rgba(11, 15, 26, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(103, 61, 223, 0.15);
  margin-top: 0.65rem;
  padding: 1.25rem 1.5rem;
  animation: mobileMenuSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mobileMenuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.25rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover, .mobile-nav-link:active {
  color: #f7dd0c;
  padding-left: 6px;
}

.mobile-menu-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  background: linear-gradient(135deg, #673ddf 0%, #5125d4 100%);
  color: #ffffff;
  border: 1px solid #f7dd0c;
  box-shadow: 0 8px 24px rgba(103, 61, 223, 0.4);
  transition: all 0.25s ease;
}

.mobile-drawer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(103, 61, 223, 0.55);
}

/* Hero Section & Three.js Canvas */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8.5rem 1rem 4rem 1rem;
  overflow: hidden;
}

#three-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.hero-headline {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: #0f172a;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 4.4rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.hero-metrics-pill {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1.4rem 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .hero-metrics-pill {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
  }
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
  font-weight: 600;
  margin-top: 0.2rem;
}

/* News Ticker Bar */
.news-ticker-bar {
  background: linear-gradient(90deg, #4f46e5, #7c3aed, #ec4899);
  color: #ffffff;
  padding: 0.7rem 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-move {
  display: inline-block;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
}

@keyframes tickerScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ==================== ULTRA-MODERN CORPORATE BRAND MARQUEE ==================== */
.brand-marquee-section {
  padding: 4rem 0 4.25rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, rgba(243, 244, 246, 0.7) 50%, #f8fafc 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.brand-marquee-header {
  text-align: center;
  margin-bottom: 2rem;
}

.brand-marquee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(103, 61, 223, 0.06);
  border: 1px solid rgba(103, 61, 223, 0.18);
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #5527d7;
  text-transform: uppercase;
  box-shadow: 0 1px 3px rgba(103, 61, 223, 0.06);
}

.brand-marquee-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
  animation: brandPulse 2s infinite;
}

@keyframes brandPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.marquee-fade-left, .marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 10;
  pointer-events: none;
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, #f8fafc 0%, rgba(248, 250, 252, 0.85) 45%, transparent 100%);
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, #f8fafc 0%, rgba(248, 250, 252, 0.85) 45%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 34s linear infinite;
  gap: 1.5rem;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-50% - 0.75rem), 0, 0); }
}

.brand-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0.85rem 1.6rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 18px -2px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  height: 68px;
  box-sizing: border-box;
}

.brand-card:hover {
  border-color: rgba(103, 61, 223, 0.35);
  box-shadow: 0 14px 30px -4px rgba(103, 61, 223, 0.16), 0 0 0 1px rgba(103, 61, 223, 0.2);
  transform: translateY(-3px) scale(1.02);
  background: #ffffff;
}

.brand-card-logo {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.brand-card:hover .brand-card-logo {
  transform: scale(1.08);
}

.brand-logo-svg {
  width: 36px;
  height: 36px;
  display: block;
}

.brand-logo-img {
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
  display: block;
}

.brand-card-name {
  font-family: var(--font-heading);
  font-weight: 750;
  font-size: 0.95rem;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.015em;
  transition: color 0.2s ease;
}

.brand-card:hover .brand-card-name {
  color: #5527d7;
}

.brand-card-sub {
  font-size: 0.70rem;
  color: #64748b;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .brand-marquee-section {
    padding: 3rem 0;
  }
  .marquee-track {
    gap: 1rem;
    animation-duration: 26s;
  }
  @keyframes marqueeScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(calc(-50% - 0.5rem), 0, 0); }
  }
  .brand-card {
    padding: 0.7rem 1.25rem;
    gap: 0.85rem;
    height: 60px;
    border-radius: 13px;
  }
  .brand-card-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .brand-logo-svg {
    width: 30px;
    height: 30px;
  }
  .brand-logo-img {
    max-width: 28px;
    max-height: 28px;
  }
  .brand-card-name {
    font-size: 0.86rem;
  }
  .brand-card-sub {
    font-size: 0.65rem;
  }
  .marquee-fade-left, .marquee-fade-right {
    width: 60px;
  }
}

/* ==================== ULTRA-MODERN SCROLLABLE SERVICES SHOWCASE ==================== */
.services-showcase-wrapper {
  position: relative;
  width: 100%;
}

.services-control-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.services-tabs-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-tab-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.service-tab-btn:hover {
  background: #f8fafc;
  color: #673ddf;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.service-tab-btn.active {
  background: linear-gradient(135deg, #673ddf, #5125d4);
  color: #ffffff;
  border: 1px solid rgba(247, 221, 12, 0.4);
  box-shadow: 0 6px 16px rgba(103, 61, 223, 0.35);
}

.services-nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.service-nav-arrow:hover {
  background: #673ddf;
  color: #ffffff;
  border-color: #673ddf;
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(103, 61, 223, 0.35);
}

.service-counter-badge {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

/* Horizontal Scroll Track */
.services-scroll-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.75rem 0.25rem 2rem 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.services-scroll-track::-webkit-scrollbar {
  height: 6px;
}
.services-scroll-track::-webkit-scrollbar-track {
  background: rgba(241, 245, 249, 0.6);
  border-radius: 9999px;
}
.services-scroll-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #673ddf, #f7dd0c);
  border-radius: 9999px;
}

/* Large Interactive Showcase Card */
.service-showcase-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

@media (min-width: 980px) {
  .service-showcase-card {
    grid-template-columns: 1.05fr 1fr;
    min-height: 560px;
  }
}

.service-showcase-card:hover {
  box-shadow: 0 30px 60px -20px rgba(79, 70, 229, 0.16), 0 0 0 1px rgba(79, 70, 229, 0.25);
  transform: translateY(-4px);
}

/* Visual Media Container */
.service-visual-col {
  position: relative;
  background: #0f172a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
}

@media (min-width: 980px) {
  .service-visual-col {
    min-height: 100%;
  }
}

.service-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.95);
}

.service-showcase-card:hover .service-hero-img {
  transform: scale(1.05);
}

.service-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
  pointer-events: none;
}

.service-visual-badge-top {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.service-blueprint-panel {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  margin: 1.5rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blueprint-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blueprint-title {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blueprint-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.blueprint-tag {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
}

.blueprint-metric {
  font-size: 0.82rem;
  color: #10b981;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* Service Detail Column */
.service-content-col {
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}

.service-flagship-number {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  color: #673ddf;
  background: rgba(103, 61, 223, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.service-main-heading {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.service-main-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.service-deliverables-title {
  font-size: 0.82rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .service-deliverables-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.45;
  font-weight: 500;
}

.deliverable-item i {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.service-guarantee-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.85rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.service-guarantee-bar i {
  color: #673ddf;
  flex-shrink: 0;
}

.service-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.order-service-btn {
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(135deg, #673ddf, #5125d4);
  color: #ffffff;
  border: 1px solid rgba(247, 221, 12, 0.3);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 20px rgba(103, 61, 223, 0.32);
  transition: all 0.3s ease;
  text-decoration: none;
}

.order-service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(103, 61, 223, 0.45);
  border-color: #f7dd0c;
  filter: brightness(1.05);
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px #10b981; }
  50% { transform: scale(1.3); opacity: 0.65; box-shadow: 0 0 14px #10b981; }
}

@media (max-width: 768px) {
  .service-content-col {
    padding: 1.75rem 1.25rem;
  }
  .service-blueprint-panel {
    margin: 1rem;
    padding: 1rem;
  }
  .service-main-heading {
    font-size: 1.45rem;
  }
}

/* ==================== 2026 ULTRA-MODERN CASE STUDIES AUTO-SLIDER ==================== */
.case-studies-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
}

.case-studies-slider-container {
  position: relative;
  width: 100%;
}

.case-studies-slider-viewport {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0 1.5rem 0;
  margin: 0 -0.85rem;
  box-sizing: border-box;
}

.case-studies-slider-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.case-study-slide {
  flex: 0 0 33.333333%;
  padding: 0 0.85rem;
  box-sizing: border-box;
  display: flex;
}

@media (max-width: 1100px) {
  .case-study-slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .case-study-slide {
    flex: 0 0 100%;
  }
  .case-studies-slider-viewport {
    margin: 0 -0.5rem;
  }
  .case-study-slide {
    padding: 0 0.5rem;
  }
}

.case-study-card {
  padding: 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 380px;
  box-sizing: border-box;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px -5px rgba(103, 61, 223, 0.15), 0 0 0 1px rgba(103, 61, 223, 0.2);
  border-color: rgba(103, 61, 223, 0.3);
}

.case-study-glow-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.case-study-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
  flex-wrap: wrap;
}

.case-study-category {
  font-size: 0.74rem;
  font-family: var(--font-mono);
  font-weight: 750;
  color: #5527d7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-study-metric-badge {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.case-study-title {
  font-size: 1.32rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 0 0 0.85rem 0;
}

.case-study-summary {
  font-size: 0.90rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.case-study-tag {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 600;
  padding: 0.22rem 0.6rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: #475569;
}

.case-study-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  padding-top: 1.15rem;
}

.case-study-client {
  font-size: 0.76rem;
  font-family: var(--font-mono);
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.case-study-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 750;
  color: #5527d7;
  text-decoration: none;
  transition: all 0.2s ease;
}

.case-study-btn:hover {
  color: #3b17a6;
  transform: translateX(2px);
}

.case-studies-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.case-study-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(103, 61, 223, 0.2);
  background: #ffffff;
  color: #5527d7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.case-study-nav-btn:hover {
  background: #5527d7;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(85, 39, 215, 0.25);
  border-color: #5527d7;
}

.case-study-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.case-study-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  padding: 0;
}

.case-study-dot.active {
  width: 28px;
  background: #5527d7;
}

/* About & Reliability Section */
.about-section-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-section-wrap {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.stats-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-box {
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.stat-box-num {
  font-size: 2.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #673ddf 0%, #5125d4 50%, #eab308 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.35rem;
}

.stat-box-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ==================== MODERN TESTIMONIALS SLIDER & SCROLLER ==================== */
.testimonials-slider-container {
  position: relative;
  width: 100%;
}

.testimonials-hud-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0.9rem 1.4rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(103, 61, 223, 0.12);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(103, 61, 223, 0.04);
}

.testimonials-hud-stats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #0f172a;
  font-weight: 700;
}

.testimonials-hud-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

.testimonials-hud-pill {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.testimonials-hud-scroller-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.testimonials-slider-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 0.5rem 0 1rem 0;
  cursor: grab;
}

.testimonials-slider-viewport:active {
  cursor: grabbing;
}

.testimonials-slider-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 0.85rem;
  box-sizing: border-box;
  display: flex;
}

@media (max-width: 1100px) {
  .testimonial-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .testimonial-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0.25rem;
  }
}

.testi-card-modern {
  background: #ffffff;
  border: 1px solid rgba(103, 61, 223, 0.12);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  width: 100%;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #673ddf, #06b6d4, #f7dd0c);
  opacity: 0.85;
  transition: height 0.3s ease;
}

.testi-watermark-quote {
  position: absolute;
  right: 1.5rem;
  bottom: 5.5rem;
  width: 52px;
  height: 52px;
  color: rgba(103, 61, 223, 0.04);
  pointer-events: none;
}

.testi-card-modern:hover {
  transform: translateY(-6px);
  border-color: rgba(103, 61, 223, 0.35);
  box-shadow: 0 22px 45px -12px rgba(103, 61, 223, 0.18), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
}

.testi-card-modern:hover::before {
  height: 5px;
}

.testi-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.testi-stars-row {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}

.testi-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.28);
  padding: 0.22rem 0.65rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
}

.testi-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: testiPulse 2s infinite;
}

@keyframes testiPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.testi-quote-text {
  font-size: 0.96rem;
  color: #1e293b;
  line-height: 1.75;
  margin: 0 0 1.85rem 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.testi-author-wrap {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(103, 61, 223, 0.08);
}

.testi-avatar-frame {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 2px solid #e0e7ff;
  background: linear-gradient(135deg, #673ddf, #5125d4);
  box-shadow: 0 4px 14px rgba(103, 61, 223, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.15rem;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testi-card-modern:hover .testi-avatar-frame {
  transform: scale(1.06);
  border-color: #673ddf;
}

.testi-avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-author-details {
  min-width: 0;
  flex: 1;
}

.testi-author-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
}

.testi-author-role {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
  line-height: 1.3;
}

.testi-company-badge {
  font-size: 0.76rem;
  font-weight: 700;
  color: #673ddf;
  background: rgba(103, 61, 223, 0.07);
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
  display: inline-block;
  margin-top: 0.35rem;
  border: 1px solid rgba(103, 61, 223, 0.12);
}

/* Scroller Progress Bar */
.testi-scroller-track {
  width: 100%;
  height: 4px;
  background: rgba(103, 61, 223, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  margin: 1.75rem 0 1.25rem 0;
  position: relative;
}

.testi-scroller-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #673ddf, #06b6d4, #f7dd0c);
  border-radius: 9999px;
  transition: width 0.1s linear;
}

/* Slider Navigation Bar */
.testimonials-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.testi-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testi-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(103, 61, 223, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-dot.active {
  width: 28px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #673ddf, #06b6d4);
  box-shadow: 0 2px 8px rgba(103, 61, 223, 0.3);
}

.testi-nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(103, 61, 223, 0.18);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.testi-nav-btn:hover {
  transform: scale(1.08);
  background: #673ddf;
  color: #ffffff;
  border-color: #673ddf;
  box-shadow: 0 8px 20px rgba(103, 61, 223, 0.3);
}

/* ==================== MODERN MINIMAL CONTACT SECTION & FORM ==================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 960px) {
  .contact-container {
    grid-template-columns: 1fr 1.35fr;
    gap: 2.75rem;
  }
}

/* Left Column: Interactive Contact Info Card */
.contact-info-card-modern {
  background: #ffffff;
  border: 1px solid rgba(103, 61, 223, 0.14);
  border-radius: 22px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 12px 35px -10px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.contact-info-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #06b6d4, #673ddf);
}

.contact-status-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  margin-bottom: 1rem;
}

.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.75rem 0;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.15rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-channel-item:hover {
  background: #ffffff;
  border-color: rgba(103, 61, 223, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(103, 61, 223, 0.08);
}

.contact-channel-left {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.contact-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(103, 61, 223, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(103, 61, 223, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #673ddf;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.contact-channel-item:hover .contact-channel-icon {
  transform: scale(1.08);
  background: #673ddf;
  color: #ffffff;
}

.contact-channel-lbl {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-channel-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  word-break: break-word;
}

.contact-channel-action-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #673ddf;
  background: rgba(103, 61, 223, 0.08);
  border: 1px solid rgba(103, 61, 223, 0.2);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.contact-nda-box {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  background: rgba(103, 61, 223, 0.04);
  border: 1px dashed rgba(103, 61, 223, 0.22);
  border-radius: 14px;
}

/* Right Column: Clean Minimal Contact Form */
.contact-form-card-modern {
  background: #ffffff;
  border: 1px solid rgba(103, 61, 223, 0.14);
  border-radius: 22px;
  padding: 2.75rem 2.5rem;
  box-shadow: 0 12px 35px -10px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.01);
  position: relative;
  overflow: hidden;
}

@media (max-width: 640px) {
  .contact-form-card-modern, .contact-info-card-modern {
    padding: 2rem 1.4rem;
  }
}

.contact-form-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #673ddf, #f7dd0c);
}

.contact-form-header {
  margin-bottom: 1.75rem;
}

.contact-form-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.35rem 0;
}

.contact-form-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.form-group-clean {
  margin-bottom: 1.25rem;
}

.form-label-clean {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.45rem;
}

.form-input-clean, .form-textarea-clean, .form-select-clean {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  color: #0f172a;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  transition: all 0.25s ease;
  outline: none;
  box-sizing: border-box;
}

.form-input-clean:focus, .form-textarea-clean:focus, .form-select-clean:focus {
  border-color: #673ddf;
  box-shadow: 0 0 0 3.5px rgba(103, 61, 223, 0.16);
  background: #ffffff;
}

.form-select-clean {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23673ddf' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 16px;
  padding-right: 2.75rem;
}

.form-select-clean optgroup {
  font-weight: 800;
  color: #673ddf;
  background: #f1f5f9;
}

.form-select-clean option {
  font-weight: normal;
  color: #0f172a;
  background: #ffffff;
  padding: 0.5rem;
}

.btn-contact-submit {
  width: 100%;
  padding: 1rem 1.75rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #673ddf, #5125d4);
  border: 1px solid #f7dd0c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(103, 61, 223, 0.25);
  margin-top: 0.5rem;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(103, 61, 223, 0.38);
  background: linear-gradient(135deg, #5829d6, #4319b8);
}

/* ==================== CLEAN, MINIMALIST & ULTRA-MODERN 2026 FOOTER ==================== */
.footer {
  position: relative;
  background: #070a12;
  color: #e2e8f0;
  padding: 4.5rem 0 2rem 0;
  margin-top: 5rem;
  overflow: hidden;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3);
}

/* Traveling Animated Aurora Beam on Top Border */
.footer-top-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #673ddf 25%, #f7dd0c 50%, #10b981 75%, transparent 100%);
  background-size: 200% 100%;
  animation: footerBeamSlide 6s linear infinite;
  z-index: 3;
}

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

/* Ambient Radial Glow in Background */
.footer-ambient-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 15% 30%, rgba(103, 61, 223, 0.12), transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(247, 221, 12, 0.08), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(16, 185, 129, 0.06), transparent 50%);
  opacity: 0.9;
}

/* Modern Minimalist 3-Column Grid */
.footer-main-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-main-grid {
    grid-template-columns: 1.2fr 1.1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1.4fr 1.1fr 1fr;
    gap: 4rem;
  }
}

/* Col 1: Brand & Tagline */
.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-tagline-text {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 380px;
  margin: 1rem 0 1.25rem 0;
}

.footer-live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 9999px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: #cbd5e1;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.footer-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: waDotGlow 1.8s infinite ease-in-out;
}

/* Minimalist Social Icon Buttons */
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-btn:hover {
  transform: translateY(-3px) scale(1.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.social-icon-btn[data-brand="linkedin"]:hover {
  background: #0077b5;
  box-shadow: 0 6px 16px rgba(0, 119, 181, 0.4);
}
.social-icon-btn[data-brand="github"]:hover {
  background: #24292e;
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
}
.social-icon-btn[data-brand="facebook"]:hover {
  background: #1877f2;
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}
.social-icon-btn[data-brand="whatsapp"]:hover {
  background: #25d366;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}
.social-icon-btn[data-brand="twitter"]:hover {
  background: #000000;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
}
.social-icon-btn[data-brand="youtube"]:hover {
  background: #ff0000;
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.4);
}
.social-icon-btn[data-brand="discord"]:hover {
  background: #5865f2;
  box-shadow: 0 6px 16px rgba(88, 101, 242, 0.4);
}

/* Col Headers */
.footer-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.footer-col-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f8fafc;
}

.footer-col-beam {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
}

/* Clean Service Links Navigation */
.footer-clean-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.footer-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 4px 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-nav-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(103, 61, 223, 0.7);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.footer-nav-bullet.accent {
  background: #f7dd0c;
}

.footer-nav-arrow {
  width: 14px;
  height: 14px;
  margin-left: auto;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s ease;
  color: #f7dd0c;
}

.footer-nav-link:hover {
  color: #f7dd0c;
  transform: translateX(5px);
}

.footer-nav-link:hover .footer-nav-bullet {
  background: #f7dd0c;
  box-shadow: 0 0 8px #f7dd0c;
  transform: scale(1.3);
}

.footer-nav-link:hover .footer-nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

.footer-nav-accent {
  color: #cbd5e1;
  font-weight: 600;
  margin-top: 0.35rem;
}

/* Col 3: Contact Stack & CTA */
.footer-contact-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-contact-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: all 0.25s ease;
  color: inherit;
}

.footer-contact-tile:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(103, 61, 223, 0.35);
  transform: translateY(-2px);
}

.footer-tile-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(103, 61, 223, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7dd0c;
  flex-shrink: 0;
}

.footer-tile-icon i {
  width: 15px;
  height: 15px;
}

.footer-tile-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-tile-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-tile-val {
  font-size: 0.84rem;
  color: #e2e8f0;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Schedule CTA Button */
.footer-start-project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(103, 61, 223, 0.25) 0%, rgba(247, 221, 12, 0.15) 100%);
  border: 1px solid rgba(247, 221, 12, 0.4);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-start-project-btn i {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}

.footer-start-project-btn:hover {
  background: linear-gradient(135deg, #673ddf 0%, #5125d4 100%);
  border-color: #f7dd0c;
  box-shadow: 0 8px 24px rgba(103, 61, 223, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

.footer-start-project-btn:hover i {
  transform: translateX(3px);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.84rem;
  color: #64748b;
}

.footer-copyright-text {
  font-size: 0.83rem;
  color: #64748b;
}

.footer-bottom-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-bottom-item {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s ease;
}

.footer-bottom-item:hover {
  color: #f7dd0c;
}

.footer-dot-sep {
  color: #475569;
  font-size: 0.75rem;
}

.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}

.footer-back-to-top i {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.footer-back-to-top:hover {
  color: #f7dd0c;
  border-color: rgba(247, 221, 12, 0.4);
  background: rgba(247, 221, 12, 0.08);
  transform: translateY(-2px);
}

.footer-back-to-top:hover i {
  transform: translateY(-2px);
}

/* Mobile Responsive Adjustments */
@media (max-width: 640px) {
  .footer {
    padding: 3rem 0 6rem 0; /* 6rem bottom padding ensures floating WhatsApp never blocks Schedule button */
    overflow: hidden;
  }

  .footer-main-grid {
    gap: 2.25rem;
    margin-bottom: 2rem;
  }

  .footer-tagline-text {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0.75rem 0 1rem 0;
  }

  .footer-live-status {
    font-size: 0.74rem;
    padding: 4px 12px;
    margin-bottom: 1rem;
  }

  .footer-social-row {
    gap: 7px;
  }

  .social-icon-btn {
    width: 36px;
    height: 36px;
  }

  .footer-contact-tile {
    padding: 10px 12px;
    gap: 10px;
  }

  .footer-tile-val {
    white-space: normal;
    word-break: break-word;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .footer-start-project-btn {
    padding: 12px 18px;
    font-size: 0.92rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .footer-bottom-nav {
    justify-content: center;
    gap: 0.65rem;
    font-size: 0.82rem;
  }

  .footer-back-to-top {
    margin-top: 0.4rem;
  }
}

/* ==================== 2026 CINEMATIC HERO MOTION GRAPHICS STAGE ==================== */
.hero-video-stage-container {
  position: relative;
  margin: 3.5rem auto 1rem auto;
  max-width: 1040px;
  width: 100%;
  text-align: left;
}

/* Ambient Radial Glow behind the Frame */
.hero-video-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105%;
  height: 105%;
  background: radial-gradient(circle at center, rgba(103, 61, 223, 0.28) 0%, rgba(247, 221, 12, 0.16) 45%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: heroAuraPulse 6s ease-in-out infinite alternate;
}

@keyframes heroAuraPulse {
  0% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.65; }
  100% { transform: translate(-50%, -50%) scale(1.04); opacity: 0.95; }
}

.hero-video-frame {
  position: relative;
  z-index: 2;
  background: #080c16;
  border-radius: 20px;
  border: 1px solid rgba(103, 61, 223, 0.35);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(247, 221, 12, 0.15);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hero-video-frame:hover {
  box-shadow: 0 30px 70px -10px rgba(103, 61, 223, 0.35), 0 0 0 1px rgba(247, 221, 12, 0.35);
  transform: translateY(-3px);
}

/* Bezel Header Bar */
.hero-video-bezel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-video-window-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.hero-video-bezel-title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-left: 0.75rem;
  letter-spacing: 0.04em;
}

.hero-video-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #f7dd0c;
  background: rgba(247, 221, 12, 0.12);
  border: 1px solid rgba(247, 221, 12, 0.3);
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
}

.live-beacon-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f7dd0c;
  box-shadow: 0 0 8px #f7dd0c;
  animation: pulse-dot 1.8s infinite;
}

/* Video Screen Area */
.hero-video-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
  overflow: hidden;
  cursor: pointer;
}

#hero-motion-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Big Center Glass Play/Pause Indicator */
.hero-center-play-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(103, 61, 223, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid #f7dd0c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}

.hero-video-screen:hover .hero-center-play-trigger {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.hero-center-play-trigger:hover {
  background: #673ddf;
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 15px 35px rgba(103, 61, 223, 0.6);
}

.hero-video-screen.is-paused .hero-center-play-trigger {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* Top Floating Badge */
.hero-video-float-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

/* Custom Ultra-Modern HUD Controls Bar */
.hero-video-hud-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 1rem 1.25rem 0.85rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 12, 22, 0.92) 80%, rgba(8, 12, 22, 0.98) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-video-screen:hover .hero-video-hud-overlay,
.hero-video-screen.is-paused .hero-video-hud-overlay {
  opacity: 1;
}

/* Scrubber Line */
.hero-video-progress-wrap {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: height 0.2s ease;
}

.hero-video-progress-wrap:hover {
  height: 8px;
}

.hero-video-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #673ddf, #f7dd0c);
  border-radius: 9999px;
  transition: width 0.1s linear;
}

/* Controls Bottom Row */
.hero-video-hud-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-hud-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-hud-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #ffffff;
  padding: 0.45rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.8rem;
  outline: none;
}

.hero-hud-btn:hover {
  background: #673ddf;
  border-color: #f7dd0c;
  transform: scale(1.05);
}

/* EQ Equalizer Waveform Bars for Audio */
.sound-toggle-btn {
  padding: 0.45rem 0.9rem;
}

.sound-toggle-btn.is-unmuted {
  background: rgba(247, 221, 12, 0.15);
  border-color: #f7dd0c;
  color: #f7dd0c;
}

.eq-wave-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.eq-bar {
  width: 2.5px;
  height: 4px;
  background: #94a3b8;
  border-radius: 2px;
  transition: height 0.2s ease, background 0.2s ease;
}

.sound-toggle-btn.is-unmuted .eq-bar {
  background: #f7dd0c;
  animation: eqBounce 1.2s ease-in-out infinite alternate;
}

.sound-toggle-btn.is-unmuted .eq-bar:nth-child(1) { animation-delay: 0.1s; }
.sound-toggle-btn.is-unmuted .eq-bar:nth-child(2) { animation-delay: 0.3s; }
.sound-toggle-btn.is-unmuted .eq-bar:nth-child(3) { animation-delay: 0.2s; }
.sound-toggle-btn.is-unmuted .eq-bar:nth-child(4) { animation-delay: 0.4s; }

@keyframes eqBounce {
  0% { height: 3px; }
  50% { height: 14px; }
  100% { height: 6px; }
}

.hero-video-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #cbd5e1;
  letter-spacing: 0.05em;
}

.hero-hud-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-hud-watermark {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .hero-hud-watermark {
    display: none;
  }
}

/* Meta spec bar under video */
.hero-video-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(15, 23, 42, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-spec-pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.2rem 0.55rem;
}

/* ==========================================================================
   FLOATING WHATSAPP EMERGENCY CONTACT WIDGET (Senior Professional Grade)
   ========================================================================== */

.brotech-floating-whatsapp {
  position: fixed;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none; /* children enable pointer events */
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.brotech-floating-whatsapp.pos-right {
  right: 28px;
  align-items: flex-end;
}

.brotech-floating-whatsapp.pos-left {
  left: 28px;
  align-items: flex-start;
}

/* Floating Trigger Area (Pill + Button) */
.wa-floating-trigger-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  position: relative;
}

.brotech-floating-whatsapp.pos-left .wa-floating-trigger-wrap {
  flex-direction: row-reverse;
}

/* Floating Pill / Label Tag */
.wa-floating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 19, 31, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 8px 16px;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 15px rgba(37, 211, 102, 0.15);
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.wa-floating-pill:hover {
  background: rgba(15, 23, 42, 0.98);
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 211, 102, 0.25);
}

.wa-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 10px #25D366;
  animation: waDotGlow 1.8s infinite ease-in-out;
}

.wa-pill-text {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* The Main WhatsApp Round Button */
.wa-floating-btn {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 26px -2px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
  flex-shrink: 0;
}

.wa-floating-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 16px 36px -2px rgba(37, 211, 102, 0.7), 0 6px 16px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.wa-floating-btn:active {
  transform: scale(0.94);
}

.wa-icon-svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.2s ease;
}

.wa-floating-btn:hover .wa-icon-svg {
  transform: scale(1.06);
}

/* Pulsing Radar Wave Rings */
.wa-radar-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.7);
  pointer-events: none;
  animation: waRadarPulse 2.4s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.wa-ring-2 {
  animation-delay: 1.2s;
}

@keyframes waRadarPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.9;
  }
  50% {
    opacity: 0.45;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

@keyframes waDotGlow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

/* Floating Online Dot on Button */
.wa-btn-active-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #10b981;
  border: 2.5px solid #ffffff;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.8);
}

/* ==========================================================================
   EMERGENCY QUICK-ACTION CARD (POPOVER)
   ========================================================================== */

.whatsapp-emergency-card {
  position: absolute;
  bottom: 76px;
  width: 340px;
  background: #0d131f;
  background: linear-gradient(180deg, #111827 0%, #090e17 100%);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 20px;
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.6), 0 0 35px rgba(37, 211, 102, 0.12);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.96);
  transform-origin: bottom right;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
  z-index: 10000;
}

.brotech-floating-whatsapp.pos-left .whatsapp-emergency-card {
  transform-origin: bottom left;
  left: 0;
}

.brotech-floating-whatsapp.pos-right .whatsapp-emergency-card {
  right: 0;
}

.whatsapp-emergency-card.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Card Header */
.wa-card-header {
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(103, 61, 223, 0.1) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.wa-card-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.wa-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wa-avatar-pulse-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #25D366;
  border: 2px solid #0d131f;
  box-shadow: 0 0 6px #25D366;
}

.wa-card-info {
  flex: 1;
  min-width: 0;
}

.wa-card-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.2;
}

.wa-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #94a3b8;
  font-family: var(--font-mono);
  margin-top: 3px;
}

.wa-live-beacon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 6px #25D366;
}

.wa-card-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.wa-card-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* Card Body / WhatsApp Mock Chat Bubble */
.wa-card-body {
  padding: 18px;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.wa-chat-bubble {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #25D366;
  border-radius: 4px 14px 14px 14px;
  padding: 12px 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wa-chat-text {
  font-size: 0.83rem;
  color: #e2e8f0;
  line-height: 1.55;
  margin: 0;
}

.wa-chat-time {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #94a3b8;
  text-align: right;
  margin-top: 6px;
}

/* Card Footer */
.wa-card-footer {
  padding: 14px 18px 18px;
  background: rgba(10, 14, 23, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wa-direct-chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 18px;
  background: linear-gradient(135deg, #25D366 0%, #16a34a 100%);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  border: none;
}

.wa-direct-chat-btn:hover {
  background: linear-gradient(135deg, #2ae06f 0%, #15803d 100%);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
  color: #ffffff;
}

.wa-direct-chat-btn:active {
  transform: translateY(0);
}

.wa-card-footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.72rem;
  color: #94a3b8;
  font-family: var(--font-mono);
}

.wa-card-footnote strong {
  color: #25D366;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
  .brotech-floating-whatsapp {
    bottom: 20px;
  }
  .brotech-floating-whatsapp.pos-right {
    right: 18px;
  }
  .brotech-floating-whatsapp.pos-left {
    left: 18px;
  }
  
  .wa-floating-btn {
    width: 56px;
    height: 56px;
  }
  
  .wa-icon-svg {
    width: 28px;
    height: 28px;
  }

  .wa-floating-pill {
    display: none; /* keep screen clean on small phones */
  }

  .whatsapp-emergency-card {
    width: calc(100vw - 36px);
    max-width: 330px;
    bottom: 72px;
  }
}


