/* Badges & Partners Section Styles */

.badges-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.badges-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 20px 0;
}

.badge-item {
    flex: 0 0 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 81, 143, 0.15);
    border-color: #34518F;
}

.badge-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.badge-item:hover img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .badge-item {
        flex: 0 0 140px;
        height: 90px;
    }
}
