.video-docker video {
        left: 50%;
        top: 30%;
        transform: translate(-50%, -50%);
    }

    .video-docker::after {
        
    }

    .button-style01{
    display: inline-flex;
    background-color: #BA977B;
    color: #FFFFFF;
    width: auto;
    height: 3.75rem;
    line-height: 3.75rem;
    padding: 0 1.875rem;
    vertical-align: middle;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    font-weight: 300;
    border-radius: 2.5rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
    transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    }

    .button-style01:hover {
    transform: scale(1.06);
}

.tab-area{
    max-width: 600px;
}

 .tab-button.active {
    background-color: #292524;
    border-color: #292524;
    color: #fff;
    width: 160px;
  }
   .tab-button{
    color: #292524;
    width: 110px;
    min-height: 55px;
   }

   .tab-business {
  padding-right: 30px;  /* or whatever value you want */
}

   .tab-private {
  padding-left: 30px;  /* or whatever value you want */
}

 .tabs-switch{
    width: fit-content;
    margin: 0 auto;
 }  

 .hero {
    background: url(../images/inspiration/seasonal-flower-bg.webp) no-repeat center center / cover;
    height: 550px;
    display: flex;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.event-figure{
    height: 560px;
    border-radius: 5px;
}

.testimonial{
    background-color: #FFF5F5;
}

.cursor_style{
    cursor: pointer;
}


@media (min-width: 640px) {
  .sm\:h-screen {
    height: 100vh;
}

.sm\:px-10{
    padding-right: 10px;
    padding-left: 10px;
}
}

/* 🔹 Make outer section allow overflow for arrows */
.testimonial {
  overflow: visible;
  position: relative;
}

/* 🔹 Slider needs space for arrows */
#testimonial-slider {
  position: relative;
  padding: 0 3rem; /* Add space left & right for arrows */
  overflow: visible; /* Ensure arrows don't get cut off */
}

/* 🔹 Arrows - basic style */
.splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: #FFFFFF;
  border-radius:50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

/* 🔹 Move arrows outside the card area */
.splide__arrow--prev {
  left: -2rem; /* Adjust as needed */
}

.splide__arrow--next {
  right: -2rem; /* Adjust as needed */
}

/* 🔹 Optional: shrink arrows on hover */
.splide__arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

/* 🔹 Mobile override: bring arrows back in */
@media (max-width: 768px) {
  .splide__arrow--prev {
    left: 0.5rem;
  }

  .splide__arrow--next {
    right: 0.5rem;
  }
}
#testimonial-slider .splide__pagination {
    position: relative;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }

  /* Style the dots */
  #testimonial-slider .splide__pagination li button {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background-color: #d1d5db; /* Tailwind's gray-300 */
    transition: background-color 0.3s ease;
  }

  /* Active dot */
  #testimonial-slider .splide__pagination li button.is-active {
    background-color: #abacad; /* Tailwind's blue-500 */
  }