/* Awards Slider Styles */
.awards-slider-container-2 {
    overflow: hidden;
    background: rgba(211, 223, 55, 0.1);
    border-radius: 20px;
    padding: 50px 20px;
    border: 1px solid rgba(211, 223, 55, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.awards-slider-container-2 * {
    animation: none !important;
}

.awards-track-2 {
    width: max-content;
    gap: 40px;
    transition: transform 0.3s ease;
    flex-wrap: nowrap;
    animation: none !important;
}

.award-item-2 {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.award-item-2:hover {
    transform: scale(1.05);
}

.award-card-2 {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    width: 220px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(211, 223, 55, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.award-card-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 223, 55, 0.2), transparent);
    transition: left 0.6s ease;
}

.award-card-2:hover::before {
    left: 100%;
}

.award-card-2:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(211, 223, 55, 0.4);
    border-color: #d3df37;
}

.award-logo-container-2 {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(211, 223, 55, 0.05);
    border: 1px solid rgba(211, 223, 55, 0.2);
    transition: all 0.3s ease;
}

.award-card-2:hover .award-logo-container-2 {
    background: rgba(211, 223, 55, 0.15);
    border-color: #d3df37;
}

.award-logo-2 {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(30%) brightness(0.9);
    transition: all 0.4s ease;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(211, 223, 55, 0.2);
}

.award-card-2:hover .award-logo-2 {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(211, 223, 55, 0.4);
}

.award-info-2 p {
    text-align: center !important;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .awards-slider-container-2 {
        padding: 40px 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .awards-slider-container-2::-webkit-scrollbar {
        display: none;
    }
    
    .awards-track-2 {
        gap: 25px;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        min-width: max-content;
        transition: transform 0.3s ease;
        animation: none !important;
    }
    
    .award-card-2 {
        width: 180px;
        height: 160px;
        padding: 25px 20px;
        flex-shrink: 0;
    }
    
    .award-logo-container-2 {
        height: 70px;
        margin-bottom: 15px;
    }
    
    .award-logo-2 {
        max-width: 120px;
        max-height: 60px;
    }
    
    .award-info-2 p {
        font-size: 0.9rem;
    }
}