/* Our Supporters Section */
.supporters-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    border-top: 3px solid #57428D;
}

.supporters-section .sec-title {
    margin-bottom: 60px;
}

.supporters-section .sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.supporters-section .sec-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #57428D, #4965AE);
    border-radius: 2px;
}

/* Supporters Rows */
.supporters-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0 auto;
}

/* Row Divider */
.row-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d0d0d0 20%, #d0d0d0 80%, transparent);
    margin: 50px 0;
}

/* Large Logos (First Row) */
.row-large {
    max-width: 900px;
    gap: 60px;
    margin-bottom: 0;
}

/* Vertical Divider between large logos */
.vertical-divider {
    width: 2px;
    height: 120px;
    background: linear-gradient(180deg, transparent, #d0d0d0 20%, #d0d0d0 80%, transparent);
    flex-shrink: 0;
}

.supporter-item.large {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 320px;
    height: 140px;
}

.supporter-item.large:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(87, 66, 141, 0.15);
}

.supporter-item.large img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Medium Logos (Second & Third Row) */
.row-medium {
    max-width: 1200px;
    gap: 30px;
}

.supporter-item.medium {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    width: 200px;
    height: 120px;
}

.supporter-item.medium:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(87, 66, 141, 0.12);
}

.supporter-item.medium img {
    max-width: 160px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive Design */
@media only screen and (max-width: 1200px) {
    .row-large {
        gap: 60px;
    }
    
    .supporter-item.large {
        width: 280px;
        height: 130px;
        padding: 25px;
    }
    
    .row-medium {
        gap: 25px;
    }
    
    .supporter-item.medium {
        width: 180px;
        height: 110px;
    }
    
    .supporter-item.medium img {
        max-width: 140px;
        max-height: 70px;
    }
}

@media only screen and (max-width: 991px) {
    .supporters-section {
        padding: 60px 0;
    }
    
    .supporters-section .sec-title h2 {
        font-size: 32px;
    }
    
    .row-large {
        gap: 40px;
    }
    
    .supporter-item.large {
        width: 260px;
        height: 120px;
        padding: 20px;
    }
    
    .row-medium {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .supporter-item.medium {
        width: 170px;
        height: 100px;
    }
    
    .supporter-item.medium img {
        max-width: 130px;
        max-height: 65px;
    }
    
    .row-divider {
        margin: 40px 0;
    }
}

@media only screen and (max-width: 767px) {
    .supporters-section {
        padding: 50px 0;
    }
    
    .supporters-section .sec-title {
        margin-bottom: 40px;
    }
    
    .supporters-section .sec-title h2 {
        font-size: 28px;
    }
    
    .row-large {
        flex-direction: column;
        gap: 30px;
    }
    
    .vertical-divider {
        display: none;
    }
    
    .supporter-item.large {
        width: 300px;
        height: 140px;
        padding: 25px;
    }
    
    .row-medium {
        flex-direction: column;
        gap: 20px;
    }
    
    .supporter-item.medium {
        width: 280px;
        height: 120px;
    }
    
    .supporter-item.medium img {
        max-width: 180px;
        max-height: 80px;
    }
    
    .row-divider {
        margin: 30px 0;
    }
}

@media only screen and (max-width: 480px) {
    .supporters-section {
        padding: 40px 0;
    }
    
    .supporters-section .sec-title h2 {
        font-size: 24px;
    }
    
    .supporter-item.large {
        width: 260px;
        height: 120px;
        padding: 20px;
    }
    
    .supporter-item.medium {
        padding: 15px;
        width: 240px;
        height: 100px;
    }
    
    .supporter-item.medium img {
        max-width: 150px;
        max-height: 70px;
    }
    
    .row-divider {
        margin: 25px 0;
    }
}
