/* ========================================
   TechBoost Website v2 - Professional Theme
   Clean, WordPress-like styling
======================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Purple Theme */
    --primary: #7c3aed;
    --primary-alt: #6f00ff;
    --primary-dark: #6d28d9;
    --primary-light: #a855f7;
    --dark-blue: #131628;
    --light-grey: #efefef;
    --primary-lighter: #a78bfa;
    --primary-gradient: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    --primary-gradient-hover: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    
    /* Secondary Colors */
    --secondary: #1e1b4b;
    --secondary-light: #312e81;
    --secondary-gradient: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    
    /* Accent Colors */
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --accent-gradient: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    
    /* Gold/Highlight */
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #faf5ff;
    --gray-100: #f3e8ff;
    --gray-200: #e9d5ff;
    --gray-300: #d8b4fe;
    --gray-400: #a78bfa;
    --gray-500: #7c3aed;
    --gray-600: #5b21b6;
    --gray-700: #4c1d95;
    --gray-800: #3b0764;
    --gray-900: #1e1b4b;
    
    /* Text Colors */
    --text-dark: #1e1b4b;
    --text-body: #4a4568;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Shadows - Enhanced with purple tint */
    --shadow-sm: 0 1px 2px rgba(124, 58, 237, 0.05);
    --shadow: 0 1px 3px rgba(124, 58, 237, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(124, 58, 237, 0.15), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px -3px rgba(124, 58, 237, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(124, 58, 237, 0.25);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.3);
    --shadow-card: 0 4px 20px rgba(124, 58, 237, 0.1);
    --shadow-card-hover: 0 20px 40px rgba(124, 58, 237, 0.2);
    
    /* Border Radius */
    --radius-sm: 10px;
    --radius: 15px;
    --radius-lg: 15px;
    --radius-xl: 15px;
    --radius-2xl: 15px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 3.25rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Top Bar
======================================== */
.top-bar {
    background: linear-gradient(90deg, #131628 0%, #1e1b4b 50%, #131628 100%);
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

/* Bright animated glowing border */
.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(111, 0, 255, 0.6) 10%, 
        rgba(111, 0, 255, 0.9) 15%, 
        rgba(139, 92, 246, 1) 20%,
        rgba(111, 0, 255, 0.9) 25%,
        rgba(111, 0, 255, 0.6) 30%, 
        transparent 40%,
        transparent 60%, 
        rgba(111, 0, 255, 0.6) 70%, 
        rgba(111, 0, 255, 0.9) 75%, 
        rgba(139, 92, 246, 1) 80%,
        rgba(111, 0, 255, 0.9) 85%,
        rgba(111, 0, 255, 0.6) 90%, 
        transparent 100%);
    animation: topBarGlow 4s linear infinite;
    box-shadow: 0 0 15px rgba(111, 0, 255, 0.4), 0 0 30px rgba(111, 0, 255, 0.2);
}

@keyframes topBarGlow {
    0% { transform: translateX(-66.66%); }
    100% { transform: translateX(0%); }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--primary-light);
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: var(--gray-400);
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--white);
}

/* ========================================
   Header
======================================== */
.header {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.375rem;
    color: var(--text-dark);
    line-height: 1.2;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    transform: scaleX(1);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary);
    background: rgba(124, 58, 237, 0.05);
}

.nav-menu > li > a i {
    font-size: 0.75rem;
    transition: var(--transition);
}

/* Dropdown */
.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 8px 0;
    border: 1px solid var(--gray-100);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: var(--gray-600);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.dropdown-menu li a i {
    width: 20px;
    color: var(--primary);
}

/* Header CTA */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.header-cta:hover::before {
    left: 100%;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.4);
    color: var(--white);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(111, 0, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(111, 0, 255, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(30, 27, 75, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 27, 75, 0.3);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: var(--primary-dark);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========================================
   Section Styles
======================================== */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-body);
    font-size: 1.125rem;
    margin-bottom: 0;
}

.section-header.light .section-label {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255,255,255,0.8);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #ede9fe 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: var(--primary-gradient);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 5% 100%);
    opacity: 0.06;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(6, 182, 212, 0.05) 100%);
    color: #0891b2;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-text h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text > p {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 36px;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-body);
    font-size: 0.9375rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: var(--white);
    padding: 35px 45px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.hero-card-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-card-label {
    display: block;
    color: var(--text-body);
    font-size: 1rem;
    font-weight: 500;
}

/* ========================================
   Stats Bar
======================================== */
.stats-bar {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Large moving gradient blobs */
.stats-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse 40% 50% at 25% 50%, rgba(124, 58, 237, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 75% 50%, rgba(139, 92, 246, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 35% 45% at 50% 25%, rgba(99, 102, 241, 0.3) 0%, transparent 50%);
    animation: statsWave 12s ease-in-out infinite;
}

@keyframes statsWave {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10%, 8%) rotate(3deg); }
    50% { transform: translate(0, 15%) rotate(0deg); }
    75% { transform: translate(-10%, 8%) rotate(-3deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Visible floating particles */
.stats-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(3px 3px at 10% 20%, rgba(255,255,255,0.4), transparent),
        radial-gradient(4px 4px at 30% 70%, rgba(255,255,255,0.3), transparent),
        radial-gradient(3px 3px at 50% 30%, rgba(255,255,255,0.35), transparent),
        radial-gradient(4px 4px at 70% 80%, rgba(255,255,255,0.25), transparent),
        radial-gradient(3px 3px at 90% 40%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 20% 90%, rgba(255,255,255,0.35), transparent),
        radial-gradient(3px 3px at 80% 10%, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 60% 60%, rgba(255,255,255,0.3), transparent);
    background-size: 250px 250px;
    animation: floatParticles 20s linear infinite;
    pointer-events: none;
}

@keyframes floatParticles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-250px); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.2);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-weight: 500;
}

/* ========================================
   About Section
======================================== */
.about-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-label {
    margin-bottom: 16px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--text-body);
    font-weight: 500;
    margin-bottom: 16px;
}

.about-list {
    margin: 24px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--text-body);
    font-size: 1.0625rem;
}

.about-list i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(6, 182, 212, 0.05) 100%);
    color: var(--accent);
    font-size: 0.875rem;
    border-radius: 50%;
}

.about-image {
    position: relative;
    height: 450px;
    background: linear-gradient(135deg, #f3e8ff 0%, #ede9fe 100%);
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.about-card {
    position: absolute;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: var(--transition);
}

.about-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.about-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.about-card span {
    font-weight: 600;
    color: var(--text-dark);
}

.about-card-1 {
    top: 40px;
    left: -30px;
}

.about-card-2 {
    bottom: 40px;
    right: -30px;
}

/* ========================================
   Problems Section
======================================== */
.problems-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    position: relative;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f97316);
    transform: scaleX(0);
    transition: var(--transition);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-8px);
}

.problem-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--error);
    font-size: 1.75rem;
    transition: var(--transition);
}

.problem-card:hover .problem-icon {
    transform: scale(1.1);
}

.problem-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-body);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ========================================
   Programs Section
======================================== */
.programs-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    position: relative;
    background: var(--white);
    padding: 45px 35px;
    padding-top: 55px;
    margin-top: 20px;
    border-radius: var(--radius-2xl);
    border: 2px solid rgba(124, 58, 237, 0.1);
    text-align: center;
    transition: var(--transition);
    overflow: visible;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-10px);
}

.program-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.25);
    transition: var(--transition);
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.program-subtitle {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.program-card > p {
    color: var(--text-body);
    margin-bottom: 28px;
    line-height: 1.7;
}

.program-features {
    text-align: left;
    margin-bottom: 32px;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-body);
    font-size: 0.9375rem;
}

.program-features i {
    color: var(--accent);
    font-size: 1rem;
}

.program-card .btn {
    width: 100%;
}

/* ========================================
   Services Section
======================================== */
.services-section {
    padding: var(--section-padding);
    background: linear-gradient(160deg, #1e1b4b 0%, #2d2a5e 30%, #1e1b4b 70%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

/* Bright moving aurora waves */
.services-section::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 300%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(124, 58, 237, 0.2) 40%, rgba(139, 92, 246, 0.3) 50%, rgba(124, 58, 237, 0.2) 60%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(99, 102, 241, 0.15) 40%, rgba(124, 58, 237, 0.25) 50%, rgba(99, 102, 241, 0.15) 60%, transparent 70%);
    animation: auroraMove 10s ease-in-out infinite;
}

@keyframes auroraMove {
    0% { transform: translateY(0) translateX(0) rotate(0deg); }
    33% { transform: translateY(15%) translateX(5%) rotate(2deg); }
    66% { transform: translateY(30%) translateX(-5%) rotate(-1deg); }
    100% { transform: translateY(0) translateX(0) rotate(0deg); }
}

/* Large floating glowing orbs */
.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 300px at 15% 85%, rgba(124, 58, 237, 0.35) 0%, transparent 60%),
        radial-gradient(circle 250px at 85% 15%, rgba(139, 92, 246, 0.3) 0%, transparent 60%),
        radial-gradient(circle 200px at 50% 50%, rgba(99, 102, 241, 0.25) 0%, transparent 50%);
    animation: orbsFloat 15s ease-in-out infinite;
}

@keyframes orbsFloat {
    0%, 100% { 
        transform: translate(0, 0);
        opacity: 0.9;
    }
    25% { 
        transform: translate(30px, -40px);
        opacity: 1;
    }
    50% { 
        transform: translate(-20px, 30px);
        opacity: 0.85;
    }
    75% { 
        transform: translate(40px, 20px);
        opacity: 1;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    padding: 36px 24px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
    text-decoration: none;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
}

.service-card h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.service-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ========================================
   Testimonials Section
======================================== */
.testimonials-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(124, 58, 237, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(124, 58, 237, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
}

.author-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.0625rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ========================================
   Who We Serve Section
======================================== */
.serve-section {
    padding: var(--section-padding);
    background: var(--white);
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.serve-item {
    text-align: center;
    padding: 36px 20px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    transition: var(--transition);
    border: 1px solid transparent;
}

.serve-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.1);
}

.serve-item i {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
}

.serve-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.serve-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    padding: 100px 0;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: pulse 10s ease-in-out infinite reverse;
}

.cta-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: linear-gradient(180deg, #1e1b4b 0%, #151335 50%, #0f0d26 100%);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

/* Bright animated gradient line at top */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(124, 58, 237, 0.5) 10%, 
        rgba(139, 92, 246, 0.9) 20%, 
        rgba(167, 139, 250, 1) 25%,
        rgba(139, 92, 246, 0.9) 30%,
        rgba(124, 58, 237, 0.5) 40%, 
        transparent 50%,
        rgba(124, 58, 237, 0.5) 60%, 
        rgba(139, 92, 246, 0.9) 70%, 
        rgba(167, 139, 250, 1) 75%,
        rgba(139, 92, 246, 0.9) 80%,
        rgba(124, 58, 237, 0.5) 90%, 
        transparent 100%);
    animation: footerLine 5s linear infinite;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(124, 58, 237, 0.3);
}

@keyframes footerLine {
    0% { transform: translateX(-66.66%); }
    100% { transform: translateX(0%); }
}

/* Large moving ambient glows */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 80% 40%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 45% 35% at 50% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: footerGlow 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footerGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    33% { transform: translate(30px, -20px) scale(1.1); opacity: 1; }
    66% { transform: translate(-20px, 10px) scale(0.95); opacity: 0.8; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 24px;
}

.footer-logo .logo-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.0625rem;
    margin-bottom: 24px;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
    position: relative;
}

.footer-links ul a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.footer-contact ul i {
    color: var(--primary-light);
    width: 20px;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ========================================
   Page Header
======================================== */
.page-header {
    background: linear-gradient(135deg, #1e1b4b 0%, #2d2768 40%, #1e1b4b 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Bright rotating light rays */
.page-header::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(124, 58, 237, 0.08) 15deg, 
            rgba(139, 92, 246, 0.2) 30deg, 
            rgba(167, 139, 250, 0.25) 45deg,
            rgba(139, 92, 246, 0.2) 60deg,
            rgba(124, 58, 237, 0.08) 75deg,
            transparent 90deg,
            transparent 180deg,
            rgba(99, 102, 241, 0.08) 195deg,
            rgba(124, 58, 237, 0.18) 210deg,
            rgba(139, 92, 246, 0.22) 225deg,
            rgba(124, 58, 237, 0.18) 240deg,
            rgba(99, 102, 241, 0.08) 255deg,
            transparent 270deg,
            transparent 360deg);
    animation: headerRays 20s linear infinite;
}

@keyframes headerRays {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Large pulsing glows */
.page-header::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse 40% 35% at 50% 50%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 35% 45% at 25% 60%, rgba(139, 92, 246, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse 35% 45% at 75% 40%, rgba(99, 102, 241, 0.2) 0%, transparent 40%);
    animation: headerPulse 6s ease-in-out infinite;
}

@keyframes headerPulse {
    0%, 100% { 
        opacity: 0.7; 
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.2); 
    }
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-size: 3rem;
    text-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}

.page-header p {
    color: rgba(255,255,255,0.85);
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--gray-400);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--gray-500);
}

/* ========================================
   Contact Form
======================================== */
.contact-section {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-xl);
}

.contact-info h3 {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-item p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        display: none;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .serve-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .main-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text > p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .serve-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Additional Page Styles
======================================== */

/* Story/Timeline Section */
.story-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    padding: 24px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    flex: 1;
}

.timeline-content h3 {
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    padding: var(--section-padding);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-100);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 1.75rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Quote Section */
.quote-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.quote-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.quote-card blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 32px;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* Contact Page Styles */
.contact-form-wrapper {
    padding-right: 40px;
}

.contact-form-wrapper h2 {
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--gray-600);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-block {
    width: 100%;
}

.contact-social {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.contact-social h4 {
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    font-size: 1rem;
    margin-bottom: 0;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Services Detail Section */
.services-detail-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.services-detail-grid {
    display: grid;
    gap: 24px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    align-items: start;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.service-detail-content h3 {
    margin-bottom: 12px;
}

.service-detail-content > p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.service-detail-content ul {
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding: 6px 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 24px;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

/* Comparison Section */
.comparison-section {
    padding: var(--section-padding);
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.comparison-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    overflow: hidden;
    position: relative;
}

.comparison-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.comparison-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0 0 0 var(--radius);
}

.comparison-header {
    padding: 32px 24px;
    background: var(--gray-50);
    text-align: center;
}

.comparison-card.featured .comparison-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.comparison-card.featured .comparison-header h3,
.comparison-card.featured .comparison-header p {
    color: var(--white);
}

.comparison-header h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.comparison-header p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.comparison-body {
    padding: 24px;
}

.recommendation {
    background: var(--gray-50);
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.recommendation strong {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.rec-program {
    font-weight: 600;
    color: var(--primary);
}

.comparison-body > p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.comparison-cta {
    text-align: center;
}

.comparison-cta p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

/* Program Page Specific */
.program-header {
    padding-bottom: 100px;
}

.program-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

/* Solution Section */
.solution-section {
    padding: var(--section-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.step-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Client Types */
.client-types-section {
    padding: var(--section-padding);
}

.client-types-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.client-type {
    text-align: center;
    padding: 24px 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.client-type:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.client-type i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.client-type span {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Testimonial Featured */
.testimonial-featured {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.testimonial-card.large {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
}

.testimonial-card.large .testimonial-text {
    font-size: 1.5rem;
    line-height: 1.8;
}

.testimonial-card.large .testimonial-author {
    justify-content: center;
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding);
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.pricing-content {
    padding: 50px;
}

.pricing-content h2 {
    margin-bottom: 16px;
}

.pricing-content > p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--gray-700);
}

.pricing-features i {
    color: var(--accent);
}

.pricing-cta {
    padding: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.pricing-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-types-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pricing-card {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-detail-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-marker {
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding-right: 0;
    }
    
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .client-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quote-card {
        padding: 30px;
    }
    
    .quote-card blockquote {
        font-size: 1.25rem;
    }
    
    .testimonial-card.large {
        padding: 30px;
    }
    
    .testimonial-card.large .testimonial-text {
        font-size: 1.125rem;
    }
}

/* ========================================
   Enhanced Effects & Animations
======================================== */

/* Section Fade In */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glow Effects */
.glow-on-hover {
    position: relative;
}

.glow-on-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    border-radius: inherit;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.glow-on-hover:hover::before {
    opacity: 0.5;
}

/* Gradient Text Animation */
.gradient-text-animated {
    background: linear-gradient(270deg, var(--primary), var(--accent), var(--primary-light), var(--primary));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Shine Effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transform: rotate(30deg);
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

/* Card 3D Tilt Effect */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
}

/* Floating Animation (additional elements) */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scale on Hover */
.scale-on-hover {
    transition: transform 0.3s ease;
}

.scale-on-hover:hover {
    transform: scale(1.05);
}

/* Border Animation */
.animated-border {
    position: relative;
}

.animated-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary-light), var(--gold));
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    animation: borderGradient 4s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.animated-border:hover::before {
    opacity: 1;
}

@keyframes borderGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Icon Bounce */
.icon-bounce:hover i {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Text Reveal */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    animation: textReveal 0.6s ease forwards;
}

@keyframes textReveal {
    to { transform: translateY(0); }
}

/* Pulse Ring Effect */
.pulse-ring {
    position: relative;
}

.pulse-ring::before,
.pulse-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
}

.pulse-ring:hover::before {
    animation: pulseRing 1.5s ease-out infinite;
}

.pulse-ring:hover::after {
    animation: pulseRing 1.5s ease-out 0.3s infinite;
}

@keyframes pulseRing {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.5;
    }
    100% {
        width: 150%;
        height: 150%;
        opacity: 0;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

/* Gradient Underline */
.gradient-underline {
    position: relative;
    display: inline-block;
}

.gradient-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.gradient-underline:hover::after {
    transform: scaleX(1);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(124, 58, 237, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Animation */
.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease;
}

.success-checkmark i {
    color: white;
    font-size: 2rem;
    animation: checkmarkDraw 0.5s ease 0.2s forwards;
    opacity: 0;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    to { opacity: 1; }
}

/* Improved Focus States for Accessibility */
*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

/* Improved Print Styles */
@media print {
    .header,
    .footer,
    .back-to-top,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}
