.footer {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 36, 83, 0.9);
    z-index: 0;
}

.footer .container-fluid {
    position: relative;
    z-index: 1;
}

.footer-inside {
    padding: 4% 8%;
}

.social-icons a:hover {
    color: #967a50;
    transition: color 0.3s ease;
}

.footer-underline {
    width: 80px;
    height: 2px;
    background-color: #967a50;
    border-radius: 2px;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #967a50;
}

/* 🔹 Responsive Adjustments */
@media (max-width: 992px) {
    .footer-inside {
        padding: 6% 5%;
    }
}

@media (max-width: 768px) {

    .footer .col-md-3,
    .footer .col-md-6 {
        text-align: center !important;
    }

    .social-icons {
        justify-content: center !important;
    }

    .footer-underline {
        margin-left: auto;
        margin-right: auto;
    }

    .footer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .footer {
        text-align: center;
    }

    .footer img {
        max-width: 150px;
    }

    .footer-underline {
        width: 60px;
    }

    .social-icons a i {
        font-size: 1.5rem;
    }
}