/* Footer Styling */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer .list-unstyled li {
    margin-bottom: 0.75rem;
}

.footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .list-unstyled a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

#footer > div > div:nth-child(1) > div:nth-child(4) > div.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;

}

.footer .social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}



/* Footer Responsive Styles */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer .col-md-3 {
        margin-bottom: 2rem;
    }
    
    .footer .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer h5 {
        font-size: 1.1rem;
    }
    
    .footer p,
    .footer .list-unstyled a {
        font-size: 0.9rem;
    }
    
    .footer .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
