/* Custom Styles */
body {
    background-color: #f8f9fa; /* Bootstrap's bg-light color */
    scroll-behavior: smooth;
    padding-bottom: 60px; /* to prevent footer overlap */
}
.card-title {
    color: #007BFF;
}
header h1 {
    font-weight: bold;
}
.footer-fixed {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1000; /* Ensures it's on top of other elements */
}


.contact-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-box {
    flex: 1 1 200px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.email-link {
    color: black;
    text-decoration: none;
    padding: 2px 4px;
}

    .email-link:hover {
        color: white;
        background-color: brown;
        text-decoration: underline;
    }

