/* Partners Section */
.partners-section {
    text-align: center;
    padding: 60px 0;
    margin: 80px 0;
}

.partner-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px; /* Made consistent with other partner titles */
    color: #E30613; /* Changed to red (use your theme's exact red color code) */
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 600; /* Semi-bold */
    letter-spacing: 1px;
}

.partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.partner-logo-large {
    width: 200px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.partner-logo-large img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-logo-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.partner-logo-large:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.solution-partners {
    margin: 60px 0;
    text-align: center;
}

.solution-partners h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #E30613; /* Changed to red (use your theme's exact red color code) */
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .partner-logo-large {
        width: 180px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .partner-logo-large {
        width: 160px;
        height: 100px;
    }
    
    .partner-grid {
        gap: 20px;
    }
    
    .partner-section-title,
    .solution-partners h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .partner-logo-large {
        width: 130px;
        height: 80px;
        padding: 15px;
    }
    
    .partner-section-title,
    .solution-partners h3 {
        font-size: 20px;
    }
    
    .partners-section {
        margin: 60px 0;
        padding: 40px 0;
    }
}
