
        /* Theme CSS Variables */
        :root {
            --primary-bg: #040310;
            --secondary-bg: #0D0C22;
            --tertiary-bg: #1A1B3A;
            --card-bg: rgba(255, 255, 255, 0.05);
            --text-primary: #FFFFFF;
            --text-secondary: #BFC3D3;
            --text-accent: #8A2BE2;
            --border-color: rgba(255, 255, 255, 0.1);
            --hover-bg: rgba(255, 255, 255, 0.1);
            --shadow-color: rgba(0, 0, 0, 0.3);
            --gradient-start: #8A2BE2;
            --gradient-end: #DA70D6;
            --success-color: #10B981;
            --warning-color: #F59E0B;
            --error-color: #EF4444;
            --info-color: #3B82F6;
        }

        [data-theme="light"] {
            --primary-bg: #FFFFFF;
            --secondary-bg: #F8FAFC;
            --tertiary-bg: #F1F5F9;
            --card-bg: #FFFFFF;
            --text-primary: #0F172A;
            --text-secondary: #475569;
            --text-accent: #7C3AED;
            --border-color: #E2E8F0;
            --hover-bg: #F1F5F9;
            --shadow-color: rgba(15, 23, 42, 0.1);
            --gradient-start: #7C3AED;
            --gradient-end: #C084FC;
            --success-color: #059669;
            --warning-color: #D97706;
            --error-color: #DC2626;
            --info-color: #2563EB;
        }

        /* Prevent white flash - applies immediately */
        html, body {
            background-color: var(--primary-bg) !important;
            color: var(--text-primary) !important;
            margin: 0;
            padding: 0;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        /* Hide content until theme is loaded */
        .body {
            opacity: 0;
            transition: opacity 0.3s ease-in;
        }
        
        /* Show content when theme is ready */
        .theme-loaded .body {
            opacity: 1;
        }
        
        nav a {
            white-space: nowrap;
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--secondary-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
        }

        /* Theme toggle button */
        .theme-toggle {
            position: relative;
            width: 48px;
            height: 24px;
            min-height: 24px;
            background: var(--border-color);
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2px;
        }

        .theme-toggle:hover {
            background: var(--hover-bg);
        }

        .theme-toggle-slider {
            position: absolute;
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 50%;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 4px var(--shadow-color);
        }

        [data-theme="light"] .theme-toggle-slider {
            transform: translateX(24px);
        }

        .theme-toggle-icon {
            width: 12px;
            height: 12px;
            color: white;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Animated background dots */
        .animated-bg {
            position: relative;
            overflow: hidden;
        }

        .animated-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 25% 25%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(218, 112, 214, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite alternate;
        }

        [data-theme="light"] .animated-bg::before {
            background-image: radial-gradient(circle at 25% 25%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(192, 132, 252, 0.05) 0%, transparent 50%);
        }

        @keyframes pulse {
            0% {
                opacity: 0.3;
            }
            100% {
                opacity: 0.6;
            }
        }

        /* Gradient text */
        .gradient-text {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Gradient button */
        .gradient-button {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2);
        }

        .gradient-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
        }

        [data-theme="light"] .gradient-button {
            box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
        }

        [data-theme="light"] .gradient-button:hover {
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.25);
        }

        /* Card hover effects */
        .card-hover {
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            box-shadow: 0 1px 3px var(--shadow-color);
        }

        .card-hover:hover {
            transform: translateY(-4px);
            border-color: var(--text-accent);
        }

        [data-theme="dark"] .card-hover:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(138, 43, 226, 0.3);
        }

        [data-theme="light"] .card-hover {
            box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1), 0 1px 2px rgba(15, 23, 42, 0.06);
        }

        [data-theme="light"] .card-hover:hover {
            box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
            border-color: var(--text-accent);
        }

        /* Update text colors based on theme */
        .text-primary {
            color: var(--text-primary) !important;
        }

        .text-secondary {
            color: var(--text-secondary) !important;
        }

        .bg-primary {
            background-color: var(--primary-bg) !important;
        }

        .bg-secondary {
            background-color: var(--secondary-bg) !important;
        }

        .bg-tertiary {
            background-color: var(--tertiary-bg) !important;
        }

        .bg-card {
            background-color: var(--card-bg) !important;
        }

        .border-themed {
            border-color: var(--border-color) !important;
        }

        /* Light theme specific enhancements */
        [data-theme="light"] .hero-section {
            background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F1F5F9 100%);
        }

        [data-theme="light"] .section-bg {
            background: var(--secondary-bg);
        }

        [data-theme="light"] .section-bg-alt {
            background: var(--tertiary-bg);
        }

        /* Enhanced card styles for light theme */
        [data-theme="light"] .enhanced-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1), 0 1px 2px rgba(15, 23, 42, 0.06);
            transition: all 0.3s ease;
        }

        [data-theme="light"] .enhanced-card:hover {
            box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
            transform: translateY(-2px);
            border-color: var(--text-accent);
        }

        /* Navigation styles */
        .nav-scrolled {
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
        }

        [data-theme="dark"] .nav-scrolled {
            background: rgba(4, 3, 16, 0.95);
        }

        [data-theme="light"] .nav-scrolled {
            background: rgba(255, 255, 255, 0.95);
        }

        /* Mobile menu */
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            background: var(--secondary-bg);
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        /* Form styles for light theme */
        [data-theme="light"] .form-control {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
        }

        [data-theme="light"] .form-control:focus {
            border-color: var(--text-accent);
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
        }

        [data-theme="light"] .form-control::placeholder {
            color: var(--text-secondary);
        }

        /* Timeline styles */
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 48px;
            width: 2px;
            height: 64px;
            background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
        }

        .timeline-item:last-child::before {
            display: none;
        }

        /* Process flow animation */
        .process-flow {
            position: relative;
        }

        .process-flow::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -20px;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            transform: translateY(-50%);
        }

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

        /* Framework steps */
        .framework-step {
            position: relative;
        }
        
        .framework-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -30px;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            transform: translateY(-50%);
        }
        
        .framework-step:last-child::after {
            display: none;
        }

        /* Maturity levels */
        .maturity-level {
            position: relative;
            padding: 1rem;
            border-left: 4px solid transparent;
            transition: all 0.3s ease;
        }
        
        .maturity-level.level-1 { border-left-color: var(--error-color); }
        .maturity-level.level-2 { border-left-color: var(--warning-color); }
        .maturity-level.level-3 { border-left-color: #eab308; }
        .maturity-level.level-4 { border-left-color: var(--success-color); }
        .maturity-level.level-5 { border-left-color: var(--text-accent); }

        /* Service tiers */
        .service-tier {
            position: relative;
            overflow: hidden;
        }
        
        .service-tier::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
        }
        
        .service-tier.premium::before {
            background: linear-gradient(90deg, #ffd700, #ffed4e);
        }

        /* Comparison table */
        .comparison-table {
            border-collapse: separate;
            border-spacing: 0;
        }
        
        .comparison-table th,
        .comparison-table td {
            border: 1px solid var(--border-color);
            border-right: none;
            border-bottom: none;
        }
        
        .comparison-table th:last-child,
        .comparison-table td:last-child {
            border-right: 1px solid var(--border-color);
        }
        
        .comparison-table tr:last-child td {
            border-bottom: 1px solid var(--border-color);
        }

        /* Methodology flow */
        .methodology-flow {
            position: relative;
        }
        
        .methodology-flow::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -30px;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            transform: translateY(-50%);
        }
        
        .methodology-flow:last-child::after {
            display: none;
        }

        /* Phase timeline */
        .phase-timeline {
            position: relative;
        }
        
        .phase-timeline::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 48px;
            width: 2px;
            height: calc(100% - 48px);
            background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
        }
        
        .phase-timeline:last-child::before {
            display: none;
        }

        /* Interactive tabs */
        .tab-button.active {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }

        /* Curriculum accordion */
        .curriculum-item {
            border-bottom: 1px solid var(--border-color);
        }
        
        .curriculum-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .curriculum-content.active {
            max-height: 500px;
        }

        /* Progress indicators */
        .progress-bar {
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            height: 4px;
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        .header-progress-bar {
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            height: 4px;
            width: 0;
            margin-top: -5px;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        /* Fade in animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Light theme specific button styles */
        [data-theme="light"] .btn-outline {
            border: 2px solid var(--border-color);
            color: var(--text-primary);
            background: transparent;
        }

        [data-theme="light"] .btn-outline:hover {
            background: var(--hover-bg);
            border-color: var(--text-accent);
            color: var(--text-accent);
        }

        /* Enhanced social proof for light theme */
        [data-theme="light"] .social-proof-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
        }

        [data-theme="light"] .social-proof-card:hover {
            box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
            border-color: var(--text-accent);
        }

        /* Light theme metric cards */
        [data-theme="light"] .metric-card {
            background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-bg) 100%);
            border: 1px solid var(--border-color);
            box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
        }

        /* Light theme testimonial styles */
        [data-theme="light"] .testimonial-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
        }


/* Reset and Base Styles */
* {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.body {
  background: linear-gradient(135deg, #040310 0%, #0D0C22 100%);
  color: white;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Particle Background */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(4, 3, 16, 0.5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #8B5CF6, #A855F7);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #7C3AED, #9333EA);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-violet {
  color: #8B5CF6 !important;
}

.text-purple {
  color: #A855F7 !important;
}

.text-success {
  color: #10B981 !important;
}

.text-info {
  color: #3B82F6 !important;
}

/* Header Styles */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s ease;
}

.header-fixed.scrolled {
  background: rgba(4, 3, 16, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.05);
}

.navbar {
  padding: 1rem 0;
}

/* Logo Styles */
.logo-container {
  position: relative;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.25);
}

.logo-dot {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  opacity: 0.9;
}

.logo-blur {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
  border-radius: 12px;
  filter: blur(8px);
  opacity: 0.5;
  animation: pulse 2s infinite;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

@media (min-width: 992px) {
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .logo-dot {
    width: 20px;
    height: 20px;
  }
  
  .logo-text {
    font-size: 1.75rem;
  }
}

/* Navigation Styles */
.nav-link {
  color: #BFC3D3 !important;
  font-weight: 500;
  font-size: 0.875rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: white !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger {
  width: 24px;
  height: 18px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

.mobile-menu {
  padding: 1.5rem 0;
}

/* Button Styles */
.btn-cta {
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  color: white;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.25);
  transform: scale(1.05);
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #A855F7 0%, #8B5CF6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-cta:hover::before {
  opacity: 1;
}

.btn-cta span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  color: white;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.25);
  transform: scale(1.05);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #A855F7 0%, #8B5CF6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span,
.btn-primary i {
  position: relative;
  z-index: 1;
}

.btn-hero {
  padding: 1rem 2rem;
  font-size: 1rem;
}

@media (min-width: 576px) {
  .btn-hero {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
  }
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  background: transparent;
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 2rem;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

@media (min-width: 992px) {
  .hero-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #BFC3D3;
  line-height: 1.6;
  max-width: 64rem;
  margin: 0 auto 2rem;
}

@media (min-width: 992px) {
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1200px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: pulse 2s infinite;
}

/* Social Proof Section */
.social-proof-section {
  padding: 3rem 0;
}

.social-proof-text {
  color: #BFC3D3;
  font-size: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .social-proof-text {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}

.client-card {
  height: 3rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0.6;
}

@media (min-width: 992px) {
  .client-card {
    height: 4rem;
  }
}

.client-card:hover {
  opacity: 1;
  border-color: rgba(139, 92, 246, 0.3);
  transform: scale(1.05);
}

.client-name {
  color: white;
  font-weight: 500;
  font-size: 0.75rem;
  text-align: center;
  padding: 0 0.5rem;
  transition: color 0.3s ease;
}

@media (min-width: 992px) {
  .client-name {
    font-size: 0.875rem;
  }
}

.client-card:hover .client-name {
  color: #8B5CF6;
}

/* Section Styles */
.pain-points-section,
.services-section,
.framework-section,
.results-section,
.academy-section,
.footer-section {
  padding: 4rem 0;
}

@media (min-width: 992px) {
  .pain-points-section,
  .services-section,
  .framework-section,
  .results-section,
  .academy-section,
  .footer-section {
    padding: 6rem 0;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

@media (min-width: 992px) {
  .section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}

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

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

.section-subtitle {
  font-size: 1.125rem;
  color: #BFC3D3;
  line-height: 1.6;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .section-subtitle {
    font-size: 1.25rem;
  }
}

/* Pain Points Section */
.pain-point-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .pain-point-card {
    border-radius: 1.5rem;
    padding: 2rem;
  }
}

.pain-point-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
  transform: translateY(-8px);
}

.pain-point-icon {
  color: #8B5CF6;
  transition: all 0.3s ease;
}

.pain-point-card:hover .pain-point-icon {
  color: #A855F7;
  transform: scale(1.1);
}

.pain-point-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  transition: color 0.3s ease;
}

@media (min-width: 992px) {
  .pain-point-title {
    font-size: 1.25rem;
  }
}

.pain-point-card:hover .pain-point-title {
  color: #E5E7EB;
}

.pain-point-question {
  font-size: 1rem;
  font-weight: 600;
  color: #8B5CF6;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .pain-point-question {
    font-size: 1.125rem;
  }
}

.pain-point-description {
  color: #BFC3D3;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .pain-point-description {
    font-size: 1rem;
  }
}

.conclusion-text {
  font-size: 1.125rem;
  color: #BFC3D3;
  font-weight: 500;
  max-width: 64rem;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .conclusion-text {
    font-size: 1.25rem;
  }
}

/* Services Section */
.service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .service-card {
    border-radius: 1.5rem;
    padding: 2rem;
  }
}

.service-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
  transform: translateY(-8px);
}

.service-icon {
  color: #8B5CF6;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  color: #A855F7;
  transform: scale(1.1);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  transition: color 0.3s ease;
}

@media (min-width: 992px) {
  .service-title {
    font-size: 1.5rem;
  }
}

.service-card:hover .service-title {
  color: #E5E7EB;
}

.service-description {
  color: #BFC3D3;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .service-description {
    font-size: 1rem;
  }
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 992px) {
  .service-features {
    gap: 1rem;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #BFC3D3;
}

@media (min-width: 992px) {
  .feature-item {
    font-size: 1rem;
  }
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: #8B5CF6;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Framework Section */
.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Desktop Timeline */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #8B5CF6 0%, #A855F7 100%);
  border-radius: 2px;
  transform: translateX(-50%);
}

.timeline-particle {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #8B5CF6;
  border-radius: 50%;
  left: -6px;
  top: 0;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
  animation: moveParticle 6s ease-in-out infinite;
}

.timeline-particle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #8B5CF6;
  border-radius: 50%;
  animation: ping 2s infinite;
  opacity: 0.75;
}

/* Mobile Timeline */
.timeline-line-mobile {
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #8B5CF6 0%, #A855F7 100%);
  border-radius: 1px;
}

.timeline-particle-mobile {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #8B5CF6;
  border-radius: 50%;
  left: -5px;
  top: 0;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.5);
  animation: moveParticle 6s ease-in-out infinite;
}

.timeline-particle-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #8B5CF6;
  border-radius: 50%;
  animation: ping 2s infinite;
  opacity: 0.75;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 992px) {
  .timeline-steps {
    gap: 6rem;
  }
}

.timeline-step {
  position: relative;
}

.step-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.5s ease;
  margin-left: 4rem;
}

@media (min-width: 992px) {
  .step-content {
    border-radius: 1.5rem;
    padding: 2rem;
    margin-left: 0;
  }
}

.step-content:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 992px) {
  .step-header {
    gap: 1rem;
  }
}

.step-number {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 992px) {
  .step-number {
    font-size: 1.875rem;
  }
}

.step-icon {
  color: #8B5CF6;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

@media (min-width: 992px) {
  .step-title {
    font-size: 1.5rem;
  }
}

.step-subtitle {
  color: #8B5CF6;
  font-weight: 500;
  font-size: 0.875rem;
}

@media (min-width: 992px) {
  .step-subtitle {
    font-size: 1rem;
  }
}

.step-description {
  color: #BFC3D3;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .step-description {
    font-size: 1rem;
  }
}

.step-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #BFC3D3;
}

@media (min-width: 992px) {
  .detail-item {
    font-size: 1rem;
  }
}

.detail-dot {
  width: 6px;
  height: 6px;
  background: #8B5CF6;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Step Circles */
.step-circle {
  width: 80px;
  height: 80px;
  border: 4px solid #8B5CF6;
  background: #8B5CF6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.5);
  transition: all 0.5s ease;
}

.step-circle-mobile {
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 64px;
  border: 4px solid #8B5CF6;
  background: #8B5CF6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.5);
  transition: all 0.5s ease;
}

/* Results Section */
.case-study-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.5s ease;
}

@media (min-width: 992px) {
  .case-study-card {
    border-radius: 1.5rem;
    padding: 2rem;
  }
}

.case-study-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
  transform: translateY(-8px);
}

.case-study-icon {
  color: #8B5CF6;
}

.case-study-industry {
  font-size: 0.75rem;
  color: #8B5CF6;
  font-weight: 500;
}

@media (min-width: 992px) {
  .case-study-industry {
    font-size: 0.875rem;
  }
}

.case-study-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

@media (min-width: 992px) {
  .case-study-title {
    font-size: 1.25rem;
  }
}

.case-study-metrics {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.metric-label {
  color: #BFC3D3;
  font-size: 0.75rem;
}

@media (min-width: 992px) {
  .metric-label {
    font-size: 0.875rem;
  }
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 700;
}

@media (min-width: 992px) {
  .metric-value {
    font-size: 1.5rem;
  }
}

.case-study-description {
  color: #BFC3D3;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .case-study-description {
    font-size: 1rem;
  }
}

.case-study-cta {
  color: #8B5CF6 !important;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

@media (min-width: 992px) {
  .case-study-cta {
    font-size: 1rem;
  }
}

.case-study-cta:hover {
  color: #A855F7 !important;
}

.impact-statement {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 992px) {
  .impact-statement {
    border-radius: 1.5rem;
    padding: 2rem;
  }
}

.impact-text {
  font-size: 1.125rem;
  color: white;
}

@media (min-width: 992px) {
  .impact-text {
    font-size: 1.25rem;
  }
}

.impact-metric {
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 992px) {
  .impact-metric {
    font-size: 2.25rem;
  }
}

/* Academy Section */
.certification-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.5s ease;
}

@media (min-width: 992px) {
  .certification-card {
    border-radius: 1.5rem;
    padding: 2rem;
  }
}

.certification-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
  transform: translateY(-8px);
}

.cert-icon {
  color: #8B5CF6;
  transition: all 0.3s ease;
}

.certification-card:hover .cert-icon {
  color: #A855F7;
  transform: scale(1.1);
}

.cert-code {
  font-size: 0.75rem;
  font-weight: 700;
  color: #8B5CF6;
  background: rgba(139, 92, 246, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.cert-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  transition: color 0.3s ease;
}

@media (min-width: 992px) {
  .cert-title {
    font-size: 1.25rem;
  }
}

.certification-card:hover .cert-title {
  color: #E5E7EB;
}

.cert-meta {
  font-size: 0.875rem;
}

.cert-duration {
  color: #BFC3D3;
}

.cert-level {
  color: #8B5CF6;
  font-weight: 500;
}

.cert-description {
  color: #BFC3D3;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .cert-description {
    font-size: 1rem;
  }
}

.skills-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #8B5CF6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #BFC3D3;
}

@media (min-width: 992px) {
  .skill-item {
    font-size: 0.875rem;
  }
}

.skill-dot {
  width: 4px;
  height: 4px;
  background: #8B5CF6;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-cert {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #8B5CF6;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.btn-cert:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
  border-color: rgba(139, 92, 246, 0.5);
  color: #A855F7;
}

.academy-cta {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 992px) {
  .academy-cta {
    border-radius: 1.5rem;
    padding: 2rem;
  }
}

.academy-cta-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

@media (min-width: 992px) {
  .academy-cta-title {
    font-size: 1.5rem;
  }
}

.academy-cta-text {
  color: #BFC3D3;
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .academy-cta-text {
    font-size: 1rem;
  }
}

/* Footer Section */
.contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

@media (min-width: 992px) {
  .contact-title {
    font-size: 1.5rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #BFC3D3;
}

.contact-icon {
  color: #8B5CF6;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #BFC3D3;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-link:hover {
  color: #8B5CF6;
  background: rgba(255, 255, 255, 0.05);
}

.contact-form-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 992px) {
  .contact-form-container {
    border-radius: 1.5rem;
    padding: 2rem;
  }
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: white;
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
}

@media (min-width: 992px) {
  .form-control {
    font-size: 1rem;
  }
}

.form-control::placeholder {
  color: #BFC3D3;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: none;
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-copyright {
  color: #BFC3D3;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: #BFC3D3;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #8B5CF6;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes moveParticle {
  0% {
    top: 0;
  }
  100% {
    top: calc(100% - 16px);
  }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
  .hero-section {
    padding-top: 100px;
  }
  
  .timeline-step {
    margin-bottom: 2rem;
  }
  
  .step-content {
    margin-left: 5rem;
  }
  
  .step-circle-mobile {
    left: 0.5rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  .text-\[#BFC3D3\] {
    color: #ffffff !important;
  }
  
  .border-white\/10 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
}

/* Focus styles */
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid #8B5CF6;
  outline-offset: 2px;
}

/* Touch targets for mobile */
@media (max-width: 768px) {
  button,
  a,
  input,
  textarea {
    min-height: 44px;
    min-width: 44px;
  }
  
  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
}
.footer-bottom ul li a{
  color: #BFC3D3;
}

                /* Logo theme switching styles */
.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    min-width: fit-content;
}

.logo-image {
    transition: opacity 0.3s ease;
}

/* Dark mode (default) - show white logo */
.logo-dark {
    opacity: 1;
    position: relative;
}

.logo-light {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* Light mode - show black logo */
[data-theme="light"] .logo-dark {
    opacity: 0;
}

[data-theme="light"] .logo-light {
    opacity: 1;
}

/* Prevent layout shift and ensure smooth transitions */
.logo-container img {
    display: block;
}

/* Optional: Preload both logos to prevent flickering */
.logo-container::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    background-image: 
        url('{{ asset("theme/assets/img/images/foxber-white.svg") }}'),
        url('{{ asset("theme/assets/img/images/foxber.svg") }}');
    opacity: 0;
    pointer-events: none;
}





















        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #EC4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Section Styles */
        .section {
            padding: 4rem 0;
        }

        .section-bg {
            background: rgba(255, 255, 255, 0.05);
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            text-align: center;
        }

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

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

        .section-subtitle {
            font-size: 1.125rem;
            color: #BFC3D3;
            line-height: 1.6;
            max-width: 48rem;
            margin: 0 auto 3rem;
            text-align: center;
        }

        @media (min-width: 1024px) {
            .section-subtitle {
                font-size: 1.25rem;
            }
        }

        /* Hero Section */
        .hero-section {
            padding: 6rem 0 4rem;
            text-align: center;
            position: relative;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            z-index: -1;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

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

        @media (min-width: 1024px) {
            .hero-title {
                font-size: 4rem;
            }
        }

        .hero-description {
            font-size: 1.125rem;
            color: #BFC3D3;
            max-width: 48rem;
            margin: 0 auto 2rem;
        }

        @media (min-width: 1024px) {
            .hero-description {
                font-size: 1.25rem;
            }
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
        }

        .btn-secondary {
            border: 2px solid #475569;
            color: #BFC3D3;
            background: transparent;
        }

        .btn-secondary:hover {
            border-color: #8B5CF6;
            color: #8B5CF6;
        }

        .btn-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        @media (min-width: 640px) {
            .btn-group {
                flex-direction: row;
                justify-content: center;
            }
        }

        /* Grid Layouts */
        .grid {
            display: grid;
            gap: 2rem;
        }

        .grid-2 {
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .grid-2 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .grid-3 {
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .grid-3 {
                grid-template-columns: repeat(3, 1fr);
            }
        }

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

        @media (min-width: 768px) {
            .grid-4 {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Stats Section */
        .stats-section {
            padding: 3rem 0;
            background: rgba(255, 255, 255, 0.05);
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #8B5CF6;
            margin-bottom: 0.5rem;
        }

        @media (min-width: 768px) {
            .stat-number {
                font-size: 2.5rem;
            }
        }

        .stat-label {
            color: #BFC3D3;
            font-size: 0.875rem;
        }

        /* Card Styles */
        .card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 1.5rem;
            transition: all 0.3s ease;
            height: 100%;
        }

        @media (min-width: 1024px) {
            .card {
                padding: 2rem;
            }
        }

        .card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
            transform: translateY(-5px);
        }

        .card-icon {
            width: 3rem;
            height: 3rem;
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .card-description {
            color: #BFC3D3;
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        @media (min-width: 1024px) {
            .card-description {
                font-size: 1rem;
            }
        }

        .card-metric {
            color: #8B5CF6;
            font-weight: 600;
            font-size: 0.875rem;
        }

        /* Solution Features */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .feature-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .feature-item {
            text-align: center;
            padding: 1rem;
        }

        .feature-icon {
            width: 4rem;
            height: 4rem;
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .feature-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        .feature-description {
            color: #BFC3D3;
            font-size: 0.875rem;
            line-height: 1.6;
        }

        /* Timeline */
        .timeline {
            max-width: 4xl;
            margin: 0 auto;
            position: relative;
        }

        .timeline-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            position: relative;
        }

        .timeline-icon {
            width: 3rem;
            height: 3rem;
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-right: 1.5rem;
        }

        .timeline-content {
            flex: 1;
        }

        .timeline-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
        }

        @media (min-width: 1024px) {
            .timeline-title {
                font-size: 1.25rem;
            }
        }

        .timeline-description {
            color: #BFC3D3;
            margin-bottom: 0.75rem;
            line-height: 1.6;
        }

        .timeline-meta {
            color: #8B5CF6;
            font-size: 0.875rem;
            font-weight: 600;
        }

        /* Use Case Cards */
        .use-case-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }

        .use-case-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
            transform: translateY(-5px);
        }

        .use-case-header {
            height: 8rem;
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            font-weight: 700;
            color: white;
            opacity: 0.8;
        }

        .use-case-content {
            padding: 1.5rem;
        }

        @media (min-width: 1024px) {
            .use-case-content {
                padding: 2rem;
            }
        }

        .use-case-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .use-case-tag {
            background: #374151;
            color: #BFC3D3;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.75rem;
        }

        .use-case-result {
            color: #8B5CF6;
            font-weight: 700;
            font-size: 0.875rem;
        }

        @media (min-width: 1024px) {
            .use-case-result {
                font-size: 1rem;
            }
        }

        .use-case-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .use-case-metrics {
            color: #BFC3D3;
            font-size: 0.75rem;
            margin-bottom: 1rem;
        }

        @media (min-width: 1024px) {
            .use-case-metrics {
                font-size: 0.875rem;
            }
        }

        .use-case-link {
            color: #8B5CF6;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
        }

        .use-case-link:hover {
            color: #A855F7;
        }

        /* CTA Section */
        .cta-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .cta-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
        }

        .cta-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        @media (min-width: 1024px) {
            .cta-title {
                font-size: 1.5rem;
            }
        }

        .cta-description {
            color: #BFC3D3;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .cta-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin: 1.5rem 0;
        }

        @media (min-width: 768px) {
            .cta-features {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .cta-feature {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 0.5rem;
        }

        .cta-feature-value {
            color: #8B5CF6;
            font-weight: 700;
            font-size: 1rem;
        }

        .cta-feature-label {
            color: #BFC3D3;
            font-size: 0.875rem;
        }

        /* Utilities */
        .text-center {
            text-align: center;
        }

        .mb-4 {
            margin-bottom: 1rem;
        }

        .mb-6 {
            margin-bottom: 1.5rem;
        }

        .mb-8 {
            margin-bottom: 2rem;
        }

        .max-w-4xl {
            max-width: 56rem;
        }

        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0 2rem;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .timeline-item {
                flex-direction: row;
                text-align: left;
            }
            .timeline-item::before{
              display: none;
            }
            
            .timeline-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }
















        .gradient-text {
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #EC4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .section {
            padding: 4rem 0;
        }

        /* Hero Section - Service Page Style */
        .hero-section {
            padding: 8rem 0 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .hero-breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            color: #8B5CF6;
        }

        .hero-breadcrumb a {
            color: #BFC3D3;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .hero-breadcrumb a:hover {
            color: #8B5CF6;
        }

        .hero-industry-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
            border: 1px solid rgba(139, 92, 246, 0.3);
            padding: 0.75rem 1.5rem;
            border-radius: 2rem;
            margin-bottom: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: #8B5CF6;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .hero-text h1 {
                font-size: 3.75rem;
            }
        }

        @media (min-width: 1024px) {
            .hero-text h1 {
                font-size: 4.5rem;
            }
        }

        .hero-text p {
            font-size: 1.25rem;
            color: #BFC3D3;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        @media (min-width: 640px) {
            .hero-cta-buttons {
                flex-direction: row;
                justify-content: center;
                gap: 1.5rem;
            }
        }

        .hero-trust-indicators {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (min-width: 768px) {
            .hero-trust-indicators {
                flex-direction: row;
                justify-content: center;
                gap: 3rem;
            }
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #BFC3D3;
            font-size: 0.875rem;
        }

        .trust-item .icon {
            color: #10b981;
        }

        /* SVG Icon Styles */
        .icon {
            width: 1em;
            height: 1em;
            display: inline-block;
            fill: currentColor;
            flex-shrink: 0;
        }

        .icon-lg {
            width: 1.5em;
            height: 1.5em;
        }

        .icon-xl {
            width: 2em;
            height: 2em;
        }

        .icon-2xl {
            width: 2.5em;
            height: 2.5em;
        }

        .icon-3xl {
            width: 3em;
            height: 3em;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #8B5CF6;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #BFC3D3;
            font-size: 0.875rem;
        }

        /* Challenge Section */
        .challenge-section {
            background: rgba(255, 255, 255, 0.02);
        }

        .challenge-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .challenge-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .challenge-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .challenge-card {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.05));
            border: 1px solid rgba(220, 38, 38, 0.2);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .challenge-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #dc2626, #ef4444);
        }

        .challenge-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
        }

        .challenge-icon {
            font-size: 2.5rem;
            color: #ef4444;
            margin-bottom: 1rem;
        }

        .challenge-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .challenge-description {
            color: #BFC3D3;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .challenge-impact {
            background: rgba(220, 38, 38, 0.2);
            padding: 0.75rem;
            border-radius: 0.5rem;
            color: #fca5a5;
            font-size: 0.875rem;
            font-weight: 600;
        }

        /* Solutions Section */
        .solutions-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .solution-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1.5rem;
            padding: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .solution-card:hover::before {
            transform: scaleX(1);
        }

        .solution-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
        }

        .solution-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .solution-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-right: 1rem;
        }

        .solution-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .solution-description {
            color: #BFC3D3;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .solution-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .solution-features li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            font-size: 0.875rem;
        }

        .solution-features li::before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .solution-metrics {
            background: rgba(139, 92, 246, 0.1);
            border-radius: 0.75rem;
            padding: 1rem;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .metrics-title {
            color: #8B5CF6;
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

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

        .metric-item {
            text-align: center;
        }

        .metric-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: #8B5CF6;
        }

        .metric-label {
            font-size: 0.75rem;
            color: #BFC3D3;
        }

        /* Use Cases Section */
        .use-cases-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .use-cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .use-cases-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .use-case-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }

        .use-case-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
        }

        .use-case-header {
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            padding: 1.5rem;
            text-align: center;
        }

        .use-case-icon {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 0.5rem;
        }

        .use-case-category {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .use-case-content {
            padding: 1.5rem;
        }

        .use-case-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .use-case-description {
            color: #BFC3D3;
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .use-case-benefits {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .benefit-item {
            text-align: center;
            flex: 1;
        }

        .benefit-value {
            font-size: 1rem;
            font-weight: 700;
            color: #10b981;
        }

        .benefit-label {
            font-size: 0.75rem;
            color: #BFC3D3;
        }

        .use-case-link {
            color: #8B5CF6;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            display: inline-flex;
            align-items: center;
        }

        .use-case-link:hover {
            color: #A855F7;
        }

        /* Technology Stack */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .tech-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .tech-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .tech-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-5px);
        }

        .tech-icon {
            font-size: 2rem;
            color: #8B5CF6;
            margin-bottom: 1rem;
        }

        .tech-name {
            font-weight: 600;
            color: white;
            margin-bottom: 0.5rem;
        }

        .tech-description {
            font-size: 0.875rem;
            color: #BFC3D3;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
            border-radius: 2rem;
            padding: 3rem 2rem;
            text-align: center;
            margin: 4rem 0;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-description {
            font-size: 1.125rem;
            color: #BFC3D3;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
                justify-content: center;
            }
        }

        .btn {
            padding: 0.875rem 2rem;
            border-radius: 0.75rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
        }

        .btn-secondary {
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: #BFC3D3;
            background: transparent;
        }

        .btn-secondary:hover {
            border-color: #8B5CF6;
            color: #8B5CF6;
        }

        /* Animations */
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.7;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        /* Section Titles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
        }

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

        .section-subtitle {
            font-size: 1.125rem;
            color: #BFC3D3;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .hero-section {
                padding: 4rem 0 3rem;
            }
            .framework-step::after{
              display: none;
            }
        }












        

        /* Hero Section - Service Page Style */
        .hero-section {
            padding: 8rem 0 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .hero-industry-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
            border: 1px solid rgba(139, 92, 246, 0.3);
            padding: 0.75rem 1.5rem;
            border-radius: 2rem;
            margin-bottom: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: #8B5CF6;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .hero-text h1 {
                font-size: 3.75rem;
            }
        }

        @media (min-width: 1024px) {
            .hero-text h1 {
                font-size: 4.5rem;
            }
        }

        .hero-text p {
            font-size: 1.25rem;
            color: #BFC3D3;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        @media (min-width: 640px) {
            .hero-cta-buttons {
                flex-direction: row;
                justify-content: center;
                gap: 1.5rem;
            }
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #8B5CF6;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #BFC3D3;
            font-size: 0.875rem;
        }

        /* Challenge Section */
        .challenge-section {
            background: rgba(255, 255, 255, 0.02);
        }

        .challenge-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .challenge-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .challenge-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .challenge-card {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.05));
            border: 1px solid rgba(220, 38, 38, 0.2);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .challenge-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #dc2626, #ef4444);
        }

        .challenge-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
        }

        .challenge-icon {
            font-size: 2.5rem;
            color: #ef4444;
            margin-bottom: 1rem;
        }

        .challenge-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .challenge-description {
            color: #BFC3D3;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .challenge-impact {
            background: rgba(220, 38, 38, 0.2);
            padding: 0.75rem;
            border-radius: 0.5rem;
            color: #fca5a5;
            font-size: 0.875rem;
            font-weight: 600;
        }

        /* Solutions Section */
        .solutions-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .solution-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1.5rem;
            padding: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .solution-card:hover::before {
            transform: scaleX(1);
        }

        .solution-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
        }

        .solution-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .solution-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-right: 1rem;
        }

        .solution-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .solution-description {
            color: #BFC3D3;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .solution-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .solution-metrics {
            background: rgba(139, 92, 246, 0.1);
            border-radius: 0.75rem;
            padding: 1rem;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .metrics-title {
            color: #8B5CF6;
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

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

        .metric-item {
            text-align: center;
        }

        .metric-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: #8B5CF6;
        }

        .metric-label {
            font-size: 0.75rem;
            color: #BFC3D3;
        }

        /* Use Cases Section */
        .use-cases-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .use-cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .use-cases-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .use-case-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }

        .use-case-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
        }

        .use-case-header {
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            padding: 1.5rem;
            text-align: center;
        }

        .use-case-icon {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 0.5rem;
        }

        .use-case-category {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .use-case-content {
            padding: 1.5rem;
        }

        .use-case-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .use-case-description {
            color: #BFC3D3;
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .use-case-benefits {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .benefit-item {
            text-align: center;
            flex: 1;
        }

        .benefit-value {
            font-size: 1rem;
            font-weight: 700;
            color: #10b981;
        }

        .benefit-label {
            font-size: 0.75rem;
            color: #BFC3D3;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
            border-radius: 2rem;
            padding: 3rem 2rem;
            text-align: center;
            margin: 4rem 0;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-description {
            font-size: 1.125rem;
            color: #BFC3D3;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
                justify-content: center;
            }
        }

        .btn {
            padding: 0.875rem 2rem;
            border-radius: 0.75rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
        }

        .btn-secondary {
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: #BFC3D3;
            background: transparent;
        }

        .btn-secondary:hover {
            border-color: #8B5CF6;
            color: #8B5CF6;
        }

        /* Section Titles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
        }

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

        .section-subtitle {
            font-size: 1.125rem;
            color: #BFC3D3;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .hero-section {
                padding: 4rem 0 3rem;
            }
        }


        nav{
          height: 60px;
        }






        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 0 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out;
        }

        .hero-industry-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
            border: 1px solid rgba(139, 92, 246, 0.3);
            padding: 0.75rem 1.5rem;
            border-radius: 2rem;
            margin-bottom: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: #8B5CF6;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 576px) {
            .hero-text h1 {
                font-size: 3rem;
            }
        }

        @media (min-width: 992px) {
            .hero-text h1 {
                font-size: 4.5rem;
                margin-bottom: 2rem;
            }
        }

        .hero-text p {
            font-size: 1.125rem;
            color: #BFC3D3;
            line-height: 1.6;
            max-width: 64rem;
            margin: 0 auto 2rem;
        }

        @media (min-width: 992px) {
            .hero-text p {
                font-size: 1.25rem;
                margin-bottom: 3rem;
            }
        }

        @media (min-width: 1200px) {
            .hero-text p {
                font-size: 1.5rem;
            }
        }

        .hero-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        @media (min-width: 640px) {
            .hero-cta-buttons {
                flex-direction: row;
                gap: 1.5rem;
                justify-content: center;
            }
        }

        /* Button Styles */
        .btn {
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            color: white;
        }

        .btn-primary:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
        }

        .btn-secondary {
            border: 2px solid #475569;
            color: #BFC3D3;
            background: transparent;
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            border-color: #8B5CF6;
            color: #8B5CF6;
        }

        .btn-hero {
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        @media (min-width: 576px) {
            .btn-hero {
                padding: 1.25rem 2rem;
                font-size: 1.125rem;
            }
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 0;
        }

        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 2rem;
            }
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        @media (min-width: 768px) {
            .stat-card {
                padding: 2rem 1.5rem;
            }
        }

        .stat-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
        }

        .stat-number {
            font-size: 1.875rem;
            font-weight: 700;
            color: #8B5CF6;
            margin-bottom: 0.5rem;
        }

        @media (min-width: 768px) {
            .stat-number {
                font-size: 2.25rem;
            }
        }

        .stat-label {
            color: #BFC3D3;
            font-size: 0.875rem;
            line-height: 1.4;
        }

        @media (min-width: 768px) {
            .stat-label {
                font-size: 1rem;
            }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-mouse {
            width: 24px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            display: flex;
            justify-content: center;
            padding-top: 8px;
        }

        .scroll-dot {
            width: 4px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 2px;
            animation: pulse 2s infinite;
        }

        /* Social Proof Section */
        .social-proof-section {
            padding: 3rem 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .social-proof-text {
            color: #BFC3D3;
            font-size: 1rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        @media (min-width: 992px) {
            .social-proof-text {
                font-size: 1.125rem;
                margin-bottom: 3rem;
            }
        }

        .client-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .client-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .client-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }

        .client-card {
            height: 3rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            opacity: 0.6;
        }

        @media (min-width: 992px) {
            .client-card {
                height: 4rem;
            }
        }

        .client-card:hover {
            opacity: 1;
            border-color: rgba(139, 92, 246, 0.3);
            transform: scale(1.05);
        }

        .client-name {
            color: white;
            font-weight: 500;
            font-size: 0.75rem;
            text-align: center;
            padding: 0 0.5rem;
            transition: color 0.3s ease;
        }

        @media (min-width: 992px) {
            .client-name {
                font-size: 0.875rem;
            }
        }

        .client-card:hover .client-name {
            color: #8B5CF6;
        }

        /* Challenge Section */
        .challenge-section {
            background: rgba(255, 255, 255, 0.02);
        }

        .challenge-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .challenge-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .challenge-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .challenge-card {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.05));
            border: 1px solid rgba(220, 38, 38, 0.2);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .challenge-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #dc2626, #ef4444);
        }

        .challenge-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
        }

        .challenge-icon {
            font-size: 2.5rem;
            color: #ef4444;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .challenge-icon svg {
            width: 40px;
            height: 40px;
        }

        .challenge-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .challenge-description {
            color: #BFC3D3;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .challenge-impact {
            background: rgba(220, 38, 38, 0.2);
            padding: 0.75rem;
            border-radius: 0.5rem;
            color: #fca5a5;
            font-size: 0.875rem;
            font-weight: 600;
        }

        /* Solutions Section */
        .solutions-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .solution-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1.5rem;
            padding: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .solution-card:hover::before {
            transform: scaleX(1);
        }

        .solution-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
        }

        .solution-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .solution-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-right: 1rem;
        }

        .solution-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .solution-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .solution-description {
            color: #BFC3D3;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .solution-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .solution-metrics {
            background: rgba(139, 92, 246, 0.1);
            border-radius: 0.75rem;
            padding: 1rem;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .metrics-title {
            color: #8B5CF6;
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

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

        .metric-item {
            text-align: center;
        }

        .metric-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: #8B5CF6;
        }

        .metric-label {
            font-size: 0.75rem;
            color: #BFC3D3;
        }

        /* Use Cases Section */
        .use-cases-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .use-cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .use-cases-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .use-case-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }

        .use-case-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
        }

        .use-case-header {
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            padding: 1.5rem;
            text-align: center;
        }

        .use-case-header svg {
            fill: white;
        }

        .use-case-icon {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .use-case-icon svg {
            width: 40px;
            height: 40px;
        }

        .use-case-category {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .use-case-content {
            padding: 1.5rem;
        }

        .use-case-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .use-case-description {
            color: #BFC3D3;
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .use-case-benefits {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .benefit-item {
            text-align: center;
            flex: 1;
        }

        .benefit-value {
            font-size: 1rem;
            font-weight: 700;
            color: #10b981;
        }

        .benefit-label {
            font-size: 0.75rem;
            color: #BFC3D3;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
            border-radius: 2rem;
            padding: 3rem 2rem;
            text-align: center;
            margin: 4rem 0;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-description {
            font-size: 1.125rem;
            color: #BFC3D3;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
                justify-content: center;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 53%, 80%, 100% {
                transform: translate3d(0, 0, 0);
            }
            40%, 43% {
                transform: translate3d(0, -30px, 0);
            }
            70% {
                transform: translate3d(0, -15px, 0);
            }
            90% {
                transform: translate3d(0, -4px, 0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .hero-section {
                padding: 6rem 0 3rem;
                min-height: 90vh;
            }
            
            .hero-text h1 {
                font-size: 2.25rem;
            }
            
            .hero-text p {
                font-size: 1rem;
            }
            
            .stats-grid {
                gap: 1rem;
            }
            
            .stat-card {
                padding: 1.25rem;
            }
            
            .challenge-grid,
            .solutions-grid,
            .use-cases-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        
        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 0;
        }

        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 2rem;
            }
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        @media (min-width: 768px) {
            .stat-card {
                padding: 2rem 1.5rem;
            }
        }

        .stat-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
        }

        .stat-number {
            font-size: 1.875rem;
            font-weight: 700;
            color: #8B5CF6;
            margin-bottom: 0.5rem;
        }

        @media (min-width: 768px) {
            .stat-number {
                font-size: 2.25rem;
            }
        }

        .stat-label {
            color: #BFC3D3;
            font-size: 0.875rem;
            line-height: 1.4;
        }

        @media (min-width: 768px) {
            .stat-label {
                font-size: 1rem;
            }
        }

        /* Challenge Section */
        .challenge-section {
            background: rgba(255, 255, 255, 0.02);
        }

        .challenge-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .challenge-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .challenge-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .challenge-card {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.05));
            border: 1px solid rgba(220, 38, 38, 0.2);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .challenge-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #dc2626, #ef4444);
        }

        .challenge-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
        }

        .challenge-icon {
            font-size: 2.5rem;
            color: #ef4444;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .challenge-icon svg {
            width: 40px;
            height: 40px;
        }

        .challenge-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .challenge-description {
            color: #BFC3D3;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .challenge-impact {
            background: rgba(220, 38, 38, 0.2);
            padding: 0.75rem;
            border-radius: 0.5rem;
            color: #fca5a5;
            font-size: 0.875rem;
            font-weight: 600;
        }

        /* Solutions Section */
        .solutions-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .solution-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1.5rem;
            padding: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .solution-card:hover::before {
            transform: scaleX(1);
        }

        .solution-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
        }

        .solution-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .solution-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-right: 1rem;
        }

        .solution-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .solution-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .solution-description {
            color: #BFC3D3;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .solution-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .solution-metrics {
            background: rgba(139, 92, 246, 0.1);
            border-radius: 0.75rem;
            padding: 1rem;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .metrics-title {
            color: #8B5CF6;
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

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

        .metric-item {
            text-align: center;
        }

        .metric-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: #8B5CF6;
        }

        .metric-label {
            font-size: 0.75rem;
            color: #BFC3D3;
        }

        /* Use Cases Section */
        .use-cases-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .use-cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .use-cases-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .use-case-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }

        .use-case-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
        }

        .use-case-header {
            background: linear-gradient(135deg, #8B5CF6, #A855F7);
            padding: 1.5rem;
            text-align: center;
        }

        .use-case-header svg {
            fill: white;
        }

        .use-case-icon {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .use-case-icon svg {
            width: 40px;
            height: 40px;
        }

        .use-case-category {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .use-case-content {
            padding: 1.5rem;
        }

        .use-case-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .use-case-description {
            color: #BFC3D3;
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .use-case-benefits {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .benefit-item {
            text-align: center;
            flex: 1;
        }

        .benefit-value {
            font-size: 1rem;
            font-weight: 700;
            color: #10b981;
        }

        .benefit-label {
            font-size: 0.75rem;
            color: #BFC3D3;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
            border-radius: 2rem;
            padding: 3rem 2rem;
            text-align: center;
            margin: 4rem 0;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-description {
            font-size: 1.125rem;
            color: #BFC3D3;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
                justify-content: center;
            }
        }

        /* Section Titles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
        }

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

        .section-subtitle {
            font-size: 1.125rem;
            color: #BFC3D3;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .metro-grid{
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 2rem;
          margin: 2rem 0;
        }
        .transform-grid{
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 1rem;
          margin-top: 1rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .hero-section {
                padding: 6rem 0 3rem;
                min-height: 90vh;
            }
            
            .hero-text h1 {
                font-size: 2.25rem;
            }
            
            .hero-text p {
                font-size: 1rem;
            }
            
            .stats-grid {
                gap: 1rem;
            }
            
            .stat-card {
                padding: 1.25rem;
            }
            
            .challenge-grid,
            .solutions-grid,
            .use-cases-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .metro-grid{
                grid-template-columns: repeat(1, 1fr);
            }
            .transform-grid{
              grid-template-columns: repeat(2, 1fr);
            }
        }


      @media (max-width: 480px) {
        .tech-grid{
          grid-template-columns: repeat(1, 1fr);
        }
      }

      .backdrop-blur-xl {
        backdrop-filter: blur(24px);
      }

      .backdrop-blur-sm {
        backdrop-filter: blur(4px);
      }

      .animate-spin {
        animation: spin 1s linear infinite;
      }

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

      .transition-all {
        transition: all 0.3s ease;
      }

      .duration-300 {
        transition-duration: 300ms;
      }

      .duration-500 {
        transition-duration: 500ms;
      }

      .ease-out {
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
      }

      .hover\:scale-105:hover {
        transform: scale(1.05);
      }

      .hover\:scale-110:hover {
        transform: scale(1.1);
      }

      .transform {
        transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1));
      }
      .progress-handle {
        width: 12px;
        height: 12px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
        opacity: 0;
        transition: opacity 0.2s ease;
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
      }

      .progress-bar:hover .progress-handle {
        opacity: 1;
      }

      .mobile-player-expanded {
        max-height: 24rem;
        opacity: 1;
      }

      .mobile-player-collapsed {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
      }
      .mobile-player-content {
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .prose h2{
        font-weight: 700;
        font-size: 1.875rem;
        line-height: 2.25rem;
        margin-bottom: 1rem;
      }
      .prose p{
        margin-bottom: 1.5rem;
      }
      .prose ul{
        padding: 1.5rem;
        background-image: linear-gradient(to bottom right, rgb(239 68 68 / 0.1), rgb(220 38 38 / 0.05));
        border: 1px solid rgb(239 68 68 / 0.2);
        border-radius: 0.75rem;
        margin-bottom: 1.5rem;
      }
      .prose h3{
        font-weight: 700;
        font-size: 1.25rem;
        line-height: 1.75rem;
        margin-bottom: 1rem;
      }
      .prose blockquote{
        padding: 1.5rem;
        background-image: linear-gradient(to right, rgb(139 92 246 / 0.1), transparent);
        border-color: rgba(139, 92, 246, 1);
        border-left-width: 4px;
        border-top-right-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
      }
      .prose ul li{
        margin-top: calc(0.75rem * calc(1 - 0));
      }
      .prose ul li::before{
        content: "";
        display: inline-block;
        width: 1.25rem;
        height: 1.25rem;
        margin-right: 0.5rem;
        background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%2334d399' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z' /%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
      }   

      /* Mobile menu slide animation */
.mobile-menu {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-out;
}

.mobile-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Submenu animations */
.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.submenu.show {
    max-height: 400px;
}

/* Arrow rotation */
.submenu-toggle {
    transition: transform 0.3s ease;
}

.submenu-toggle.active {
    transform: rotate(180deg);
}


    .gradient-text {
        background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #EC4899 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .gradient-button {
        background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    }
    .card-hover { transition: all 0.5s ease; }
    .card-hover:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    }
    .floating-animation { animation: float 6s ease-in-out infinite; }
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    .fade-in-up { animation: fadeInUp 1s ease-out; }
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }