.counter .number.visible {
    opacity: 1; /* Fade in when visible */
}

.statistics-counter {
    display: flex;
    justify-content: center; /* Default to center */
    gap: 20px;
}

.counter {
    text-align: center;
}

.counter .number {
    transition: opacity 0.5s ease;
    opacity: 0; /* Hide initially */
}

@keyframes countAnimation {
    from { opacity: 0; }
    to { opacity: 1; }
}