/* Responsive CSS */

/* General Styles for Mobile Devices */
@media (max-width: 768px) {
    body {
        padding: 0 15px;
    }

    .layout_padding {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .layout_padding2 {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .heading_container h2 {
        font-size: 24px;
        margin-right: 0;
    }

    .hero_area {
        height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .slider_section {
        flex-direction: column;
        text-align: center;
        padding-bottom: 45px;
    }

    .slider_section .detail_box {
        margin-bottom: 30px;
    }

    .service_section .service_container {
        flex-direction: column;
        align-items: center;
    }

    .service_section .service_container .box {
        flex-basis: 90%;
        margin-bottom: 30px;
    }

    .about_section .img_container {
        flex-direction: column;
        align-items: center;
    }

    .about_section .img_container .img-box.b1 {
        width: 90%;
    }

    .about_section .img_container .img-box.b2 {
        width: 70%;
        margin-top: 15px;
    }

    .process_section .process_container .step {
        padding: 10px;
    }

    .why_choose_us_container .reason {
        padding: 15px;
        margin-bottom: 20px;
    }

    .contact_section input {
        height: 45px;
        padding-left: 15px;
    }

    .contact_section button {
        padding: 10px 30px;
    }

    .footer_section {
        text-align: center;
    }

    .sticky-form-container{
        width: 65%;
        max-height: 90%;
    }
}

/* Styles for Tablets */
@media (min-width: 768px) and (max-width: 992px) {
    .layout_padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .service_section .service_container .box {
        flex-basis: 45%;
        margin-bottom: 20px;
    }

    .about_section .img_container {
        flex-direction: row;
        justify-content: space-between;
    }

    .about_section .img_container .img-box.b1 {
        width: 60%;
    }

    .about_section .img_container .img-box.b2 {
        width: 40%;
        margin-top: 0;
    }

    .why_choose_us_container .reason {
        padding: 20px;
        margin-bottom: 25px;
    }

    .process_section .process_container {
        flex-wrap: wrap;
    }

    .process_section .process_container .step {
        flex-basis: 48%;
        margin-bottom: 20px;
    }

    .sticky-form-container{
        width: 40%;
        max-height: 90%;
    }
}

/* Custom Navbar Adjustments for Mobile */
@media (max-width: 768px) {
    .custom_nav-container .navbar-toggler {
        border: 1px solid #1c9c6b;
    }

    .custom_nav-container .navbar-collapse {
        background-color: #ffffff;
    }

    .custom_nav-container .navbar-nav .nav-item .nav-link {
        margin: 5px 0;
        padding: 10px;
        color: #1c9c6b;
    }
}

/* Footer Adjustments for Mobile Devices */
@media (max-width: 768px) {
    .footer_section {
        padding: 20px 0;
    }

    .footer_section a {
        display: block;
        margin-bottom: 10px;
    }

    .footer_section p {
        font-size: 14px;
    }
}

/* Service Area Section Adjustments */
@media (max-width: 768px) {
    .service_area_section p {
        padding: 0 15px;
        font-size: 16px;
    }
}
