
.achievements-section {
    padding: 60px 0;
    background: #F8F8F8;
}

.achievements-header {
    text-align: center;
    margin-bottom: 30px;
}

.achievements-subtitle {
    text-transform: uppercase;
    font-weight: 500;
    color: rgb(51, 51, 51);
    font-size: 14px;
}

.achievements-title {
    font-size: 40px;
    font-weight: 800;
    color: rgb(31, 48, 90);
    margin-bottom: 15px;
}

.achievement-item {
    text-align: center;
    padding: 40px 20px;
    /* background: var(--light-color); */
    border-radius: var(--border-radius);
    /* box-shadow: var(--box-shadow); */
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

/* DEBUG: Make sure partners section is visible before slider loads */
.partners-section {
    min-height: 200px;  /* Ensure minimum height */
}

.partners-slider {
    /* visibility: visible !important; */
    /* opacity: 1 !important; */
    min-height: 120px;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.achievement-icon {
    font-size: 70px;
    color: #c0c0c0;
    transition: all 0.3s ease;
}

.achievement-item:hover .achievement-icon {
    color: rgb(31, 48, 90);
    transform: scale(1.1);
}

.achievement-number {
    font-size: 44px;
    font-weight: 500;
    color: rgb(31, 48, 90);
    min-height: 60px;
}

.achievement-label {
    font-size: 18px;
    font-weight: 400;
    color: rgb(51, 51, 51);
    text-transform: uppercase;
    text-align: center;
}

/* Decoration elements */
.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), rgb(31, 48, 90));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-item:hover::before {
    opacity: 1;
}

/* Responsive Styles cho phần thành quả */
@media (max-width: 992px) {
    .achievements-section {
        padding: 50px 0;
    }

    .achievement-item {
        padding:10px;
    }

    .achievement-icon {
        font-size: 84px;
    }

    .achievement-number {
        font-size: 38px;
    }

    .achievements-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .achievements-section {
        padding: 40px 0;
    }

    .achievement-item {
        margin-bottom: 0;
    }

    .achievement-icon {
        font-size: 72px;
    }

    .achievement-number {
        font-size: 32px;
        min-height: 45px;
    }

    .achievement-label {
        font-size: 13px;
    }

    
}

@media (max-width: 576px) {
    .achievements-subtitle {
        font-size: 14px;
    }

    /* Removed as now handled with section-title */

    .achievement-icon {
        font-size: 64px;
        margin-bottom: 15px;
    }

    .achievement-number {
        font-size: 28px;
        min-height: 38px;
    }

    .achievement-label {
        font-size: 12px;
    }
}

/* Animation for numbers */
.animate-number {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.animate-number.visible {
    opacity: 1;
    transform: translateY(0);
}
