/* CSS Reset */
*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
/* Navigation Bar */
#navbar{
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;
}
/* Navigation Bar: Logo and Image */
#logo{
      margin: 1px 3px;
}
#logo img{
      height: 55px;
      margin: 34px 45px;
      border-radius: 5px;
}
/* Navigation Bar: List Styling */
/* #navbar{
    position: relative;
} */
#navbar ul{
    display: flex;
    font-family: 'Roboto', sans-serif;
}
#navbar::before{
    content: "";
    background-color: black;
    position: absolute;
    top:0px;
    left:0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.4;
}
#navbar ul li{
    list-style: none;
    font-size: 1.3rem;
}
#navbar ul li a{
    color: white;
    display: block;
    padding: 3px 20px;
    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: 300px;
    justify-content: center;
    align-items: center;
}
#home::before{
    content: "";
    position: absolute;
    background: url('bg1.jpg') no-repeat center center/cover;
    height: 72%;
    top:0px;
    left:0px;
    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.2rem;
    font-family: 'Bree Serif', serif;
}
/* section Class*/
#services{
    margin: 34px;
    height: auto;
    display: flex;
}
#services .box{
   border: 2px solid brown;
   padding: 34px;
   margin: 25px 6px;
   border-radius: 12px;
   background: #f2f2f2;
}
#services .box img{
   height: 156px;
   display: block;
   margin: auto;
}
#services .box p{
   font-family: 'Bree Serif', serif;
}
/*clients section*/
#client-section{
    position: relative;
}
#client-section::before{
    content:"";
    position: absolute;
     background: url('client_bg_img.jpg'); 
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity:0.4;

}
#clients{
    display: flex;
    justify-content: center;
    align-items: center;
}
.class-item{
    padding: 30px;
}
#clients img{
    height: 130px;
}
/*contact section*/
#contact{
    position: relative;
}
#contact::before{

    content:"";
    position: absolute;
     background: url('contact.jpg') no-repeat center center/cover; 
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity:0.7;

}
#contact-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 12px;
}
#contact-box input,
#contact-box textarea{
    width: 100%;
    padding:0.3rem;
    border-radius: 5px;
    font-size:1.1rem;
}
#contact-box form{
    width: 40%;
}
#contact-box label{
    font-size: 1.1rem;
    font-family: 'Bree Serif', serif;
}
footer{
    background: black;
    color: white;
    padding: 9px 20px;

}
/* Utility Class*/
.h-primary{
    font-family: 'Bree Serif', serif;
    font-size: 2.8rem;
    padding: 12px;
}
.h-secondary{
    font-family: 'Bree Serif', serif;
    font-size: 1.7rem;
    padding: 12px;
}
.btn{
    padding: 6px 20px;
    border: 2px solid white;
    background-color: brown;
    color: white;
    margin: 17px;
    font-size: 1.5rem;
    border-radius: 12px;
    cursor: pointer;
}
.center{
    text-align: center;
}
