/* Clients/Brands Section Improvements */

.brand {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #4361ee 0%, #3a56d4 100%);
    overflow: hidden;
}

.brand::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.brand::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.section__title .title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.section__title .title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.brand .swiper-container {
    padding: 30px 0;
    overflow: visible;
}

.brand-items {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brand-items:hover {
    transform: translateY(-10px);
    background-color: #f8f9fa;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.brand-items img {
    max-width: 80%;
    max-height: 80px;
    display: block;
    transition: all 0.3s ease;
    object-fit: contain;
}

.brand-items:hover img {
    transform: scale(1.05);
}

/* Swiper Navigation Styles */
.brand .swiper-button-prev,
.brand .swiper-button-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.brand .swiper-button-prev::after,
.brand .swiper-button-next::after {
    font-size: 20px;
    font-weight: 700;
}

/* Responsive styles */
@media (max-width: 991px) {
    .brand {
        padding: 50px 0;
    }
    
    .section__title .title {
        font-size: 32px;
    }
    
    .brand-items {
        height: 100px;
    }
    
    .brand-items img {
        max-height: 70px;
    }
}

@media (max-width: 767px) {
    .brand {
        padding: 40px 0;
    }
    
    .section__title .title {
        font-size: 28px;
    }
    
    .brand-items {
        height: 90px;
        padding: 15px;
    }
    
    .brand-items img {
        max-height: 60px;
    }
}

@media (max-width: 575px) {
    .brand {
        padding: 30px 0;
    }
    
    .section__title .title {
        font-size: 24px;
    }
    
    .brand-items {
        height: 80px;
        padding: 10px;
    }
    
    .brand-items img {
        max-height: 50px;
    }
} 