html {
  scroll-behavior: smooth;
}

.navbar-hidden {
  transform: translateY(-100%);
}
.navbar-visible {
  transform: translateY(0);
}

.dropdown .dropdown-menu {
    display: none;
}
/* Untuk menampilkan submenu ke samping */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu .submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
}
@media screen and (max-width: 769px) {
  .dropdown-submenu .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 20%;
    }
}
.dropdown:hover .dropdown-menu,
.dropdown-submenu:hover .submenu {
  display: block;
}
.dropdown-arrow::after {
  content: " »";
}

.circle-explore .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
  width: 45px;
  height: 45px;
  border-radius: 100%;
}

.circle-explore:hover .icon {
  transform: rotate(-45deg);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Slide In From Left */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-slide-in-left {
  animation: slideInLeft 0.7s ease-out;
}

/* Slide In From Right */
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-slide-in-right {
  animation: slideInRight 0.7s ease-out;
}

/* Zoom In Animation */
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-zoom-in {
  animation: zoomIn 0.6s ease-out;
}

/* Bounce Animation */
@keyframes customBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
.animate-custom-bounce {
  animation: customBounce 1.5s ease infinite;
}

.shadow-card {
  /* box-shadow: 0 0 6px rgba(0, 0, 0, 0.12); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shadow-large-card {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shadow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 8px rgba(92, 81, 255, 0.2);
}

.custom-blue-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.custom-blue-scrollbar::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.custom-blue-scrollbar::-webkit-scrollbar-thumb {
  background: #7fbbeb;
  border-radius: 4px;
}

.custom-blue-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #99c9ef;
}

.custom-blue-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #3293df #f1f5f9;
}

.swiper-benefit .swiper-slide {
  width: fit-content;
  height: 100%;
}

.swiper-benefit .swiper-slide .card-benefit {
  background-color: #fff !important;
  padding: 15px;
  border-radius: 4px;
  height: 80%;
  transition: all 0.5s ease;
}

.swiper-benefit .swiper-slide.swiper-slide-active .card-benefit {
  height: 100%;
}

.swiper-benefit .swiper-slide .box-icon {
  background-color: transparent;
  border: 3px solid #3293df;
  border-radius: 2px;
  font-size: 32px;
  font-weight: 500;
  padding: 0 9px;
  color: #3293df;
  width: fit-content;
}

.swiper-benefit .swiper-slide.swiper-slide-active .box-icon {
  background-color: #3293df;
  color: #fff;
}

.ellipsis-1 {
 -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.ellipsis-2 {
 -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.ellipsis-3 {
 -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.ellipsis-4 {
 -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.ellipsis-5 {
 -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.ellipsis-9 {
 -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.container-location iframe {
    width: 100%;
    height: 300px;
}

.section-testimonial .swiper-slide.swiper-slide-active {
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1) !important;
}

.section-testimonial .swiper-button-prev::after,
.section-testimonial .swiper-button-next::after {
  content: none !important;
}
.section-testimonial .swiper-button-prev,
.section-testimonial .swiper-button-next {
  font-size: 32px;
  border-radius: 0;
  padding: 0px;
  margin: 0px;
  width: 200px;
  height: 100%;
  box-shadow: none;
  top: 0;
}
.section-testimonial .swiper-button-prev {
  background: rgb(246, 247, 251);
  background: linear-gradient(90deg, rgba(246, 247, 251, 1) 0%, rgba(246, 247, 251, 0) 100%);
  margin: 0px -20px;
}
.section-testimonial .swiper-button-next {
  background: rgb(246, 247, 251);
  background: linear-gradient(90deg, rgba(246, 247, 251, 0) 0%, rgba(246, 247, 251, 1) 100%);
  margin: 0 -20px;
}
.section-testimonial .container-swiper {
  position: relative;
}