/* Counter Section Styling */
.counter-column {
    padding: 10px 24px 0px;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.counter-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.counter-icon-box {
    width: 65px;
    height: 65px;
    background: #ffffff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.1);
    margin-bottom: 10px;
    font-size: 28px;
    color: #f06400;
    position: relative;
    overflow: hidden;
}

.counter-icon-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    opacity: 0.05;
}

.counter-number {
    font-size: 52px;
    font-weight: 900;
    color: #1d1d1f;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Rubik', sans-serif;
}

.counter-label {
    font-size: 16px;
    font-weight: 600;
    color: #f06400;
    /* Match icon color for category label */
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.counter-text {
    font-size: 15px;
    color: #636e72;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .counter-number {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .counter-column {
        text-align: center;
        padding: 20px;
    }

    .counter-icon-box {
        margin: 0 auto 20px;
    }
}