/* 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;
    font-family: 'Baloo Bhai 2', cursive;

}
#navbar::before{
    content: "";
    background-color: black;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.4;
}
/*Navigation Bar: Logo and Image  */
#logo{
    margin: 10px 30px;
}
#logo img{
    height: 40px;
    width: 40px;
    margin: 3px 5px;
}

/* Navigation Bar:list styling */
#navbar ul{
    display: flex;
}
#navbar ul li{
    list-style: none;
    font-size: 1.3rem;
}
#navbar ul li a{
    display: block;
    padding: 3px 23px;
    border-radius: 20px;
    color:white;
    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: 584px;
    justify-content: center;
    align-items: center;
}
#home::before{
    content: "";
    background: url('../Images/bkgnd1.jpg') no-repeat center center/cover;
    position: absolute;
    top: 0px;
    left: 0px;
    height:660px;
    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.8rem;
    font-family: 'Bree Serif', serif;
}
/* Service Container  */
#services{
    margin: 34px;
    display: flex;

}
#services  .box{
    border: 2px solid brown;
    padding: 34px;
    margin: 25px 30px;
    border-radius: 28px;
    background-color: rgb(233, 233, 233);
    margin-bottom: 20px;
}
#services  .box img{
    height: 160px;
    display: block;
    margin: auto;

}
#services .box p{
    font-family: 'Bree Serif', serif;
}


/* Client-Section */
#Client-section{
    position: relative;
    /* height: 344px;   */
}
#Client-section::before{
    content: "";
    position: absolute;
    background: url('../Images/bkgnd3.jpg') no-repeat center center/cover;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}
#clients{
    display: flex;
    justify-content: center;
    align-items: center;
}
.client-item{
    padding: 40px;
}
#clients img{
    height: 124px;
}


/* Contact Section  */
#contact{
    position: relative;
}
#contact::before{
    content: "";
    position:absolute;
    background: url('../Images/contact\ us.jpg') no-repeat center center/cover;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.7;
}
#contact-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 34px;
}
#contact-box form{
    width: 40%;
}
#contact-box label{
    font-size: 1.3rem;
    font-family: 'Bree Serif', serif;
}
#contact-box input,
#contact-box textarea{
    width: 100%;
    padding: 0.5rem;
    border-radius: 9px;
    font-size: 1.1rem;
}

/* Footer Section  */
footer{
    background-color: black;
    color: white;
    padding: 20px;
}

/* utility classes */

.h-primary{
    font-size: 3.8rem;
    padding: 12px;
    font-family: 'Bree Serif', serif;
}
.h-secondary{
    font-size: 2.3rem;
    padding: 12px;
    font-family: 'Bree Serif', serif;
}
.btn{
    padding: 6px 20px;
    border: 2px solid white;
    background-color: brown;
    color: white;
    margin: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 10px;
}
.center{
    text-align: center;
}
