/* contact Section */
.contact{
    padding: 80px 0;
}
.contact .section-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.contact-wrapper{
    display: flex;
    justify-content: space-between;
}
.contact-details{
    width: 40%;
}
.contact-details .address, .phone, .email{
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
    background: #010342;
    padding: 8px;
    border-radius: 42px;
    color: #fff;
    align-items: center;
}
.contact-details .address div, .phone div, .email div{
    border-radius: 50%;
    background: #fff;
    padding: 8px;
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-details img{
    height: 18px;
    width: 18px;
    object-fit: contain;
}
.contact-details .phone a{
    color: #fff;
}
.contact-details .email{
    margin-bottom: 32px ;
}
.contact-detail iframe{
    width: 100%;
}
.contact-form{
    width: 58%;
    background: #f0f0f0;
    padding: 32px 18px;
    border-radius: 4px;
}
form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 400;
    margin-bottom: 0.3rem;
    color: #3f3e3e;
}

input, textarea {
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button {
    border: none;
    margin-top: 1rem;
}
.contact-form .cta-btn{
    width: 100%;
}

@media (max-width:768px) {
    /* contact Section 768*/
    .contact-wrapper {
        row-gap: 32px;
        flex-direction: column-reverse;
    }
    .contact-form {
        width: 100%;
    }
    .contact-details {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* contact Section 480*/
    .form-row {
        flex-direction: column;
    }
    .contact-form{
        padding: 32px 10px;
    }
    iframe{
        height: 210px;
    }
}
