/* ===============================
   Counter Two (Home Hero)
================================ */

.counter-two {
    position: relative;
    z-index: 1;
}

.counter-two .layer-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.home-counter-row {
    margin-top: 40px;
}

.home-counter-box {
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

/* Odometer number styling */
.home-counter-box .odometer,
.home-counter-box .odometer span {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
}

/* Suffix (M+, B+, %) */
.home-counter-box .odometer-text {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
}

/* Align number + suffix */
.home-counter-box .odometer-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.home-counter-box p {
    margin: 0;
    font-size: 16px;
    color: #eaeaea;
}

/* Prevent number clipping */
.home-counter-box {
    padding: 34px 20px;
    /* increase vertical padding */
}

line-height: 1.2;
/* critical fix */
}