/* css reset */
 *{
    margin:0;
    padding:0;
} 
html{
    scroll-behavior: smooth;
}

/* CSS variables */
:root{
    --navbar-height:59px;
}

#navbar{
    position:sticky;
    display:flex;
    align-items:center;
    top:0px;
}

 
#navbar::before{
    content:"";
   background-color:black;
   position:absolute;
   top:0px;
   left:0px;
   height:100%;
   width:100%;
   z-index:-1;
   opacity:0.4;
} 

/* navigation bar:logo and image  */
 #logo1{
margin: 1px 1px;
padding:5px;
}


#logo1 img {
    max-width: 80px; 
    height: auto;
    padding: 5px; 
}

#navbar ul{
    display:flex;
    list-style-type: none;
    /* font-family: 'Noto Sans', sans-serif;  */
    font-family: 'Signika Negative', sans-serif;
}
 
#navbar ul li a{
    color:rgb(141, 14, 14);
    display:block;
    padding:3px 22px;
    border-radius:20px;
    text-decoration:none;
    font-family: 'Signika Negative', sans-serif;
}

#navbar ul li a:hover{
    color:black;
    background-color:white;
} 

/* Home Section */
 #home{
    display:flex;
    flex-direction:column;
    padding: 2px 25px;
    height:385px;
    justify-content:center;
    align-items:center;
}
#home::before{
    content:"";
   position:absolute;
   background:url('../harry4.jpeg') no-repeat center center/cover;
   top:0px;
   left:0px;
   height:70%;
   width:100%;
   z-index:-1;
   opacity:0.89;
   
}  

#home h1{
    color:rgb(178, 13, 13);
    text-align:center;
    font-family: 'Signika Negative', sans-serif;
}
#home p{
    color:rgb(79, 20, 53);
    text-align:center;
    font-size:1.5rem;
   
} 

/* services section */
 #services{
    margin:10px;
    display:flex;
}
.box{
    border:3px solid rgb(20, 18, 18);
    padding:34px;
    margin:3px 6px; 
    border-radius:28px;
    background:rgb(178, 13, 13);
    margin-bottom:20px;

}
.box img{
    height:150px;
    margin:auto;
    display:block;
}
.box p{
    font-family: 'Signika Negative', sans-serif;
} 

/* client section */
 #client-section {
    height: 544px;
    position:relative;
  }
  #client-section::before {
    content:"";
    position:absolute;
    background:url('../all3.jpeg')no-repeat center center/cover;
    width:100%;
    height:800px;
    z-index:-1;
    opacity:0.89;
  }
  
  #clients {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #clients .client-item {
    padding: 34px;
  }
  
#clients img{
    height:auto;
}
footer{
    background:black;
    color:white;
    padding:9px 20px;
} 
   #contact {
    position: relative;
    margin-bottom: 60px; 
   }
  
  #contact::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 680px;
    z-index: -1;
    opacity: 0.89;
    background: url('../hdhd.jpeg') no-repeat center 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:9px;
    font-size:1.1rem;

  }  

 #contact-box form{
    width:40%;
}
#contact-box label{
    font-size:1.3rem;
    font-family: 'Signika Negative', sans-serif;
}


footer {
    background: black;
    color: rgb(255, 255, 255);
    padding: 9px 20px;
     /* position: fixed; */
    bottom: 0;
    left: 0;
    width: 100%; 
  }   
  
/* Utility classes */

.h-primary {
    color:rgb(17, 15, 15);
    font-size:3.8rem;
    padding:12px;
    font-family: 'Signika Negative', sans-serif;
}

.h-secondary{
    font-size:2.3rem;
    padding:12px;
    font-family: 'Signika Negative', sans-serif;
}

.btn{
    padding: 6px 20px;
    border:2px solid white;
    background-color:rgb(143, 41, 41);
    color:white;
    margin:17px;
    font-size:1.5rem;
    border-radius:10px;
    cursor:pointer;
}

.center{
    text-align:center;
} 
