        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a1a;
            color: #ffffff;
            overflow-x: hidden;
            padding-top: 80px; /* Account for fixed navbar */
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 25%, #000066 50%, #003333 75%, #0a0a0a 100%);
            z-index: -2;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 25%, #000066 50%, #003333 75%, #0a0a0a 100%); }
            50% { background: linear-gradient(135deg, #1a0033 0%, #000066 25%, #003333 50%, #0a0a0a 75%, #1a0033 100%); }
        }

        /* Particle System */
        .particle-system {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            border-radius: 50%;
            opacity: 0.6;
            animation: float 8s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Geometric Shapes */
        .geometric-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: drift 12s infinite ease-in-out;
        }

        @keyframes drift {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

.navbar {
    position: fixed; /* Changed from relative to fixed */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 26, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.1);
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    z-index: 21;
}

.logo-img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    transition: filter 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.8));
}

.nav-link {
    text-decoration: none;
    color: #00ffff;
    font-size: 1.1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-link:hover {
    color: #ff00ff;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}

/* Desktop navigation */
.desktop-nav {
    display: flex;
    gap: 3rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    cursor: pointer;
    background: transparent;
    border: none;
    margin-left: auto;
    z-index: 50;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: linear-gradient(45deg,#ff00ff,#00ffff);
    margin: 4px 0;
    border-radius: 3px;
    transition: transform 0.28s cubic-bezier(.2,.9,.2,1), opacity 0.2s;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background: #ff006e;
}

.hamburger.active span:nth-child(2) { 
    opacity: 0; 
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background: #ff006e;
}

/* Mobile Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-left: 2px solid rgba(0, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -10px 0 30px rgba(0, 255, 255, 0.1);
}

.nav-menu.active {
    right: 0;
}

.nav-menu .nav-link {
    color: #00ffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
       pointer-events: all; 
}

.nav-menu .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    transition: left 0.4s ease;
    z-index: -1;
}

.nav-menu .nav-link:hover {
    color: #ff00ff;
    border-color: rgba(255, 0, 255, 0.5);
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    transform: translateY(-2px);
}

.nav-menu .nav-link:hover::before {
    left: 0;
}

/* Mobile overlay */
body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
        pointer-events: all; 
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        justify-content: space-between;
        padding: 1rem 1.5rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
        margin-left: 0;
    }
    
    .navbar-logo {
        flex: 1;
    }
    
    .nav-menu {
        width: 280px;
    }
}

 @media (max-width: 768px) {

            .navbar {
                padding: 1rem;
                gap: 1.5rem;
            }
            .navbar-logo {
                font-size: 1.2rem;
            }
            .nav-link {
                font-size: 0.72rem;
            }

}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .nav-menu .nav-link {
        font-size: 1.2rem;
        min-width: 80%;
    }
}

.hamburger:hover span {
    animation: neonPulse 1.5s infinite ease-in-out;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.4);
    }
}

        /* Contact Styles */
        .contact-container {
            min-height: 100vh;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-wrapper {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 255, 0.3);
        }

        .contact-title {
            font-size: 3rem;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .contact-subtitle {
            color: #cccccc;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(0, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(0, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            transform: translateY(-2px);
            border-color: rgba(0, 255, 255, 0.5);
            box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
        }

        .method-icon {
            font-size: 2rem;
            width: 60px;
            display: flex;
            justify-content: center;
        }

        .method-details h3 {
            color: #00ffff;
            margin-bottom: 0.5rem;
        }

        .method-details p {
            color: #cccccc;
        }

        /* Contact Form */
        .contact-form-section {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 0, 255, 0.3);
        }

        .form-title {
            font-size: 2rem;
            color: #ff00ff;
            margin-bottom: 2rem;
            text-align: center;
        }

        .form-group {
            position: relative;
            margin-bottom: 2rem;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #ff00ff;
            box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
        }

        .form-textarea {
            height: 120px;
            resize: vertical;
        }

        .form-label {
            position: absolute;
            left: 1rem;
            top: 1rem;
            color: #cccccc;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .form-input:focus + .form-label,
        .form-input:not(:placeholder-shown) + .form-label,
        .form-textarea:focus + .form-label,
        .form-textarea:not(:placeholder-shown) + .form-label {
            top: -0.5rem;
            left: 0.5rem;
            font-size: 0.8rem;
            color: #ff00ff;
            background: rgba(10, 10, 26, 0.8);
            padding: 0 0.5rem;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #ff00ff, #00ffff);
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
        }

        /* Social Section */
/* Social Section */
.social-section {
    margin-top: 4rem;
    grid-column: 1 / -1;
}

.social-container {
    text-align: center;
}

.social-title {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.social-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.social-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.7;
}

.social-card::before {
    content: 'IN PROGRESS';
    position: absolute;
    top: 50%;
    left: -10%;
    right: -10%;
    transform: translateY(-50%) rotate(-5deg);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 2px;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.social-icon {
    margin-bottom: 1rem;
}

.social-info h3 {
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.social-info p {
    color: #cccccc;
    font-size: 0.9rem;
}

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem;
            }

            .desktop-nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            body {
                padding-top: 70px;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-title {
                font-size: 2rem;
            }

            .social-grid {
                grid-template-columns: 1fr;
            }

            .contact-container {
                padding: 1rem;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0.8rem;
            }

            .contact-info,
            .contact-form-section {
                padding: 1.5rem;
            }

            .contact-title {
                font-size: 1.5rem;
            }
        }