
        :root {
            --primary: #0A0A0A;
            --secondary: #1F2937;
            --accent: #FFD700;
            --accent-light: #D4AF37;
            --highlight: #00F7EF;
            --highlight-secondary: #6C63FF;
            --text: #e6f1ff;
            --text-light: #ccd6f6;
            --transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
            cursor: none;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(255, 215, 0, 0.3);
            border: 1px solid var(--accent);
            transform: translate(-50%, -50%);
            pointer-events: none;
            mix-blend-mode: screen;
            z-index: 9999;
            transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
        }

        .cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 247, 239, 0.1);
            border: 1px solid var(--highlight);
            transform: translate(-50%, -50%);
            pointer-events: none;
            mix-blend-mode: screen;
            z-index: 9998;
            transition: transform 0.4s ease, width 0.4s ease, height 0.4s ease;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background-color: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        header.scrolled {
            padding: 1rem 5%;
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
        }

        .logo {
            height: 50px;
            transition: var(--transition);
            position: relative;
        }

        .logo img {
            height: 100%;
            filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--highlight));
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }

        .logo:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Navigation */
        .nav-desktop {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }

        .nav-desktop a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: var(--transition);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .nav-desktop a:hover {
            color: var(--accent);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--highlight));
            transition: var(--transition);
        }

        .nav-desktop a:hover::after {
            width: 100%;
        }

        /* Mobile Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
            z-index: 1001;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--accent);
            border-radius: 3px;
            transition: var(--transition);
            transform-origin: left center;
            box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translateY(-2px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translateY(2px);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: 100vh;
            background-color: var(--secondary);
            z-index: 1000;
            padding: 6rem 2rem;
            transition: var(--transition);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
            border-left: 2px solid var(--accent);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav a {
            display: block;
            color: var(--text-light);
            text-decoration: none;
            padding: 1rem 0;
            font-size: 1.2rem;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
            transition: var(--transition);
        }

        .mobile-nav a:hover {
            color: var(--accent);
            padding-left: 1rem;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            padding: 15% 5% 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary) 0%, #1a1a2e 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            z-index: 0;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, var(--text), var(--accent-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--highlight));
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.6s ease;
        }

        .hero h1:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 2.5rem;
            color: var(--text-light);
            position: relative;
        }

        .hero p::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), transparent);
        }

        .rotating-words {
            display: inline-block;
            position: relative;
            height: 1.2em;
            overflow: hidden;
        }

        .rotating-words span {
            display: block;
            position: absolute;
            white-space: nowrap;
            left: 0;
            top: 0;
            opacity: 0;
            transform: translateY(100%);
            animation: rotateWords 12s linear infinite 0s;
            color: var(--accent);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .rotating-words span:nth-child(2) {
            animation-delay: 3s;
        }
        .rotating-words span:nth-child(3) {
            animation-delay: 6s;
        }
        .rotating-words span:nth-child(4) {
            animation-delay: 9s;
        }

        @keyframes rotateWords {
            0% {
                opacity: 0;
                transform: translateY(100%);
            }
            5% {
                opacity: 1;
                transform: translateY(0);
            }
            20% {
                opacity: 1;
                transform: translateY(0);
            }
            25% {
                opacity: 0;
                transform: translateY(-100%);
            }
            100% {
                opacity: 0;
                transform: translateY(-100%);
            }
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, var(--accent), var(--accent-light));
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: var(--transition);
            box-shadow: 0 10px 20px -5px rgba(255, 215, 0, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: none;
            cursor: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--highlight), var(--highlight-secondary));
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px -5px rgba(255, 215, 0, 0.6);
            color: var(--text);
        }

        .cta-button:hover::before {
            opacity: 1;
        }

        .cta-button.pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
            }
        }

        /* Particle Canvas */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }

        /* Services Section */
        .section {
            padding: 6rem 5%;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--accent);
            display: inline-block;
            position: relative;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        .section-title h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--accent), transparent);
            margin: 1rem auto 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background-color: var(--secondary);
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
            border: 1px solid rgba(255, 215, 0, 0.1);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px -10px rgba(255, 215, 0, 0.2);
            border-color: rgba(255, 215, 0, 0.3);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card .card-front {
            padding: 2rem;
            cursor: pointer;
        }

        .service-card .card-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
            transition: var(--transition);
        }

        .service-card:hover .card-icon {
            transform: scale(1.1);
            color: var(--highlight);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text);
            position: relative;
            display: inline-block;
        }

        .service-card h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--highlight));
            transition: var(--transition);
        }

        .service-card:hover h3::after {
            width: 100%;
        }

        .service-card .card-front p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .service-card .learn-more {
            color: var(--accent);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .service-card .learn-more i {
            transition: var(--transition);
        }

        .service-card:hover .learn-more {
            color: var(--highlight);
            text-shadow: 0 0 10px rgba(0, 247, 239, 0.3);
        }

        .service-card:hover .learn-more i {
            transform: translateX(5px);
            color: var(--highlight);
        }

        .service-card .card-back {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 2rem;
            background-color: var(--secondary);
            transform: rotateY(180deg);
            backface-visibility: hidden;
            transition: var(--transition);
            opacity: 0;
            overflow-y: auto;
            border: 1px solid var(--accent);
        }

        .service-card.flipped .card-front {
            transform: rotateY(180deg);
            opacity: 0;
        }

        .service-card.flipped .card-back {
            transform: rotateY(0deg);
            opacity: 1;
        }

        .service-card .card-back h3 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .service-card .card-back .close-btn {
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .service-card .card-back .close-btn:hover {
            color: var(--accent);
            transform: rotate(90deg);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .service-card .card-back ul {
            list-style-type: none;
        }

        .service-card .card-back ul li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.8rem;
            color: var(--text-light);
        }

        .service-card .card-back ul li::before {
            content: '▹';
            position: absolute;
            left: 0;
            color: var(--accent);
        }

       
/* Testimonials Section */
.testimonials {
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-slide {
    background-color: rgba(10, 10, 10, 0.7);
    padding: 2.5rem;
    border-radius: 10px;
    margin: 0 1rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
    text-align: left;
}

.testimonial-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px -10px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.testimonial-slide .quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    position: relative;
    line-height: 1.8;
}

.testimonial-slide .quote::before,
.testimonial-slide .quote::after {
    content: '"';
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.5;
    position: absolute;
}

.testimonial-slide .quote::before {
    top: -1rem;
    left: -1.5rem;
}

.testimonial-slide .quote::after {
    bottom: -2rem;
    right: -1.5rem;
}

.testimonial-slide .author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-slide .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    transition: var(--transition);
}

.testimonial-slide:hover .author img {
    border-color: var(--highlight);
    box-shadow: 0 0 10px rgba(0, 247, 239, 0.3);
}

.testimonial-slide .author-info h4 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.testimonial-slide .author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}



/* Testimonial Slider Container */
.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: hidden; /* Add this to prevent horizontal scroll */
}

/* Testimonial Slide */
.testimonial-slide {
    background-color: rgba(10, 10, 10, 0.7);
    padding: 2.5rem;
    border-radius: 10px;
    margin: 0 15px; /* Add some margin between slides */
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
    outline: none; /* Remove focus outline */
}

/* Slick slider dots customization */
.slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 30px;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--accent);
    opacity: 1;
}





/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonial-slide {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .testimonial-slide .quote {
        font-size: 1rem;
    }
    
    .testimonial-slide .quote::before,
    .testimonial-slide .quote::after {
        font-size: 1.5rem;
    }
    
    .testimonial-slide .quote::before {
        top: -0.5rem;
        left: -1rem;
    }
    
    .testimonial-slide .quote::after {
        bottom: -1.5rem;
        right: -1rem;
    }
}




        /* CTA Section */
        .cta-section {
            text-align: center;
            background: linear-gradient(135deg, var(--primary) 0%, #1a1a2e 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,215,0,0.05)" d="M0,100 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
            background-size: 100% 100%;
            z-index: 0;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--text);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: var(--text-light);
        }

        /* Stats Counter */
        .stats-container {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Footer */
        footer {
            background-color: var(--secondary);
            padding: 4rem 5% 2rem;
            position: relative;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-logo {
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            height: 50px;
            filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
        }

        .footer-about p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 215, 0, 0.1);
            color: var(--accent);
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--accent);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .footer-links h3 {
            font-size: 1.2rem;
            color: var(--text);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-links ul {
            list-style-type: none;
        }

        .footer-links ul li {
            margin-bottom: 0.8rem;
        }

        .footer-links ul li a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .footer-contact i {
            color: var(--accent);
            margin-top: 3px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 215, 0, 0.1);
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Award Badge */
        .award-badge {
            position: absolute;
            top: -20px;
            right: 20px;
            background: linear-gradient(45deg, var(--accent), var(--accent-light));
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            animation: float 4s ease-in-out infinite;
            z-index: 2;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--accent), var(--accent-light));
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: none;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
            background: linear-gradient(45deg, var(--highlight), var(--highlight-secondary));
        }

        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0);
            }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        /* Neon Glow Animation */
        @keyframes neonGlow {
            0%, 100% {
                text-shadow: 0 0 5px var(--accent), 0 0 10px var(--accent), 0 0 20px var(--accent);
            }
            50% {
                text-shadow: 0 0 10px var(--highlight), 0 0 20px var(--highlight), 0 0 30px var(--highlight);
            }
        }

        .neon {
            animation: neonGlow 3s ease-in-out infinite alternate;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero {
                padding-top: 25%;
            }
            
            .section {
                padding: 4rem 5%;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .service-card .card-back {
                padding: 1.5rem;
            }
            
            .testimonial-slide {
                padding: 1.5rem;
            }
            
            .stats-container {
                gap: 1.5rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }

        /* Canvas Wave Animation */
        .canvas-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            z-index: 1;
        }
    