/* 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;
}

/*navigation bar : logo and image */
#logo{
    margin:10px 34px;
}
#logo img{
    height:77px;
    margin:3px 6px;
}

/*navigation bar : list styling */

#navbar ul{
    display: flex;
    font-family: 'Bree Serif', serif;    /*font*/
}
#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 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: 645px;
    justify-content: center;
    align-items: center;

}

#home::before{
    content: "";
    background: url('../bg.jpg') no-repeat center center/cover;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 78%;
    width: 100%;
    z-index: -1;
    opacity: 0.89;
}

#home h1{
    color: rgb(233, 233, 240);
    text-align: center;
    
    font-family: 'Dancing Script', cursive;  /*font*/

}

#home p{
    color: rgb(253, 250, 250);
    text-align: center;
    font-size: 1.5rem;
    
    font-family: 'Dancing Script', cursive;   /*font*/

}

/* Services Section */
#services{
    margin: 34px;
    display: flex;
}
#services .box{
    border: 2px solid brown;
    padding: 34px;
    margin: 3px 6px;
    border-radius: 60px;
    background-color: rgb(231, 231, 243);
}
/* #services .box img{
    height: 300px;
    margin: auto;
    display: block;
} */
#services .box img{
    /* height: 300px; */
    width: 205px;
    margin: auto;
    display: block;
}
#services .box p{
    font-family: 'Bree Serif', serif;    /*font*/
}
#services{}
#services{}

/* client-section */
#client-section{
    /* height: 344px; */
    position: relative;
}

#client-section::before{
    content: "";
    position: absolute;
    background: url('../bg2.jpg');
    width: 100%;
    height: 38%;
    z-index: -1;
    opacity: 0.4;
}

#clients{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.client-item{
    padding: 5px;
}

#clients img{
    /* width:200px; */
    height: 200px;
    /* height: auto; */
    
}

/* contact section */
#contact{
    position: relative;
}
#contact::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 1;
    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,
#contact-box textarea{
    width: 100%;
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
}

#contact-box form{
    width: 40%;
}
#contact-box label{
    font-size: 1.3rem;
    font-family: 'Bree Serif', serif;    /*font*/
}

footer{
    background: black;
    color: white;
    padding: 9px 20px;

}

/* utility class */
.h-primary{
    font-size: 4.8rem;
    padding: 12px;
    font-family: 'Dancing Script', cursive;  /*font*/
}

.h-secondary{
    font-size: 2.8rem;
    padding: 12px;
    font-family: 'Dancing Script', cursive;  /*font*/
}


.btn{
    padding: 6px 20px;
    border: 2px solid white;
    background-color: brown;
    color: white;
    margin: 17px;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
}

.center{
    text-align: center;
}