.gwbs-carousel {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}
.gwbs-carousel .carousel-item {
  background: #f5f5f5;
}
.gwbs-slider-image {
  width: 100%;
  height: auto;
  display: block;
}
.gwbs-caption {
  left: 8%;
  right: auto;
  bottom: 18%;
  text-align: left;
  max-width: 560px;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(5px);
  padding: 24px 28px;
  border-radius: 18px;
}
.gwbs-caption h2 {
  font-size: clamp(26px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 10px;
  font-weight: 800;
  color: #fff;
}
.gwbs-caption p {
  font-size: clamp(15px, 1.5vw, 20px);
  color: #fff;
  margin-bottom: 16px;
}
.gwbs-btn {
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 700;
}

/* Video trigger */
.gwbs-video-trigger {
  display: block;
  position: relative;
  cursor: pointer;
  line-height: 0;
}
.gwbs-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #222;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  pointer-events: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.gwbs-video-trigger:hover .gwbs-play-icon {
  transform: translate(-50%, -50%) scale(1.12);
  background: #fff;
}

/* Video overlay */
.gwbs-video-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
}
.gwbs-video-overlay.gwbs-open {
  display: flex;
}
.gwbs-video-wrap {
  position: relative;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.gwbs-video-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.gwbs-video-close {
  position: absolute;
  top: -36px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  z-index: 1;
}
.gwbs-video-close:hover {
  color: #ccc;
}
.gwbs-carousel .carousel-control-prev,
.gwbs-carousel .carousel-control-next {
  width: 7%;
  background: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gwbs-carousel .carousel-control-prev:hover,
.gwbs-carousel .carousel-control-next:hover {
  opacity: 1;
  background: none !important;
}
.gwbs-carousel .carousel-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .gwbs-caption {
    left: 6%;
    right: 6%;
    bottom: 10%;
    padding: 16px 18px;
    border-radius: 14px;
  }
  .gwbs-caption h2 {
    font-size: 24px;
  }
  .gwbs-caption p {
    font-size: 14px;
  }
  .gwbs-carousel .carousel-control-prev,
  .gwbs-carousel .carousel-control-next {
    width: 12%;
    background: none !important;
  }
}
