
*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
body{
    
    /* font-family: Arial, Helvetica, sans-serif; */
    font-family: Ubuntu;
    font-weight: bold;
    background-color: black;
    /* background-color: red; */
    color: white;
    /* margin: 0;
    padding: 0; */
}
:root{
    --navbar-height: 59px;
}
/* Seraching Box */
.inputt{
    position: absolute;
    top: 20px;
    left: 22%;
    color: white;
}
.inputt input{
    border-radius: 8px;
    font-size: 1.2rem;
}

#navbar{
    display: flex;
    align-items: center;
    /* position: fixed; */
    /* position:relative; */
    position:sticky;
    
    top: 0;

}
#weblogo{
    margin: 0px 0px;
}
#weblogo img{
    height: 60px;
    margin: 0px 25px;
}

#navbar ul{
    display: flex;
    position: absolute;
    left: 50%;
}

#navbar::before{
    content:"";
    background-color: black;
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.4;

}
#navbar ul li{
    list-style: none;
    font-size : 1.3rem;
}

#navbar ul li a{
    text-decoration: none;
    color: white;
    padding: 5px 5px;
    
}
#navbar ul li a:hover{
    color: black;
    background-color: white;
    border-radius: 10px;
    /* padding: 5px; */
}
.iteam{
    padding: 10px 10px ;
    margin: 10px 10px ;
    
}


/* home section */
#home{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3px 200px ;
    height: 600px;
}
#home::before{
    content:"";
    /* background: url(image/bg2.jpg) no-repeat center center/cover; */
    background: url('https://source.unsplash.com/collection/190727/1600x900')no-repeat center center/cover;
    position: absolute;
    height: 670px;
    width: 100%;
    z-index: -1;
    opacity: 0.3;
    top:0;
    left:0;
}
.h-primary{
    font-size: 2.8rem;
    padding: 12px;
}
.h-secondary{
    font-size: 1.3rem; 
    padding: 12px;
}
#home h1{
    /* color: black;
    color: white; */
    text-align: center;
}
#home p{
    /* color: black;
    color: white; */
    text-align: center;
    font-size: 1.5rem;
    font-family: Ubuntu;
    
}
.btn{
    padding: 6px 20px ;
    border: 2px solid white;
    background-color: brown;
    color: white;
    margin: 17px;
    font-size: 1.2rem;
    border-radius: 15px;
    cursor: pointer;
}
.center{
    text-align: center;
}

/* services section  */
.services-container{

    background-color: white;
    color: black;
    height: 500px;
}
#services{
    margin: 1px;
    display: flex;
}
#services .box{
    border: 2px solid brown;
    padding: 5px 5px;
    margin: 3px 6px;
    border-radius: 22px;
    background-color: #e5dbdb;
}
#services .box img{
    height: 160px;
    margin: auto;
    display: block;
}

/* Clients section */
#client-section{
    position: relative;
    height: 400px;
}
#client-section::before{
    content: "";
    position:absolute;
    background: url(image/bg2.jpg);
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.3;
}

#client{
    display: flex;
    justify-content: center;
    align-items: center;
}
.client-iteam{
    padding: 27px;
}
.client-iteam img{
    height: 124px;
}

/* Contact us  */
#contact-section{
    background-color: white;
    color: black;
}
.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.0rem;
}
.contact-box form{
    width: 37%;
}
.contact-box label{
    font-size: 1.2rem;
}

/* footer  */
footer{
    background-color: black;
    color: white;
    padding: 10px 25px ;
}