/* Partner logo styles */
.expertise-card {
    position: relative;
}

.partner-logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(2, 22, 66, 0.1);
    gap: 2rem;
}

.infor-logo-container {
    display: flex;
    padding: 0.8rem 1rem;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    min-width: 120px;
    background: linear-gradient(135deg, rgba(2, 22, 66, 0.03), rgba(206, 5, 5, 0.03));
    border-radius: 8px;
    border: 1px solid rgba(2, 22, 66, 0.08);
}

.infor-logo {
    width: 120px;
    height: auto;
    background-color: transparent;
}

.delivery-partner-text {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-top: 3px;
    margin-left: 1px;
}

.expertise-card:hover .infor-logo-container,
.feature-detail:hover .infor-logo-container {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(2, 22, 66, 0.08), rgba(206, 5, 5, 0.08));
    border-color: rgba(2, 22, 66, 0.15);
    box-shadow: 0 4px 12px rgba(2, 22, 66, 0.1);
}

/* Adjust heading to fit with logo */
.expertise-card h3 {
    width: 65%;
    margin-top: 0;
}
