
/*MAIN*/
main {
    background-image: url('/assets/images/pho.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.contact-section {
    padding: 60px 0;
}

.title {
    color: rgb(70, 37, 87);
    font-size: 50px;
    margin-top: 10px;
    text-align: center;
}

.title-blue {
    font-weight: bold;
    color: rgb(41, 34, 93);
    font-size: 35px;
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
}
.contact-map {
    border-radius: 30px; 
}
.contact-map iframe {
    border-radius: 30px;
}





/* Contact Form Section */
.contact-form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -60px;
}

/* Container for the two separate cards */
.card-container {
    display: flex; 
    justify-content: space-between; 
    margin-top: 20px;
}

/* Individual card styles */
.contact-card {
    width: 48%;
    border: 1px solid #ccc;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-right: 10px;
}

/* Remove margin from the last card */
.contact-card:last-child {
    margin-right: 0; 
}

/* Left part styles */
.left-part {
    background-color: rgb(85, 58, 107);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    border-radius: 18px; 
}

/* Right part styles */
.right-part {
    background-color: white;
    padding: 20px;
    border-radius: 18px; 
}

/* Title styles */
.left-part h3, .right-part h3 {
    font-size: 35px;
    text-align: center;
}
.left-part h3 {
    margin-bottom:30px ;
}

/* Center the contact details list */
.contact-details {
    list-style-type: none;
    padding: 0;
    text-align: center; 
}

.contact-details li {
    margin-bottom: 18px;
    display: flex;
    font-size: 20px;
    align-items: flex-start;
    justify-content: center; 
}

.contact-details li i {
    margin-right: 10px; 
}

/* Form group styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #2d2356;
}

/* Input styles */
.form-control {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.form-control:focus {
    border-color: #2d2356;
    box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

/* Button styles */
.btn {
    background-color: #2d2356;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s; 
}

.btn:hover {
    background-color: #d5b4de; 
}

.whatsapp-icon {
    background-color: #fcfbfd; 
    border-radius: 50%; 
    box-shadow: 0 2px 5px rgba(15, 15, 15, 0.3); 
    padding: 18px; 
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .card-container {
        flex-direction: column; 
        align-items: center; 
    }

    .contact-card {
        width: 90%;
        margin-right: 0;
        margin-bottom: 20px;
        font-size: 17px;
    }
    .contact-details li {
        font-size: 17px;
    }
 
}

/* Make the map responsive */
.contact-map {
    width: 100%;
    border-radius: 30px;
}

.contact-map iframe {
    width: 100%;
    border-radius: 30px;
}