
  @import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300&family=Poppins:ital,wght@0,400;0,700;1,200&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html{
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Barlow', sans-serif;
    font-family: 'Poppins', sans-serif;
    background-color: rgb(33, 31, 36);
}
.main-page{
    height: auto;
}
.main-page > .first-navbar{
    width: 100%;
    background-color: #272623;
    display: flex;
    justify-content: space-between;
    padding: 10px 50px;
    align-items: center;
    border-bottom: 0.5px solid rgb(255, 255, 255);
    color: orange;
    flex-flow: wrap;
}
.main-page > .first-navbar a{
    color: white;
}
.main-page > .first-navbar a:hover{
    text-decoration: underline;
}
.main-page > .second-navbar{
    height: 80px;
    width: 100%;
    background-color: #272623;
    display: flex;
    justify-content: space-between;
    padding: 0px 50px;
    align-items: center;
    position: sticky;
    top: 0;
}
.main-page > .second-navbar > .left{
    /* background-color: #fff; */
    height: 100%;
    width: 300px;
}
.main-page > .second-navbar > .left > img{
    height: 100%;
}
.main-page > .second-navbar > .middle{
    height: 100%;
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 23px;
}
.main-page > .second-navbar > .middle > a{
    color: white;
}
.main-page > .second-navbar > .middle > a:hover{
    /* text-decoration: underline; */
   border-bottom:1px solid white ;
}
.main-page > .second-navbar > .right{
    display: none;
    color: white;
}
.main-page > .responsive-navbar{
    /* height: 70vh; */
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    display: none;
    padding-top: 30px;
    padding-bottom: 60px;
    background-image: -webkit-linear-gradient(0deg, #62bdfc 0%, #8490ff 100%);
    position: sticky;
    
    top: 80px;


   
}
.main-page > .responsive-navbar a{
    z-index: 2;
    color: white;
    /* color: black; */
}

.main-page > .wraper{
    height: 85vh;
    width: 100%;
    background-image: url('/images/b1.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    align-items: center;
    color: white;
    color: black;
    font-weight: 700;
}

.main-page > .wraper > p{
    font-size: 30px;
    /* z-index: 1000; */ /*  use get top up the screen*/
    text-align: center;
    color: rgb(255, 255, 255);
    
}
.main-page > .wraper > a{
    padding: 15px 25px;
    background-color: white;
    color: black;
    border-radius: 15px;
    transition: all 0.5s;

}
.main-page > .wraper > a:hover{
    color: white;
    background-color: black;
}
.main-page  .about{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 30px;
    background-color: rgb(33, 31, 36);
    padding: 40px 200px;
}
.main-page  .about > .about-head{
    background-color: rgb(33, 31, 36);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    color: white;
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(185, 181, 181);
    

}
.main-page  .about > .about-head > :nth-child(2){
    color: rgb(165, 115, 21);
}
.main-page  .about > .about-content{
    background-color: rgb(33, 31, 36);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    line-height: 30px;
    /* text-align: center; */
}
.main-page  .about > .about-content > a{
    color: black;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 15px;
    transition: all 0.5s;
}
.main-page  .about > .about-content > a:hover{
    color: white;
    background-color: black;
}



/* service */

.main-page  .service{
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 50px;
    border-bottom: 1px solid grey;
}

.main-page  .service > .service-head{
    color: orange;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid gray;
}

.main-page  .service > .service-content{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-flow: wrap;
    height: auto;
    width: 100%;

}
.main-page  .service > .service-content >.service-box{
    height: auto;

    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: white;
}
.main-page  .service > .service-content >.service-box > video{
    width: 350px;
    height: 265px;
    object-fit: fill;
    box-shadow: 2px 2px 5px 2px rgba(188, 147, 12, 0.5);
}
.main-page  .service > .service-content >.service-box > .image{
    height: 250px;
    width: 350px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    box-shadow: 2px 2px 5px 2px rgba(188, 147, 12, 0.5);
    border-radius: 5px;
    cursor: pointer;
}

.main-page  .service > .service-content >.service-box > h1{
    text-align: center;
    font-size: 22px;
}
.main-page  .service > .service-content >.service-box > h1 > :first-child{
    color: orange;
    
}

.main-page  .service >  a{
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    border-radius: 15px;
    background-color: #fff;
    font-size: 20px;
    margin-top: 50px;

}
.main-page  .service >  a:hover{
    background-color: orange;
    color: white;
}



/* call whatsap links */
.whatsapp-link{
    position: fixed; 
    bottom: 100px;
    right: 30px;
    z-index: 2;
    color: black;
    display: flex;
    align-items: center;
    gap: 2px;
}
.whatsapp-div{
    background-color: aliceblue; 
    border-radius: 15px;
    padding: 5px 5px;
    display: none;
    transition: all 0.5s;
}
.whatsapp-link:hover  .whatsapp-div{
    display: block;
}

.call-link{
    position: fixed; 
    bottom: 40px;
    right: 30px;
    z-index: 2;
    color: black;
    display: flex;
    align-items: center;
    gap: 2px;
}

.phone-div{
    background-color: aliceblue; 
    border-radius: 15px;
    padding: 5px 10px;
    display: none;
    transition: all 0.5s;
}
.call-link:hover .phone-div{
    display: block;
}

/* contact-info */
.contact-info{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-flow: wrap;
    padding: 70px 0px;
}
.contact-info > .contact-in-left{
    height: 220PX;
    width: 300px;
    display: flex;
    flex-direction: column;
    /* background: white; */
    align-items: center;
    gap: 10px;
}
.contact-info > .contact-in-left > .contact-details{
    height: 100%;
    width: 80%;
}
.contact-info > .contact-in-left >  .contact-details > h1{
    color: white;
}
.contact-info > .contact-in-left > .contact-details > p{
    color: orange;
    font-size: 15px;
}
.contact-info > .contact-in-left > .contact-details > p > a{
    color: white;
}
.contact-info > .contact-in-left > .contact-details > a{
    color: white;
}

.contact-info >  .contact-in-middle{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 300px;
}
.contact-info >  .contact-in-middle > img{
    width: 100%;
}
.contact-info > .contact-in-right{
    height: 300px;
    width: 300px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: white;
    gap: 15px;
}
.contact-info > .contact-in-right > iframe{
    height: 90%;
    width: 100%;
}


/* process */

.process{
    height: auto;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    gap: 30px;
    padding: 30px 10px;
    color: white;
    align-items: center;background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.process > .process-first{
    padding: 20px;
    font-size: 22px;
}

.process > .process-middle{
    height: auto;
    width: 96%;
    padding: 20px 20px;
    background-color: rgb(53, 48, 48,0.2);
    display: flex;
    border-radius: 15px;
    flex-direction: row;
    justify-content: space-between;
    flex-flow: wrap;
    
}

.process > .process-middle > .process-box{
    height: 200px;
    width: 200px;
    background-color: orange;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    text-align: center;
    color: black;
    transition: all 0.5s;
    cursor: pointer;
}

.process > .process-middle > .process-box:hover{
    background-color: rgb(20, 20, 19,0.8);
    border: 1px solid white;
    color: #fff;
    
}

.process > .process-lower{
    background-color: rgba(37, 37, 34, 0.6);
    padding: 10px 100px;
    border-top: 1px solid #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process > .process-lower  h1{
    padding: 20px 3px;
    text-align: center; color: orange;
    border-top: 1px solid rgb(173, 159, 159);
    
}
.process > .process-lower  h1:first-child{
    border: none;
}

/* review */
.review{
    height: auto;
    min-height: 80vh;
    width: 100vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
     flex-direction: column;
     align-items: center;
     background-attachment: fixed;
}

.review > .review-head{
    background-color: rgb(0, 0, 0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    height: 10%;
    color: orange;
    width: 100%;
    border-bottom: 1px solid grey;
}
.review > .review-content{
    background-color: rgb(0, 0, 0,0.6);
    height: 90%;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding: 20px 15px;
    align-items: start;
    flex-flow: wrap;
    gap: 20px;

    /* flex-wrap: wrap; */
}
.review > .review-content > .review-box{
    background: rgb(4, 4, 4,0.5);
    width: 45%;
    height: auto;
    padding: 40px 5px;
    display: flex;
    gap: 20px;
}



/* footer */

.footer{
    height: auto;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-flow: wrap;
    border-top: 1px solid grey;
    padding: 30px 5px;
}
.footer > .left-footer{
    width: 280px;
    /* background-color: #fff; */
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: white;
    
}
.footer > .left-footer > img{
    width: 280px;
}
.footer > .middle-footer{
    width: 280px;
    display: flex;
    flex-direction: column;
    /* background-color: #fff; */
    justify-content: start;
    align-items: center;
    gap: 5px;
}
.footer > .middle-footer > img{
    width: 170px;
}

.footer > .right-footer{
    /* width: 280px; */
    /* background-color: #fff; */
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: white;
    
}
.footer > .right-footer > p{
    color: orange;
}
.footer > .right-footer > p > a{
    color: white;
}
.footer > .right-footer > p > a:hover{
    text-decoration: underline;
}
.footer > .right-footer > a{
    color: white;
    width: 50%;
    background-color: rgb(28, 110, 8);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
    border-radius: 25px;
}
.footer > .right-footer > a:hover{
    color: black;
    background-color: #fff;
}

/* active */
.main-page .active{
  display: block;
  display: flex;
}

/* copyright */

.copyright{
    color: white;
    display: flex;
    background-color: rgb(48, 48, 48);
    justify-content: center;
    gap: 30px;
    flex-flow: wrap;
    padding: 5px 2px;
    text-align: center;
}

@media only screen and (max-width:1100px){
    .main-page > .second-navbar{
        padding-top: 5px;
        padding-left: 0px;
        padding-right: 13px;
    }
    .main-page > .second-navbar > .middle{
        display: none;
    }   
    #hours{
        display: none;
    }
    .main-page > .second-navbar > .right{
        display: block;
    }
    .main-page > .first-navbar{
        padding: 5px 5px;
        display: flex;
        justify-content: center;
        
    }
    .main-page  .about{
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        height: auto;
        gap: 30px;
        background-color: rgb(33, 31, 36);
        padding: 40px 12px;
    }


    .process > .process-middle{
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        justify-content: center;

    }
    .process > .process-lower{
        background-color: rgba(37, 37, 34, 0.6);
        padding: 30px 5px;
        border-top: 1px solid #fff;
        width: 100%;
    }
    

    .review > .review-content > .review-box{
        background: rgb(4, 4, 4,0.5);
        width: 97%;
        height: auto;
        padding: 40px 5px;
        display: flex;
        gap: 20px;
    }
    

    .contact-info{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow: wrap;
        padding: 70px 0px;
    }
}


@media only screen and (max-width:300px){
    .main-page > .first-navbar{
        /* padding: 5px 5px; */
        display: flex;
        justify-content: center;
        font-size: 12px;
        
    }
}