.sliding-box {
    height: 70vh;
}

#slide1 {
    padding-left: 4rem;
    padding-bottom: 4rem;
    background: url("../images/slide3.jpg");
    background-size: cover;
    background-position: center;
}

.servicepage-second-section {
    padding: 0rem 2rem;
    /* display: flex;
    gap: 3rem;
    justify-content: space-between; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.servicepage-second-section img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}


.service-card-parent {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding: 2rem 5rem;
}

.why-choose-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.service-card {
    width: 100%;
    /* padding: 5rem 2rem; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.service-card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: baseline;
    max-width: 1000px;
}

.what-we-deliver {
    margin-top: 2rem;
}

.service-card-content h2 {
    font-weight: 400;
}

.service-points-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-point {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.service-card-parent h3{
    font-size: 1.5rem;
}
.service-circle {
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    background-color: var(--orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.why-choose-section .service-points-section{
    margin-top: 0;
}
#service4 {
    flex-direction: row-reverse;
}


.service-banner-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 4rem 0;
}

.service-banner-section img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.contact-section {
    margin-top: 4rem;
}

#footer {
    margin-top: 0;
}


@media screen and (max-width:1500px) {
    .service-card {
        flex-direction: column !important;
        gap: 4rem;
    }

    .service-card-content {
        max-width: 90%;
    }
}

@media screen and (max-width:1000px) {
    .sliding-box {
        height: 60vh;
    }
}

@media screen and (max-width:650px) {
    .servicepage-second-section img {
        height: 100px;
    }

    .service-points-section {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width:600px) {
    .sliding-box {
        height: 40vh;
    }

    .servicepage-second-section {
        margin-bottom: 0;
    }

    .service-card-image img {
        width: 350px;
    }

    .service-circle {
        min-width: 30px;
        max-width: 30px;
        min-height: 30px;
        max-height: 30px;
    }

    #footer {
        padding-top: 1rem;
    }
}

@media screen and (max-width:500px) {
    .service-card-image img {
        width: 250px;
    }

    .service-banner-section img {
        height: 100px;
    }
    .service-card-parent{
        padding: 4rem 2rem;
    }
}

@media screen and (max-width:400px) {
    .service-points-section {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .service-circle {
        min-width: 20px;
        max-width: 20px;
        min-height: 20px;
        max-height: 20px;
    }

    .service-circle .white-icon {
        font-size: 8px;
    }
}