
/* This class will be added when scrolling */
.contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    margin-top: 70px; /* Adjust this value to match the header height */
}


.contact-info {
    margin-bottom: 30px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-icon i {
    color: #0dfd3d;
    font-size: 1rem;
}
.custom-button
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-details h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #212529;
}

.contact-details p {
    color: #6c757d;
    margin-bottom: 0;
}

.form-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    padding: 2rem;
}

.success-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.spinner {
    display: none;
    margin-right: 0.5rem;
}
/* Hide the menu button on large screens */
.menu-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Mobile styles */
@media (max-width: 768px) {
    nav {
        display: none; /* Hide menu by default */
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 1rem;
    }

    nav.active {
        display: flex; /* Explicitly set display to flex when active */
    }

    nav a {
        display: block;
        padding: 10px;
    }

    .menu-toggle {
        display: block; /* Show menu button */
        cursor: pointer;
    }
    .menu-toggle {
        display: block; /* Show menu button */
    }


}
