/* CSS Reset */
*{
    margin: 0;
    padding: 0;
}

html{
    /* scroll-behavior: smooth; */
}

#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.7;
}
/* Logo and Imgage*/

#logo{
    margin: 6px 15px;
  
}

#logo img{
    margin: 5px 3px;
    height: 56px;
}

/*List styling*/



#navbar ul{
    display: flex;
    font-family: 'Baloo Bhai', cursive;

}

#navbar ul li{
    /* color: white; */
    list-style: none;
    font-size: 1.3rem;
}

#navbar ul li a{
    color: white; 
    display: block;
    padding: 3px 10px;
    border-radius: 3px;
    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: 406px;
    justify-content: center;
    align-items: center;
}

#home h1{
    color: white;
    text-align: center;
    font-family: 'Bree Serif', serif;
}

#home::before{
    content: "";
    background:url('img/Bg.jpg') no-repeat center center/cover;
    position: absolute;
    height: 69%;
    /* height: 642px; */
    width:100%;
    top:0px;
    left:0px;
    z-index: -1;
    /* opacity: 0.4; */
    
}

#home p{
    color: white;
    text-align: center;
    font-size: 1.8rem;
    font-family: 'Bree Serif', serif;

}
/* services section */
#services{
    margin: 34px;
    display: flex;
}

#services .box{
    border: 2px solid brown;
    padding: 29px;
    margin: 0px 4px;
    border-radius: 28px;
    background: #f2f2f2;
    margin-bottom: 20px;
}

#services .box img{
    height: 150px;
    display: block;
    margin: auto; 
    padding-top: 5px;
 /* margin auto karvu hoy to display block joie */
}

#services .box p{
    font-family: 'Bree Serif', serif;
    text-align: justify;
    /* text-align: center; */
} 

/* client-section */

#client-section{
    position: relative;
    margin-bottom: 50px;

    /* height: 344px; */
}

#client-section::before{
    content: "";
    position: absolute;
    background: url('img/ourClients.jpg')no-repeat center center/cover;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
   }

#clients{
    display: flex;
    justify-content: center;
    align-items: center;

}

/* .client-item{
    padding: 34px;
} */

#clients img{
    height: 124px;
}

/* Contects-section */
#contact{
    position: relative;
}

#contact h1{
    color: white;
}

#contact::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.89;
    /* margin-top: 47px; */
    z-index: -1;
    background: url('img/contactUs.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{
    background-color: rgb(143, 228, 231);
    width: 100%;
    padding: 0.5rem;
    border-radius: 9px;
    font-size: 1.1rem;
    font-family: 'Bree Serif', serif;
} 

#contact-box form{
    width: 40%;
}
#contact-box label{
    color: white;
    font-size: 1.3rem;
    font-family: 'Bree Serif', serif;
}

#s-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 100%; */
}


footer{
    /* position:static; */
    /* margin-bottom: 5px; */
    background: black;
    color: white;
    padding: 9px 20px;
}

/* Utility class */

.h-primary{
    font-size: 5.8rem;
    padding: 12px;
    font-family: 'Bree Serif', serif;
}

.h-secondary{
    font-size: 2rem;
    padding: 12px;
    font-family: 'Bree Serif', serif;
}

.btn{
    margin: 17px;
    padding: 6px 20px;
    font-size: 1.5rem;
    border: 2px solid white;
    background-color: rgb(65, 226, 105);
    color: rgb(17, 16, 16);
    border-radius: 10px;
    cursor: pointer;
}

.btn:hover{
    background-color:rgb(224, 87, 87);
}

.center{
    text-align: center;
}


