        :root {
            --neon-blue: #00f2fe;
            --neon-dark-blue: #0056e0;
            --neon-purple: #8a2be2;
            --neon-pink: #ff00ff;
            --neon-cyan: #00fff7;
            --dark-bg: #0a0e23;
            --darker-bg: #050716;
            --input-bg: rgba(10, 14, 35, 0.8);
            --text-glow: 0 0 8px rgba(0, 242, 254, 0.7);
            --success-glow: 0 0 15px rgba(0, 255, 247, 0.7);
            --box-glow: 0 0 20px rgba(0, 242, 254, 0.5);
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: var(--dark-bg);
            color: #e0e0e0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 242, 254, 0.1) 0%, transparent 20%);
        }
        
        /* Animated Background Elements */
        .cyber-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(rgba(0, 242, 254, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 242, 254, 0.05) 1px, transparent 1px);
            background-size: 20px 20px;
            pointer-events: none;
            z-index: -3;
        }
        
        .holographic-effect {
            position: fixed;
            top: 50%;
            left: 50%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            z-index: -2;
            animation: hologramPulse 8s infinite alternate;
        }
        
        @keyframes hologramPulse {
            0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
            50% { opacity: 0.7; }
            100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.2); }
        }
        
        /* Header Section */
        .header {
            background: linear-gradient(90deg, var(--darker-bg), var(--dark-bg));
            color: var(--neon-blue);
            padding: 1rem;
            text-align: center;
            border-bottom: 1px solid var(--neon-purple);
            box-shadow: var(--box-glow);
            position: relative;
            z-index: 10;
            animation: headerGlow 3s infinite alternate;
        }
        
        @keyframes headerGlow {
            0% { box-shadow: 0 0 10px var(--neon-blue); }
            50% { box-shadow: 0 0 15px var(--neon-purple); }
            100% { box-shadow: 0 0 10px var(--neon-cyan); }
        }
        
        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            font-weight: 700;
            letter-spacing: 3px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
            animation: textGlow 2s ease-in-out infinite alternate;
        }
        
        @keyframes textGlow {
            0% { text-shadow: 0 0 10px var(--neon-blue); }
            50% { text-shadow: 0 0 15px var(--neon-purple); }
            100% { text-shadow: 0 0 10px var(--neon-cyan); }
        }
        
        .tagline {
            font-size: clamp(0.8rem, 3vw, 1rem);
            letter-spacing: 2px;
            color: var(--neon-blue);
            text-shadow: var(--text-glow);
        }
        
        /* Main Container */
        .container {
            flex: 1;
            max-width: 1200px;
            width: 95%;
            margin: 1.5rem auto;
            padding: 1.5rem;
            background: rgba(10, 14, 35, 0.9);
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
            box-shadow: var(--box-glow);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
            z-index: 1;
            transform-style: preserve-3d;
            perspective: 1000px;
            animation: containerEntrance 0.8s ease-out;
        }
        
        @keyframes containerEntrance {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-dark-blue), var(--neon-blue), var(--neon-purple));
            animation: borderGlow 4s linear infinite;
            z-index: -1;
        }
        
        @keyframes borderGlow {
            0% { filter: hue-rotate(0deg); opacity: 0.7; }
            50% { opacity: 1; }
            100% { filter: hue-rotate(360deg); opacity: 0.7; }
        }
        
        .scan-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
            animation: scan 3s linear infinite;
            opacity: 0.7;
            z-index: 2;
        }
        
        @keyframes scan {
            0% { top: 0; }
            100% { top: 100%; }
        }
        
        .security-seal {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 70px;
            height: 70px;
            background: radial-gradient(circle, var(--neon-blue), var(--neon-dark-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 0 25px var(--neon-blue);
            transform: rotate(15deg);
            opacity: 0.9;
            z-index: 1;
            animation: sealFloat 4s ease-in-out infinite alternate;
        }
        
        @keyframes sealFloat {
            0% { transform: rotate(15deg) translateY(0); }
            100% { transform: rotate(15deg) translateY(-10px); }
        }
        
        /* Contact Page Content */
        .contact-header {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .contact-header h1 {
            color: var(--neon-blue);
            text-shadow: var(--text-glow);
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            letter-spacing: 2px;
            font-family: 'Orbitron', sans-serif;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
        }
        
        .contact-header p {
            color: #e0e0e0;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            text-shadow: 0 0 5px rgba(0, 242, 254, 0.3);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .contact-form {
            background: rgba(7, 1, 19, 0.6);
            border: 1px solid var(--neon-blue);
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: inset 0 0 15px rgba(0, 188, 212, 0.1), 0 0 20px rgba(0, 188, 212, 0.2);
            position: relative;
            overflow: hidden;
            animation: boxFloat 6s ease-in-out infinite alternate;
        }
        
        @keyframes boxFloat {
            0% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
            100% { transform: translateY(0); }
        }
        
        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--neon-blue);
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 0.95rem;
            text-shadow: 0 0 5px var(--neon-blue);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .input-wrapper {
            position: relative;
        }
        
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem 0.8rem 2.5rem;
            background: var(--input-bg);
            border: 1px solid var(--neon-blue);
            color: white;
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.95rem;
            border-radius: 5px;
            transition: all 0.3s;
            letter-spacing: 1px;
            box-shadow: inset 0 0 8px rgba(0, 242, 254, 0.2);
            animation: inputPulse 3s infinite alternate;
        }
        
        @keyframes inputPulse {
            0% { box-shadow: inset 0 0 8px rgba(0, 242, 254, 0.2), 0 0 0 rgba(0, 242, 254, 0); }
            100% { box-shadow: inset 0 0 8px rgba(0, 242, 254, 0.2), 0 0 10px rgba(0, 242, 254, 0.3); }
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--neon-cyan);
            box-shadow: 0 0 10px var(--neon-cyan), inset 0 0 8px rgba(0, 255, 247, 0.3);
            animation: none;
        }
        
        .input-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--neon-blue);
            font-size: 1.1rem;
            animation: iconPulse 2s infinite alternate;
        }
        
        @keyframes iconPulse {
            0% { opacity: 0.7; transform: translateY(-50%) scale(1); }
            100% { opacity: 1; transform: translateY(-50%) scale(1.1); }
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
            padding: 0.8rem 1rem;
        }
        
        .submit-btn {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(135deg, var(--neon-dark-blue), var(--neon-purple));
            color: white;
            border: none;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 1px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 0.5rem;
            text-transform: uppercase;
            font-family: 'Orbitron', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(0, 86, 224, 0.7);
            border: 1px solid var(--neon-blue);
        }
        
        .submit-btn::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                transparent 45%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 55%
            );
            transform: rotate(30deg);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) rotate(30deg); }
            100% { transform: translateX(100%) rotate(30deg); }
        }
        
        .submit-btn:hover {
            background: linear-gradient(135deg, var(--neon-purple), var(--neon-dark-blue));
            box-shadow: 0 0 25px rgba(138, 43, 226, 0.9);
            transform: translateY(-2px);
        }
        
        .submit-btn:active {
            transform: translateY(1px);
        }
        
        .contact-info {
            background: rgba(7, 1, 19, 0.6);
            border: 1px solid var(--neon-blue);
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: inset 0 0 15px rgba(0, 188, 212, 0.1), 0 0 20px rgba(0, 188, 212, 0.2);
            position: relative;
            overflow: hidden;
            animation: boxFloat 6s ease-in-out infinite alternate-reverse;
        }
        
        .contact-info h2 {
            color: var(--neon-blue);
            text-shadow: var(--text-glow);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-family: 'Orbitron', sans-serif;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .info-icon {
            color: var(--neon-blue);
            font-size: 1.2rem;
            margin-right: 1rem;
            margin-top: 0.2rem;
            text-shadow: var(--text-glow);
            animation: iconPulse 2s infinite alternate;
        }
        
        .info-content h3 {
            color: var(--neon-blue);
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }
        
        .info-content p, .info-content a {
            color: #e0e0e0;
            font-size: 0.95rem;
            line-height: 1.5;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .info-content a:hover {
            color: var(--neon-cyan);
            text-shadow: var(--text-glow);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 188, 212, 0.1);
            border: 1px solid var(--neon-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-blue);
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-link:hover {
            background: var(--neon-blue);
            color: var(--dark-bg);
            transform: translateY(-3px);
            box-shadow: 0 0 15px var(--neon-blue);
        }
        
        /* Footer Section */
        .footer {
            text-align: center;
            padding: 1.2rem;
            background: linear-gradient(to top, var(--darker-bg), var(--dark-bg));
            color: var(--neon-blue);
            border-top: 1px solid var(--neon-blue);
            font-size: clamp(0.75rem, 3vw, 0.85rem);
            letter-spacing: 0.5px;
            position: relative;
        }
        
        .footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
        }
        
        /* Floating particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            background: var(--neon-blue);
            border-radius: 50%;
            filter: blur(1px);
            animation: float linear infinite;
            z-index: -1;
        }
        
        @keyframes float {
            to { transform: translateY(-100vh) translateX(20px); }
        }
        
        /* Loading Spinner */
        .loading-spinner {
            display: none;
            width: 40px;
            height: 40px;
            margin: 1rem auto;
            border: 4px solid rgba(0, 242, 254, 0.2);
            border-radius: 50%;
            border-top-color: var(--neon-blue);
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Confetti Effect */
        .confetti {
            position: fixed;
            width: 10px;
            height: 10px;
            background-color: var(--neon-blue);
            opacity: 0;
            z-index: 999;
            animation: confettiFall 3s linear forwards;
        }
        
        @keyframes confettiFall {
            0% { transform: translateY(-100px) rotate(0deg); opacity: 1; }
            100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
                margin: 1rem auto;
            }
            
            .contact-form, .contact-info {
                padding: 1.2rem;
            }
            
            .form-control {
                padding: 0.7rem 1rem 0.7rem 2.3rem;
            }
            
            .input-icon {
                left: 0.8rem;
                font-size: 1rem;
            }
            
            .social-links {
                justify-content: center;
                flex-wrap: wrap;
            }
        }
        
        @media (max-width: 480px) {
            .contact-header h1 {
                font-size: 1.4rem;
            }
            
            .info-item {
                flex-direction: column;
            }
            
            .info-icon {
                margin-bottom: 0.5rem;
                margin-right: 0;
            }
        }