/* Hero Carousel */
#hero-section{
}
.carousel-item img{
    height:100%;
    object-fit:cover;
}

/* carousel navigation btn */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none; /* remove default bootstrap icon */
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(0, 0, 0, 0.6); /* dark circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Custom Thick White Arrow */
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: '';
  width: 14px;
  height: 14px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
}

.carousel-control-prev-icon::after {
  transform: rotate(-135deg);
}

.carousel-control-next-icon::after {
  transform: rotate(45deg);
}

/* Ensure it stays above image */
.carousel-control-prev,
.carousel-control-next {
  z-index: 10;
}

@media(max-width:768px){
    .carousel-item img{
      height: calc(100vh - 80px);
      object-fit:cover;
      object-position: top;
    }
}