html, body {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
}

.full-screen {
    height: 100%;
}
.btn-primary {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    border: none;
    font-weight: bold;
}
.btn-primary:hover {
    opacity: 0.9;
}

.w-90 {
    width: 90%;
}

.scroll-indicator {
  left: 50%;
  transform: translateX(-50%);
  color: #f5f5f5;
  opacity: 0; 
}

.video-box {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  cursor: pointer;
  background-color: #000;
  transition: transform 0.3s;
}

.video-box:hover {
  transform: scale(1.01);
}

.thumbnail {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  padding: 20px 30px;
  font-size: 2rem;
  color: #000;
  transition: background 0.3s, transform 0.3s;
}

.play-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}


.video-loading {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.d-none {
  display: none !important;
}

.viewer-count {
  opacity: 0.85;
  background-color: transparent;
}

.step .circle {
  width: 50px;
  height: 50px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 auto;
  background-color: transparent;
  color: #000;
}


.swiper {
    width: 90%;
    max-width: 1200px;
    padding: 60px 0;
}

.swiper-slide {
    text-align: center;
    transition: transform 0.5s, filter 0.5s;
    transform: scale(0.9);
    filter: blur(2px) brightness(0.7);
}

.swiper-slide-active {
    transform: scale(1.1);
    filter: blur(0) brightness(1);
    z-index: 10;
}

.swiper-slide img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.swiper-slide img:hover {
    transform: scale(1.03);
}

.features-section {
  padding: 4rem 2rem;
  text-align: center;
  color: black;
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgb(0, 0, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(238, 51, 95, 0.4);
}


.feature-box i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  background: (45deg, rgb(238, 51, 95), #fd4929)
}

.cta-wrapper {
  margin-top: 3rem;
}
.requirement-card {
  background: rgba(0, 0, 0, 1);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.05);
}
.requirement-card:hover {
  transform: translateY(-5px);
}
.border-purple {
  border-color: rgba(168, 85, 247, 0.5) !important;
}

.bg-purple {
  background: linear-gradient(135deg, #3b0a57, #6f00ff);
}
.bg-cyan {
  background: linear-gradient(135deg, #005766, #00d4ff);
}
.text-lime {
  color: #7fff7f;
}
.text-strong-orange {
  color: #FF8100;
}
.btn-outline-warning {
  border: 1px solid #FF8100 !important;
}
.btn-outline-warning:hover {
  color: #FFFFFF !important;
  background: #FF8100 !important;
}
.border-purple {
  border-color: #b56bff !important;
}
.border-cyan {
  border-color: #00eaff !important;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 999;
}

.whatsapp-text {
  background: #000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  font-size: 14px;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.whatsapp-text.hide {
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #20b955;
  color: #fff;
}

.vsl-activity {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}