/* SECTION */
.stats-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 80px 20px;

  background: linear-gradient(135deg,#01236a,#0165d6);
  color: #fff;
}

/* GLASS EFFECT */
.stat-box, .circle-box, .progress-box {
  width: 220px;
  padding: 25px;
  text-align: center;
  border-radius: 15px;

  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);

  transform: translateY(40px);
  opacity: 1 !important;
  transform: none !important;
}

.stat-box.show,
.circle-box.show,
.progress-box.show {
  transform: translateY(0);
  opacity: 1;
}

/* ICON GRADIENT ANIMATION */
.icon.gradient {
  font-size: 32px;
  margin-bottom: 10px;

  background: linear-gradient(45deg,#ff5722,#ff9800,#ff5722);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: gradientMove 3s infinite linear;
}

@keyframes gradientMove {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

/* COUNTER */
.stat-box h2 {
  font-size: 36px;
}

/* CIRCLE */
.bg {
  fill: none;
  stroke: rgba(255,255,255,0.2);
  stroke-width: 10;
}

.progress {
  fill: none;
  stroke: #ff5722;
  stroke-width: 10;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transform: rotate(-90deg);
  transform-origin: center;
}

.circle-text {
  position: relative;
  top: -90px;
}

/* LINEAR */
.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg,#ff5722,#ff9800);
  transition: width 1.5s ease;
}