@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

:root{
    --light-color: #d3ad7f;
    --black: #13131a;
    --bg: #F1EFDC;
    --border: .1rem solid rgba(255,255,255,.3) ;
    --bg-light: #f9fafb;
    --text-color: #224B0C;
}

*{
    font-family: 'Roboto', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}
html::-webkit-scrollbar-track{
   background: transparent;
}
html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 5rem;
}

body{
    background: var(--bg);
}

section{
    padding: 2rem 7rem;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding:.8rem 3rem;
    font-size: 1.7rem;
    border-radius: .5rem;
    color:var(--light-color);
    cursor: pointer;
    background: none;
}

.btn:hover{
    border:.2rem solid var(--light-color);
}
.header{
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 7%;
    border-bottom: var(--border);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
}

.header .logo img{
    height: 8rem;
}

.header .navbar a{
    margin: 0 1rem;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    padding: 0 15px;
}

.header .icons div{
    color: var(--black);
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}

.header .icons #menu-btn{
    display: none;
}

.heading{
    text-align: center;
    color: var(--black);
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}

.heading span{
    color: var(--light-color);
    text-transform: uppercase;
}

/*Home Section / About page Home Section*/
.home{
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/home_banner1.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 30rem;
    padding-bottom: 15rem;
}

.about-home .content,
.home .content{
    text-align: center;
    color:var(--light-color);
}

.about-home .content h3,
.home .content h3{
    
    font-size: 4rem;
}

.about-home .content h1,
.home .content h1{
    
    font-size: 7rem;
}

.home .content span{
    font-size: 1.5rem;
    
}

.home .content span i{
    padding: 1.5rem;

}
.home .content span a{
    font-size: 2rem;
    text-transform: uppercase;
    color: #d3ad7f;
    font-weight: 400;
}

.home .content .button{
    padding: 5rem 0;
}

.about-home{
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/about-banner1.png) no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 30rem;
    padding-bottom: 15rem;
}

.about-home .content{
    text-align: center;
    color:var(--light-color);
}
.activity{
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/2.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 5rem;
    padding-bottom: 5rem;
}



/* about*/
/*project*/

.project-home{
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/P_banner.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 30rem;
    padding-bottom: 15rem;
}

.project-home .content{
    text-align: center;
    color:var(--light-color);
}

.project-home .content h1,
.home .content h1{
    
    font-size: 7rem;
}

.project-home .content h3,
.home .content h3{
    
    font-size: 3rem;
}
/*project*/

.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 5rem 0;
}

.row .video{
    flex: 1 1 41rem;
}

.about .row .video video{
    width: 100%;
    height: 100%;
    border: 1rem solid var(--light-color);
    border-radius: 1rem;
    
}

.row .content {
    flex: 1 1 41rem;
}

.row .content h3{
    font-size: 3.5rem;
    color: var(--black);
    text-transform: capitalize;
}
.row .content h4{
    font-size: 2rem;
    font-weight: 300;
    padding-top: 1.5rem;
    color: var(--black);
    text-transform: capitalize;
}

.row .content p{
    font-size: 1.5rem;
    color: var(--text-color);
    line-height: 2;
    padding: 1rem 0;
    font-weight: 400;
}

.service {
    background: var(--bg-light);
}
.service .row .image img{
    width: 100%;
    height: 100%;
    border: 1rem solid var(--black);
    border-radius: 1rem;
}

.service .row span{
    padding: 2rem;
}


/*about page*/
.about-us .row{
    display: flex;
    align-items: center;
    background: var(--bg);
    flex-wrap: wrap;
}

.about-us .row .image{
    flex: 1 1 45rem;
}

.about-us .row .image img{
    width: 100%;
}

.about-us .row .content{
    flex: 1 1 45rem;
    padding: 2rem;
}

.about-us .row .content h3{
    font-size: 4rem;
    color: var(--text-color);
    padding-bottom: rem;
}

.about-us .row .content p{
    font-size: 1.6rem;
    color: var(--text-color);
    padding: 1rem 0;
    line-height: 1.8;
    text-align: justify;
}

.about-our-team .row{
    display: flex;
    align-items: center;
    background: var(--bg);
    flex-wrap: wrap;
}

.about-our-team .row .image{
    flex: 1 1 45rem;
}

.about-our-team .row .image img{
    width: 100%;
}

.about-our-team .row .content{
    flex: 1 1 45rem;
    padding: 2rem;
}

.about-our-team .row .content h3{
    font-size: 4rem;
    color: var(--text-color);
    padding-bottom: 10rem;
}

.about-our-team .row .content p{
    font-size: 1.6rem;
    color: var(--text-color);
    padding: 1rem 0;
    line-height: 1.8;
    text-align: justify;
}

.our-mission .about-our-team .row{
    display: flex;
    align-items: center;
    background: var(--bg);
    flex-wrap: wrap;
}

.our-mission .row .image{
    flex: 1 1 45rem;
}

.our-mission .row .image img{
    width: 100%;
}

.our-mission .row .content{
    flex: 1 1 45rem;
    padding: 2rem;
}

.our-mission .row .content h3{
    font-size: 4rem;
    color: var(--text-color);
    padding-bottom: 10rem;
}

.our-mission .row .content p{
    font-size: 1.6rem;
    color: var(--text-color);
    padding: 1rem 0;
    line-height: 1.8;
    text-align: justify;
}


/*Service page*/

.service-home{
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/service3.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 30rem;
    padding-bottom: 15rem;
}

.service-home .content{
    text-align: center;
    color:var(--light-color);
}


/*projects*/
.project .row .content h3{
    text-align: center;
    padding-bottom: 5rem;
}
.project .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(36rem, 1fr));
    gap: 1.5rem;
}

.project .box-container .box{
    border: var(--border);

}

.project .box-container .box .image{
    height: 25rem;
    overflow: hidden;
    width: 100%;
}

.project .box-container .box .image img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.project .box-container .box:hover .image img{
    transform: scale(1.2);
}

.project .box-container .box .content{
    padding: 2rem;
}

.project .box-container .box .content .titel{
    font-size: 2.5rem;
    line-height: 1.5;
    color: var(--black);
}

.project .box-container .box .content .titel:hover{
    color: var(--main-color)

}

.project .box-container .box .content span{
    color: var(--main-color);
    display: block;
    padding-top: 1rem;
    font-size: 2rem;
}

.project .box-container .box .content p{
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text-color);
    padding: 1rem 0;
}

/*CONTACT FORM STARTS*/

.contact{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,.7), var(--black)), url(../images/contact.jpg) ;
    background-position: center;
    background-size: cover;
}

form{
    width: 90%;
    max-width: 600px;
}

.input-group{
    margin-bottom: 30px;
    position: relative;
}

input, textarea{
    width: 100%;
    padding: 10px;
    outline: 0;
    border: 1px solid var(--light-color);
    color: #000;
    background: transparent;
    font-size: 15px;
    transform: 0.3s;
}

label{
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    color: var(--light-color);;
    cursor: text;
    font-size: 20px;
}

button{
    width: 100%;
    padding: 10px 0;
    outline: none;
    cursor: pointer;
}

input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label{
    top: -35px;
    font-size: 14px;
    
}
/*CONTACT FORM ENDS*/
/*ABOUT AREA STARTS*/


/*ABOUT AREA ENDS*/




.credits{
    background: var(--light-color);
    color: var(--text-color);
    font-size: 2rem;
    text-align: center;
    padding: 2.5rem 1rem;
    margin-top: 1rem;
    border-top: var(--border);
    color: var(--black);
}

.footer{
    background: var(--black);
    text-align: center;
}

.footer .share{
    padding: 1rem 0;

}

.footer .share a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color: #fff;
    border: var(--border);
    margin: .3rem;
    border-radius: 50%;
}

.footer .share a:hover{
    background-color: var(--main-color);
}

.footer .links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    gap: 1rem;
}

.footer .links a{
    padding: .7rem 2rem;
    color: #fff;
    border: var(--border);
    font-size: 2rem;
}

.footer .links a:hover{
    cursor: pointer;
    background-color: var(--main-color);
}

.footer .credit{
    font-size: 2rem;
    color: #fff;
    font-weight: lighter;
    padding: 1.5rem;

}

.footer .credit span{
    color: var(--main-color);
}












/* media quries*/
@media (max-width:1050px){
    html{
        font-size: 55%;
    }
}




@media (max-width:991px){
    html{
        font-size: 50%;
    }
    .header{
        padding: 1.5rem 2rem;
    }
    section{
        padding: 2rem;
    }
}

@media (max-width:780px){
    .header .icons #menu-btn{
        display: inline-block;
    }

    .header .navbar{
        position: absolute;
        top: 100%; right: -100%;
        background: #ecc40f;
        width: 20rem;
        text-align: center;
        border-radius: 0 0 0 1rem;
        opacity: 0.5;
    }
    .header .navbar.active{
        right: 0;
    }
    .header .navbar a{
        color: var(--black);
        display: block;
        margin: 1.5rem;
        padding: .5rem;
        font-size: 2rem;
        
        }
        img{
            width: 100%;
        }
        
        .home{
            background-position: left;
            justify-content: center;
            text-align: center;
        }
        .home .content h3{
           font-size: 4.5rem;
        }
    }

    @media (max-width:450px){
        html{
            font-size: 50%;
        }
        img{
            width: 100%;
        }
        
        
}