/* Footer Styles */
footer {
    background-color: var(--dark-color) !important;
}

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

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


.footer-heading {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: bold;
    width: fit-content;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 110px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
}

.social-links a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}
