/* ========================================
   Partners Section
   ======================================== */

.partners-section {
    padding: 60px 0;
    background-color: var(--gray-light);
}

.partners-content {
    padding-right: 30px;
}

.partners-title {
    font-family: 'Russo One', sans-serif;
    font-size: 32px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.partners-intro {
    font-size: 16px;
    color: var(--gray-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Partner Features */
.partners-features {
    margin-bottom: 0;
}

.partner-feature {
    display: flex;
    align-items-start;
    margin-bottom: 30px;
}

.partner-feature:last-child {
    margin-bottom: 0;
}

.feature-icon {
    flex-shrink: 0;
    margin-right: 20px;
}

.feature-icon i {
    font-size: 26px;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 16px;
    color: var(--gray-medium);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Partners Image */
.partners-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* CTA Button */
.partners-section .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-family: 'Russo One', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

.partners-section .btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .partners-content {
        padding-right: 0;
    }
    
    .partners-title {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-title {
        font-size: 24px;
        text-align: center;
    }
    
    .partners-intro {
        text-align: center;
        font-size: 14px;
    }
    
    .feature-icon {
        margin-right: 15px;
    }
    
    .feature-icon i {
        font-size: 22px;
        width: 35px;
        height: 35px;
    }
    
    .partner-feature {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .partners-title {
        font-size: 20px;
    }
    
    .feature-icon i {
        font-size: 20px;
        width: 30px;
        height: 30px;
    }
}

/* Partner Button Animation */
@keyframes partnerPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(106, 184, 238, 0.3);
    }
    25% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(106, 184, 238, 0.5);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 8px 30px rgba(106, 184, 238, 0.6);
    }
    75% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(106, 184, 238, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(106, 184, 238, 0.3);
    }
}

@keyframes partnerGlow {
    0% {
        box-shadow: 0 4px 15px rgba(106, 184, 238, 0.3), 0 0 0 0 rgba(106, 184, 238, 0.7);
    }
    50% {
        box-shadow: 0 4px 15px rgba(106, 184, 238, 0.3), 0 0 20px 10px rgba(106, 184, 238, 0.3);
    }
    100% {
        box-shadow: 0 4px 15px rgba(106, 184, 238, 0.3), 0 0 0 0 rgba(106, 184, 238, 0.7);
    }
}

@keyframes handshakeBounce {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.btn-partner-pulse {
    animation: partnerPulse 3s ease-in-out infinite, partnerGlow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-partner-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

.btn-partner-pulse i {
    animation: handshakeBounce 2s ease-in-out infinite;
    display: inline-block;
}

.btn-partner-pulse:hover {
    animation: none;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(106, 184, 238, 0.4);
}

.btn-partner-pulse:hover i {
    animation: handshakeBounce 0.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}



