* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#banner-carousel {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  height: 350px;
  object-position: bottom;
}

@media (max-width: 768px) {
  #banner-carousel {
    height: 304px;
    /* margin-top: 20px; */
  }
  .carousel-slide img {
    height: 180px;
  }
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  color: #034da1;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  z-index: 10;
}

.banner-prev { left: 18px; }
.banner-next { right: 18px; }

.banner-nav i { font-size: 16px; }

.banner-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dots button.active {
  background-color: #fff;
}

.show-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.show-more-wrap-packages {
  display: flex;
  justify-content: center;
  margin-top: -1rem;
  padding-bottom: 1.5rem;
}
.show-more-wrap-packages .show-more,
.show-more-wrap .show-more {
  background-color: #0c4da2;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 12.8px;
  transition: background-color 0.3s;
}

.show-more:hover {
  background-color: #fee900;
  color: #0c4da2;
}

.ad-banner-desktop {
  display: block;
  max-width: 100%;
  height: 171px;
  border-radius: 8px;
}

.ad-banner-mobile {
  display: none;
  max-width: 100%;
  height: 171px;
  object-fit: cover;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .ad-banner-desktop {
    display: none;
  }
  .ad-banner-mobile {
    display: block;
  }
video.desktop-video.responsive-video {
    display: none;
}
#banner-carousel .item img{
  border-radius: 0 !important;
}
#banner-carousel .item video{
  border-radius: 0 !important;
}
}
/* Ensure banner container is positioned properly */
#banner-carousel {
  position: relative;
}

/* Banner image styling */
#banner-carousel .item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

#banner-carousel .item video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Center the navigation buttons vertically inside banner */
#banner-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
}

#banner-carousel .owl-nav button {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  pointer-events: all;
  transition: background 0.3s ease;
}

#banner-carousel .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Center dots inside the banner at bottom */
#banner-carousel .owl-dots {
  position: absolute;
  bottom: 20px; /* Adjust vertical offset as needed */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;
}

#banner-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  display: inline-block;
  border-radius: 50%;
  transition: background 0.3s;
}

#banner-carousel .owl-dot.active span {
  background: #ff6600; /* your active color */
}
#banner-carousel .owl-nav .owl-prev {
  margin-left: 20px;
}

#banner-carousel .owl-nav .owl-next {
  margin-right: 20px;
}

.owl-dots .owl-dot:nth-child(n+3) {
	display: block !important;
}