/* ===============================================
   Allied Links Section - Premium Design 2026
   =============================================== */

.allied-links {
    padding: 60px 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.allied-links .section-title {
    margin-bottom: 40px;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.logo-item {
    flex: 0 1 180px;
    /* Base width */
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
    padding: 10px;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Hover Effects */
.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .logos-grid {
        gap: 20px;
    }

    .logo-item {
        flex: 0 1 140px;
        height: 80px;
    }
}