/* Main Section Styling */
.partners-section {
    background-color: #0a0a0a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2 .text-primary {
    color: #8a2be2 !important;
}

.section-header .divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8a2be2, #00ffff);
}

/* Partner Item Styling */
.partner-item {
    padding: 20px;
    transition: all 0.3s ease;
}

.partner-logo-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.partner-logo {
    /*
    max-width: 180px;
    max-height: 80px;
    filter: grayscale(100%) brightness(1.5);
    height: 120px;
    */
    width: 120px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(138, 43, 226, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-overlay {
    opacity: 1;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

.partner-item:hover .partner-logo-container {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

/* CTA Styling */
.become-partner-cta {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.become-partner-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.become-partner-cta .btn {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, #8a2be2, #4b0082);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Owl Carousel Customizations */
.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(138, 43, 226, 0.5) !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    font-size: 20px !important;
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
    background: rgba(138, 43, 226, 0.8) !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -50px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -50px;
}

.owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.3);
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #8a2be2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .partner-logo-container {
        padding: 20px;
        height: 120px;
    }
    
    .partner-logo {
        width: 140px;
    }
    
    .owl-carousel .owl-nav button.owl-prev {
        left: -30px;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: -30px;
    }
}