@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Ubuntu&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Ubuntu', sans-serif;
}
html{
    scroll-behavior: smooth;
}
header{
    padding: 0 5vw;
}
nav{
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: crimson; */
}
.logo{
    font-size: 22px;
    font-weight: bolder;
}
nav ul{
    display: flex;
    gap: 3vw;
    align-items: center;
}
nav ul li{
    list-style: none;
    /* margin-left: 25px; */
    
}
nav ul li a{
    text-decoration: none;
    color: black;
    font-size: 15px;
    font-weight: bold;
    transition: color 0.4s;
}
nav ul li a:hover{
    color: crimson;
}
.sub-menu{
    display: none;
}
nav ul li:hover .sub-menu{
    display: block;
    position: absolute;
    background-color: crimson;
}
nav ul li:hover .sub-menu ul{
    display: block;
    margin: 25px;
}
nav ul li:hover .sub-menu ul li a{
    color: white;
    font-weight: 400;
}
nav ul li:hover .sub-menu ul li a:hover{
    color: wheat;
}
.sub-menu-small-screen{
    display: none;
}

.nav-btn{
    padding: 2px 8px;
    border-radius: 4px;
    border: 2px solid crimson;
    background-color: white;
    color: crimson;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.4s, background-color 0.4s, border-color 0.4s;
}
.nav-btn:hover{
    background-color: crimson;
    color: white;
    border-color: transparent;
}
.page-navigation{
    padding: 5px 0;
    font-size: 12px;
}
.page-navigation a{
    font-size: 12px;
    text-decoration: none;
    color: crimson;
}
.page-navigation a:hover{
    color: black;
}


.head-img img{
    width: 100%;
}
.head-img-mobile-view{
    display: none;
}
.mobile-view-img{
    display: none;
}

@media only screen and (max-width: 1050px){
    .head-img-desktop-view{
        height: 50vh;
    }
}
@media only screen and (max-width: 850px){
    .head-img-desktop-view{
        height: 40vh;
    }
}
@media only screen and (max-width: 680px){
    .head-img-desktop-view{
        display: none;
    }
    .head-img-mobile-view{
        display: block;
    }
    .mobile-view-img{
        display: block;
    }
    .logo{
        font-size: 16px;
    }
}

/* WhatsApp Button */

.whatsapp-btn {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
  }
  
  .whatsapp-btn img {
    width: 30px;
    margin-top: 5px;
    margin-left: 1px;
  }
  
  .whatsapp-btn:hover {
    background-color: #128c7e;
  }



main{
    padding: 0 5vw;
    min-height: calc(100vh - 80px);
}

.our-products{
    padding: 25px 0;
}

.our-product-section-title{
    margin: 30px auto;
    padding: 6px;
    width: 150px;
    font-size: 17px;
    text-align: center;
    background-color: crimson;
    color: #fff;

}
.our-product-card-wrapper{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.our-product-card{
    width: 140px;
    height: 200px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 5px 5px 10px grey;
    border-radius: 8px;
    transition: transform 0.5s;
    cursor: pointer;
    
}
.our-product-card img{
    width: 140px;
    height: 140px;
    margin-bottom: 2px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    /* border-radius: 50%; */
}

.our-product-title{
    font-size: 15px;
    font-weight: bold;

}

.sec-1{
    display: flex;
    padding: 25px 0;
    flex-wrap: wrap;
}
.sec-1-left{
    width: 55%;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    margin-top: 11vh;
}
.sec-1-left h1{
    font-size: 8vh;
}
.sec-1-left span{
    color: crimson;
}
.sec-1-left p{
    color: rgb(40, 40, 40);
    margin: 25px 0;
}
.sec-1-left a{
    width: 160px;
    padding: 12px 22px;
    border: 3px solid transparent;
    border-radius: 4px;
    background-color: crimson;
    color: white;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: color 0.5s, background-color 0.5s, border-color 0.5s;
}
.sec-1-left a:hover{
    background-color: white;
    color: crimson;
    border-color: crimson;
}
.sec-1-right{
    width: 45%;
}
.sec-1-right img{
    width: 100%;
}

.home-sec-2{
    padding: 25px 0;
}
.section-title{
    text-align: center;
    margin-bottom: 5vh;
    font-size: 32px;
}
.section-title span{
    color: crimson;
}
.work-card-wraper{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.work-card{
    width: 250px;
    text-align: center;
    box-shadow: 5px 5px 10px grey;
    border-radius: 8px;
    transition: transform 0.5s;
    cursor: pointer;
    /* padding-bottom: 20px; */
}
.work-card:hover{
    transform: scale(1.05, 1.05)
}
.work-card img{
    width: 250px;
    height: 180px;
    margin-bottom: 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.work-card p{
    font-size: 13px;
    margin: 10px 20px 20px 20px;
}

.home-sec-3{
    padding: 25px 0;
}
.why-us-wraper{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
}
.why-us-card{
    padding: 10px;
    width: 110px;
    text-align: center;
}
.why-us-card i{
    font-size: 75px;
    line-height: 1.1;
    color: rgb(63, 63, 63);
}
.why-us-card p{
    font-size: 13px;
    font-weight: bold;
}
.why-us-card p span{
    color: crimson;
}
.home-sec-4{
    display: flex;
    flex-wrap: wrap;
    padding: 25px 0;
    align-items: center;
}
.home-sec-4-left h1{
    font-size: 5vh;
    text-align: center;
    margin-bottom: 25px;
}
.home-sec-4-left h1 span{
    color: crimson;
}
.home-sec-4-left{
    width: 55%;
    padding: 0 5vw;
}
.estimate-details{
    display: flex;
    align-items: center;
    margin: 0 30px 15px 15px;
}
.estimate-details i{
    font-size: 40px;
    margin: 0 15px;
    color: darkblue;
}
.estimate-details span{
    font-size: 20px;
}
.home-sec-4-right{
    width: 45%;
    padding: 10px 25px;
}
.estimate-form-ctr{
    padding: 30px;
    width: 350px;
    box-shadow: 2px 2px 10px grey;
    margin: 0 auto;
}
.estimate-form-ctr h3{
    text-align: center;
    margin-bottom: 15px;
}
.estimate-form-ctr form{
    display: flex;
    flex-direction: column;
}
.estimate-form-ctr form input{
    margin: 10px 0;
    padding: 10px 8px;
    border-radius: 5px;
    border: 1px solid black;
}
#submit-btn{
    background-color: crimson;
    color: white;
    border: 1px solid transparent;
    cursor: pointer;
}
.estimate-form-ctr form p{
    font-size: 10px;
    text-align: center;
}
.home-sec-5{
    padding: 25px 0;
}
.customer-review-wraper{
    padding: 0 10px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.customer-review{
    width: 250px;
    text-align: center;
    margin-bottom: 25px;
}
.customer-review img{
    width: 250px;
    height: 200px;
    border-radius: 8px;
}
.customer-address{
    font-size: 10px;
    margin-bottom: 10px;
}
.review{
    font-size: 13px;
    margin: 0 18px;
}
.home-sec-5 a{
    text-decoration: none;
    color: crimson;
}
.view-all{
    display: flex;
    justify-content: center;
}
.view-all a{
    border: 2px solid crimson;
    padding: 2px 10px;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
    color: crimson;
}
.view-all a:hover{
    background-color: crimson;
    color: #fff;

}
.home-sec-6{
    padding: 25px 0;
}
.brand-wraper{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.brand img{
    width: 70px;
    margin: 10px;

}


footer{
    /* background-color: rgb(202, 191, 193); */
    /* color: rgb(190,190,190); */
    padding: 2vh 5vw;
    font-size: 13px;
    background-color: whitesmoke;
}
.footer-container{
    text-align: center;
}
.footer-container span{
    margin: 0 8px;
}
.footer-container a{
    text-decoration: none;
    color: black;
}
.footer-container a:hover{
    color: crimson;
}

.footer-container span a, i{
    margin-right: 2px;
}

/* !-----Service Page------ */

.service-section{
    padding: 25px 0;
    text-align: center;
}

.service-card-wraper{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 20px 10px;
}
.service-card{
    width: 350px;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.5s;
    cursor: pointer;
}
.service-card:hover{
    transform: scale(1.05, 1.05);
}
.service-card img{
    width: 300px;
    height: 220px;
    border-radius: 8px;
}
.service-card p{
    font-size: 14px;
    padding: 5px 12px 0 12px;
}
.service-card a{
    text-decoration: none;
    color: crimson;
    font-size: 12px;
}
.service-card a:hover{
    color: red;
}
.service-title{
    text-align: center;
    margin-bottom: 15px;
    font-size: 28px;
}
.service-title span{
    color: crimson;
}
.service-description{
    padding: 0 10vw;
    text-align: center;
}

/* !-------Products------- */

.product-categories{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 0px 50px;
    /* border-radius: 35px; */
}
.product-categories a{
    text-decoration: none;
    color: black;
    padding: 15px 5px;
    /* transition: all 0.5s; */
}
.product-categories a:hover{
    background-color: white;
    color: crimson;
}
.product-section{
    padding: 25px 0;
}
.product-group{
    padding: 25px;
}
.product-group-title{
    text-align: center;
    margin-bottom: 10px;
}
.product-group-title span{
    color: crimson;
}
.product-wraper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.product{
    text-align: center;
    width: 250px;
    cursor: pointer;
    margin: 15px 0;
}
.product img:hover{
    transform: scale(1.05);
}
.product img{
    width: 250px;
    height: 180px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.5s;
}
.product h3{
    font-weight:300;
    font-size: 16px;
}

/* !--------About Us--------- */

.about-sec-1{
    padding: 25px 0;
}

/* -----slider---- */

.slider{
    width: 850px;
    max-width: 100vw;
    height: 450px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.list{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    width: max-content;
    transition: 1s;
}
.list img{
    width: 850px;
    max-width: 100vw;
    height: 100%;
    object-fit: fill;
}
.buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bolder;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.5s;
}
.buttons button:hover{
    background-color: #fff;
    color: crimson;
} 
.dots{
    position: absolute;
    bottom: 10px;
    color: #fff;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 20px;
    border-radius: 20px;
    transition: 1s;
    cursor: pointer;
}
.dots li:hover{
    background-color: black;
}
.dots li.active{
    width: 30px;
    background-color: crimson;
}

@media screen and (max-width: 768px) {
    .slider{
        height: 400px;
        max-width: calc(100vw - 30px);
    }
    .dots li{
        margin: 10px;
    }
}

/* ----slider ends---- */

.about-sec-2{
    padding: 25px 0;
    text-align: center;
}

.about-sec-2 p span{
    color: crimson;
}
.about-sec-3{
    padding: 25px 0;
}
.container-wraper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 10vw;
}
.cont-left{
    width: 50%;
    padding-right: 5%;
}
.cont-left h1{
    font-size: 55px;
    text-align: right;
}
.cont-left h1 span{
    color: crimson;
}
.cont-right{
    width: 50%;
}
.cont-right p{
    font-size: 16px;
    line-height: 25px;
}
.cont-right p span{
    color: crimson;
}
.our-story{
    display: flex;
    flex-wrap: wrap;
    padding: 18px 10vw;
    margin: 25px 0;

}
.our-story img{
    width: 300px;
    border-radius: 15px;
    margin: 0 25px;
}
.our-story-right{
    width: 50%;
    text-align: start;
    
}
.our-story-right h3{
    margin: 15px 0;
}
.our-story-right p{
    line-height: 32px;
}

/* !------Contact Us-------- */

.contact-sec-1{
    padding: 25px 0;
}
.ctr-wraper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.ctr-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}
#contact-title{
    font-size: 46px;
    margin-bottom: 25px;
}
#contact-title span{
    color: crimson;
}
.ctr-left a{
    color: black;
    text-decoration: none;
}
.ctr-right{
    width: 50%;
}

address ul li{
    margin-bottom: 15px;
    list-style: none;
    font-size: 22px;
    font-style: normal;
}
address ul li i:hover{
    color: crimson;
}
#social-links i{
    margin: 15px 15px 15px 0;
}

/* !--------Customer Review---------- */

.cus-rev-sec-1{
    padding: 25px 0;
}
.cus-rev{
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 20px 30px;
    /* border: 2px solid black;
    border-radius: 8px; */
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.cus-rev span{
    font-size: 12px;
}
.rev-col-1{
    width: 20%;
}
.rev-col-2{
    width: 50%;
}
.rev-col-3{
    width: 25%;
}
.rev-col-3 img{
    height: 50px;
    width: 50px;
    transition: all 1s;
}
.rev-col-3 img:hover{
    position: absolute;
    z-index: 2;
    height: 250px;
    width: 250px;
}

/* !------Career---------- */

.career-sec-1{
    padding: 25px 0;
}
.job{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;


}
.job span{
    font-style: italic;
}
.job-description{
    width: 18%;
    padding: 15px;
}
.job-role{
    width: 50%;
    padding: 15px;
    /* height: 150px;
    overflow-x: scroll; */
}
.benefits{
    width: 20%;
    padding: 15px;
}
.action{
    padding: 15px;
    margin: auto;
    text-align: center;
}
.action a{
    text-decoration: none;
    color: #fff;
    background-color: crimson;
    padding: 2px 10px;
    border-radius: 2px;
}

/* ! Media Queries */

nav .resNavButton{
    display: none;
}

@media only screen and (max-width: 700px){
    nav ul{
        position: fixed;
        top: 0;
        right: -200px;
        background-color: crimson;
        width: 200px;
        height: 100vh;
        padding: 60px 30px;
        flex-direction: column;
        align-items: start;
        z-index: 2;
        transition: right 0.6s;
    }
    nav ul li a{
        color: white;
    }
    nav ul li a:hover{
        color: white;
    }
    nav ul .resNavButton{
        position: absolute;
        top: 10px;
        left: 20px;
        color: white;
        font-size: 35px;
        cursor: pointer;
    }
    nav .resNavButton{
        display: block;
        font-size: 25px;
    }
    #sub-menu-wraper{
        display: none;
    }
    .sub-menu-small-screen{
        display: block;
    }

    /* ! Main element CSS */

    .sec-1-left{
        margin-top: 4vh;
        width: 100%;
        align-items: center;
    }
    .sec-1-left h1{
        font-size: 6vh;
        text-align: center;
    }
    .sec-1-left p{
        text-align: center;
    }
    .sec-1-right{
        width: 100%;
        display: none;
    }
    .work-card{
        margin-bottom: 20px;
    }
    .home-sec-3 .section-title{
        margin-bottom: 1vh;
    }
    .why-us-card{
        width: 85px;
    }
    .why-us-card i{
        font-size: 25px;
    }
    .why-us-card p{
        font-size: 10px;
    }
    .home-sec-4-left{
        width: 100%;
    }
    .home-sec-4-left h1{
        font-size: 25px;
    }
    .estimate-details{
        margin: 0 10px;
    }
    .estimate-details span{
        font-size: 15px;
    }
    .home-sec-4-right{
        width: 100%;
        padding: 25px 5px;
    }
    .estimate-form-ctr{
        width: 300px;
    }
    .brand img{
        max-width: 55px;
    }
    .our-story{
        padding: 18px 10px;
    }
    .our-story img{
        margin: auto;
    }
    .our-story-right{
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    .ctr-left{
        width: 100%;
        margin-bottom: 25px;
    }
    .ctr-right{
        width: 100%;
    }
    address ul li{
        font-size: 14px;
    }
    #contact-title{
        font-size: 28px;
        text-align: center;
    }
    .cont-left{
        width: 100%;
    }
    .cont-left h1{
        text-align: center;
        font-size: 32px;
        margin-bottom: 15px;
    }
    .cont-right{
        width: 100%;
    }
    .cont-right p{
        text-align: center;
    }

    /* -----customer-review---- */

    .cus-rev{
        flex-direction: column;
    }
    .rev-col-1, .rev-col-2, .rev-col-3{
        width: 100%;
    }

    /* -------career------- */

    .job{
        flex-direction: column;
    }
    .job-description, .job-role, .benefits{
        width: 100%;
    }
}





