/* CSS Reset  */
*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}

/* CSS variables  */
:root{
    --navbar-height: 59px;
}
  
/* Navigation Bar  */
#navbar{
    display: flex;
    align-items: center;
   position: sticky;
    top: 0px; 
}

#navbar::before{
    content:"";
    background-color: black;
    position: absolute;
    top:0px;
    left:0px;
    height: 81%;
    width:100%;
    z-index: -1;
    opacity:0.7;
}
/*Navigation Bar Logo and image  */
#logo{
     margin: 34px 45px;
}

#logo img{
    height: 56px;
    margin: 3px 6px;
}

/*Navigation Bar List Styling  */
 #navbar ul{
     display: flex; 
     font-family: 'Baloo Bhai 2', cursive;
}
    
#navbar ul li{
     list-style: none;
     font-size: 1.3rm;
}

#navbar ul li a{
    color:white;
    display: block;
    padding: 3px 22px; 
    border-radius: 20px;
    text-decoration: none;
}
#navbar ul li a:hover{
    color: black;
    background-color: white;
}
/* home section  */

#home{
    display: flex;
    flex-direction: column;
    padding:3px 200px;
    height: 520px;
    justify-content: center;
    align-items: center;
} 

#home::before{
    content:"";
    position: absolute;
    background: url('../bg2.png.jpg') no-repeat center center/cover;
    top:0px;
    left:0px;
    height: 90%;
    width: 100%;
   z-index: -1;
   opacity:0.89;
}
#home h1{
    color:white;
    text-align: center;
    font-family: 'Bree Serif', serif;

}
#home p{
    color:white;
    text-align: center;
    font-size: 1.3rem;
    font-family: 'Bree Serif', serif;
}
/* services section  */
#services{
    margin: 14px;
    display: flex;
}
#services .box{
    border: 2px solid brown;
    padding: 34px;
    margin: 2px 3px;
    border-radius: 28px;
    background: #fff3f3;
}

#services .box img{
    height: 90px;
    margin: auto;
    display: block;
}
#services .box p{
    font-family: 'Bree Serif', serif;
}
/* clients section */
#client-section{
    height: 227px;
}
#client-section::before{
content: "";
position: absolute;
background: url('../bg.png.png');
width: 100%;
height: 31%;    
z-index: -1;
opacity: 0.3;
}

#clients{
    display: flex;
    justify-content: center;
    align-items: center;
}
.client-item{
    padding: 34px;
} 
#clinte img{
    height: 124px;
}
/* contact section  */
#contact{
    position: relative;
}
#contact::before{
    content: "" ;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    background: url('../contact1.png.jpg') no-repeat center center/cover;

}
#contact-box{
    display:flex;
    justify-content: center;
    align-items: center;
    padding: 14px;

}
#contact-box input,
#contact-box textarea{
    width: 100%;
    padding: 0.5rem;
    border-radius: 9px;
    font-size: 1.1rem;


}
#contact-box form{
    width: 40%;

}
#contact-box lebel{
    font-size: 1.3rem;
    font-family: 'Bree Serif', serif;

}


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

/* utility classes */
.h-primary{
    font-family: 'Bree Serif', serif;
    font-size: 3.8rem;
    padding: 12px;
}
.h-secondary{
    font-family: 'Bree Serif', serif;
    font-size: 2.3rem;
    padding: 12px;
}
.btn{
    padding: 6px 20px;
    border: 2px solid white;
    background-color: brown;
    color: white;
    margin: 17px;
    font-size: 1.5rem;
    cursor: pointer;
}

.center{
    text-align: center;
}
