.awards-section * {
    box-sizing: border-box;
}

.awards-section {
    width: 100%;
    min-height: 100vh;
    color: #fff;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.awards-section .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: blur(8px);
    transform: scale(1.1);
}

.awards-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.awards-section .section-header {
    text-align: center;
    margin-bottom: 120px;
    position: relative;
    z-index: 2;
}

.awards-section .section-header h2 {
    font-family: 'Racing Sans One', cursive;
    font-size: 55px;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.awards-section .awards-grid {
    width: 100%;
    max-width: 1300px;
    position: relative;
    z-index: 2;
}

.awards-section .awards-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.awards-section .awards-row:last-child {
    margin-bottom: 0;
}

.awards-section .award-item {
    flex: 1;
    text-align: center;
    padding: 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.awards-section .award-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.awards-section .award-item:nth-child(1) { transition-delay: 0.1s; }
.awards-section .award-item:nth-child(2) { transition-delay: 0.2s; }
.awards-section .award-item:nth-child(3) { transition-delay: 0.3s; }
.awards-section .award-item:nth-child(4) { transition-delay: 0.4s; }
.awards-section .award-item:nth-child(5) { transition-delay: 0.5s; }
.awards-section .award-item:nth-child(6) { transition-delay: 0.6s; }

.awards-section .award-item img {
    width: auto;
    height: 110px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) grayscale(1);
    opacity: 0.6;
    transition: all 0.5s ease-out;
    cursor: pointer;
}

.awards-section .award-item:hover img {
    filter: none;
    transform: scale(1.1);
    opacity: 1;
}

.mfp-img { background: transparent; padding: 0; }
.mfp-figure { margin: auto; }
.mfp-wrap .mfp-content { line-height: 0; max-width: 90%; margin: 0 auto; }

/* --- Tablet & Medium Screens --- */
@media (max-width: 991px) {
    .awards-section .awards-row {
        flex-wrap: wrap;
    }
    .awards-section .award-item {
        flex-basis: 33.33%;
        margin-bottom: 40px;
    }
    .awards-section .award-item img {
        height: 100px;
    }
}

/* --- Mobile Screens --- */
@media (max-width: 767px) {
    .awards-section {
        padding: 80px 15px;
        min-height: auto;
    }
    .awards-section .section-header {
        /* إرجاع العنوان لمكانه الطبيعي في الأعلى */
        margin-bottom: 60px;
    }
    .awards-section .section-header h2 {
        /* الإبقاء على حجم الخط الصغير */
        font-size: 32px;
    }
    .awards-section .awards-row {
        margin-bottom: 0;
    }
    .awards-section .award-item {
        flex-basis: 50%;
        padding: 0 10px;
        margin-bottom: 40px;
    }
    .awards-section .award-item img {
        height: 80px;
    }
}

/* --- Small Mobile Screens --- */
@media (max-width: 480px) {
    .awards-section .section-header h2 {
        /* الإبقاء على حجم الخط الصغير جدًا */
        font-size: 28px;
    }
    .awards-section .award-item img {
        height: 70px;
    }
}