/* *********** Contact Section ************* */
#contact-details{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#contact-details .details{
    width: 40%;
}

#contact-details .details span,
#form-details form span{
    font-size: 12px;
}

#contact-details .details h2,
#form-details form h2{
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
}

#contact-details .details h3{
    font-size: 16px;
    padding-bottom: 15px;
}

#contact-details .details li{
    list-style: none;
    display: flex;
    padding: 10px 0;
}

#contact-details .details li i{
    font-size: 14px;
    padding-right: 22px;
}

#contact-details .details li p{
    margin: 0;
    font-size: 14px;
}

#contact-details .map{
    width: 55%;
    height: 400px;
}

#contact-details .map iframe{
    width: 100%;
    height: 100%;
}

/* ********** Form Details ************** */
#form-details{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px;
    padding: 80px;
    border: 1px solid #bdbbbb;
}

#form-details form{
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#form-details form input,
#form-details form textarea{
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #bdbaba;
}

#form-details form input:hover,
#form-details form textarea:hover{
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #088178;
}

#form-details form button{
    background-color: #088178;
    color: white;
}
#form-details form button:hover{
    color: #c1c1c1;
}

#form-details .people div{
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

#form-details .people div img{
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-right: 15px;
}

#form-details .people div p{
    margin: 0;
    font-size: 13px;
    line-height: 25px;
}

#form-details .people div span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: black;
}

/* *************Responsive************* */
@media screen and (max-width:799px) {
    #form-details {
        padding: 40px;
    }
    #form-details .people{
        margin-left: 20px;
    }
    #form-details form {
        width: 55%;
    }
}




/* Center align button */
.button-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align left like the image */
    margin-top: 20px;
}


.contact-form {
    max-width: 1000px;
    margin: 50px 30px 30px 30px; /* Increased top margin to 50px */
    padding: 20px;
    background: #fcf9f3;
    font-family: Arial, sans-serif;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.form-group label {
    font-size: 14px;
    color: #aaa;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 150px; /* Adjust width for proper alignment */
}

.form-group i {
    margin-right: 8px;
}

.form-group input,
.form-group textarea {
    flex: 1;
    border: none;
    background: none;
    padding: 8px;
    font-size: 14px;
    outline: none;
    width: 100%;
}

.form-group textarea {
    resize: none;
    height: 50px;
}

.full-width {
    width: 100%;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-group input {
    margin-right: 5px;
    margin-left: 35px;

}

.submit-btn {
    background: #b6895b;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    margin-top: 10px;
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    background: #a4764d;
}

.checkbox-group label a {
    color: #a4764d;
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}


@media screen  and (max-width:477px){
    #contact-details {
        flex-direction: column;
    }
    #contact-details .details {
        width: 100%;
        margin-bottom: 30px;
    }
    #contact-details .map{
        width: 100%;
    }
    #form-details {
        margin: 10px;
        padding: 10px 10px;
        flex-wrap: wrap;
    }
    #form-details form {
        width: 100%;
        margin-bottom: 30px;
    }
}
