/* Style pour la section des compétences */
.skills-section {
    padding: 20px;
    text-align: center;
}

.skills-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.skill-card {
    position: relative;
    width: 200px;
    height: 200px;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    z-index: 0;
}

.skill-card:hover {
    transform: scale(1.05);
}

.skill-logo {
    width: 80px;
    height: 80px;
    margin-top: 20px;
}

.skill-card h3 {
    margin-top: 10px;
    font-size: 1.2em;
    color: #333;
}

/* Style pour l'overlay des projets */
.projects-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(76, 175, 80, 0.9);
    color: white;
    padding: 15px;
    text-align: left;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.skill-card:hover .projects-overlay {
    transform: translateY(0);
}

.projects-overlay ul {
    list-style-type: disc;
    margin-left: 20px;
}

.projects-overlay p {
    margin-bottom: 10px;
}

.progress-container {
    background-color: #e0e0e0; 
    border-radius: 10px;
    height: 10px; 
    margin: 10px auto;
    width: 75%; 
}

.progress-bar {
    height: 100%; 
    background-color: #4CAF50; 
    border-radius: 10px; 
    transition: width 0.3s ease; 
}