/* Enhanced CSS with Modern Design - Revamped UI */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --secondary-dark: #7c3aed;
    --accent: rgba(15, 23, 42, 0.8);
    
    /* Text Colors */
    --text: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #cbd5e1;
    --text-light: #e2e8f0;
    
    /* Status Colors */
    --success: #10b981;
    --success-light: #34d399;
    --warning: #f59e0b;
    --warning-light: #fbbf24;
    --error: #ef4444;
    --error-light: #f87171;
    --info: #3b82f6;
    
    /* Background Colors */
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-medium: #1e293b;
    --bg-light: #334155;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-bg-hover: rgba(255, 255, 255, 0.08);
    
    /* Chat Colors */
    --chat-user: #6366f1;
    --chat-bot: rgba(15, 23, 42, 0.6);
    
    /* Border & Effects */
    --border: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.1);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.5);
    --shadow-2xl: 0 30px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 900;
    --z-modal: 1000;
    --z-popover: 1100;
    --z-tooltip: 1200;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Enhanced Header with Glassmorphism */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: var(--z-fixed);
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo .tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateX(-50%);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.1);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

/* Search Bar */
.search-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 1rem;
    position: fixed;
    padding-top: 0%;
    top: 200px;
    right: 20px;
    z-index: var(--z-fixed);
 }

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    z-index: 1;
}

.search-input {
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-size: 0.9rem;
    width: 200px;
    transition: all var(--transition-base);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    width: 250px;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-suggestions.show {
    display: block;
}

.search-suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-bottom: 1px solid var(--border);
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
}

.search-results-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: all var(--transition-base);
}

.mobile-menu-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: rotate(90deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: var(--z-dropdown);
    animation: slideDown 0.3s ease;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.mobile-menu.active {
    display: block;
    max-height: 500px;
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    transition: all var(--transition-base);
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-nav-link:hover {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(8px);
}

/* Hero Section with Advanced Gradients */
.hero {
    margin-top: 73px;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #02071f 0%, #220242 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(50px, 50px) rotate(10deg);
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: floatIcon 6s ease-in-out infinite;
}

.floating-icon i {
    animation: pulseIcon 3s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.icon-3 {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.icon-4 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.icon-5 {
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.icon-6 {
    top: 80%;
    right: 25%;
    animation-delay: 5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Enhanced Typing Effect with Neon Glow */
.typing-text {
            font-size: clamp(2rem, 8vw, 3.5rem);
            background: linear-gradient(
                135deg, 
                #ff0080 0%,
                #ff8c00 15%,
                #ffed00 30%,
                #f1da09 45%,
                #00d4ff 60%,
                #acaf03 75%,
                #ff0080 90%,
                #ff8c00 100%
            );
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: 
                rainbowFlow 4s ease-in-out infinite,
                pulseGlow 2s ease-in-out infinite alternate,
                floatText 3s ease-in-out infinite;
            font-weight: 900;
            letter-spacing: 0.15em;
            position: relative;
            display: inline-block;
            filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.5))
                    drop-shadow(0 0 40px rgba(0, 212, 255, 0.4))
                    drop-shadow(0 0 60px rgba(168, 85, 247, 0.3));
            text-transform: uppercase;
            padding: 0.5em;
        }

        .typing-text::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            background: linear-gradient(
                135deg, 
                #ff0080 0%,
                #ff8c00 15%,
                #ffed00 30%,
                #00ff88 45%,
                #00d4ff 60%,
                #a855f7 75%,
                #ff0080 90%,
                #ff8c00 100%
            );
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: blur(15px);
            opacity: 0.8;
            animation: rainbowFlow 4s ease-in-out infinite;
        }

        .typing-text::after {
            content: '';
            position: absolute;
            top: 10%;
            right: -0.15em;
            width: 0.08em;
            height: 80%;
            background: linear-gradient(
                180deg,
                #ff0080 0%,
                #00d4ff 50%,
                #ffed00 100%
            );
            animation: 
                cursorPulse 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite,
                cursorRainbow 3s linear infinite;
            border-radius: 0.02em;
            box-shadow: 
                0 0 15px currentColor,
                0 0 30px currentColor,
                0 0 45px currentColor;
        }

        .glow-orbs {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            animation: floatOrb 8s ease-in-out infinite;
        }

        .orb-1 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, #ff0080, transparent);
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, #00d4ff, transparent);
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .orb-3 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, #ffed00, transparent);
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes rainbowFlow {
            0%, 100% { 
                background-position: 0% 50%;
            }
            50% { 
                background-position: 100% 50%;
            }
        }

        @keyframes pulseGlow {
            0% {
                filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.5))
                        drop-shadow(0 0 40px rgba(0, 212, 255, 0.4))
                        drop-shadow(0 0 60px rgba(168, 85, 247, 0.3));
                transform: scale(1);
            }
            100% {
                filter: drop-shadow(0 0 35px rgba(255, 0, 128, 0.8))
                        drop-shadow(0 0 70px rgba(0, 212, 255, 0.6))
                        drop-shadow(0 0 100px rgba(168, 85, 247, 0.5));
                transform: scale(1.03);
            }
        }

        @keyframes floatText {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-10px) rotate(0.5deg);
            }
            75% {
                transform: translateY(-5px) rotate(-0.5deg);
            }
        }

        @keyframes cursorPulse {
            0%, 100% {
                opacity: 1;
                transform: scaleY(1) scaleX(1);
            }
            50% {
                opacity: 0.2;
                transform: scaleY(0.7) scaleX(1.5);
            }
        }

        @keyframes cursorRainbow {
            0%, 100% { 
                filter: hue-rotate(0deg) brightness(1.5);
            }
            50% { 
                filter: hue-rotate(360deg) brightness(2);
            }
        }

        @keyframes floatOrb {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.4;
            }
            33% {
                transform: translate(50px, -30px) scale(1.1);
                opacity: 0.5;
            }
            66% {
                transform: translate(-30px, 40px) scale(0.9);
                opacity: 0.3;
            }
        }

        @media (max-width: 768px) {
            .typing-text {
                font-size: clamp(1.5rem, 10vw, 3rem);
                letter-spacing: 0.1em;
            }
        }

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-badge img {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8))
            drop-shadow(0 0 16px rgba(255, 215, 0, 0.6))
            drop-shadow(0 0 24px rgba(255, 215, 0, 0.4));
    transition: all 0.3s ease;
    border-radius: 4px;
    background: rgba(240, 236, 236, 0.986);
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trust-badge:hover img {
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 1))
            drop-shadow(0 0 24px rgba(255, 215, 0, 0.8))
            drop-shadow(0 0 36px rgba(255, 215, 0, 0.6))
            brightness(1.2);
    transform: scale(1.1);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.trust-badge img {
    height: 24px;
    width: auto;
}

.trust-badge i {
    color: var(--warning-light);
    font-size: 1.2rem;
}

.trust-badge span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Interactive Graphic Box */
.graphic-slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.graphic-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.graphic-slide.active {
    opacity: 1;
}

.graphic-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Fireworks Crackers */
.fireworks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cracker {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
    opacity: 0;
}

.cracker-1 {
    top: 20%;
    left: 15%;
    animation: explode 60s infinite;
    animation-delay: 0s;
}

.cracker-2 {
    top: 35%;
    left: 70%;
    animation: explode 60s infinite;
    animation-delay: 10s;
}

.cracker-3 {
    top: 60%;
    left: 25%;
    animation: explode 60s infinite;
    animation-delay: 20s;
}

.cracker-4 {
    top: 45%;
    left: 85%;
    animation: explode 60s infinite;
    animation-delay: 30s;
}

.cracker-5 {
    top: 75%;
    left: 50%;
    animation: explode 60s infinite;
    animation-delay: 40s;
}

.cracker-6 {
    top: 25%;
    left: 45%;
    animation: explode 60s infinite;
    animation-delay: 50s;
}

.particles {
    position: relative;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    animation: burst 2s ease-out forwards;
}

.particle.white {
    background: #ffffff;
    box-shadow: 0 0 6px #ffffff;
}

.particle.golden {
    background: #FFD700;
    box-shadow: 0 0 6px #FFD700;
}

.particle.red {
    background: #FF0000;
    box-shadow: 0 0 6px #FF0000;
}

/* Individual particle animations */
.cracker-1 .particle:nth-child(1) { animation-delay: 0.1s; transform-origin: center; }
.cracker-1 .particle:nth-child(2) { animation-delay: 0.2s; transform-origin: center; }
.cracker-1 .particle:nth-child(3) { animation-delay: 0.3s; transform-origin: center; }
.cracker-1 .particle:nth-child(4) { animation-delay: 0.4s; transform-origin: center; }
.cracker-1 .particle:nth-child(5) { animation-delay: 0.5s; transform-origin: center; }
.cracker-1 .particle:nth-child(6) { animation-delay: 0.6s; transform-origin: center; }
.cracker-1 .particle:nth-child(7) { animation-delay: 0.7s; transform-origin: center; }
.cracker-1 .particle:nth-child(8) { animation-delay: 0.8s; transform-origin: center; }
.cracker-1 .particle:nth-child(9) { animation-delay: 0.9s; transform-origin: center; }
.cracker-1 .particle:nth-child(10) { animation-delay: 1.0s; transform-origin: center; }
.cracker-1 .particle:nth-child(11) { animation-delay: 1.1s; transform-origin: center; }
.cracker-1 .particle:nth-child(12) { animation-delay: 1.2s; transform-origin: center; }

.cracker-2 .particle:nth-child(1) { animation-delay: 0.1s; }
.cracker-2 .particle:nth-child(2) { animation-delay: 0.2s; }
.cracker-2 .particle:nth-child(3) { animation-delay: 0.3s; }
.cracker-2 .particle:nth-child(4) { animation-delay: 0.4s; }
.cracker-2 .particle:nth-child(5) { animation-delay: 0.5s; }
.cracker-2 .particle:nth-child(6) { animation-delay: 0.6s; }
.cracker-2 .particle:nth-child(7) { animation-delay: 0.7s; }
.cracker-2 .particle:nth-child(8) { animation-delay: 0.8s; }
.cracker-2 .particle:nth-child(9) { animation-delay: 0.9s; }
.cracker-2 .particle:nth-child(10) { animation-delay: 1.0s; }
.cracker-2 .particle:nth-child(11) { animation-delay: 1.1s; }
.cracker-2 .particle:nth-child(12) { animation-delay: 1.2s; }

.cracker-3 .particle:nth-child(1) { animation-delay: 0.1s; }
.cracker-3 .particle:nth-child(2) { animation-delay: 0.2s; }
.cracker-3 .particle:nth-child(3) { animation-delay: 0.3s; }
.cracker-3 .particle:nth-child(4) { animation-delay: 0.4s; }
.cracker-3 .particle:nth-child(5) { animation-delay: 0.5s; }
.cracker-3 .particle:nth-child(6) { animation-delay: 0.6s; }
.cracker-3 .particle:nth-child(7) { animation-delay: 0.7s; }
.cracker-3 .particle:nth-child(8) { animation-delay: 0.8s; }
.cracker-3 .particle:nth-child(9) { animation-delay: 0.9s; }
.cracker-3 .particle:nth-child(10) { animation-delay: 1.0s; }
.cracker-3 .particle:nth-child(11) { animation-delay: 1.1s; }
.cracker-3 .particle:nth-child(12) { animation-delay: 1.2s; }

.cracker-4 .particle:nth-child(1) { animation-delay: 0.1s; }
.cracker-4 .particle:nth-child(2) { animation-delay: 0.2s; }
.cracker-4 .particle:nth-child(3) { animation-delay: 0.3s; }
.cracker-4 .particle:nth-child(4) { animation-delay: 0.4s; }
.cracker-4 .particle:nth-child(5) { animation-delay: 0.5s; }
.cracker-4 .particle:nth-child(6) { animation-delay: 0.6s; }
.cracker-4 .particle:nth-child(7) { animation-delay: 0.7s; }
.cracker-4 .particle:nth-child(8) { animation-delay: 0.8s; }
.cracker-4 .particle:nth-child(9) { animation-delay: 0.9s; }
.cracker-4 .particle:nth-child(10) { animation-delay: 1.0s; }
.cracker-4 .particle:nth-child(11) { animation-delay: 1.1s; }
.cracker-4 .particle:nth-child(12) { animation-delay: 1.2s; }

.cracker-5 .particle:nth-child(1) { animation-delay: 0.1s; }
.cracker-5 .particle:nth-child(2) { animation-delay: 0.2s; }
.cracker-5 .particle:nth-child(3) { animation-delay: 0.3s; }
.cracker-5 .particle:nth-child(4) { animation-delay: 0.4s; }
.cracker-5 .particle:nth-child(5) { animation-delay: 0.5s; }
.cracker-5 .particle:nth-child(6) { animation-delay: 0.6s; }
.cracker-5 .particle:nth-child(7) { animation-delay: 0.7s; }
.cracker-5 .particle:nth-child(8) { animation-delay: 0.8s; }
.cracker-5 .particle:nth-child(9) { animation-delay: 0.9s; }
.cracker-5 .particle:nth-child(10) { animation-delay: 1.0s; }
.cracker-5 .particle:nth-child(11) { animation-delay: 1.1s; }
.cracker-5 .particle:nth-child(12) { animation-delay: 1.2s; }

.cracker-6 .particle:nth-child(1) { animation-delay: 0.1s; }
.cracker-6 .particle:nth-child(2) { animation-delay: 0.2s; }
.cracker-6 .particle:nth-child(3) { animation-delay: 0.3s; }
.cracker-6 .particle:nth-child(4) { animation-delay: 0.4s; }
.cracker-6 .particle:nth-child(5) { animation-delay: 0.5s; }
.cracker-6 .particle:nth-child(6) { animation-delay: 0.6s; }
.cracker-6 .particle:nth-child(7) { animation-delay: 0.7s; }
.cracker-6 .particle:nth-child(8) { animation-delay: 0.8s; }
.cracker-6 .particle:nth-child(9) { animation-delay: 0.9s; }
.cracker-6 .particle:nth-child(10) { animation-delay: 1.0s; }
.cracker-6 .particle:nth-child(11) { animation-delay: 1.1s; }
.cracker-6 .particle:nth-child(12) { animation-delay: 1.2s; }

@keyframes explode {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    1% {
        opacity: 1;
        transform: scale(1);
    }
    2% {
        opacity: 1;
        transform: scale(1.2);
    }
    3% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

@keyframes burst {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx, 100px), var(--ty, 100px)) scale(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(8px);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.5), 0 0 60px rgba(255, 255, 255, 0.3);
    }
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: var(--z-base);
}

.hero-title-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero-buttons-section {
    display: flex;
    justify-content: center;
}

.hero-text {
    color: rgb(239, 243, 8);
    animation: fadeInUp 0.8s ease;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--warning-light), var(--warning));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.graphic-box {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all var(--transition-slow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.graphic-box:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.graphic-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.graphic-box:hover img {
    transform: scale(1.1);
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.beta-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--warning), var(--error));
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-light:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

/* Stats Section with Counters */
.stats {
    padding: 80px 0;
    background: var(--bg-medium);
}

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

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--card-bg-hover);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-base);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.5);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Products Section */
.featured-products {
    padding: 100px 0;
    background: var(--accent);
}

.view-all {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.products-filter {
    padding: 2rem 0;
    background: transparent;
    margin-bottom: 2rem;
}

.filter-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border);
    background: var(--card-bg);
    color: var(--text);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--text);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition-base);
    font-weight: 500;
    min-width: 40px;
    text-align: center;
}

.pagination-btn:hover:not(.disabled) {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.pagination-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--card-bg);
    color: var(--text-muted);
}

.pagination-dots {
    padding: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.product-card {
    background: var(--bg-medium);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    position: relative;
    height: 140px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
}

.product-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.product-content {
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
    line-height: 1.3;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--warning-light), var(--warning));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.product-rating i {
    color: var(--warning-light);
    font-size: 0.9rem;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.85rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

/* Projects Section */
.featured-projects {
    padding: 100px 0;
    background: var(--bg-medium);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.project-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.project-card:hover::before {
    opacity: 1;
}

.project-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary-light);
    transition: all var(--transition-base);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-content {
    padding: 2rem;
    position: relative;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.3;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-meta i {
    color: var(--primary-light);
}

.project-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.project-results {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.project-results-title {
    font-weight: 700;
    color: var(--success-light);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-results-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

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

.service-card:hover::after {
    opacity: 1;
}


.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.service-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Enhanced Testimonials */
.testimonials {
    padding: 100px 0;
    background: #1a202c;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

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

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
    text-align: center;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
    text-align: center;
    font-size: 1.1rem;
}

.testimonial-position {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
}

/* Client Logos Marquee */
.clients-marquee {
    margin-top: 3rem;
    padding: 2rem 0;
    background: rgba(38, 36, 56, 0.733);
    border-radius: var(--radius-lg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 2rem;
    overflow: hidden;
    position: relative;
    
}

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

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

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

.marquee-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: scroll-left 30s linear infinite;
    width: calc(200px * 30); /* Adjust based on number of logos */
}

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

.client-logo {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    
    opacity: 0.9;
    animation: scroll-left 30s linear infinite;
}

.client-logo:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
    opacity: 1;
    box-shadow: var(--shadow-lg);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: var(--accent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    border-color: var(--primary);
    background: rgba(67, 29, 110, 0.247);
}

.feature i {
    color: var(--primary);
    font-size: 1.75rem;
    min-width: 40px;
}

.feature span {
    font-weight: 600;
    color: var(--text);
    font-size: 1.1rem;
}

.graphic-container {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--primary);
    border: 2px dashed var(--border);
    transition: all 0.3s ease;
}

.graphic-container:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}
.graphic-container img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    border-radius: var(--radius-xl);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.graphic-container:hover img {
    transform: scale(1.1);
}

/* CTA Section */
/* Enhanced CTA Section Styles */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent), 100%, var(--secondary) 1%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Enhanced CTA Header */
.cta-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cta .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: unset;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.cta .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-badge i {
    color: #fbbf24;
    animation: pulse 2s infinite;
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 1rem 1.5rem;
    
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent), var(--secondary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-method:hover::before {
    transform: scaleX(1);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(21, 214, 47, 0.3);
}

.contact-method h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.method-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    width: 100%;
    justify-content: center;
}

.method-btn:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:hover {
    background: #25D366;
    color: white;
}

.location-btn {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.5);
}

.location-btn:hover {
    background: #fbbf24;
    color: var(--text-dark);
}

.method-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Enhanced Contact Form */
.cta-form-section {
    background: rgba(255, 255, 255, 0.1);
    
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    justify-content: center;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.quote-form {
    max-width: 100%;
    
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

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

.form-actions .btn {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.form-note i {
    color: #fbbf24;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(67, 29, 110, 0.247);
    transform: translateY(-2px);
}

.trust-item i {
    font-size: 1.5rem;
    color: #fbbf24;
}

.trust-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Enhanced Location Section */
.location-section {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.location-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.location-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.location-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.info-item i {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-top: 0.25rem;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item span {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.location-info .btn {
    align-self: flex-start;
    margin-top: 1rem;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .cta .section-title {
        font-size: 2.5rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-form-section,
    .location-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .cta .section-title {
        font-size: 2rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .location-info .btn {
        align-self: stretch;
    }
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-section ul li:hover {
    color: white;
}

.footer-section ul li a {
    color: inherit;
    text-decoration: none;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* REVAMPED: Enhanced Chatbot */
.chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 400px;
    height: 600px;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    z-index: 1000;
    border: 1px solid var(--border);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.chatbot.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    animation: slideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.chatbot-title i {
    font-size: 1.5rem;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.chatbot-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #1a202c;
}

/* Enhanced Scrollbar */
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Enhanced Message Styles */
.message {
    max-width: 85%;
    animation: messageSlide 0.3s ease;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.user-message .message-avatar {
    background: linear-gradient(135deg, var(--success), #1a202c);
}

.message-content {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.bot-message .message-content {
    background: var(--card-bg);
    color: var(--text);
    border: 1px solid var(--border);
    border-top-left-radius: 4px;
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #1a202c;
    border-top-right-radius: 4px;
}

/* REVAMPED: Quick Action Buttons */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1rem 0;
}

.quick-action-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Enhanced Product Categories in Chat */
.product-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1rem 0;
}

.category-btn {
    background: #1a202c;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
}

.category-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Enhanced Product Cards in Chat */
.product-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.product-card-chat {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: all 0.3s ease;
}

.product-card-chat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.product-image-chat {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    overflow: hidden;
}

.product-image-chat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.product-info-chat {
    flex: 1;
}

.product-name-chat {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.product-price-chat {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Enhanced Contact Card in Chat */
.contact-card {
    margin: 1rem 0;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #0ea5e9;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.contact-card h4 {
    color: #0c4a6e;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin-bottom: 0.75rem;
    color: #374151;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-details strong {
    color: #1f2937;
    font-weight: 600;
    min-width: 70px;
}

.contact-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-btn {
    flex: 1;
    min-width: 120px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

/* Enhanced Chatbot Contact & Location Cards 
.contact-card {
    margin: 1rem 0;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #0ea5e9;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.contact-card h4 {
    color: #0c4a6e;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin-bottom: 0.75rem;
    color: #374151;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
}

.contact-details strong {
    color: #1f2937;
    font-weight: 600;
    min-width: 120px;
}

.contact-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-btn {
    flex: 1;
    min-width: 100px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

/* Chatbot Location Card Styles 
.location-card {
    margin: 1rem 0;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #22c55e;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.location-card h4 {
    color: #166534;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-card > p {
    color: #374151;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.location-details {
    margin-bottom: 1.5rem;
}

.location-details p {
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
}

.location-details strong {
    color: #1f2937;
    font-weight: 600;
    min-width: 100px;
}

.map-preview {
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #64748b;
    font-weight: 600;
}

.map-placeholder i {
    font-size: 2rem;
    color: #22c55e;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    width: 100%;
    justify-content: center;
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* Responsive adjustments for chatbot cards 
@media (max-width: 768px) {
    .contact-actions {
        flex-direction: column;
    }
    
    .contact-btn {
        min-width: auto;
    }
    
    .contact-details p,
    .location-details p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .contact-details strong,
    .location-details strong {
        min-width: auto;
    }
} */

/* Enhanced Quote Form in Chat */
.quote-form {
    margin: 1rem 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-form-fields input,
.quote-form-fields select,
.quote-form-fields textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    background: var(--accent);
    transition: all 0.3s ease;
    font-family: inherit;
}

.quote-form-fields input:focus,
.quote-form-fields select:focus,
.quote-form-fields textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: white;
}

.quote-form-fields textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-quote-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    margin-top: 0.5rem;
}

.submit-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Enhanced Chat Input */
.chatbot-input {
    padding: 1.5rem;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    background: var(--accent);
    transition: all 0.3s ease;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: white;
}

.chatbot-send {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.chatbot-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Enhanced Chat Toggle Button */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse 2s infinite;
}

.chatbot-toggle:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(99, 102, 241, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .chatbot {
        width: calc(100vw - 40px);
        height: 70vh;
        right: 20px;
        bottom: 20px;
    }
    
    .quick-actions,
    .product-categories {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-content,
    .project-content {
        padding: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .services-page,
    .projects-page {
        padding: 100px 0 60px;
    }

    .page-header {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: var(--radius);
    }

    .service-page-icon {
        height: 150px;
        font-size: 3rem;
    }

    .project-page-image {
        height: 150px;
        font-size: 2.5rem;
    }

    .service-page-content,
    .project-page-content {
        padding: 1.25rem;
    }
}

/* Individual Pages Styles */

/* Services Page */
.services-page {
    padding: 120px 0 80px;
    background: var(--accent);
    min-height: 100vh;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-page-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    position: relative;
}

.service-page-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.service-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.service-page-icon {
    height: 180px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-page-card:hover .service-page-icon {
    transform: scale(1.1);
}

.service-page-content {
    padding: 2rem;
}

.service-page-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.3;
}

.service-page-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.service-page-meta {
    margin-bottom: 1.5rem;
}

.service-page-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
}

.service-page-card .btn {
    width: 100%;
    justify-content: center;
}

/* Projects Page */
.projects-page {
    padding: 120px 0 80px;
    background: white;
    min-height: 100vh;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.project-page-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    position: relative;
}

.project-page-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.project-page-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.project-page-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-page-content {
    padding: 2rem;
}

.project-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.3;
}

.project-page-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.project-page-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.project-page-meta i {
    color: var(--primary);
    font-size: 1rem;
}

.project-page-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.project-page-results {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.project-page-results-title {
    font-weight: 700;
    color: var(--success);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-page-results-title::before {
    content: '📊';
}

.project-page-results-text {
    color: #166534;
    font-size: 0.95rem;
    line-height: 1.5;
}

.project-page-card .btn {
    width: 100%;
    justify-content: center;
}

/* Enhanced Page Headers for Individual Pages */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: var(--radius-xl);
    margin-top: -40px;
    margin-left: -20px;
    margin-right: -20px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Responsive Design for Individual Pages */
@media (max-width: 768px) {
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-page-card,
    .project-page-card {
        margin: 0 1rem;
    }

    .service-page-content,
    .project-page-content {
        padding: 1.5rem;
    }

    .service-page-title,
    .project-page-title {
        font-size: 1.2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .project-page-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Carousel Navigation Styles */
.carousel-nav {
    position: absolute;
    
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.carousel-nav:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: -25px;
    position: static;
}

.carousel-next {
    right: -25px;
    position:static;
}

.carousel-nav i {
    transition: transform var(--transition-fast);
}

.carousel-nav:hover i {
    transform: scale(1.1);
}

.carousel-prev:hover i {
    transform: translateX(-2px) scale(1.1);
}

.carousel-next:hover i {
    transform: translateX(2px) scale(1.1);
}

/* Responsive Carousel Navigation */
@media (max-width: 768px) {
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: -20px;
    }

    .carousel-next {
        right: -20px;
    }
}
