* {
    margin: 0;
    padding: 0;
  }
  html{
      scroll-behavior: smooth;
  }
  #navbar {
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;
  }
  #navbar::before {
    content: " ";
    background-color: black;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
  .logo {
    margin: 4px 6px;
  }
  .logo img {
    margin: 5px;
    width: 80px;
  }
  #navbar ul {
    display: flex;
  }
  #navbar ul li {
    list-style: none;
  }
  #navbar ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 3px 22px;
    border-radius: 20px;
    font-size: 1.5rem;
  }
  #navbar ul li a:hover {
    color: black;
    background-color: white;
  }
  #home {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 3px 200px;
    height: 550px;
  }
  #home::before {
    content: " ";
    background: url("../bg1.jpg") no-repeat center center/cover;
    top: 0;
    left: 0;
    position: absolute;
    height: 642px;
    width: 100%;
    z-index: -1;
    opacity: 0.89;
  }
  #home h1 {
    color: white;
    align-items: center;
  }
  #home p {
    color: white;
    font-size: 1.5rem;
    align-items: center;
  }
  
  #services {
    display: flex;
    margin: 34px;
  }
  #services .box {
    border: 2px solid red;
    padding: 34px;
    margin: 20px;
    background-color: #eae2e2;
    border-radius: 20px;
  }
  #services .box img {
    height: 160px;
    display: block;
    margin: auto;
  }
  
  /* client section */
  #client-section {
    /* height: 290px; */
    position: relative;
  }
  #client-section::before {
    content: "";
    position: absolute;
    background: url("../bg.jpg");
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
  }
  #clients {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .client-items {
    padding: 34px;
  }
  #clients img {
    height: 100px;
  }
  /* Contact section */
  #contact{
      position: relative;
  
  }
  #contact::before{
      content: " ";
      position: absolute;
      background: url("../contact.jpg") no-repeat center center/cover;
      width: 100%;
      height: 100%;
      z-index: -1;
      opacity: .6;
  
  }
  #contact-box{
      display: flex;
      justify-content: center;
      align-items: center;
      padding-bottom: 34px;
  }
  #contact-box input,
  #contact-box textarea{
      padding: 0.5rem;
      width: 100%;
      border-radius: 10px;
      font-size: 1.1rem;
      outline: none;
      border:2px solid black;
  }
  #contact-box form{
      width: 40%;
  }
  #contact-box label{
      font-size: 1.5rem;
  
  }
  
  /* Footer */
  footer{
      background-color: black;
      color: white;
      padding: 10px 20px;
  
  }
  
  /* Utility class */
  .h-primary {
    font-size: 3rem;
    padding: 20px;
  }
  .h-secondary {
    font-size: 1.5rem;
    padding: 20px;
  }
  
  .btn {
    padding: 10px 30px;
    margin: 20px;
    color: white;
    font-size: 1.5rem;
    background-color: #f13f2a;
    border-radius: 12px;
    border: 2px solid white;
    cursor: pointer;
  }
  .center {
    text-align: center;
  }
  

/* Toggle btn classes */
  .toggle_btn{
    position: absolute;
    top: 1.4rem;
    right: 1rem;
    display: none;
    /* display: flex; */
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 20px;
  }
  
  .toggle_btn .bar{
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
  
  }