/* Css Reset */
*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
/* CSS variables */
:root{
    --navbar-height:59px;
}
#navbar{
    display: flex;
    align-items: center;
}
/*logo and img*/
#logo{
    margin:4px 27px;
}
#logo img{
    height: 56px;
    margin: 3px 5px;
}
#navbar{
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;
}
#navbar ul{
    display: flex;
    font-family: 'Roboto Slab', serif;
}
#navbar::before{
   content: "";
   background-color: black;
   position: absolute;
   top: 0px;
   left: 0px;
   height: 100%;
   width: 100%;
   z-index: -1;
   opacity: 0.7;
}
#navbar ul li{
    list-style: none;
    font-size: 1.3rem;
}
#navbar ul li a{
    display: block;
    padding: 3px 22px;
    border-radius: 20px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-family: 'Roboto Slab', serif;
}

#navbar ul li a:hover{
    color: rgb(3, 3, 3);
    background-color: rgb(255, 255, 255);
    border-color: rgb(118, 224, 127);
}
/*Home section*/
#home{
    display: flex;
    flex-direction: column;
    padding: 3px 160px;
    height: 400px;
    justify-content: center;
    align-items: center;
    
}
#home::before{
    content: "";
    background: url('../Image/png3.jpg') no-repeat center center/cover;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.89;
    
}
#home h1{
    color: white;
    text-align: center;
    font-family: 'Roboto Slab', serif;
}
#home h1 span{
    color: Black;
}
#home p{
    color: white;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Roboto Slab', serif;
}
/*services*/
#services{
    margin: 15px;
    display: flex;
    justify-content: center;
}
#services .box{
    border: 2px solid tomato;
    margin: 10px 10px;
    padding: 10px;
    border-radius: 15px;
}
#services .box p{
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#services .box img{
    height: 150px;
    margin: auto;
    display: block;
}
#services-container{
    margin-top: 10%;
}
/*Utility class*/
.h-primary{
    font-size: 3.8rem;
    padding: 12px;
    text-align: center;
    font-family: 'Baloo Bhai 2', cursive;
}
.h-secondary{
    font-size: 1.8rem;
    padding: 12px;
    text-align: center;
    font-family: 'Baloo Bhai 2', cursive;
}
.btn{
    padding: 6px 20px;
    border: 2px solid white;
    background-color: tomato;
    color: rgb(242, 235, 235);
    margin-top: 90px;
    font-size: 1.4rem;
    border-radius: 10px;
    cursor: pointer;
}
#partners-container{
    position: relative;
}
#partners-container::before{
    content: "";
    position: absolute;
    background: url("../Image/bg3.jpeg") no-repeat center center/cover;
    width: 100%;
    height: 450px;
    z-index: -1;
    opacity: 0.4;
}
#Partners{
    margin: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#Partners .box1 img{
    height: 150px;
    
    padding: 34px;
    display: block;
}
#contactus{
    position:relative;
    margin-top: 100px;
}
#contactus::before{
   
    content: "";
    background: url('../Image/contact.jpg') no-repeat center center/cover;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.6;
    
}
#contact-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 34px;
}
#contact-box form{
  width: 40%;
}
#contact-box label{
    font-size: 1.3rem;
    font-family: 'Baloo Bhai 2', cursive;
}
#contact-box input,
#contact-box textarea{
    width: 100%;
    padding: 0.5rem;
    border-radius: 9px;
    font-size: 1.1rem;
    font-family: 'Baloo Bhai 2', cursive;
}
/*footer*/
footer{
    background: black;
    color: white;
    padding: 9px 20px;
    text-align: center;
}
