/* Footer */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer {
    background-color: #293790;
    color: var(--white) !important;
    padding: 3rem 0 1rem;
}

.footer-logo img {
    width: 200px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(231, 237, 248) !important;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: white !important;
    text-decoration: none;
    transition: color 0.5s ease;
}
footer p{
    color: white !important;
}
.footer-links a:hover {
    color: var(--primary-baby-blue);
    font-size: 16px;
}

.social-links {
    display: flex;
    flex-direction: column;
    


}

.social-links svg:hover {
    background-color: rgb(4, 4, 201);
}

.social-links a {
    color: white !important;
    transition: color 0.3s ease;

}

.social-links a:hover {
    color: var(--primary-baby-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(147, 197, 253, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: var(--primary-baby-blue); 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
footer .footer-bottom a{
    color: white !important;
    text-decoration: none;
    transition: color 0.3s ease;
}   

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {

        margin-top: auto;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .vendors-grid {
        grid-template-columns: 1fr;
    }

    .value-props-grid {
        grid-template-columns: 1fr;
    }

    .products-carousel {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

}

@media (max-width: 480px) {
    /* .container {
        padding: 0 15px;
    } */

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}