/* 
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Lato", "Segoe UI", Tahoma, sans-serif;
    }

    body {
      background: #27273d;
      color: #fff;
      overflow-x: hidden;
    } */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image img {
  display: none;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  background-position: center;
  background-size: cover;
}

.swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 26, 44, 0.95) 30%, rgba(25, 26, 44, 0.4) 100%);
  z-index: 1;
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.swiper-slide-active .video-bg {
  opacity: 1;
}

.content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 550px;
  z-index: 3;
  transition: opacity 0.8s ease, transform 0.8s ease;
  opacity: 0;
  transform: translateY(20px);
}

.swiper-slide-active .hero-text {
  opacity: 1;
  transform: translateY(0);
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  white-space: nowrap;
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cdd0e0;
  margin-bottom: 2rem;
}

.hero-text .cta-btn {
  display: inline-block;
  background: #bb0a1e;
  color: white;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 16px #a6030328;
  transition: all 0.3s ease;
}

.hero-text .cta-btn:hover {
  background: #ff007b;
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  position: absolute;
  right: 0;
  width: 55%;
  top: 50%;
  transform: translate(0, -50%);
}

.hero-image img {
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

/* Tabs for Desktop */
.value-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 10;
  background: #57040e;
  backdrop-filter: blur(10px);
}

.tab {
  flex: 1;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  color: white;
  font-weight: 600;
  border-top: 2px solid transparent;
  position: relative;
  transition: all 0.3s ease;
}

.tab::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: #ffd02b;
  transition: none;
}

.tab.active {
  color: #fff;
  background-color: #bb0a1e;
}

/* Timer animation */
.tab.active .timer-bar {
  position: absolute;
  top: 0%;
  left: 0;
  height: 2px;
  background: red;
  width: 0%;
}

.navigation-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
  gap: 10px;
}

.dot {
  position: relative;
  height: 3px;
  width: 22%;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.dot .dot-fill {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 0%;
  background: #bb0a1e;
  transition: none;
}

/* when active we animate width (we set the timing via JS to match autoplay) */
.dot.active .dot-fill {
  /* fallback duration; JS will set the exact duration to match swiper autoplay */
  transition: width 5s linear;
  width: 100%;
}

.dot.active {
  background-color: rgba(255, 255, 255, 0.4);
}

/* Play/Pause Button */
.play-pause-btn {
  position: absolute;
  bottom: 80px;
  left: 50px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #bb0a1e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  box-shadow: 0 0 20px #bb0a1e;
  transition: all 0.3s ease;
}

.play-pause-btn.playing::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid #bb0a1e;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.play-icon,
.pause-icon {
  fill: #111;
  width: 22px;
  height: 22px;
  transition: opacity 0.3s ease;
}

.pause-icon {
  display: none;
}

.play-pause-btn.playing .play-icon {
  display: none;
}

.play-pause-btn.playing .pause-icon {
  display: block;
}

@media (max-width: 992px) {
  .hero {
    height: 85vh;
  }

  .content-wrapper {
    justify-content: flex-end;
    align-items: flex-start;
    padding: 60px 24px 100px;
    text-align: left;
    flex-direction: column;
  }

  .hero-text h1 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-image img {
    display: none;
  }

  .value-tabs {
    display: none;
  }

  .navigation-dots {
    display: flex;
  }

  .play-pause-btn {
    bottom: 100px;
    width: 50px;
    height: 50px;
    left: unset !important;
    right: 30px !important;
  }

}

@media (min-width: 993px) {
  .navigation-dots {
    display: none;
  }
}