.service-header{
    background-color: #00080b;
    height: 300px;
    width: 100%;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
}

.service-header h2{
    margin: 0;
    font-size: 20px;
    font-weight: 400;

}

.hamburger{
    width: 45px;
    height: 45px;
    background-color: #222222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-header h1{
    margin: 0;
    font-size: 50px;
    font-weight: 400;

}

.service-header-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 50px;
    box-sizing: border-box;
}

.header{
    background-color: #00080b;
    color: white;
}

.right-navigation a {
    color: #FFFFFF;
    text-decoration: none;
}

/* Why us */


/* About us */

.whyus{
    display: flex;
    justify-content: center;
    margin: 80px 0;
}
.whyus-header span{
    font-size: 15px;
}

.whyus-header h4{
    font-size: 35px;
    font-weight: 450;
    margin: 0;

}

.whyus-flex{
    display: flex;
    gap: 50px;
   
}

.whyus-header{
    width: 40%;
  
}

.whyus-body{
    width: 60%;
  
}

.whyus-body button{
    display: flex;
    align-items: center;
    background-color: transparent;
    gap: 10px;
 border: none;

    font-size: 16px;
    margin-top: 30px;
 
}

/* Works */

.works{
    display: flex;
    justify-content: center;
    margin: 50px 0;
    
}

.work-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    
    
}

.work-card{
    background-color: aquamarine;
    height: 400px;
    
}

.work-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.centerheading{
    text-align: center;
}

.centerheading h4{
    font-size: 35px;
    font-weight: 450;
    margin: 0;
}

/* Technology */

.technologies{
    display: flex;
    justify-content: center;
    margin: 80px 0;
}

.techology-grid{
    display: grid;
    grid-template-columns: repeat(6,1fr);
}

.techology-grid img{
    width: 200px;
}

.service-descritpion{
  display: flex;
  justify-content: center;
}

/* FAQ */

.faq{
    display: flex;
    justify-content: center;
}

.faq h3{
    font-size: 35px;
    font-weight: 400;

}

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
  }
  
  .accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid #222222;
  }
  
  .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;

    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
  }
  
  .accordion button:hover,
  .accordion button:focus {
    cursor: pointer;
    color: #222222;
  }
  
  .accordion button:hover::after,
  .accordion button:focus::after {
    cursor: pointer;
    color: #222222;
    border: 1px solid #222222;
  }
  
  .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
  }
  
  .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border-radius: 22px;
  }
  
  .accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
  }
  .accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
  }
  
  .accordion button[aria-expanded='true'] {
    color: #222222;
  }
  .accordion button[aria-expanded='true'] .icon::after {
    width: 0;
  }
  .accordion button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    max-height: fit-content;
    transition: all 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
  }
  
  
  
  
  @media screen and (min-width: 321px) and (max-width: 768px){
    .service-header h1{
      font-size: 30px;
      margin-top: 20px;
    }
    
    .work-grid{
      grid-template-columns: repeat(1,1fr);
    }

    .whyus-flex{
      flex-direction: column;
    }

    .whyus-header{
      width: 100%;
    }

    .whyus-body{
      width: 100%;
    }

    .techology-grid{
      grid-template-columns: repeat(1,1fr);
      gap: 50px;

    }

    .technology{
      display: flex;
      justify-content: center;
    }

    .techology-grid img{
      width: 80%;
    }


  }

  