/* Contact Page Background */
.contact-page {
    background-color: #1a1a5e; /* Solid dark blue background */
    display: flex;
    flex-direction: column;
    color: #ffffff; /* White text color */
}

/* Main content should take up the remaining space */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

/* Form container styling */
.contact-form {
    background-color: #ffffff; /* White form background for contrast */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    color: #000000; /* Black text for form fields */
}

/* Form heading styling */
.contact-form h1 {
    color: #ffffff; /* White heading */
    text-align: center;
    margin-bottom: 30px;
}

/* Form input and textarea styling */
.contact-form .form-control {
    margin-bottom: 15px;
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Submit button styling */
.btn-primary {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

/* Modal body styling to fix white text on white background */
.modal-body {
    color: #000000 !important; /* Black text color for the modal */
    background-color: #ffffff; /* White background for the modal body */
    padding: 20px;
    border-radius: 10px;
}

.modal-header {
    color: #000000 !important;
}
