/* Footer Styles - Minimal Custom CSS */

/* Footer background color override */
.footer {
    background: #0F172A !important;
    padding: 3rem 0;
    color: #94A3B8 !important;
    margin-top: 4rem;

}

.footer h5 {
    color: #fff !important;
    font-weight: 600 !important;
    margin-bottom: 1rem;
}

footer p {
    color: #475569 !important;
}

/* Menu link styles */
.list-unstyled a {
    text-decoration: none;
    transition: color 0.3s;
    color: #94A3B8 !important;
    font-size: 16px;
}

.list-unstyled a:hover {
    color: #fff !important;
}

/* Social icon hover effect */

.footer .btn-outline-light {
    background-color: rgba(130, 143, 162, 0.20) !important;
    border: none !important;
    border-radius: 20% !important;
}
.footer .btn-outline-light:hover {
    background-color: var(--bs-danger) !important;
   border: none !important;
   color: #fff !important;
}

.copyright {
    border-top: 1px solid #1e293B;
    padding-top: 2rem;
    color: #94A3B8 !important;
}

/* Mobile Responsive - Center Content */
@media (max-width: 767px) {
    .footer .col-lg-5,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        text-align: center;
    }
    
    .footer .d-block {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer .list-unstyled {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer .d-flex.gap-2 {
        justify-content: center;
    }
    
    .footer ul.list-unstyled li {
        justify-content: center;
    }
}