/* CAROUSEL LAYOUT */
#servicesCarousel {
  max-width: 800px;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* SLIDES */
#servicesCarousel .carousel-item {
  padding: 41px 40px 50px;
}

#servicesCarousel h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

#servicesCarousel .p-text {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

/* ICON */
.service-icon {
  font-size: 52px;
  margin-bottom: 15px;
  color: #0d6efd;
}

/* INDICATORS */
#servicesCarousel .carousel-indicators {
  bottom: 20px;
}

#servicesCarousel .carousel-indicators li {
  width: 22px;
  border-radius: 50%;
  background: #ccc;
}

#servicesCarousel .carousel-indicators .active {
  background: #fed51b;
}

/* CONTROLS */
#servicesCarousel .carousel-control-prev,
#servicesCarousel .carousel-control-next {
  width: 10%;
}

#servicesCarousel .carousel-control-prev-icon,
#servicesCarousel .carousel-control-next-icon {
  filter: invert(1);
}

/* MOBILE */
@media (max-width: 768px) {
  #servicesCarousel .carousel-item {
    padding: 60px 25px 85px;
  }
}

.numbered-indicators li {
  width: 32px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #333;
  font-weight: 700;
  font-size: 14px;
  text-indent: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.numbered-indicators .active {
  background: #0d6efd;
  color: #fff;
  transform: scale(1.15);
}

/* Inhaltsverzeichnis */
.service-nav {
  list-style: none;
  padding: 0;
}

.service-nav li {
  display: flex;
  align-items: center;
  padding: 14px 15px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #f8f9fa;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-nav li span {
  display: inline-flex;
  width: 32px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  margin-right: 12px;
}

.service-nav li:hover {
  background: #e9f1ff;
  transform: translateX(6px);
}

.service-nav li.active {
  background: #0d6efd;
  color: #fff;
}

.service-nav li.active span {
  background: #fff;
  color: #0d6efd;
}
