.achieve-section {
  background: var(--new-bg-green);
}
.achieve-item {
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.25s;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.achieve-item h5 {
  margin-bottom: .5rem;
}
.achieve-item:hover {
  transform: translateY(-6px);
}
.achieve-icon {
  font-size: 3rem;
  color: var(--new-green);
  margin-bottom: 12px;
}
.metric-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: center;
}
.metric-value {
  font-weight: 900;
  font-size: 1.8rem;
  color: #111;
}
.metric-label {
  color: #666;
}