/* ==========================================================================
   Avdhoot Web Solutions - Master CSS Stylesheet
   Tagline: Build Better. Rank Faster.
   Primary Location: Ahmedabad, Gujarat, India
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties & Design System
   -------------------------------------------------------------------------- */
:root {
  /* Brand Color Palette */
  --primary: #2563eb;          /* Electric Blue */
  --primary-hover: #1d4ed8;
  --primary-light: rgba(37, 99, 235, 0.1);
  --primary-glow: rgba(37, 99, 235, 0.35);

  --secondary: #7c3aed;        /* Vibrant Purple Accent */
  --secondary-light: rgba(124, 58, 237, 0.1);

  --accent: #10b981;           /* Growth Emerald Green */
  --accent-light: rgba(16, 185, 129, 0.12);

  --warning: #f59e0b;          /* Amber */

  /* Light Theme Colors */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-alt: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --border-color: #e2e8f0;
  --border-hover: #cbd5e1;

  /* Dark Theme Sections */
  --dark-bg: #090d16;
  --dark-bg-card: #111827;
  --dark-card-border: rgba(255, 255, 255, 0.08);
  --dark-text: #f9fafb;
  --dark-muted: #9ca3af;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  --dark-glass-bg: rgba(17, 24, 39, 0.7);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 16px -4px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.03);
  --shadow-lg: 0 20px 30px -10px rgba(0,0,0,0.12), 0 10px 15px -5px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.25);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & General Normalization
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--primary-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. Container & Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 960px;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}
.section-header.text-left {
  margin-left: 0;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   4. Header & Navigation Bar
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 1.25rem 0;
}

.site-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand-logo img {
  height: 64px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}
.brand-logo:hover img {
  transform: scale(1.03);
}

.footer-brand .brand-logo img {
  height: 68px;
  background: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link i.chevron {
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}
.nav-item:hover .nav-link i.chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 1100;
  display: grid;
  gap: 0.25rem;
}

.dropdown-menu.mega-menu {
  min-width: 580px;
  grid-template-columns: 1fr 1fr;
  padding: 1.25rem;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}
.dropdown-link i {
  color: var(--primary);
  width: 20px;
  text-align: center;
  font-size: 1rem;
}
.dropdown-link:hover {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateX(4px);
}

/* Nav Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Drawer Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
  z-index: 2500;
  transition: right 0.4s ease;
  padding: 2rem;
  overflow-y: auto;
}
.mobile-menu-drawer.active {
  right: 0;
}
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2400;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   5. Buttons & CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  color: #ffffff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #1eb957;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   6. Hero Section with 3D Canvas
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding-top: 9.5rem;
  padding-bottom: 6rem;
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.03) 50%, transparent 80%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Hero Badges */
.hero-badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}
.badge-tag i {
  color: var(--accent);
}
.badge-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Hero 3D Interactive Visualizer Container */
.hero-3d-visual {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: var(--radius-lg);
}

/* Floating Overlays on top of 3D Scene */
.hero-floating-card {
  position: absolute;
  z-index: 10;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  animation: float 4s ease-in-out infinite alternate;
}

.hero-card-1 {
  top: 8%;
  left: -4%;
  animation-delay: 0s;
}

.hero-card-2 {
  bottom: 12%;
  right: -2%;
  animation-delay: 1.5s;
}

.hero-card-3 {
  top: 50%;
  right: -6%;
  animation-delay: 2.5s;
}

/* --------------------------------------------------------------------------
   6b. 5-Slide Interactive Header Slider Styles
   -------------------------------------------------------------------------- */
.hero-tabs-wrapper {
  margin-bottom: 2.5rem;
  width: 100%;
}

.hero-tabs {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero-tabs::-webkit-scrollbar {
  display: none;
}

.hero-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.hero-tab-btn .tab-num {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.hero-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.hero-tab-btn.active .tab-num {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.hero-slides-wrapper {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.hero-controls-bar {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}

.hero-slide-counter {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.hero-slide-counter .current-slide-num {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-progress-track {
  flex: 1;
  max-width: 240px;
  height: 4px;
  background: rgba(226, 232, 240, 0.8);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.hero-progress-fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.4s ease;
  border-radius: 4px;
}

.hero-arrow-btns {
  display: flex;
  gap: 0.5rem;
}

.hero-slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.hero-slider-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

.slide-cards-group {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.slide-cards-group.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-floating-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.hero-floating-card .card-info .card-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-floating-card .card-info .card-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1deg); }
}

/* --------------------------------------------------------------------------
   7. Trust / Stats Bar Section
   -------------------------------------------------------------------------- */
.stats-bar-section {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding: 3.5rem 0;
  position: relative;
}

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

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--dark-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   8. Service Cards System & Interactive Slider
   -------------------------------------------------------------------------- */
.services-slider-wrapper {
  position: relative;
  margin-top: 2rem;
}

.services-slider-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0.5rem 2rem 0.5rem;
}
.services-slider-track::-webkit-scrollbar {
  display: none;
}

.services-slider-track .service-card {
  flex: 0 0 calc(33.333% - 1.35rem);
  min-width: 320px;
  height: auto;
}

@media (max-width: 1024px) {
  .services-slider-track .service-card {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media (max-width: 640px) {
  .services-slider-track .service-card {
    flex: 0 0 88%;
    min-width: 280px;
  }
}

.services-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-glow);
  box-shadow: var(--shadow-lg);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  transform: scale(1.05);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.service-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Category Header Bar */
.category-header {
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category-title {
  font-size: 1.75rem;
}

/* --------------------------------------------------------------------------
   9. Dark Feature Highlight Grid (SEO / AEO / GEO)
   -------------------------------------------------------------------------- */
.featured-dark-section {
  background: var(--dark-bg);
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
}

.featured-dark-section .section-title {
  color: #ffffff;
}
.featured-dark-section .section-description {
  color: var(--dark-muted);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dark-feature-card {
  background: var(--dark-bg-card);
  border: 1px solid var(--dark-card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all var(--transition-normal);
}
.dark-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.dark-feature-card .feat-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.dark-feature-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.dark-feature-card p {
  color: var(--dark-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   10. Industry Solutions Grid
   -------------------------------------------------------------------------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition-normal);
  text-align: left;
}
.industry-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.industry-card .ind-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.industry-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.industry-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   11. Growth Process Interactive Timeline
   -------------------------------------------------------------------------- */
.timeline-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  position: relative;
  margin-top: 3rem;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  position: relative;
  transition: all var(--transition-normal);
}

.process-step:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.process-step h4 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. Testimonials Slider
   -------------------------------------------------------------------------- */
.testimonial-wrapper {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.testimonial-rating {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.client-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.client-info h5 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.client-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.slider-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* --------------------------------------------------------------------------
   13. Case Studies Filter & Grid
   -------------------------------------------------------------------------- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.case-img-box {
  height: 200px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 1.5rem;
}

.case-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  align-self: flex-start;
}

.case-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.case-metrics {
  background: var(--bg-card-alt);
  padding: 0.85rem;
  border-radius: var(--radius-md);
  margin: 1rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.metric-box .metric-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent);
}
.metric-box .metric-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   14. Video Feature & Modal Section
   -------------------------------------------------------------------------- */
.video-feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  box-shadow: var(--shadow-lg);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 3rem 1.5rem;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border: none;
  cursor: pointer;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
  transition: transform var(--transition-normal);
  animation: pulse-ring 2s infinite;
}
.play-btn:hover {
  transform: scale(1.1);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}
.video-modal.active {
  opacity: 1;
  visibility: visible;
}
.video-modal-content {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

/* --------------------------------------------------------------------------
   15. FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-button {
  width: 100%;
  padding: 1.35rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-icon {
  font-size: 1rem;
  color: var(--primary);
  transition: transform var(--transition-fast);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 1.5rem;
}

.faq-item.active .faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-content p {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   16. Founder / SEO Expert Section
   -------------------------------------------------------------------------- */
.expert-card {
  background: linear-gradient(135deg, var(--dark-bg-card), #1e1b4b);
  border: 1px solid var(--dark-card-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: var(--dark-text);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
}

.expert-portrait {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.expert-info h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.expert-info .role {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  display: block;
}

.expert-info p {
  color: var(--dark-muted);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

/* --------------------------------------------------------------------------
   17. Packages / Pricing Cards
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}

.price-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.price-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.price-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}
.price-val span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-features {
  margin-bottom: 2rem;
  flex-grow: 1;
  display: grid;
  gap: 0.85rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.925rem;
  color: var(--text-muted);
}
.price-features li i {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   18. Forms & Inputs
   -------------------------------------------------------------------------- */
.contact-form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
  background: #ffffff;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* --------------------------------------------------------------------------
   19. Global Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--dark-bg);
  color: var(--dark-muted);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--dark-card-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.925rem;
  line-height: 1.6;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--dark-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--dark-card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   20. Floating WhatsApp CTA Widget
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 1500;
  transition: all var(--transition-normal);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #ffffff;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  z-index: 1400;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}

/* --------------------------------------------------------------------------
   21. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-content .eyebrow { margin: 0 auto 1.25rem auto; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badges-container { justify-content: center; }
  .hero-3d-visual { height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .expert-card { grid-template-columns: 1fr; text-align: center; }
  .expert-portrait { margin: 0 auto; width: 200px; }
}

@media (max-width: 992px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2)::after { display: none; }
  .featured-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
  .whatsapp-float { bottom: 80px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
  .hero-card-1, .hero-card-2, .hero-card-3 { display: none; }
}

/* --------------------------------------------------------------------------
   22. Our Clients Marquee Ticker & Showcase Grid
   -------------------------------------------------------------------------- */
.clients-section-header {
  margin-bottom: 2.5rem;
}

.clients-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.75rem 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.clients-marquee {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
}

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

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo-item {
  flex: 0 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  filter: grayscale(20%);
  opacity: 0.88;
}

.client-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-4px);
  border-color: var(--primary-glow);
  box-shadow: var(--shadow-md);
}

.client-logo-item img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

.clients-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.client-card-premium {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.client-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.client-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.client-card-premium:hover::before {
  opacity: 1;
}

.client-card-logo {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.client-card-logo img {
  max-height: 52px;
  width: auto;
}

.client-badge-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.client-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.client-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.client-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.client-service-chip {
  font-size: 0.75rem;
  background: var(--bg-card-alt);
  color: var(--text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.client-result-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(37, 99, 235, 0.04);
  border: 1px dashed var(--primary-glow);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
}

.client-result-stat {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.client-result-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}


/* --------------------------------------------------------------------------
   22. Our Clients Marquee Ticker
   -------------------------------------------------------------------------- */

/*.clients-marquee-wrapper {*/
/*  width: 100%;*/
/*  overflow: hidden;*/
/*  position: relative;*/

/*  background: var(--bg-card);*/
/*  border-top: 1px solid var(--border-color);*/
/*  border-bottom: 1px solid var(--border-color);*/

/*  padding: 1.5rem 0;*/

  /* Soft fade at both edges */
/*  mask-image: linear-gradient(*/
/*    to right,*/
/*    transparent 0%,*/
/*    #000 8%,*/
/*    #000 92%,*/
/*    transparent 100%*/
/*  );*/

/*  -webkit-mask-image: linear-gradient(*/
/*    to right,*/
/*    transparent 0%,*/
/*    #000 8%,*/
/*    #000 92%,*/
/*    transparent 100%*/
/*  );*/
/*}*/

/*.clients-marquee {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  width: max-content;*/

/*  gap: 2rem;*/

/*  animation: marqueeScroll 25s linear infinite;*/

/*  will-change: transform;*/

  /* Prevent flex children from shrinking */
/*  flex-wrap: nowrap;*/
/*}*/

/*.clients-marquee:hover {*/
/*  animation-play-state: paused;*/
/*}*/

/*@keyframes marqueeScroll {*/
/*  from {*/
/*    transform: translate3d(0, 0, 0);*/
/*  }*/

/*  to {*/
/*    transform: translate3d(-50%, 0, 0);*/
/*  }*/
/*}*/

/*.client-logo-item {*/
/*  flex: 0 0 auto;*/

/*  width: 220px;*/
/*  height: 78px;*/

/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/

/*  padding: 0.75rem 1rem;*/

/*  background: #ffffff;*/

/*  border: 1px solid var(--border-color);*/
/*  border-radius: var(--radius-md);*/

/*  overflow: hidden;*/

/*  opacity: 1;*/
/*  filter: none;*/

/*  transition:*/
/*    transform var(--transition-normal),*/
/*    box-shadow var(--transition-normal),*/
/*    border-color var(--transition-normal);*/
/*}*/

/*.client-logo-item:hover {*/
/*  transform: translateY(-4px);*/

/*  border-color: var(--primary);*/

/*  box-shadow: var(--shadow-md);*/
/*}*/

/*.client-logo-item img {*/
/*  display: block;*/

/*  width: 100%;*/
/*  height: 52px;*/

/*  max-width: 190px;*/
/*  max-height: 52px;*/

/*  object-fit: contain;*/

/*  object-position: center;*/

/*  flex-shrink: 0;*/
/*}*/

/* Mobile */
/*@media (max-width: 768px) {*/

/*  .clients-marquee-wrapper {*/
/*    padding: 1.25rem 0;*/
/*  }*/

/*  .clients-marquee {*/
/*    gap: 1rem;*/
/*    animation-duration: 20s;*/
/*  }*/

/*  .client-logo-item {*/
/*    width: 170px;*/
/*    height: 65px;*/
/*    padding: 0.5rem 0.75rem;*/
/*  }*/

/*  .client-logo-item img {*/
/*    width: 140px;*/
/*    height: 42px;*/
/*    max-width: 140px;*/
/*    max-height: 42px;*/
/*  }*/
/*}*/

/* Small mobile */
/*@media (max-width: 480px) {*/

/*  .client-logo-item {*/
/*    width: 150px;*/
/*    height: 60px;*/
/*  }*/

/*  .client-logo-item img {*/
/*    width: 125px;*/
/*    height: 38px;*/
/*    max-width: 125px;*/
/*    max-height: 38px;*/
/*  }*/
/*}*/

/* Respect reduced-motion preference */
/*@media (prefers-reduced-motion: reduce) {*/
/*  .clients-marquee {*/
/*    animation: none;*/
/*  }*/
/*}*/

