/* CSS reset */
*{
    margin: 0px;
    padding: 0px;
}
html{
    scroll-behavior: smooth;
}
/* CSS Variable */
:root{
    --navbar-height:60px;
}
/* Nav bar */
#navbar{
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;
    z-index: 2;
}

/* Logo and image */
#logo{
    margin: 10px 15px;  
}
#logo img{
    width: 30px;
    height: 30px;
    border-radius: 50px;
}
#navbar ul{
    display: flex;
    font-family: 'Titillium Web', sans-serif;
}
#navbar::before{
    content: "";
    background-color: black;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    opacity: 0.3;
}
#navbar ul li{
    list-style-type:none;
    font-size: 1.2rem;
}
#navbar ul li a{
    color: black;
    display: block;
    padding: 5px 10px;
    border-radius: 20px;
    text-decoration: none;
}
#navbar ul li a:hover{
    background-color: rgb(102, 144, 156);
}
/* Home section */
#home{
    display: flex;
    flex-direction: column;
    padding: 3px 200px;
    justify-content: center;
    align-items: center;
    height: 562px;
}
#home::before{
    content: "";
    background: url('images/bg.jpg') no-repeat center center/cover;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    opacity: 0.7;
}

#home h1{
    color: rgb(34, 49, 54);
    text-align: center;

}


/* Services Section */

#services{
    display: flex;
    margin: 34px;
}
#services .box{
    border: 2px solid red;
    padding: 10px;
    margin: 5px 10px;
    border-radius: 20px;
    background-color: rgb(243, 235, 235);
}
#services .box img{
    width: 150px;
    display: block;
    margin: auto;   
}

/* CLient Section */
#clients{
    display: flex;
    justify-content: center;
    align-items: center;
}
#clients img{
    height:auto ;
    margin: 2px;
}
#client-section{
    position: relative;
    z-index: -1;
}
#client-section::before{
    content: "";
    position: absolute;
    background:url(images/bg2.jpg) no-repeat center center/cover ;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}
#client-item{
    padding:34px;
}

/* COntact Section */
#contact{
    position: relative;
}
#contact::before{
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    background: url(images/contact.jpg) no-repeat center center/cover;
    
}
#contact-box form{
    width: 40%;
}
#contact-box label{
    font-size: 1.3rem;
    font-family: 'Titillium Web', sans-serif;
}

#contact-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 34px;
}
#contact-box input,
#contact-box textarea{
    width: 100%;
    padding: 0.5rem;
}

#footer{
    background: black;
    color: white;
}

/* Utitlity Class */
.h-primary{
    font-size: 2.8rem;
    padding: 12px;
    font-family: 'Titillium Web', sans-serif;
}
.h-secondary{
    font-size: 2rem;
    padding: 12px;
    font-family: 'Titillium Web', sans-serif;
}
.btn{
    padding:8px 20px;
    border: 3px solid rgb(57, 86, 95);
    background-color: rgb(177, 163, 163);
    color:black;
    margin: 17px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}
.center{
    text-align: center;
}


