/* css reset  */
*{
    margin: 0;
    padding: 0;

}


html{
    scroll-behavior:smooth;
}
/* css variable  */
:root{
    --navbar-height:60px
}
/* navbar ki styling  */
#navbar{
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;
    /* height: 20px; */
    /* justify-content: center; */
}
/* navbar ki styling  logo and image  */
#logo{
 margin: 0px 10px;
}
#logo img{
    margin: 0px 5px;
    height: 90px;
    width: 90px;
}

/*navbar ki styling  list styling  */
#navbar ul{
    display: flex;
    font-family: 'Bebas Neue', cursive;

}
#navbar::before{
    content: "";
    background-color: black;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: -1;

}
#navbar ul li{
    list-style: none;
    font-size: 2rem;
}
#navbar ul li a{
   display: block;
   padding: 3px 20px;
   border-radius: 20px;
   text-decoration: none;
   color: white;
}
#navbar ul li a:hover{
  color: black;
  background-color: white;

}

/* home section  */
#home{
    display: flex;
    flex-direction: column;
    padding: 3px 200px;
    justify-content: center;
    align-items: center;
    height: 425px;
}
#home::before{
    content: "";
    background: url('../bg1.jpg') no-repeat center center/cover;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 550px;
    width: 100%;
    opacity: 0.90;
    z-index: -1;
}
#home h1{
    color: rgb(10, 9, 9);
    text-align: center;
    font-family: 'Oswald', sans-serif;
}
#home p{
    color:black;
    text-align: center;
    font-size: 1rem;
    font-family: 'Hind', sans-serif;
    
}
/* utility classes  */
.h-primary{
    font-size: 4rem;
    padding: 12px;
    font-family: 'Bebas Neue', cursive;
   
}
.h-secondary{
    font-size: 2rem;
    padding: 12px;
    font-family: 'Bebas Neue', cursive;
   
}
.btn{
    padding: 5px 20px;
    border: 2px solid white;
    background-color: rgb(42, 209, 27);
    color: white;
    margin: 15px;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor:pointer;
}
.center{
    text-align: center;
}
/* service section  */
#services{
    margin: 0px;
    display: flex;
}
#services-container{
    background-color: rgb(215 227 217)
}
#services .box{
    border: 2px solid rgb(7, 5, 5);
    padding: 34px;
    margin: 3px 6px ;
    border-radius: 28px;
    background: rgb(235 230 223)
}
#services .box:hover{
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.2);
}
#services .box img{
    height: 160px;
    display: block;
    margin: auto;
    
}
#services .box p{
    font-family: 'Hind', sans-serif;
    
}
/* client section  */
#client-section{
height: 300px;
position: relative;

}
#clients{
display: flex;
justify-content: center;
align-items: center;
height: 150px;

}
#clients img{
    height: 125px;
}
.client-item{
    padding: 35px;
}
#client-section::before{
    content: "";
    position: absolute;
    /* to give url we have to use two dots  */
    background: url('../bg.jpg');
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}
/* contact section  */
#contact{
    position: relative;
}
#contact::before{
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
    position: absolute;
    background: url("../contact.jpg")no-repeat center center/cover;
}
#contact-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 34px;

    
}
#contact-box input{
    width: 100%;
    padding: 0.5rem;
}

#contact-box textarea{
    width: 100%;
    padding:0.5rem;
    border-radius: 10px;
    font-size: 1.5rem;

}
#contact-box form{
    width: 40%;
}
#contact-box label{
    font-size: 1.5rem;
    font-family: 'Bebas Neue', cursive;
}

footer{
    background-color: black;
    color: white;
    padding: 10px 20px;
}

