.services-slider {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.service-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 400px;
  gap: 20px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease;
  position: absolute;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.service-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.service-slide img {
  width: 50%;
  border-radius: 10px;
  object-fit: cover;
}

.service-text {
  width: 45%;
}

.service-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.service-text p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.cta-btn {
  display: inline-block;
  background: #ff1b6b;
  color: white;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #45caff;
}


.service-slide img {
  height: 400px;
}
