/* Simple Partners Section */

.modern-partners-area {
    position: relative;
    background: url(../images/bg/testibg.webp);
    background-size: cover;
    z-index: 1;
    padding: 60px 0;
}

.modern-partners-area:after {
    position: absolute;
    background: rgba(0, 0, 0, .65);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

        .modern-partners-area .section-title h2 {
            font-size: 50px;
            text-transform: uppercase;
            margin-bottom: 0px;
            font-weight: 900;
            margin-top: 0;
            color: #fff;
            text-align: center;
        }

        .simple-partners-carousel-wrapper {
            position: relative;
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }
        
        .simple-partners-carousel {
            overflow: hidden;
            position: relative;
        }
        
        .simple-partners-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 2rem;
            will-change: transform;
        }

        .simple-partner-item {
            text-align: center;
            padding: 1.5rem;
            background: #1c222e;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            min-width: 200px;
            flex-shrink: 0;
            user-select: none;
        }

.simple-partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.partner-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.simple-partner-item:hover .partner-logo-container {
    background: #e9ecef;
}

.simple-partner-item:hover .partner-logo-container img {
    transform: scale(1.05);
}

        .partner-name {
            font-size: 1.375rem;
            font-weight: 600;
            color: #fff;
            margin: 0;
            line-height: 1.3;
        }
        
        /* Carousel Controls */
        .carousel-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            z-index: 10;
        }
        
        .carousel-btn {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: auto;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .carousel-btn:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .carousel-btn i {
            color: #333;
            font-size: 1.2rem;
        }
        
        /* Hide scroll indicators */
        .scroll-indicators {
            display: none;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .simple-partners-carousel-wrapper {
        padding: 0 10px;
        margin: 40px auto;
    }
    
    .simple-partner-item {
        min-width: 150px;
        padding: 1rem;
    }
    
    .partner-logo-container {
        width: 100px;
        height: 100px;
    }
    
    .modern-partners-area .section-title h2 {
        font-size: 2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .simple-partners-carousel-wrapper {
        margin: 30px auto;
    }
    
    .simple-partner-item {
        min-width: 120px;
        padding: 0.8rem;
    }
    
    .partner-logo-container {
        width: 80px;
        height: 80px;
    }
    
    .partner-name {
        font-size: 0.9rem;
    }
    
    .modern-partners-area .section-title h2 {
        font-size: 1.8rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn i {
        font-size: 0.9rem;
    }
} 