/* Styles personnalisés pour la section partenaires */

.testimonial-item .testimonial-img div {
    transition: all 0.3s ease;
}

.testimonial-item:hover .testimonial-img div {
    transform: scale(1.1);
}

.partner-category .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

.testimonial-item {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Couleurs des badges personnalisées */
.badge.bg-primary {
    background-color: #0d6efd !important;
}

.badge.bg-success {
    background-color: #198754 !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
}

.badge.bg-info {
    background-color: #0dcaf0 !important;
}

.badge.bg-secondary {
    background-color: #6c757d !important;
}

/* Animation pour les icônes de financement */
.fas.fa-check-circle {
    transition: all 0.3s ease;
}

.list-unstyled li:hover .fas.fa-check-circle {
    transform: scale(1.2);
}

/* Effets hover pour les cartes de réseau */
.border.rounded-3:hover {
    border-color: #0d6efd !important;
    background-color: #f8f9ff;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.border.rounded-3:hover i {
    transform: scale(1.1);
    transition: all 0.3s ease;
}
