/* 🌟 Footer Styling */
.footer-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 10vh; /* ✅ Reduced height but keeps space */
    margin-top: 40px; /* ✅ Adds spacing above footer */
}

.footer {
    color: black;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

/* 🔗 Email Link */
.email-link {
    color: #007bff; 
    text-decoration: none;
    font-weight: bold;
}

.email-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* 🔗 Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0056b3;
}

