 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

     :root {
    --neon-green: #fa4b8a;   /* Chartreuse */
    --dark-bg: #101010;      /* Jet Black */
    --dark-card: #1a1a1a;    /* Dark Gray Card */
    --neon-blue: #fff;    /* Deep Sky Blue */
    --neon-purple: #9b30ff;  /* Purple Violet */
    --text-gray: #d0d0d0;    /* Pale Gray */
}
        body {
            font-family: 'Courier New', monospace;
            background: var(--dark-bg);
            color: var(--text-gray);
            overflow-x: hidden;
        }

        /* Floating Header */
        header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(20, 25, 35, 0.8);
            backdrop-filter: blur(10px);
            padding: 1rem 3rem;
            border-radius: 50px;
            border: 2px solid var(--neon-green);
            box-shadow: 0 0 30px rgba(250, 75, 138, 0.3);
            z-index: 1000;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

        nav {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--neon-green);
            text-shadow: 0 0 10px var(--neon-green);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--neon-green);
            text-shadow: 0 0 10px var(--neon-green);
        }

        .menu-icon {
            display: none;
            width: 40px;
            height: 40px;
            border: 2px solid var(--neon-green);
            border-radius: 50%;
            cursor: pointer;
            position: relative;
            animation: rotate 4s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
        }

        .grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(250, 75, 138, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(250, 75, 138, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translateY(0); }
            100% { transform: translateY(50px); }
        }

        .hero-content {
            text-align: center;
            z-index: 1;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 4rem;
            color: var(--neon-green);
            text-shadow: 0 0 20px var(--neon-green), 0 0 40px var(--neon-green);
            margin-bottom: 1rem;
            animation: glitch 3s infinite;
        }

        @keyframes glitch {
            0%, 90%, 100% { transform: translateX(0); }
            92% { transform: translateX(-5px); }
            94% { transform: translateX(5px); }
            96% { transform: translateX(-5px); }
        }

        .hero p {
            font-size: 1.5rem;
            color: var(--neon-blue);
            margin-bottom: 2rem;
        }

        .neon-btn {
            background: transparent;
            border: 2px solid var(--neon-green);
            color: var(--neon-green);
            padding: 1rem 3rem;
            font-size: 1.1rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .neon-btn:hover {
            background: var(--neon-green);
            color: var(--dark-bg);
            box-shadow: 0 0 30px var(--neon-green);
        }

        /* About Section */
        .about {
            padding: 8rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 3rem;
            color: var(--neon-green);
            text-align: center;
            margin-bottom: 4rem;
            text-shadow: 0 0 20px var(--neon-green);
        }

        .about-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .about-card {
            background: var(--dark-card);
            padding: 2rem;
            border: 2px solid var(--neon-green);
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(250, 75, 138, 0.1), transparent);
            transition: left 0.5s;
        }

        .about-card:hover::before {
            left: 100%;
        }

        .about-card h3 {
            color: var(--neon-blue);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .progress-bar {
            background: rgba(250, 75, 138, 0.1);
            height: 10px;
            border-radius: 5px;
            margin-top: 1rem;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: var(--neon-green);
            box-shadow: 0 0 10px var(--neon-green);
            animation: fillProgress 2s ease-out;
        }

        @keyframes fillProgress {
            from { width: 0; }
        }

        /* Why Choose Us */
        .why-choose {
            padding: 8rem 2rem;
            background: var(--dark-card);
        }

        .circular-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .circular-item {
            position: relative;
            text-align: center;
        }

        .circle {
            width: 200px;
            height: 200px;
            margin: 0 auto 1rem;
            border: 3px solid var(--neon-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            animation: rotateCircle 10s linear infinite;
        }

        @keyframes rotateCircle {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .circle::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--neon-green);
            border-radius: 50%;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 20px var(--neon-green);
        }

        .circle-content {
            animation: counterRotate 10s linear infinite;
        }

        @keyframes counterRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(-360deg); }
        }

        .circular-item h3 {
            color: var(--neon-green);
            margin-bottom: 0.5rem;
        }

        /* Services */
        .services {
            padding: 8rem 2rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--dark-card);
            padding: 2rem;
            border: 2px solid transparent;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .service-card:hover {
            border-color: var(--neon-green);
            box-shadow: 0 0 30px rgba(250, 75, 138, 0.3);
            transform: translateY(-10px);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 10px var(--neon-green));
        }

        .service-card h3 {
            color: var(--neon-green);
            margin-bottom: 1rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 8rem 2rem;
            background: var(--dark-card);
        }

        .timeline {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--neon-green);
            box-shadow: 0 0 10px var(--neon-green);
        }

        .testimonial-item {
            margin-bottom: 4rem;
            position: relative;
            display: none;
        }

        .testimonial-item.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .testimonial-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--neon-green);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--neon-green);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.2); }
        }

        .testimonial-content {
            background: var(--dark-bg);
            padding: 2rem;
            border: 2px solid var(--neon-green);
            border-radius: 10px;
            width: 45%;
            margin-left: 55%;
        }

        .testimonial-author {
            color: var(--neon-blue);
            font-weight: bold;
            margin-top: 1rem;
        }

        .timeline-controls {
            text-align: center;
            margin-top: 2rem;
        }

        .timeline-btn {
            background: transparent;
            border: 2px solid var(--neon-green);
            color: var(--neon-green);
            padding: 0.5rem 2rem;
            margin: 0 0.5rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .timeline-btn:hover {
            background: var(--neon-green);
            color: var(--dark-bg);
        }

        /* FAQ */
        .faq {
            padding: 8rem 2rem;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 2px solid var(--neon-green);
            border-radius: 10px;
            overflow: hidden;
            background: var(--dark-card);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            color: var(--neon-green);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: rgba(250, 75, 138, 0.1);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
            color: var(--text-gray);
        }

        .faq-answer.active {
            padding: 1.5rem;
            max-height: 500px;
        }

        /* Contact Form */
        .contact {
            padding: 8rem 2rem;
            background: var(--dark-card);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--dark-bg);
            padding: 3rem;
            border: 2px solid var(--neon-green);
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(250, 75, 138, 0.2);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: var(--neon-green);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: var(--dark-card);
            border: 1px solid var(--neon-green);
            border-radius: 5px;
            color: var(--text-gray);
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            box-shadow: 0 0 15px rgba(250, 75, 138, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            padding: 3rem 2rem;
            border-top: 2px solid var(--neon-green);
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
            box-shadow: 0 0 10px var(--neon-green);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3 {
            color: var(--neon-green);
            margin-bottom: 1rem;
            text-shadow: 0 0 10px var(--neon-green);
        }

        .footer-section a {
            color: var(--text-gray);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: all 0.3s;
        }

        .footer-section a:hover {
            color: var(--neon-green);
            text-shadow: 0 0 10px var(--neon-green);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            font-size: 1.5rem;
        }

        .social-icons a {
            display: inline-block;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--dark-card);
            padding: 3rem;
            border: 3px solid var(--neon-green);
            border-radius: 10px;
            max-width: 600px;
            width: 90%;
            position: relative;
            box-shadow: 0 0 50px rgba(250, 75, 138, 0.5);
            animation: modalAppear 0.3s;
        }

        @keyframes modalAppear {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 2rem;
            cursor: pointer;
            color: var(--neon-green);
            transition: all 0.3s;
        }

        .close-modal:hover {
            transform: rotate(90deg);
        }

        .success-message {
            text-align: center;
        }

        .success-message h2 {
            color: var(--neon-green);
            font-size: 2rem;
            margin-bottom: 1rem;
            text-shadow: 0 0 20px var(--neon-green);
        }

        /* Legal Pages */
        .legal-content {
            max-height: 70vh;
            overflow-y: auto;
            padding-right: 1rem;
        }

        .legal-content::-webkit-scrollbar {
            width: 8px;
        }

        .legal-content::-webkit-scrollbar-track {
            background: var(--dark-bg);
        }

        .legal-content::-webkit-scrollbar-thumb {
            background: var(--neon-green);
            border-radius: 4px;
        }

        .legal-content h1 {
            color: var(--neon-green);
            margin-bottom: 1rem;
            text-shadow: 0 0 10px var(--neon-green);
        }

        .legal-content h2 {
            color: var(--neon-blue);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .legal-content p {
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        /* Checkbox */
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            accent-color: var(--neon-green);
        }

        /* Responsive */
        @media (max-width: 768px) {
            header {
                padding: 1rem 1.5rem;
            }

            .nav-links {
                display: none;
            }

            .menu-icon {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .testimonial-content {
                width: 90%;
                margin-left: 5%;
            }

            .timeline::before {
                left: 20px;
            }

            .testimonial-dot {
                left: 20px;
            }
        }

.contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 4rem 2rem;
    }
    .contact-info, .contact-form-col {
        background: var(--dark-card);
        padding: 2rem;
        border: 2px solid var(--neon-green);
        border-radius: 10px;
        box-shadow: 0 0 30px rgba(250, 75, 138,0.2);
    }
    .contact-info h2, .contact-form-col h2 {
        margin-bottom: 1.5rem;
        color: var(--neon-green);
    }
    .contact-info p {
        margin-bottom: 1rem;
        color: var(--text-gray);
    }
    .contact-buttons {
        margin-top: 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.9);
        z-index: 2000;
        justify-content: center;
        align-items: center;
    }
    .modal.active { display: flex; }
    .modal-content {
        background: var(--dark-card);
        padding: 2rem 3rem;
        border: 3px solid var(--neon-green);
        border-radius: 10px;
        max-width: 500px;
        width: 90%;
        box-shadow: 0 0 50px rgba(250, 75, 138,0.5);
        position: relative;
    }
    .close-modal {
        position: absolute;
        top: 1rem; right: 1rem;
        font-size: 2rem;
        cursor: pointer;
        color: var(--neon-green);
        transition: transform 0.3s;
    }
    .close-modal:hover { transform: rotate(90deg); }