/* Achievements Section */
.section {
  height: 100vh !important;
  transition: all 0.5s ease-in-out;
}

.achievements {
  padding: 40px 20px;
  background-image: url("assets/our-event/subtle-prism.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.achievements .content {
  text-align: center;
}

.achievements .title {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.achievements .stats {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.achievements .stat {
  text-align: center;
}

.achievements .number {
  font-size: 3rem;
  font-weight: bold;
  color: #4e7cdc;
}

.achievements .label {
  font-size: 1.2rem;
  color: #9b4cff;
}

.fadeIn {
  animation: fadeIn 1s forwards;
}

.slideIn {
  animation: slideIn 1s forwards;
}

.zoomIn {
  animation: zoomIn 1s forwards;
}

.pulse {
  animation: pulse 1.5s infinite;
  animation-delay: 1s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* Define bounceInLeft animation */
@keyframes bounceInLeft {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  80% {
    transform: translate3d(-10px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInLeft {
  animation: bounceInLeft 1s forwards;
}

/* Define bounceInRight animation */
@keyframes bounceInRight {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  80% {
    transform: translate3d(10px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInRight {
  animation: bounceInRight 1s forwards;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.bounce:hover {
  animation: bounce 1.2s infinite;
}
.bounceInfinite {
  animation: bounce 1.2s infinite;
}
@keyframes jello {
  0% {
    transform: none;
  }
  11.1% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  22.2% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  33.3% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  44.4% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  55.5% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  66.6% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  77.7% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
  88.8% {
    transform: skewX(0.09765625deg) skewY(0.09765625deg);
  }
  100% {
    transform: none;
  }
}

.jello {
  animation: jello 1s both;
  animation-iteration-count: infinite;
}
.jelloOnce {
  animation: jello 1s both;
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  animation: flash 2s infinite;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.zoomIn {
  animation: zoomIn 1s ease both;
}
