/* Custom Video Slider Styles */
.videoSwiper {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  padding: 80px 0;
  position: relative;
  overflow: visible;
  perspective: 1200px; /* 3D perspective for coverflow effect */
}

.videoSwiper .swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 450px;
  transform-style: preserve-3d;
}

.videoSwiper .swiper-slide {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -140px; /* Half of width */
  margin-top: -225px; /* Half of height */
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  width: 280px;
  height: 450px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  cursor: pointer;
  transform-origin: center center;
  backface-visibility: hidden;
}

/* Active slide enhancements */
.videoSwiper .swiper-slide-active {
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  border: 3px solid rgba(255,255,255,0.3);
}

.vsp-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}

.vsp-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Enhanced overlay */
.vsp-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
  padding: 25px 20px;
  text-align: center;
}

.vsp-title {
  color: #fff;
  font-size: 18px;
  margin: 0 0 15px 0;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  line-height: 1.2;
}

.vsp-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vsp-btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(255,255,255,0.4);
}

/* Enhanced Navigation */
.videoSwiper .swiper-button-next, 
.videoSwiper .swiper-button-prev {
  color: #fff;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  margin-top: -27px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
}

.videoSwiper .swiper-button-next:hover,
.videoSwiper .swiper-button-prev:hover {
  background: rgba(0,0,0,0.9);
  border-color: rgba(255,255,255,0.4);
  transform: scale(1.1);
}

.videoSwiper .swiper-button-next:after,
.videoSwiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

/* Enhanced Pagination */
.videoSwiper .swiper-pagination {
  bottom: 10px;
}

.videoSwiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.videoSwiper .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.3);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 15px rgba(255,255,255,0.6);
}

/* Gallery Slider - Keep Swiper.js */
.gallerySwiper {
  width: 100%;
  max-width: 800px;
  margin: 50px auto;
}

.gallerySwiper .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
}

.gallerySwiper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .videoSwiper {
    padding: 60px 20px;
  }
  
  .videoSwiper .swiper-slide {
    width: 250px;
    height: 400px;
    margin-left: -125px;
    margin-top: -200px;
  }
  
  .vsp-title {
    font-size: 16px;
  }
  
  .vsp-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
}