

.hamburger {
    display: none;
    cursor: pointer;
}

.hide {
    display: none;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 36px;
}



.hero_section {
    background-image: url(../images/servicebanner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0px 0px 100px 0px;
    height: 36vh;
    position: relative;
    z-index: 2;
}
.hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 69%);
    z-index: -1; /* Ensure the overlay is on top */
}

.hero_section .hero {
    height: 50vh;
}


.services {
    display: flex;
    flex-direction: column;
    margin: 0px;
}


.service1,
.service2,
.service3 {
    display: flex;
    margin: 100px 0px;
    gap: 20px;
}

.service1 {
    border-right: 1px double #353333;
}

.service2 {
    border-left: 1px double #353333;
}

.service3 {
    border-right: 1px double #353333;
}


.service1-image,
.service2-image,
.service3-image {
    width: 50%;

}

.service1-image img,
.service2-image img,
.service3-image img {
    width: 600px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
}

.service1-content,
.service2-content,
.service3-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 050px 60px 0px 60px;
    justify-content: center;
}

.service1-content h2,
.service2-content h2,
.service3-content h2 {
    margin-bottom: 20px;
}

.service1-content p,
.service2-content p,
.service3-content p {
    width: 90%;
    font-size: 14px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #000;
        color: #fff;
        padding: 0px;
        height: 100vh;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hide {
        display: block;
    }

    header .head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 0px 10px 0px
    }

    .nav-links.active {
        display: flex;
        gap: 10px;
    }


    .hero_section {
        height: 30vh;
    }

    .hero_section .hero {
        height: 30vh;
    }

    h2 {
        font-size: 46px;
    }

    h3 {
        font-size: 36px;
    }




    .service1,
    .service3 {
        display: flex;
        flex-direction: column;
        border: none;
    }

    .service2 {
        display: flex;
        flex-direction: column-reverse;
        border: none;

    }

    .service1-image,
    .service2-image,
    .service3-image {
        width: 100%;
    }

    .service1-image img,
    .service2-image img,
    .service3-image img {
        width: 100%;
        height: 400px;
        border-radius: 20px;
        object-fit: cover;
    }

    .service1-content,
    .service2-content,
    .service3-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        justify-content: center;
    }

}

@media screen and (max-width: 767px) {



    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #000;
        color: #fff;
        padding: 0px;
        height: 100vh;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hide {
        display: block;
    }


    .hero_section {
        height: 30vh;
    }

    .hero_section .hero {
        height: 30vh;
    }




    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 26px;
    }






    .service1,
    .service3 {
        display: flex;
        flex-direction: column;
        border: none;
    }

    .service2 {
        display: flex;
        flex-direction: column-reverse;
        border: none;

    }


    .service1-image,
    .service2-image,
    .service3-image {
        width: 100%;
    }

    .service1-image img,
    .service2-image img,
    .service3-image img {
        width: 100%;
        height: 200px;
        border-radius: 20px;
        object-fit: cover;
    }
    .service1-content, .service2-content, .service3-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0px;
        justify-content: flex-start;
        padding-left: 10px;
    }
    .service1 {
        display: flex;
        margin: 0px 0px;
        gap: 20px;
    }
    .hero_section {
     
        margin: 0px 0px 59px 0px;
     
    }
    .hero_section h1 {
   
        font-size: 40px;
        padding-top: 50px;
    }





}