.seba__services__container {
  background-color: #fff;
  box-shadow: 0 4px 6px 6px rgba(0, 0, 0, 0.1);
  padding: 35px 20px;
  border-radius: 15px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.seba__services__container__inner {
  padding: 0px 30px;
  display: flex;
  align-items: center;
}
.seba__service {
  padding: 0px 10px;
}
.seba__service img {
  margin: 0 auto;
}
.seba__service p {
  color: #c41f64;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

.servcies__next__btn,
.services__prev__btn {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 6px 6px rgba(0, 0, 0, 0.1);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1;
}
.services__prev__btn {
  left: 2px;
}
.servcies__next__btn i,
.services__prev__btn i {
  color: #c41f64;
  font-size: 20px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
}
.service-card, .view-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 120px;
  transition: transform 0.2s ease; /* Smooth hover effect */
}
.service-card:hover, .view-all:hover {
  transform: scale(1.05); /* Slight scale on hover for feedback */
}
.service-link, .view-all-link {
  text-decoration: none; /* Remove underline from links */
  color: inherit; /* Inherit text color */
  width: 100%;
  height: 100%;
}
.service-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.service-card p {
  margin: 0;
  font-size: 14px;
  color: #333;
}
.view-all {
  background-color: #e0e0e0;
  font-weight: bold;
  font-size: 16px;
  color: #333;
}
.view-all span {
  font-size: 24px;
  margin-right: 5px;
}

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .services-container {
      margin-top: 15px;
    }
  }

@media (max-width: 600px) {
  .services-container {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(4, auto);
      gap: 15px;
  }
  .service-card, .view-all {
      height: 100px;
      padding: 10px;
  }
  .service-card img {
      width: 30px;
      height: 30px;
  }
  .service-card p {
      font-size: 12px;
  }
  .view-all {
      font-size: 14px;
  }
  .view-all span {
      font-size: 20px;
  }
}