/* CSS Reset */
*{
    margin: 0px;
    padding: 0px;
}
html{
    scroll-behavior: smooth;
}

/* CSS Variables */
:root{
    --navbar-height:59px;
}

/*  Navigation Bar */
#navbar{
    display: flex;
    align-items: center;
    font-family: 'Baloo Bhai 2';
    position: relative;


}

/* Logo and Image */

#logo{
    margin: 5px 20px;
}

#logo img{
    margin: 7px 20px;
    height: 65px;
    border-radius: 100%;
}

/* List Styling */

#navbar ul{
    display: flex;
}

#navbar::before{
    content: "";
    background-color: black;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.9;
}
#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;
    transition-property: all;
    transition-duration :0.5s; ;
}

#navbar ul li a:hover{
    color: black;
    background-color: white;
}

/* Home Section */


#home{
    /* border: 2px solid green; */
    display: flex;
    flex-direction: column;
    padding: 3px 200px;
    justify-content: center;
    align-items: center;
    height: 434px;
}


#home::before{
    content: "";
    background:url(/images/bg1.jpg) no-repeat center center/cover;
    height: 75%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.89;
    z-index: -1;
}

#home h1{
    color: white;
    text-align: center;
    font-family: 'Bree Serif';
}
#home p{
    color: white;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Bree Serif';
}


/* Services Section */

/* .service-container{
    position: relative;
    top: 120px;
    margin-top: 1%;
}*/
.box{
    transform: rotate(5deg);
    
}
#services{
    margin: 34px;
    display: flex;
    /* flex-wrap: wrap; */
    /* flex-direction: row; */
    /* border: 2px solid blue; */
    /* justify-content: center; */
}
#services .box{
    border: 2px solid brown;
    padding: 34px;
    margin: 3px 10px;
    border-radius: 25px;
    background-color: rgb(245 241 241);
    /* width: 30%; */
    /* float: left; */
}
#services .box img{
    height: 130px;
    display: block;
    margin: auto;
    /* border-radius: 100%; */
}
#services .box p{
    font-family: 'Bree Serif';

}


/* Client Section */
#client-section{
    height: 325px;

}
#client-section::before{
    content: "";
    position: absolute;
    background: url(/images/bg2.jpg);
    width: 100%;
    height: 44%;
    opacity: 0.3;
    z-index: -1;
}

#clients{
    display: flex;
    justify-content: center;
    align-items: center;
}

#clients img{
    height: 70px;
}

.client-item{
    padding: 2%;
}


/* Contact us */
#contact{
    position: relative;
    color: white;
}
#contact::before{
    content: "";
    height: 100%;
    width: 100%;
    z-index: -1;
    background: url(/images/contact\ us.jpg) no-repeat center center/cover;
    position: absolute;
    opacity: 0.8;
}
#contact h1{
    text-decoration: underline;
}

#contact-box form{
    width: 40%;
}

#contact-box label{
    font-size: 1.2rem;
    margin: -2%;
    font-family: 'Bree Serif';

}

#contact-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 34px;
}

#contact-box input,
#contact-box textarea{
    width: 100%;
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 1rem;
}

/* footer */

footer{
    background-color: black;
    color: white;
    padding: 7px 20px;
}

/* Utility Classes */

.h-primary{
    font-size: 3.8rem;
    padding: 12px;
    font-family: 'Bree Serif';

}
.h-secondary{
    font-size: 2.1rem;
    padding: 12px;
    font-family: 'Bree Serif';

}

.center{
    text-align: center;
}

.btn{
    padding: 6px 20px;
    margin: 17px;
    border: 2px solid white;
    background-color: brown;
    border-radius: 10px;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition-property: all;
    transition-duration: 1s;
}
.btn:hover{
    background-color: white;
    color: brown;
    border: 2px solid brown;
}

#sub-btn{
    margin: 15px auto;
    display: block;
}