
/* Container Utama */
.counter-box-modern {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.03); /* Transparansi sangat tipis */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(8px); /* Efek blur di belakang kotak */
  transition: all 0.5s ease;
  overflow: hidden;
  margin-bottom: 30px;
}

/* Efek Cahaya saat Hover */
.counter-box-modern:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.08);
  border-color: #0078ff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 120, 255, 0.2);
}

/* Icon Wrap */
.counter-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #0078ff, #00c6ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 120, 255, 0.3);
  transition: 0.5s;
}

.counter-box-modern:hover .counter-icon-wrap {
  transform: rotateY(360deg);
  background: #fff;
  color: #0078ff;
}

/* Tipografi */
.counter-box-modern .counter {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.counter-box-modern .counter-label {
  font-size: 14px;
  font-weight: 500;
  color: #cde1f8;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Garis hiasan di bawah label */
.counter-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #0078ff;
  margin: 10px auto 0;
  transition: 0.5s;
}

.counter-box-modern:hover .counter-label::after {
  width: 60px;
}
