.carousel-item {
  height: 625px;
  overflow: hidden;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  padding: 0 20px;
  text-align: center;
  border-radius: 10px;
}

.carousel-caption h5 {
  font-size: 2.5vw;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  margin-bottom: 0.2rem;
}

.carousel-caption p {
  font-size: 1.5vw;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}

/* === Responsif untuk Tablet (<= 768px) === */
@media (max-width: 768px) {
  .carousel-item {
    height: 350px; 
  }

  .carousel-caption h5 {
    font-size: 4vw;
  }

  .carousel-caption p {
    font-size: 3vw;
  }
}

/* === Responsif untuk Mobile Kecil (<= 480px) === */
@media (max-width: 480px) {
  .carousel-item {
    height: 180px;
  }

  .carousel-caption h5 {
    font-size: 4.5vw;
  }

  .carousel-caption p {
    font-size: 3vw;
  }
}
