.our_services_main_class {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.our_services_child_parent {
    display: flex;
    width: 100%;
    padding: 20px 0;
    gap: 2%;
}

.our_services_child_parent img {
    width: 40%;
    border-radius: 10px;
}

.our-services-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 1%;
}

.our-services-upper-div-tiltle {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.our_services_contact_us {
    font-weight: 600;
}

/* .our_services_main_class_child_left_image {
    width: 40%;
    object-fit: cover;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
} */




.our_services_main_class_child_content {
    width: 60%;
    height: auto;
    margin: auto 0;
}


.our_services_child_parent .child_heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    text-align: left;
    color: var(--primary-color);
}

.our_services_child_parent .child_paragraph {
    font-size: 19px;
    font-weight: 600;
    line-height: 28.5px;
    text-align: left;
    color: var(--secondary-background-color);
    margin: 3% 0;
}



/* Tablet View (max-width: 768px) */
@media (max-width: 768px) {
    .our_services_child_parent {
        flex-direction: column;
        gap: 1.5rem;
        padding: 15px 0;
    }

    .our_services_child_parent img {
        width: 100%;
    }


    .our_services_main_class_child_left_image,
    .our_services_main_class_child_content {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
        justify-content: center;
        align-items: center;
    }

    .our_services_main_class_child_left_image {
        order: -1;
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
        height: auto;
        max-height: 300px;
    }

    .our_services_child_parent .child_heading {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
    }

    .our_services_child_parent .child_paragraph {
        font-size: 16px;
        line-height: 24px;
        text-align: justify;
    }
}

/* Mobile View (max-width: 576px) */
@media (max-width: 576px) {
    .our_services_child_parent {
        flex-direction: column;
        gap: 1rem;
        padding: 10px 0;
    }

    .our_services_main_class_child_left_image,
    .our_services_main_class_child_content {
        width: 100%;
    }

    .our_services_main_class_child_left_image {
        order: -1;
        /* Move the image to the top */
        margin: 0 auto;
        /* Center the image */
        max-width: 300px;
        /* Limit the width of the image to 300px */
        width: 100%;
        /* Ensure the image takes the full width up to max-width */
        height: auto;
        /* Maintain aspect ratio */
        max-height: 200px;
        /* Limit the height of the image to 200px */
    }

    .our_services_child_parent .child_heading {
        font-size: 18px;
        line-height: 28px;
    }

    .our_services_child_parent .child_paragraph {
        font-size: 14px;
        line-height: 21px;
        margin: 3% 0;
    }
}