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

/* css variable */
:root{
    --navbar-height:100px
}

/* 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: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.5;

}
/* Navigation bar:logo and image */
#logo{
    margin: 0px 20px;
}

#logo img{
    width: 110px;
    height: 110px;
    margin: 0px 15px;
}


/* Navigation bar :list styling */

#navbar ul{
    display: flex; 
    font-family: 'Baloo Bhai 2', cursive; 
}

#navbar ul li{
    
    list-style: none;
    font-size: 1.5rem;
}
#navbar ul li a{
    color: white;
    display: block;
    padding: 4px 15px;
    border-radius: 10px;
    text-decoration: none;
}
#navbar ul li a:hover{
    color: black;
    background-color: white;
}

/* login */

#login{
    position: absolute;
    right: 100px;  
    display: flex;
}

#login a{
    padding: 4px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-family: 'Baloo Bhai 2', cursive;
}

#login a:hover{
    color: black;
    background-color: white;
}

/* Home section */
#home{
    display: flex;
    flex-direction: column;
    padding: 10px 200px;
    height: 460px;
    justify-content: center;
    align-items: center;
}
#home::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    background: url('img/bg1.jpg') no-repeat center center/cover;
    height: 575px;
    width: 100%;
    z-index: -1;
    opacity: 0.9;
}
#home h1{
    color: white;
    text-align: center;
    font-family: 'Bree Serif', serif;
}
#home p{
    color: white;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Bree Serif', serif;
}

/* Services Section */
#services{
    display: flex;
    margin: 6px;
}
#services .box{
    border: 3px solid brown;
    margin: 30px 15px;
    padding: 18px 18px;
    border-radius: 26px;
    background-color: #f5e8e8;
}
#services .box img{
    display: block;
    height: 160px;
    margin: auto;
}
#services .box p{
    font-family: 'Bree Serif', serif;
}


/* Client Section */
#client-section{
    position: relative;
    

}
#client-section::before{
    content: "";
    position: absolute;
    background: url('img/bg.jpg');
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;

}

#clients{
    display: flex;
    justify-content: center;
    align-items: center;
}
.client-item{
    padding: 14px;
    margin: 10px;
}
#clients img{
    height: 120px;
    padding: 2px 8px;    
}

/* contact section */
#contact{
    position: relative;
    margin-top: 34px;
}
#contact::before{
    content: "";
    position: absolute;
    background: url('img/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: 34px;
}
#contact-box input,#contact-box textarea{
    width: 100%;
    padding: .5rem;
    border-radius: 9px;
    font-size: 1.2rem;
    font-family: 'Bree Serif', serif;
}

#contact-box form{
    width: 40%;
    
}
#contact-box label{
    font-size: 1.3rem;
    font-family: 'Bree Serif', serif;
}

footer{
    
    background-color: black;
    color: white;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    font-family: 'Bree Serif', serif;
    margin-top: 34px;
}

/* utility class */

.h-primary{
    font-size: 3rem;
    padding: 8px;
    font-family: 'Bree Serif', serif;
}
.h-secondary{
    font-size: 2.3rem;
    padding: 20px;
    font-family: 'Bree Serif', serif;
}

.btn{
    padding: 10px 30px;
    border: 3px solid white;
    background-color: brown;
    color: white;
    margin: 19px;
    font-size: 1.5rem;
    border-radius: 12px;
    cursor: pointer;

}
.center{
    text-align: center;
}

button{
    padding: 10px 30px;
    border: 3px solid white;
    background-color: brown;
    color: white;
    margin: 19px;
    font-size: 1.5rem;
    border-radius: 12px;
    cursor: pointer;

}
