.images {
    width: 100px;
    padding: 20px;
}


/* Grille moderne */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Chaque compétence */
.skill {
    text-align: center;
    padding: 25px 15px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Hover subtil */
.skill:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.25);
}

/* Icônes */
.icon {
    font-size: 2.3em;
    color: #8d8484;
    margin-bottom: 12px;
    display: inline-block;
    transition: transform 0.4s ease, color 0.3s ease;
}

.skill:hover .icon {
    color: #ffd166;
    transform: rotate(10deg) scale(1.2);
    /* effet animé au hover */
}

/* Titres */
.skill h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: #171414;
    margin-bottom: 10px;
}

/* Compétences */
.cvStyle {
    font-size: 0.95em;
    color: #444;
    line-height: 1.5;
    margin: 4px 0;
}

/* Animation scroll fade/zoom */
@keyframes fadeZoomIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Classe active quand visible */
.skill.visible {
    animation: fadeZoomIn 0.8s ease forwards;
}