    /* Footer Logo Styles */
.footer-logo-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(102, 16, 242, 0.1));
    border-radius: 12px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes logo white */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg); /* Blue tint on hover */
}

/* Logo fallback for when image fails to load */
.logo-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    animation: fadeIn 0.5s ease;
}

/* Responsive adjustments for footer logo */
@media (max-width: 768px) {
    .footer-logo-wrapper {
        width: 50px;
        height: 50px;
        padding: 6px;
    }
    
    .logo-fallback {
        font-size: 1.2rem;
    }
    
    .footer-brand .d-flex {
        justify-content: center;
    }
    
    .footer-brand .logo-container {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-logo-wrapper {
        width: 45px;
        height: 45px;
    }
}

/* Animation for logo fallback */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}