@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');



.contact-container {
    width: 90%;
    max-width: 500px;
    padding: 30px;
    background: linear-gradient(135deg, #2e2f33, #1c1f24);
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    color: #fff;
}



h2 {
    text-align: center;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #b0b3b8;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #2b2f33;
    border-radius: 8px;
    background-color: #1f2226;
    color: #e0e0e0;
    resize: none; /* Prevent resizing */
    font-size: 14px;
    outline: none;
}

input:focus, textarea:focus {
    border-color:royalblue;;
}

button {
    width: 100%;
    padding: 12px;
    background-color:royalblue;;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0px 4px 12px rgba(76, 175, 80, 0.2);
    transition: background-color 0.3s;
}

button:hover {
    background-color:royalblue;;
}

.error {
    color: #ff4d4d;
    font-size: 12px;
    display: none;
    margin-top: 4px;
}

.success {
    color:royalblue;;
    font-size: 14px;
    display: none;
    text-align: center;
    margin-top: 15px;
}

#successMessage {
    display: none;
    color: #fff;
    background-color:royalblue; /* Blue background */
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

/* Map and Contact Section Styling */
.contact__container {
    display: flex;
    gap: 2rem;
}

.contact__map h3, .contact__map p {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.contact__img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
