footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffcc00; /* Gold hover effect */
}

.social-icons a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #f39c12; /* Change to gold color on hover */
}

footer {
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2); /* Slight shadow for a raised look */
}

