

/* Contact Section */
.contact-section {
    padding: 40px 20px;
    background: #f9f9f9; /* Subtle light gray for contrast */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Contact Form Styling */
.contact-section form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section input,
.contact-section textarea {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

.contact-section button {
    padding: 12px;
    font-size: 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-section button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.contact-section button:active {
    transform: translateY(0);
}

.contact-section .success {
    color: green;
    margin-top: 10px;
    font-weight: bold;
}

.contact-section .error {
    color: red;
    margin-top: 10px;
    font-weight: bold;
}

/* Google reCAPTCHA Styling */
.contact-section .g-recaptcha {
    margin: 10px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-section {
        padding: 20px;
    }

    .contact-section h1 {
        font-size: 1.5rem;
    }

    .contact-section form {
        gap: 10px;
    }

    .contact-section button {
        font-size: 0.9rem;
    }
}




/* Contact Form Submit Button */
.contact-section .contact-submit {
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: bold;
    color: white; /* Ensures the text is visible */
    background-color: #007bff; /* Default blue background */
    border: none; /* Removes default browser border */
    border-radius: 8px; /* Rounded corners for a modern look */
    cursor: pointer; /* Changes cursor to pointer on hover */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds subtle shadow */
}

.contact-section .contact-submit:hover {
    background-color: #0056b3; /* Darker blue for hover effect */
    transform: translateY(-2px); /* Adds a lift effect */
}

.contact-section .contact-submit:active {
    background-color: #004494; /* Even darker blue for active state */
    transform: translateY(0); /* Resets the lift effect */
}

.contact-section .contact-submit:disabled {
    background-color: #cccccc; /* Gray out when disabled */
    cursor: not-allowed; /* Indicates the button can't be clicked */
}

