/* CSS RESET */
*{
    margin: 0;
    padding: 0;

}
html{
    scroll-behavior: smooth;
}
/* CSS VAriables */
:root{
    --navbar-height: 59px;
}
#navbar{
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;

}
/* logo */
#logo{
    margin: 4px 5px;

}
#logo img{

    margin: 0px 0px;
    height: 74px;
    border-radius: 40px;
}
 /* listing */
 #navbar ul{
     display: flex;
 }
 #navbar::before{
    content: "";
    background-color:black;
    position: absolute;
    top: 0px;
    left:0px ;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.4;

}
 #navbar ul li{
     list-style: none;
     font-size: 2.3rem;
 }
 #navbar ul li a{
     color: white;
     display: block;
     padding: 3px 10px;
     border-radius: 10px;
     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: 633px;
    justify-content: center;
    align-items: center;
}
#home::before{
    content: "";
    background:url('download.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;
}
#home p{
    color: white;
    text-align: center;
    font-size: 1.5rem;
}
#services{
    margin: 34px;
    display: flex;
}
#services .box{
      border: 2px solid brown;
      padding: 34px;
      margin: 3px 6px;
      border-radius: 28px;
      background-color: rgb(222, 214, 214);
}
#services .box img{
    height: 160px;
    margin: auto;
    display: block;
}
#services .box p{

}
#client-section{
    
    position: relative;
}
#client-section::before{
    content: "";
    position: absolute;
    background: url('images.jpg');
    width: 100%;
    height: 100%;
    z-index:-1 ;
    opacity: 0.4;
}
#clients{
    display: flex;
    justify-content: center;
    align-items: center;

}
.client-item{
    padding: 34px;
}
#clients img{
    height: 124px;
}

/* contact section  */
#contact{
    position: relative;

}
#contact::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
    background: url('images1.jpg') no-repeat center/cover;
}
#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: 7px;
}
#contact-box form{
    width: 40%;
}
#contact-box label {
    font-size: 1.3rem;
    
}
footer{
    background-color: black;
    color: white;
    padding:9px 20px ;

}
.h-primary{
    font-size: 3.8rem;
    padding: 12px;
}
.h-secondary{
    font-size: 2.8rem;
    padding: 12px;
}
.btn{
    padding: 6px 20px;
    border: 2px solid red;
    background-color: green;
    margin: 17px;
    border-radius: 10px;
    font-size: 1.5rem;
    color: red;
    cursor: pointer;
}

.center{
    text-align: center;
}

.hadsome{
    font-size: 100px;
}