/* Footer CSS */
.footer {
    background-color: #222;
     color: #fff!important;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h3 {
    color: #f1af09;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #f1af09;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ccc!important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #f1af09;
    transform: translateX(5px);
}

.contact-info-footer {
    margin-top: 15px;
}

.contact-info-footer p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info-footer i {
    margin-right: 10px;
    color: #f1af09;
    font-size: 18px;
    min-width: 20px;
}

.social-links-footer {
    display: flex;
    margin-top: 20px;
}

.social-links-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links-footer a:hover {
    background-color: #f1af09;
    transform: translateY(-5px);
}

.social-links-footer i {
    color: white;
    font-size: 16px;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
    font-size: 14px;
}

.copyright p{
color: #ccc!important;

}
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
}
