.carousel-container {
  position: relative;
  width: 100%;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

.carousel-item {
  display: none;
  width: 100%;
  transition: opacity 0.3s ease;
  text-align: center;
}

.carousel-item.active {
  display: block;
}

.carousel-indicators {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  z-index: 5;
}

.carousel-indicators button {
  width: 5px;
  height: 2px;
  border: none;
  background: #ececec;
  border-bottom: 2px solid #bddf39;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.carousel-indicators button.active {
  background: #989898;
  border-bottom: 2px solid #060606;
  opacity: 1;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-control:hover {
  background: rgba(255, 255, 255, 1);
}

.carousel-control-prev {
  left: 0.5rem;
}

.carousel-control-next {
  right: 0.5rem;
}

