.hero-section {
  background-color: #000;
  color: white;
  min-height: 80vh; /* makes the section tall */
  display: flex;
  align-items: center;
}

.hero-img {
  max-height: 70vh; /* increase image height */
  width: auto;
  height: auto;
  object-fit: cover;
}

.card-img-top {
  height: 250px; /* fixed height */
  object-fit: cover; /* crops neatly if needed */
  width: 100%;
}

.item-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: white; /* icon color */
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 0 4px black; /* thick black circle */
  opacity: 1 !important;       /* always visible */
}

.item-slide-card {
  width: 90%; /* mobile default */
  max-width: 300px;
}

@media (min-width: 992px) {
  .carousel-item > .d-flex {
    gap: 2rem;
  }
  .item-slide-card {
    width: 30%;
  }
}
