
#footer {
    background-color: rgba(5, 5, 10, 0.95) !important;
    border-top: 1px solid var(--neon-blue);
    padding: 40px 20px;
    position: relative;
    z-index: 100;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    height: auto !important; 
    color: var(--white);
    font-family: 'Inconsolata', monospace;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}


.footer-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logos img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--neon-blue);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.3));
}

.footer-logos img:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 15px var(--neon-blue);
    border-color: var(--neon-green);
}


.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--neon-blue);
    border-radius: 50%;
    color: var(--neon-blue);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(0, 243, 255, 0.05);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 15px var(--neon-blue);
    transform: translateY(-3px);
}


.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.powered-by {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight {
    color: var(--neon-green);
    font-weight: bold;
    text-shadow: 0 0 5px var(--neon-green);
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}


@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
