/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 02 2025 | 15:54:44 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* Main Container */
.slider-container {
  position: relative;
  max-width: 450px;
  margin: 30px auto;
  border-radius: 20px;
  overflow: hidden;
}

/* Slides */
.slide {
  display: none;
  text-align: center;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.active-slide {
  display: block;
  opacity: 1;
  transform: scale(1);
}

/* Heading */
.slide h2 {
  font-size: 20px;
  color: #ff4747;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Video Frame */
.slide iframe {
  width: 100%;
  height: 80vh;
  max-height: 750px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Glowing Arrows */
.nav-arrow {
  background: rgba(255, 0, 0, 0.15);
  border: 2px solid rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.7), inset 0 0 8px rgba(255, 0, 0, 0.3);
  color: #fff;
  font-weight: bold;
}
.nav-arrow:hover {
  background: rgba(255, 0, 0, 0.7);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.9);
  }

/* Dots */
.dots-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0 25px;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.3);
  transition: 0.3s;
  cursor: pointer;
}
.dot:hover {
  background-color: rgba(255, 0, 0, 0.8);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
}
.active-dot {
  background-color: #ff4747;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}


#prevBtn { left: 15px; }
#nextBtn { right: 15px; }

/* Preloader */
.preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-top: 5px solid #ff4747;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  z-index: 5;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Fade animation for video transition */
.fade-out {
  opacity: 0;
  transform: scale(0.9);
}

.fade-in {
  opacity: 1;
  transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
  .slide h2 {
    font-size: 18px;
  }
  .nav-arrow {
    font-size: 22px;
    padding: 10px 14px;
  }
  .slider-container {
    max-width: 90%;
  }
  .slide iframe {
    height: 60vh;
  }
}