/* Brand Slider Styles */
.brand-active.swiper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.brand-active .swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear;
    /* For smooth infinite loop */
}

.brand-active .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.brand-active .brand-item {
    text-align: center;
    padding: 15px;
    /* filter: grayscale(100%); */
 
    transition: all 0.3s ease;
}

.brand-active .brand-item:hover {
 
 
    transform: scale(1.05);
}

.brand-active .brand-item img {
    max-width: 150px;
    height: auto;
    margin: 0 auto;
}

/* Optional: Add pagination for brand slider */
.brand-active .swiper-pagination {
    bottom: 0;
    position: relative;
    margin-top: 20px;
}

/* Optional: Add navigation for brand slider */
.brand-active .swiper-button-next,
.brand-active .swiper-button-prev {
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #333;
}

.brand-active .swiper-button-next:after,
.brand-active .swiper-button-prev:after {
    font-size: 16px;
}

.brand-active .swiper-button-next:hover,
.brand-active .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.2);
}