        /* ============ FOOTER ============ */
        footer {
            background: rgba(10, 14, 39, 0.9);
            border-top: 1px solid rgba(0, 255, 136, 0.1);
            padding: 4rem 2rem 2rem;
            margin-top: 5rem;
        }
    .social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f1f1;
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effects */
.social-links a:hover {
    transform: translateY(-5px);
    color: #fff;
}

/* Individual Colors */
.social-links a:nth-child(1):hover {
    background: #1877f2; /* Facebook */
}

.social-links a:nth-child(2):hover {
    background: #000; /* X (Twitter) */
}

.social-links a:nth-child(3):hover {
    background: radial-gradient(circle at 30% 107%, 
        #fdf497 0%, #fdf497 5%, #fd5949 45%, 
        #d6249f 60%, #285AEB 90%);
}
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            
            padding:50px;
        }

        .footer-section h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-light);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-section ul li a:hover {
            color: var(--primary-neon);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 255, 136, 0.1);
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            justify-content: right;
            margin-bottom: 1rem;
            padding-top:0;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 255, 136, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f3cb00;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 700;
        }
:root {
            --primary-neon: #f3cb00;
            --secondary-neon: #ff00ff;
            --accent-orange: #ff6b00;
            --dark-bg: #0a0e27;
            --card-bg: #1a1f3a;
            --text-light: #ffffff;
            --text-muted: #a0a9c9;
            --gradient-primary: linear-gradient(135deg, #00ff88 0%, #00bfff 100%);
            --gradient-dark: linear-gradient(135deg, #2d1b69 0%, #1a0033 100%);
            --gradient-accent: linear-gradient(135deg, #ff6b00 0%, #ff00ff 100%);
        }
       

        