.achievements-section {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
    padding: 10px 10px 40px 0px;
}

#achievementsSectionTitle {
    font-size: 40px;
    margin-bottom: 40px;
    color: #0000001f;
    text-align: center;
}

.achievements-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.achievement-card {
    position: relative;
    width: calc(30% - 80px);
    max-width: 100%;
    height: 270px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.center-margin-card{
margin: 0;
}
.left-margin-card{
margin-left: 90px;
}
.right-margin-card{
    margin-right: 90px;
}

.center-card {
    width: 40%;
    max-width: 100%;
    height: 300px;
    z-index: 998;
    transform: scale(1.1);
    border-radius: 10px;
}

.center-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%; 
    background: rgba(0, 0, 0, 0.5); 
    opacity: 1;
    transition: opacity 0.3s;
    border-radius: 0 0 10px 10px;
}

.achievement-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achievement-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 15px;
    left: 20px;
    width: 100%;
    text-align: left;
}

.center-card h3 {
    font-size: 16px;
    margin: 0;
    color: #FFFFFF;
}

.center-card p {
    margin: 0;
    color: #FFFFFF;
    font-size: 14px;
}
.expand-iconAch {
    position: absolute;
    bottom: 20px;
    right: 40px;
}

.expand-iconAch img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}


.left-card, .right-card {
    z-index: 1;
}

/* Pagination Dots */
.pagination-dotsAch {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.dot-Ach {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot-Ach.active {
    background-color: #212D54;
}

@media (max-width: 768px) {
    
    .center-card {
        width: 80%;
    }

    .center-card img {
        width: 100%;
        height: auto;
    }

    .expand-iconAch {
        bottom: 15px !important;
        right: 20px !important;
    }

    .expand-iconAch img {
        width: 30px !important;
        height: 30px !important;
    }

}