.counter-number-wrapper {
    display: flex;
    overflow: hidden;
    height: 60px; /* Match font-size */
    line-height: 60px;
    font-size: 60px;
    font-weight: 800;
    color: var(--smartmove-color-theme-blue);
}

.counter-label {
    color: var(--smartmove-color-theme-blue2);
    font-weight: bold;
}


.digit-col {
    display: flex;
    flex-direction: column;
    transition: transform 2s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.digit-number, .static-char {
    height: 60px;
    display: block;
}

.static-char {
    padding: 0 2px;
}

/* Container styling from previous response remains the same */
.counter-circle {
    background: #fff;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* Container to force horizontal alignment */
.counter-grid {
    display: flex;
    flex-direction: row; /* Force items to sit side-by-side */
    flex-wrap: nowrap;   /* Prevent them from jumping to the next line */
    justify-content: center;
    align-items: center;
    gap: 40px;           /* Space between the circles */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;      /* Center the whole grid */
}

/* Individual Item sizing */
.counter-item {
    flex: 0 0 auto;      /* Prevent the items from shrinking or growing weirdly */
}

.counter-circle {
    background: #fff;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* Responsive: Only stack on mobile/small tablets */
@media (max-width: 991px) {
    .counter-grid {
        flex-wrap: wrap; /* Allow wrapping only on smaller screens */
        gap: 20px;
    }
    
    .counter-circle {
        width: 220px;
        height: 220px;
    }
}

.counter-header {
    text-align: center;
    margin-bottom: 60px;
}

.counter-tagline {
    display: block; /* Ensures it sits above the title */
    color: #FF2D55; /* The specific bright red/pink from the design */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.counter-title {
    font-size: 56px; /* Large, impactful size */
    font-weight: 800; /* Extra bold */
    color: white;
    line-height: 1.1; /* Tight line height for professional look */
    letter-spacing: -1px; /* Slightly tighter letters like the screenshot */
    margin: 0 auto;
    margin-top: 50px;
}

/* Responsive adjustment for the title */
@media (max-width: 768px) {
    .counter-title {
        font-size: 32px;
        line-height: 1.2;
    }
}