.features-slider {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px 0;
}

.features-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: slideLeft 18s linear infinite;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 240px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: #f6f8fb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h4 {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
}

.feature-text p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

@keyframes slideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/*<!-- category start -->*/
.category-slider {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

.category-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: catSlide 10s linear infinite;
}

.category-item {
    text-align: center;
    min-width: 160px;
}

.category-link {
    text-decoration: none;
    color: #000;
}

.category-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #f4f4f4;
    margin: 0 auto 10px auto;
    position: relative;
    overflow: hidden;
}

.category-circle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: #bbd0f3;
    border-bottom-left-radius: 65px;
    border-bottom-right-radius: 65px;
}

.category-circle img {
    width: 70%;
    height: auto;
    position: relative;
    z-index: 2;
    margin-top: 15px;
}

.category-name {
    font-size: 14px;
    font-weight: 600;
}

@keyframes catSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-80%); }
}