/* Footer Fixes */

/* Make social media icons white */
.footer-left .social-links a i {
    color: white !important;
}

/* Fix hover effect for social media icons */
.social-links a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-links a:hover i {
    transform: scale(1.1);
    color: white !important;
}

/* Add line above copyright and center text */
.footer-bottom {
    position: relative;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

.footer-bottom:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom-content {
    text-align: center;
}