/* Happy Client Section Styles */
.happy-client-sec {
    background-color: #2b56f5; /* Primary blue to match design */
    background-image: url('../images/particle.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 70px 0;
    overflow: hidden;
}

/* Fallback gradient if background image doesn't cover enough */
.happy-client-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(43,86,245,0.95) 0%, rgba(43,86,245,0.85) 50%, rgba(43,86,245,0.4) 100%);
    z-index: 0;
}

.client-stat-item {
    color: #ffffff;
    padding: 10px;
}

.stat-icon {
    font-size: 45px;
    line-height: 1;
    display: inline-block;
    color: #ffffff;
}

.stat-number {
    font-size: 38px;
    letter-spacing: 0.5px;
}

.stat-text {
    font-size: 15px;
    opacity: 0.9;
    font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .happy-client-sec{padding: 50px 0px;}
    .stat-number {
        font-size: 32px;
    }
    .stat-icon {
        font-size: 35px;
    }
}

@media (max-width: 767px) {
    .client-stat-item {
        justify-content: center !important;
        margin-bottom: 15px;
        padding: 5px;
    }
    .stat-content {
        text-align: left;
    }
    .happy-client-sec {
        padding: 50px 0 25px 0;
    }
    .stat-number{
        font-size: 28px;
    }
    .stat-icon {
        font-size: 26px;
        margin-right: 10px !important;
    }
}
