/* ============================================================
   HELIOS PARTNERS SECTION — VIBRANT V3 (DARK THEME)
   ============================================================ */

.partners-section {
    padding: 120px 0;
    background-color: #2563eb;
    /* Medium blue background */
     background-image: url('../images/backgrounds/partners-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Optional: parallax feel */
    position: relative;
    overflow: hidden;
}

/* Blue overlay for consistency */
.partners-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(98, 133, 207, 0.9) 0%, rgba(16, 83, 243, 0.95) 100%);
    z-index: 1;
}

.partners-container {
    position: relative;
    z-index: 2;
}

/* V3 Header - High Contrast */
.partners-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.partners-label {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.partners-title {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.partners-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Logo Slider */
.partners-slider {
    display: flex;
    align-items: center;
    width: 100%;
}

.partners-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.partners-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

/* Premium Card V3 - White Glass to Pop Colored Logos */
.partner-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    /* Bright background for colored logos */
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 24px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);

    /* Reveal state */
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.partner-card.reveal-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.partner-card img {
    max-width: 100%;
    max-height: 65px;
    object-fit: contain;
    filter: none;
    /* NO MORE GRAYSCALE */
    opacity: 1;
    /* Full vibrancy */
    transition: all 0.6s ease;
    position: relative;
    z-index: 1;
}

/* Hover Effects V3 */
.partner-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: #ffffff;
    box-shadow: 0 35px 70px rgba(16, 83, 243, 0.4);
    border-color: #1053f3;
}

.partner-card:hover img {
    transform: scale(1.1);
}

/* Glowing accent circles in background */
.partners-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 83, 243, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

/* Responsive adjustment */
@media (max-width: 1024px) {
    .partners-slider {
        width: 100%;
    }

    .partners-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 80px 0;
    }

    .partner-card {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .partners-slider {
        width: 100%;
    }

    .partners-title {
        font-size: 32px;
    }
}