.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* Let clicks pass through except on buttons */
}

.owl-nav button {
  background: none;
  border: none;
  pointer-events: all;
  font-size: 30px;
  color: #333;
  cursor: pointer;
}

.owl-nav button.owl-prev {
    position: absolute;
    left: -60px;
    border: 1px solid #155c18 !important;
    width: 50px;
    height: 50px;
    border-radius: 50px !important;
}

.owl-nav button.owl-next {
  position: absolute;
  right: -60px; /* Adjust as needed */
  border: 1px solid #155c18 !important;
    width: 50px;
    height: 50px;
    border-radius: 50px !important;
}
.owl-theme .owl-nav [class*='owl-']:hover
{
  background-color:#155c18 !important;
  color: #fff;
}
.carousel-caption {
    animation: fadeInUp 2.5s ease-in-out;
    top:20vh;
  }
  .carousel-caption h1 {
    animation: fadeInUp 1.5s ease-in-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
    font-size: 65px;
    color: #155c18;
    font-family: "Caveat", cursive;
  }
  .carousel-caption .buy_btn {
    animation: fadeInUp 3.5s ease-in-out forwards;
    animation-delay: 3.5s;
    opacity: 0;
    color: #155c18;
    font-family: "Caveat", cursive;
    font-size: 25px;
  }
  .carousel-caption p {
    animation: fadeInUp 2.5s ease-in-out forwards;
    animation-delay: 2.2s;
    opacity: 0;
    width: 60%;
    margin: 0 auto;
    color: #000;
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(0px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .carousel-item {
    height: 80vh;
    background-size: cover;
    background-position: center;
  }

  .carousel-caption h1, .carousel-caption p {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }

