/* FOOTER STYLES */
.footer {
    color: #fff;
    background: var(--primary-color);
    position: relative;
    padding: 5px 0;

}

.footer-top {
    background: #fff;
    padding: 60px 0 40px;
    clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0% 100%);
}
.footer p {
    color: #111; 
    margin-top: 1rem;
}

.footer h5 {
    color: #111;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f5a623;
}

.social li {
    margin-right: 15px;
}

.social li a {
    color: #555;
    font-size: 20px;
    transition: color 0.3s, transform 0.3s;
}

.social li i {
    color: #111;
}

.social li a:hover {
    color: #f5a623;
    transform: scale(1.2);
}

.footer-bottom {
    background: #ba7f006e;
    padding: 5px 0;
    font-size: 16px;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .social {
        justify-content: start;
    }
}