.countdown-section {
  padding: 100px 0;
  background: var(--light-primaryclr);
  color: var(--plainclr);
  position: relative;
  overflow: hidden;
}

/* HEADER */
.countdown-section .section-header h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
  color: var(--plainclr) !important;
}

.countdown-section .section-header p {
  font-size: 15px;
  color: var(--plainclr) !important;
}

/* WRAPPER */
.countdown-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* TIME BOX */
.time-box {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* NUMBER */
.time-box span {
  font-size: 42px;
  font-weight: 800;
  display: block;
}

/* LABEL */
.time-box small {
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 5px;
  opacity: 0.9;
}

/* HOVER */
.time-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/* GLOW EFFECT */
.glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  opacity: 0;
  transition: 0.5s;
}

.glow:hover::before {
  opacity: 1;
  animation: shine 1.2s linear;
}

@keyframes shine {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
/* PULSE ANIMATION */
.pulse {
  animation: pulse 2.5s infinite;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

.delay-3 {
  animation-delay: 0.9s;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .countdown-section .section-header h2 {
    font-size: 28px;
  }
  .time-box {
    width: 120px;
    height: 120px;
  }
  .time-box span {
    font-size: 34px;
  }
}/*# sourceMappingURL=countdown.css.map */