/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Footer Logo */
.footer-logo img {
    max-height: 120px;
    width: auto;
    margin-bottom: 15px;
}

/* Logo Text Fallback */
.logo h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #1e3a8a, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #1e3a8a, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Preloader Logo */
.preloader-img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Mobile Logo */
@media (max-width: 768px) {
    .logo img {
        max-height: 50px;
    }
    
    .footer-logo img {
        max-height: 80px;
    }
}