.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slider-container {
  width: 100%;
  height: calc(100vh - 154px);
}

.hero-slide {
  position: relative;
  width: 100%;
  height: calc(100vh - 154px);
  display: flex;
  align-items: center;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Text */
.hero-info {
  position: relative;
  z-index: 5;
  color: #fff;
}

.hero-info h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);

  @media (max-width: 577.99px) {
    font-size: 25px !important;
  }
}

/* Overlay */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  /* change for darker/lighter */
  z-index: 2;
}

.sticky .hero-slider {
  padding-top: 96px;
}

.event-tagline h1 {
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: clamp(18px, 3vw, 36px);
}

.button-prev,
.button-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 20;
  /*background: var(--theme-2);*/
  color: white;
}

.button-prev {
  left: 20px;
}

.button-next {
  right: 20px;
}

.theme-btn.register-now {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/*--------------------
  Slider counter style
---------------------*/
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.countdown {
  display: flex;
  justify-content: left;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.countdown-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  min-width: 120px;
}

.circular-progress {
  position: relative;
  width: 120px;
  height: 120px;
}

.circular-progress svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.circular-progress circle {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
}

.circle-bg {
  stroke: rgba(255, 255, 255, 0.1);
}

.circle-progress {
  stroke: url(#gradient);
  stroke-dasharray: 502;
  stroke-dashoffset: 502;
  transition: stroke-dashoffset 1s ease;
}

.tick-marks {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.tick {
  position: absolute;
  width: 2px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  left: 50%;
  top: 6px;
  transform-origin: center 54px;
}

.countdown-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.countdown-label {
  font-size: 1rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.event-details {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  margin: 60px auto 40px;
  max-width: 600px;
  animation: fadeIn 1s ease-out 0.6s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}