.service-page {
    display: grid;
    place-items: center;
  }
  #services {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
    padding: 20px 20px 5px 20px;
    margin-bottom: 40px;
    border-bottom: 6px solid #fc036b;
    border-radius: 10px;
  }
  .card-container {
    margin: 0px 20%;
    display: grid;
    grid-template-columns: repeat(3, 300px);
    gap: 10px;
  }
  .card {
    background-color: white;
    width: 280px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
  }
  .image1 {
    background: url(./lidar/1.png);
    height: 100px;
    background-size: cover;
    background-position-y: bottom;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
  }
  .image2 {
    background: url(./photo-geomentry/1.png);
    height: 100px;
    background-size: cover;
    background-position-y: bottom;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
  }
  .image3 {
    background: url(./lidar/6.png);
    height: 100px;
    background-size: cover;
    background-position-y: bottom;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
  }
  .h1 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
  }
  .card-content {
    padding: 10px 20px 30px 20px;
  }
  .card-details {
    height: 220px;
    font-size: 16px;
    font-family: "Gill Sans", "Gill Sans MT", "Trebuchet MS", sans-serif;
  }
  .enquire_btn {
    background-color: #fc036b;
    padding: 7px 10px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
  }
  @media (max-width: 786px) {
    .card-container {
      grid-template-columns: 300px;
    }
  }