* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.flx_item_centerr{
    align-items: center;
}

.border_bottom {
    border-bottom: 1px solid #D0D0D0;
}

.border_bottom_blue {
    border-bottom: 1px solid #36FFF6;
}

.contactformsection_wrapper {
    display: flex;
    background: #e6edf2;
    border-radius: 16px;
    border: 1px solid #cbcbcb;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contactformsection_left {
    width: 40%;
    background: url('../images/home/contact.png') center/cover no-repeat;
    position: relative;
    color: #fff;
}

.contactformsection_overlay {
   
    padding: 40px;
    height: 100%;
}

.contactformsection_heading {
    font-size: 28px;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.contactformsection_text {
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
}

.contactformsection_item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contactformsection_icon {
    font-size: 22px;
    font-family: "Poppins", sans-serif;
}

.contactformsection_social {
    margin-top: 30px;
}

.contactformsection_social_icons a {
    margin-right: 10px;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
}

.contactformsection_right {
    width: 60%;
    padding: 40px;
}

.contactformsection_form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.contactformsection_form input,
.contactformsection_form select,
.contactformsection_form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #c9d3dc;
    border-radius: 8px;
    margin-bottom: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
}

.contactformsection_row {
    display: flex;
    gap: 20px;
}

.contactformsection_field {
    flex: 1;
}

.contactformsection_form textarea {
    height: 120px;
    resize: none;
}

.contactformsection_btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #2f6bff, #0a4bd3);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
}

.contactformsection_cta {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    border: 2px solid #41a4ff;
    border-radius: 20px;
    background: #e9f2f9;
    font-family: "Poppins", sans-serif;
}

.contactformsection_cta_btn {
    padding: 14px 28px;
    background: linear-gradient(90deg, #2f6bff, #0a4bd3);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.contact_info {
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

@media(max-width:1024px) {

    .contactformsection_wrapper {
        flex-direction: column;
    }

    .contactformsection_left,
    .contactformsection_right {
        width: 100%;
    }

    .contactformsection_cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

}

@media(max-width:600px) {

    .contactformsection_row {
        flex-direction: column;
    }

    .contactformsection_heading {
        font-size: 22px;
    }

    .contactformsection_cta h2 {
        font-size: 20px;
    }

}

