/* counter.css */
.counter-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.counter-box {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  border-style: solid;
  border-width: 2px 2px 0 2px; /* top, right, bottom (0), left */
  background-color: transparent;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  text-align: center;
  padding: 30px 15px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* keeps spacing tidy */
  align-items: center;
}

.counter-box i {
  font-size: 30px;
  margin-bottom: 15px;
}

.counter-number {
  font-size: 32px;
  font-weight: 700;
  color: #fff !important;
  margin: 0; /* rapihkan dari margin-bottom */
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px; /* pastikan seimbang */
}

.counter-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.counter-box p {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  min-height: 2.6em; /* pastikan tinggi konsisten */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Colored Borders & Texts */
.counter-box.orange {
  border: 2px solid #ff6f00;
}
.counter-box.orange i,
.counter-box.orange p {
  color: #ff6f00;
}

.counter-box.cyan {
  border: 2px solid #00bcd4;
}
.counter-box.cyan i,
.counter-box.cyan p {
  color: #00bcd4;
}

.counter-box.pink {
  border: 2px solid #f50057;
}
.counter-box.pink i,
.counter-box.pink p {
  color: #f50057;
}

.counter-box.purple {
  border: 2px solid #9c27b0;
}
.counter-box.purple i,
.counter-box.purple p {
  color: #9c27b0;
}