/* Footer Flexbox Layout */
.footer {
    background-color: #212529;
    color: #fff;
    padding: 2rem 0 1rem;
}
.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}
.footer .row.g-4 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 2rem;
}
.footer .col-lg-3,
.footer .col-lg-2,
.footer .col-lg-4,
.footer .col-md-6 {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 350px;
}
.footer-copy {
    background-color: #0d0d0d;
    color: #6c757d;
    padding: 1rem 0;
    text-align: center;
}
.gallery-img {
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}
.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #212529;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background-color: #0d6efd;
    color: white;
}
.footer h4 {
    color: #fff !important;
}
@media (max-width: 991px) {
    .footer .container,
    .footer .row.g-4 {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer .col-lg-3,
    .footer .col-lg-2,
    .footer .col-lg-4,
    .footer .col-md-6 {
        max-width: 100%;
    }
}