/* =====================================================
   AlokKnight.com - Complete Unified Professional Styles
   ===================================================== 
   Complete CSS framework combining all styles from:
   - styles.css
   - modern-styles.css  
   - professional-software-company.css
   ===================================================== */

/* ===========================
   1. CSS Variables & Root
   =========================== */
:root {
  /* Primary Color Palette - Updated for better contrast */
  --primary-color: #5b5fde;
  --primary-dark: #0F172A;
  --primary-blue: #4B7BF5;
  --secondary-color: #7c4dff;
  --accent-color: #00d084;
  --accent-green: #00d084;
  
  /* Background Colors */
  --dark-bg: #0a0e1a;
  --light-bg: #f8fafc;
  --bg-light: #F8FAFC;
  --white-bg: #ffffff;
  
  /* Text Colors - Improved contrast ratios */
  --text-primary: #1a1f36;
  --text-secondary: #4a5568;
  --text-gray: #4a5568;
  --text-light: #f7fafc;
  --text-muted: #718096;
  --text-on-primary: #ffffff;
  --text-on-dark: #f7fafc;
  
  /* Gradients - Updated for better visibility */
  --gradient: linear-gradient(135deg, #5b5fde 0%, #7c4dff 100%);
  --gradient-1: linear-gradient(135deg, #5b5fde 0%, #7c4dff 100%);
  --gradient-2: linear-gradient(135deg, #4B7BF5 0%, #7c4dff 100%);
  --gradient-primary: linear-gradient(135deg, #5b5fde 0%, #7c4dff 100%);
  --gradient-dark: linear-gradient(45deg, #0a0e1a 0%, #1a1f36 100%);
  --gradient-light: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-primary: 0 4px 15px rgba(99, 102, 241, 0.3);
  
  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.6s ease;
  
  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 15px;
  --radius-lg: 20px;
  --radius-full: 50px;
  
  /* Font Family */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===========================
   2. Base Styles & Reset
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* User Profile Image */
#user_pic_ {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin: 0;
  object-fit: cover;
  cursor: pointer;
}

a:hover {
  cursor: pointer;
}

/* ===========================
   3. Typography & Text Utilities
   =========================== */
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.large-text {
  font-size: 90px;
  opacity: 0.08;
  text-transform: uppercase;
  font-weight: 600;
}

.medium-text {
  font-size: 40px;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.2;
  position: absolute;
  margin-top: 20px;
  width: 100%;
  align-self: center;
}

.heading-separator-line {
  border-bottom: 3px solid #5b5fde;
  width: 60px;
  display: block;
  margin: auto;
  border-radius: 2px;
}

.one-line-text {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 1.4em;
  line-height: 1.4em;
}

.two-line-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.2em;
  line-height: 1.4em;
}

.three-line-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 6.3em;
  line-height: 1.4em;
}

.four-line-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 8.4em;
  line-height: 1.4em;
}

.text-xxsm { font-size: 0.65rem; }
.text-xsm { font-size: 0.75rem; }
.text-smlr { font-size: 0.85rem; }
.text-sm { font-size: 0.875rem; }

/* ===========================
   4. Layout & Containers
   =========================== */
.section {
  padding: 100px 0;
  position: relative;
}

.icon-bar {
  display: flex;
  justify-content: center;
}

.card > img {
  border-radius: 5px 5px 0 0;
}

.gradient-card {
  background: linear-gradient(45deg, #667eea, #764ba2);
}

/* ===========================
   5. Navigation Styles
   =========================== */
.navbar {
  background: rgba(10, 14, 26, 0.95) !important;
  backdrop-filter: blur(12px);
  transition: var(--transition-base);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.98) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img {
  transition: transform 0.3s ease;
  height: 40px;
  width: auto;
}

.navbar-brand:hover {
  color: #ffffff !important;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  color: #f7fafc !important;
  font-weight: 500;
  transition: var(--transition-base);
  position: relative;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
}

.nav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
}

/* Navbar dark theme specific */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(247, 250, 252, 0.9) !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  margin: 0 0.25rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #ffffff !important;
}

.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff !important;
}

/* Navbar toggler */
.navbar-dark .navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

.navbar-dark .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(91, 95, 222, 0.2);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28247, 250, 252, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: #f7fafc;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-dark .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(91, 95, 222, 0.2);
  color: #ffffff;
}

.navbar-dark .form-control::placeholder {
  color: rgba(247, 250, 252, 0.7);
}

.navbar-dark .btn-outline-success {
  color: #00d084;
  border-color: #00d084;
  border-width: 2px;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-dark .btn-outline-success:hover {
  background: #00d084;
  border-color: #00d084;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 208, 132, 0.3);
}

/* ===========================
   6. Hero Section
   =========================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--dark-bg);
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.animated-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #0f172a 0%, #1e293b 100%);
}

.animated-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(91, 95, 222, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(124, 77, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 208, 132, 0.06) 0%, transparent 50%);
  backdrop-filter: blur(100px);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s both;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 3rem;
  animation: fadeInUp 1s ease 0.4s both;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Hero Background Animation */
.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-code {
  position: absolute;
  color: rgba(91, 95, 222, 0.3);
  font-family: 'Courier New', monospace;
  font-size: 14px;
  animation: float-code 20s linear infinite;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(91, 95, 222, 0.2);
}

/* Floating particles */
.particle {
  position: absolute;
  background: rgba(91, 95, 222, 0.5);
  border-radius: 50%;
  animation: float 20s infinite;
  box-shadow: 0 0 15px rgba(91, 95, 222, 0.6);
  filter: blur(0.5px);
}

#home {
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#home .container {
  max-width: 100%;
  padding: 0 15px;
}

/* ===========================
   7. Animations & Keyframes
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px) scale(0.5);
  }
}

@keyframes float-code {
  0% {
    transform: translateY(100vh) translateX(-100px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

@keyframes numberPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes rotateBorder {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 102, 0.7);
    transform: scale(0.95);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 0, 102, 0);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 102, 0);
    transform: scale(0.95);
  }
}

@keyframes scroll-testimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideHint {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.timeline-item.visible .timeline-number {
  animation: numberPulse 0.6s ease;
}

/* ===========================
   8. Buttons & CTAs
   =========================== */
.cta-button {
  background: linear-gradient(135deg, #5b5fde 0%, #7c4dff 100%);
  color: #ffffff;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-base);
  box-shadow: 0 4px 20px rgba(91, 95, 222, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cta-button:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(91, 95, 222, 0.4);
}

.cta-button:hover::before {
  transform: translateY(0);
}

.btn-primary-modern {
  background: linear-gradient(135deg, #4B7BF5 0%, #7c4dff 100%);
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-base);
  box-shadow: 0 4px 15px rgba(75, 123, 245, 0.3);
}

.btn-secondary-modern {
  background: rgba(75, 123, 245, 0.1);
  color: #4B7BF5;
  border: 2px solid transparent;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-base);
}

.btn-secondary-modern:hover {
  background: rgba(75, 123, 245, 0.15);
  border-color: #4B7BF5;
  color: #4B7BF5;
}

.btn-primary-modern:hover,
.btn-secondary-modern:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===========================
   9. Cards & Components
   =========================== */
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
  transform: translateX(0);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #5b5fde 0%, #7c4dff 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(91, 95, 222, 0.3);
}

/* Service Modern Cards */
.service-card-modern {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.service-description {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Stats Cards */
.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #5b5fde;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===========================
   10. Pricing Cards
   =========================== */
.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-base);
  overflow: hidden;
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary-color);
  color: white;
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: #5b5fde;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.pricing-duration {
  color: var(--text-secondary);
  font-size: 1rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  color: var(--text-primary);
}

.pricing-features li i {
  color: #00d084;
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

/* ===========================
   11. Tech Stack & Badges
   =========================== */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.tech-badge {
  background: rgba(91, 95, 222, 0.1);
  color: #5b5fde;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition-base);
  border: 1px solid transparent;
}

.tech-badge:hover {
  background: #5b5fde;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 95, 222, 0.3);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.tech-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.tech-item i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.tech-name {
  font-weight: 600;
  color: var(--primary-dark);
}

/* ===========================
   12. Process Timeline
   =========================== */
#process {
  background: #f8fafc;
  background-image: 
    radial-gradient(circle at 1px 1px, #e2e8f0 1px, transparent 1px);
  background-size: 20px 20px;
  position: relative;
  overflow: hidden;
}

#process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    rgba(248, 250, 252, 0) 0%, 
    rgba(248, 250, 252, 0.8) 50%, 
    rgba(248, 250, 252, 1) 100%);
  pointer-events: none;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #5b5fde, #7c4dff);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, #5b5fde, #7c4dff);
  transform: translateX(-50%);
  transition: height 1s ease;
  border-radius: 2px;
}

.timeline.animated::after {
  height: 100%;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-number {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #5b5fde 0%, #7c4dff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(91, 95, 222, 0.4);
}

.timeline-number::before {
  content: '';
  position: absolute;
  inset: -5px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.2;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-number {
  transform: translateY(-50%) scale(1.1);
}

.timeline-item:hover .timeline-number::before {
  transform: scale(1);
}

.timeline-number span {
  position: relative;
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-number {
  right: -30px;
  transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-number {
  left: -30px;
  transform: translateY(-50%);
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.timeline-content:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: white;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -10px;
}

.timeline-item:hover .timeline-content::before {
  background: var(--primary-color);
}

.timeline-content h4 {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 4px solid #5b5fde;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(91, 95, 222, 0.2);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.process-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.process-feature {
  text-align: center;
  padding: 1.5rem;
}

.process-feature i {
  font-size: 2.5rem;
  color: #5b5fde;
  margin-bottom: 1rem;
  display: block;
}

.process-feature h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-feature p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Process Section Alternative Styles */
.process-section {
  padding: 80px 0;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-right: 2rem;
}

.process-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.process-content p {
  color: var(--text-gray);
  margin: 0;
}

/* ===========================
   13. Portfolio & Projects
   =========================== */
.horizontal-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.horizontal-scroll-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(to right, rgba(248, 250, 252, 1), transparent);
  z-index: 2;
  pointer-events: none;
}

.horizontal-scroll-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(to left, rgba(248, 250, 252, 1), transparent);
  z-index: 2;
  pointer-events: none;
}

.horizontal-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 2rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.horizontal-scroll-container::-webkit-scrollbar {
  display: none;
}

.project-slide {
  flex-shrink: 0;
  width: 80%;
  max-width: 900px;
}

.project-card-horizontal {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  transition: var(--transition-base);
}

.project-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.project-image {
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.project-card-horizontal:hover .project-image img {
  transform: scale(1.05);
}

.project-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-category {
  background: rgba(91, 95, 222, 0.1);
  color: #5b5fde;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 1rem;
  border: 1px solid rgba(91, 95, 222, 0.2);
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.project-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.project-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.project-stat {
  text-align: center;
}

.project-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.project-stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.project-links {
  display: flex;
  gap: 1rem;
}

.project-link {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base);
}

.project-link.primary {
  background: var(--primary-color);
  color: white;
}

.project-link.secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.project-link:hover {
  transform: translateY(-2px);
}

/* Project Navigation */
.project-nav-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.project-nav-btn {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(91, 95, 222, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #5b5fde;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.project-nav-btn:hover {
  background: #5b5fde;
  border-color: #5b5fde;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 95, 222, 0.3);
}

.project-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.project-nav-btn:disabled:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  transform: none;
}

.scroll-indicator {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.scroll-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(91, 95, 222, 0.3);
  cursor: pointer;
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.scroll-dot.active {
  background: #5b5fde;
  border-color: rgba(91, 95, 222, 0.3);
}

.scroll-hint {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: slideHint 2s ease-in-out infinite;
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

/* ===========================
   14. Team Section
   =========================== */
.team-member-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.team-avatar {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

.avatar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(99, 102, 241, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-base);
}

.team-avatar:hover .avatar-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.social-link:hover {
  color: white;
  transform: scale(1.2);
}

.expertise-badge {
  background: rgba(91, 95, 222, 0.08);
  color: #5b5fde;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  border: 1px solid rgba(91, 95, 222, 0.15);
  transition: all 0.3s ease;
}

.expertise-badge:hover {
  background: rgba(91, 95, 222, 0.15);
  border-color: rgba(91, 95, 222, 0.3);
}

.team-achievements {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.achievement {
  text-align: center;
}

.achievement-number {
  font-size: 2rem;
  font-weight: 800;
  color: #5b5fde;
  line-height: 1;
}

.achievement-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.company-values .row {
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

/* ===========================
   15. Testimonials
   =========================== */
.testimonials-carousel {
  overflow: hidden;
  margin: 0 -15px;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  animation: scroll-testimonials 30s linear infinite;
}

.testimonial-card {
  min-width: 400px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.quote-icon {
  color: #5b5fde;
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-rating {
  color: #ffd700;
  margin: 1rem 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.author-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h5 {
  margin: 0;
  font-weight: 600;
}

.author-info p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.client-logos {
  background: var(--light-bg);
  padding: 2rem 0;
  border-radius: var(--radius-md);
  margin-top: 3rem;
}

.logos-scroll {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.7;
}

.logo-item {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-base);
}

.logo-item:hover {
  color: var(--primary-color);
}

.overall-rating {
  margin-top: 3rem;
}

.rating-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: inline-block;
}

.rating-stars {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.rating-card h3 {
  margin: 0.5rem 0;
  color: #5b5fde;
  font-weight: 700;
}

.rating-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.rating-stats .stat {
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: var(--light-bg);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
}

/* ===========================
   16. Butterfly Animation
   =========================== */
#butterfly {
  position: fixed;
  z-index: 1000;
  transition: var(--transition-base);
  cursor: pointer;
  filter: drop-shadow(0 0 12px rgba(91, 95, 222, 0.6));
  animation: fly 2s ease-in-out infinite;
}

#butterfly.flying {
  animation: fly 0.5s ease-in-out infinite;
}

@keyframes fly {
  0%, 100% {
    transform: translateY(0) rotate(-5deg) scale(1);
  }
  25% {
    transform: translateY(-10px) rotate(5deg) scale(1.1);
  }
  50% {
    transform: translateY(0) rotate(-5deg) scale(1);
  }
  75% {
    transform: translateY(-10px) rotate(5deg) scale(0.9);
  }
}

#butterfly:hover {
  filter: drop-shadow(0 0 25px rgba(91, 95, 222, 0.9));
  transform: scale(1.2);
}

/* ===========================
   17. Vertical Menu Component
   =========================== */
.vertical-menu {
  width: 200px;
  height: 100%;
  overflow-y: auto;
}

.vertical-menu a {
  background-color: #f8fafc;
  color: #1a1f36;
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.vertical-menu a:hover {
  background-color: #e2e8f0;
  border-left-color: #5b5fde;
  color: #5b5fde;
}

.vertical-menu a.active {
  background-color: rgba(91, 95, 222, 0.1);
  color: #5b5fde;
  border-left-color: #5b5fde;
  font-weight: 600;
}

/* ===========================
   18. Tag & Badge Variations
   =========================== */
.tag-b-v {
  display: inline-block;
  color: #ffffff;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  background: linear-gradient(135deg, #4B7BF5 0%, #7c4dff 100%);
  margin-right: 0.5rem;
  box-shadow: 0 2px 8px rgba(75, 123, 245, 0.3);
}

.tag-r-g {
  display: inline-block;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  background: linear-gradient(135deg, #EF4444 0%, #10B981 100%);
  margin-right: 0.5rem;
}

.tag-b-y {
  display: inline-block;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  background: linear-gradient(135deg, #3B82F6 0%, #FBB03B 100%);
  margin-right: 0.5rem;
}

.tag {
  display: inline-block;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  background: linear-gradient(135deg, #6366F1 0%, #EC4899 100%);
  margin-right: 0.5rem;
}

.tag-gray {
  display: inline-block;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  background: linear-gradient(135deg, #6B7280 0%, #374151 100%);
  margin-right: 0.5rem;
}

/* ===========================
   19. Rotating Border Animation
   =========================== */
.rotatingBorder {
  position: relative;
  padding: 2px;
  background: linear-gradient(90deg, #ff0066, #6633ff, #00ff66, #ffff00, #ff0066);
  background-size: 400% 400%;
  animation: rotateBorder 10s ease infinite;
  border-radius: 10px;
}

.rotatingBorder:hover {
  animation-duration: 3s;
}

.rotatingBorderImage {
  position: relative;
  padding: 5px;
  background: linear-gradient(90deg, #ff0066, #6633ff, #00ff66, #ffff00, #ff0066);
  background-size: 400% 400%;
  animation: rotateBorder 10s ease infinite;
  border-radius: 15px;
}

.rotatingBorderImage:hover {
  animation-duration: 3s;
}

/* ===========================
   20. Pulsing Dot Animation
   =========================== */
.pulsing-dot {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #ff0066;
  border-radius: 50%;
  animation: pulse-animation 2s infinite;
}

/* ===========================
   21. FAQ Component Styles
   =========================== */
.faq-question {
  cursor: pointer;
}

.faq-question i.fa-chevron-down {
  transition: transform 0.3s;
}

.faq-question.active i.fa-chevron-down {
  transform: rotate(180deg);
}

/* ===========================
   22. Additional Section Styles
   =========================== */
.services-modern {
  padding: 80px 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

.stats-modern {
  background: var(--bg-light);
  padding: 60px 0;
}

.cta-section {
  background: var(--gradient-2);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Remove sections */
.expert-category-section, .tutorial-section {
  display: none;
}

/* ===========================
   23. Loading States
   =========================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #5b5fde;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

body.loading {
  overflow: hidden;
}

body.horizontal-scrolling {
  overflow-x: auto;
}

/* ===========================
   24. Performance Optimizations
   =========================== */
/* Hardware acceleration for animations */
.service-card,
.pricing-card,
.project-card-horizontal,
.timeline-item,
.particle {
  transform: translateZ(0);
  will-change: transform;
}

/* ===========================
   25. Responsive Design
   =========================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .project-card-horizontal {
    grid-template-columns: 1fr;
  }
  
  .project-slide {
    width: 90%;
  }
}

@media (max-width: 992px) {
  .large-text {
    font-size: 80px;
  }
  .medium-text {
    font-size: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .timeline-item {
    width: 100%;
    text-align: left !important;
    left: 0 !important;
    padding-left: 4rem;
  }
  
  .timeline::before {
    left: 2rem;
  }
  
  .timeline-number {
    left: 1rem !important;
    right: auto !important;
  }
  
  .team-achievements {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .large-text {
    font-size: 50px;
  }
  .medium-text {
    font-size: 30px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-content {
    padding: 80px 0;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .testimonial-card {
    min-width: 300px;
  }
  
  .rating-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .project-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .project-links {
    flex-direction: column;
  }
  
  .team-avatar {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .large-text {
    font-size: 35px;
  }
  .medium-text {
    font-size: 20px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .service-card,
  .pricing-card {
    padding: 1.5rem;
  }
  
  .team-member-card {
    padding: 2rem;
  }
  
  .timeline-item {
    padding-left: 2rem;
  }
  
  .timeline-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ===========================
   26. Utility Classes
   =========================== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient {
  background: var(--gradient-primary);
}

.shadow-primary {
  box-shadow: var(--shadow-primary);
}

.border-radius-lg {
  border-radius: var(--radius-lg);
}

.transition-base {
  transition: var(--transition-base);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.hidden { display: none; }
.visible { visibility: visible; }

/* ===========================
   27. Loading & Performance
   =========================== */
.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-load.loaded {
  opacity: 1;
}

/* ===========================
   28. Dark Mode Support
   =========================== */
@media (prefers-color-scheme: dark) {
  :root {
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --bg-light: #1e293b;
    --white-bg: #0f172a;
  }
  
  body {
    background: var(--dark-bg);
    color: var(--text-primary);
  }
  
  .service-card,
  .pricing-card,
  .project-card-horizontal,
  .timeline-content,
  .stat-card,
  .value-card,
  .testimonial-card,
  .rating-card {
    background: var(--bg-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .section.bg-light {
    background: var(--white-bg);
  }
  
  .tech-badge {
    background: rgba(99, 102, 241, 0.2);
  }
  
  .project-category {
    background: rgba(99, 102, 241, 0.2);
  }
  
  .client-logos {
    background: var(--bg-light);
  }
  
  .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.1);
  }
}

/* ===========================
   29. Print Styles
   =========================== */
@media print {
  .navbar,
  .hero-section,
  #butterfly,
  .scroll-indicator,
  .scroll-hint,
  .project-nav-buttons,
  footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: black;
    background: white;
  }
  
  .section {
    page-break-inside: avoid;
    padding: 20px 0;
  }
  
  .service-card,
  .pricing-card {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ===========================
   30. Accessibility
   =========================== */
/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}