#accomplishment-section {
    background-color: white;
    background-image: url('../../../images/logos/heart-beat.webp');
    background-size: auto;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}

.accomplishment-section h2{
    margin: 0;
    color: var(--secondary-color);
}

.accomplishment-section hr{
    background-color: black;
    width: 10%;
    border: none;
    height: 1px;
}

.accomplishment-section .container{
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.90);
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
 
}

.accomplishment-section .cards-container{
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.accomplishment-section .card{
    width: 271.25px;
    background-color: transparent;
    height: 260px;
    border-radius: 25px;
    padding: 2rem;
    gap:0.5rem;
    cursor: pointer;
    backdrop-filter: blur(2px);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.8);

}

.accomplishment-section .card h3{
    color:var(--primary-color)
}
.accomplishment-section .card p{
    color:black;
}

.accomplishment-section .card-one:hover, 
.accomplishment-section .card-four:hover {
    background-color: rgba(201, 64, 100, 0.25);
    box-shadow: 0px 4px 20px rgba(201, 64, 100, 0.85);
    backdrop-filter: blur(0px);
    transform: translateY(-10px); /* Remonte de 10px */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Animation douce */
}

.accomplishment-section .card-two:hover {
    background-color: rgba(53, 80, 112, 0.25);
    box-shadow: 0px 4px 20px rgba(53, 80, 112, 0.85);
    transform: translateY(-10px);
    backdrop-filter: blur(0px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.accomplishment-section .card-three:hover {
    background-color: rgba(182, 233, 219, 0.5);
    box-shadow: 0px 4px 20px rgba(182, 233, 219, 0.85);
    transform: translateY(-10px);
    transition: transform 0.3s ease, background-color 0.3s ease;
    backdrop-filter:blur(0px);
}


.accomplishment-section .card img{
    height: 50px;
    width: auto;
}

@media screen and (max-width: 768px) {
    .accomplishment-section{
        padding: 1rem 0;
        height: max-content;
    }
 
    .accomplishment-section .card{
        height: auto;
        padding: 0.25rem;
    }
    .accomplishment-section .cards-container{
        padding: 1rem 0;
        height: max-content;
    }
    
}


