.header-desktop {
  display: block;
  background-image: url('../image/service-header-image.webp'); /* Replace with your header image path */
  background-size: cover;
  background-position: center;
  height: 400px; /* Adjust the height as needed */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 75px;
  text-align: center;
}
.header-mobile {
  display: none;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .header-mobile {
    display: block;
    background-image: url('../image/service-header-m.webp'); /* Replace with your header image path */
    background-size: cover;
    background-position: center;
    height: 210px; /* Adjust the height as needed */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 75px;
    text-align: center;
  }

}

  

  .header-text {
    color: #ffffff; /* Adjust the color as needed */
    font-weight: bold;
  }

  .card-m-size{
    max-width:330px;
  }

  .card img {
    width: 164px; /* Adjust the width as needed */
    height: auto;
    margin: 20px auto;
  }
  .card-body {
    text-align: center;
  }
  .card-title {
    font-size: 48px;
    color:#222F39;
    font-weight: 900;
  }
  .card-subtitle {
    font-size: 21px;
    font-weight: bold;
    letter-spacing: 4px;
    margin: 10px 0;
    padding: 5px 0;
    background-color: #222F39;
    color: white;
    padding:8px;
  }
  .card-text {
    font-size: 14px;
  }

  .card{
    border:none;
    padding: 40px  40px  40px  40px;
  }



  

  .service-desktop {
    display: block;
  }
  .service-mobile {
    display: none;
  }

  @media (max-width: 768px) {
    .service-desktop {
      display: none;
    }
    .service-mobile {
      display: block;
    }

  }

  
