.services-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 90%;
  margin: 0 auto;
}

.services-card {
  width: calc(27.33% - 20px);
  margin-bottom: 64px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
  transition: transform 0.3s ease 0s, opacity 0.3s ease 0s,
    box-shadow 0.3s ease 0s;
  opacity: 1;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

/* For screens smaller than 1080px, show 2 services-cards per row with a 20px gap */
@media screen and (max-width: 1080px) {
  .phone-mar-top {
    margin-top: 30px;
  }

  .services-card {
    width: calc(50% - 20px);
  }
}

.hidden {
  display: none;
}

/* Style for the "Show More" button */
#load-more {
  display: block;
  margin: 20px auto;
  /* Add margin to center the button */
}

/* Style for the "Show Less" button */
#show-less {
  display: none;
  /* Initially hide the "Show Less" button */
  margin: 20px auto;
  /* Add margin to center the button */
}

.services-card img {
  width: 100%;
  height: 100%;
}

.services-card img:hover {
  transform: scale(1.1);
  transition: transform 0.2s;
  box-shadow: 11px 15px 16px 5px rgba(0, 0, 0, 0.14);
}

#load-more {
  display: block;
  margin: 20px auto;
  width: 144px;
  height: 46px;
  /* Add margin to center the button */
  padding: 10px 20px;
  /* Add padding to the button */
  background-color: #1b50b9;
  /* Change the background color to your desired color */
  color: #fff;
  /* Change the text color to white */
  border: none;
  /* Remove the button border */
  border-radius: 5px;
  /* Add rounded corners */
  cursor: pointer;
  /* Add a pointer cursor on hover */
  transition: background-color 0.3s ease;
  /* Add a smooth hover effect for background color */

  /* Optional: Add a hover effect */
  &:hover {
    border: 1px solid #000;
    background: #fff !important;
    color: #1b50b9 !important;
  }
}

/* Style for the "Show Less" button */
#show-less {
  display: none;
  width: 144px;
  height: 46px;
  /* Initially hide the "Show Less" button */
  margin: 20px auto;
  /* Add margin to center the button */
  padding: 10px 20px;
  /* Add padding to the button */
  background-color: #1b50b9;
  /* Change the background color to your desired color */
  color: #fff;
  /* Change the text color to white */
  border: none;
  /* Remove the button border */
  border-radius: 5px;
  /* Add rounded corners */
  cursor: pointer;
  /* Add a pointer cursor on hover */
  transition: background-color 0.3s ease;
  /* Add a smooth hover effect for background color */

  /* Optional: Add a hover effect */
  &:hover {
    border: 1px solid #000;
    background: #fff !important;
    color: #1b50b9 !important;
  }
}

.enq-btn {
  width: 144px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid #ffffff;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1b50b9;
  color: #fff;
}

/* .service-main-container {
  position: relative;
} */
.enq-btn:hover {
  border: 1px solid #000;
  background: #fff !important;
  color: #1b50b9 !important;
}