/* ================================
   Footer
   ================================ */
footer {
    background-color: var(--primary-color) !important;
    align-content: center;
    text-align: center;
}

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

footer p {
    color: var(--text-light);
}

footer a {
    color: var(--text-light) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

footer hr {
    border-color: var(--text-light);
    opacity: 0.3;
}

footer .col-md-4 {
    text-align: center;
}

.social-links {
    text-align: center;
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
    color: var(--text-light) !important;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--secondary-color) !important;
}