.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 99999;
}

.footer-logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;

}

.footer-logo-img {
    height: 32px; /* Optimal logo size */
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}
/* Footer - Minimal */
footer {
    background: #0f172a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #6366f1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-links a:hover {
    color: white;
    background: rgba(99, 102, 241, 0.1);
}

.footer-bottom {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}