.about-section {
    position: relative;
    background-color: #fff;
}

/* Effet flottant sur l'image */
.about-img-wrapper {
    position: relative;
    padding: 20px;
}

.about-img-wrapper img {
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.02);
}

/* Le Badge d'expérience */
.experience-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--zilom-blue);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(19, 99, 223, 0.3);
    animation: float 3s ease-in-out infinite;
}

.experience-badge .number {
    display: block;
    font-size: 32px;
    font-weight: 800;
}

.experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation de flottement pour le badge */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.about-features li {
    font-weight: 600;
    color: var(--zilom-dark);
}