        * {
            font-family: 'Poppins', sans-serif;
        }

        :root {
            --neon-pink: #ff1493;
            --neon-blue: #00bfff;
            --gradient-1: linear-gradient(135deg, #ff1493, #00bfff);
            --gradient-2: linear-gradient(135deg, #00bfff, #ff1493);
            --gradient-3: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(0, 191, 255, 0.1));
        }

        .hero-gradient {
            background: var(--gradient-1);
            background-size: 400% 400%;
            animation: gradientShift 8s ease infinite;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .glow-effect {
            box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
            transition: all 0.3s ease;
        }

        .glow-effect:hover {
            box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
            transform: translateY(-5px);
        }

        .neon-border {
            border: 2px solid transparent;
            background: linear-gradient(white, white) padding-box, var(--gradient-1) border-box;
        }

        .pulse-animation {
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .fade-in {
            animation: fadeIn 1s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .floating {
            animation: floating 4s ease-in-out infinite;
        }

        @keyframes floating {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .section-divider {
            height: 3px;
            background: var(--gradient-1);
            margin: 4rem 0;
        }

        .card-hover {
            transition: all 0.3s ease;
        }

        .card-hover:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .form-gradient {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
            backdrop-filter: blur(10px);
        }

        .btn-neon {
            background: var(--gradient-1);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
        }

        .btn-neon:hover {
            box-shadow: 0 8px 25px rgba(255, 20, 147, 0.5);
            transform: translateY(-3px);
        }

        .text-gradient {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-sticky {
            backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.9);
        }

        .progress-bar {
            height: 4px;
            background: var(--gradient-1);
            border-radius: 2px;
            margin: 1rem 0;
        }

        .image-overlay {
            position: relative;
            overflow: hidden;
        }

        .image-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(0, 191, 255, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .image-overlay:hover::before {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .hero-gradient {
                padding: 2rem 1rem;
            }

            .section-spacing {
                padding: 2rem 1rem;
            }
        }