﻿.hero {
    padding-top: 100px;
}

.hero__overlay {
    background-color: rgb(82 110 115 / 79%);
    position: absolute;
    top: 0;
    left: 0;
    height: 100% 627px;
    width: 100%;
    backdrop-filter: blur(20px);
}

.news-content p {
    font-weight: 300;
    line-height: 2;
}

/* === Banner Slider === */
.banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 900px;
}

    .banner-section .swiper {
        width: 100%;
        height: 100%;
    }

.banner-slide {
    position: relative;
    overflow: hidden;
}

.banner-slide__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

    .banner-slide__media img,
    .banner-slide__media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.banner-slide__overlay {
    position: absolute;
    inset: 0;
    top: 65%;
    background: linear-gradient(180deg, rgb(13 58 21 / 0%) 0%, rgb(15 93 29 / 70%) 100%);
    z-index: 1;
}

.banner-slide__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    max-width: 800px;
    color: #fff;
    padding-top: 40rem;
}
@media (max-width: 991px) {
    .banner-slide__content {
        padding-top: 20rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
.banner-slide__title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.banner-slide__subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.92;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.banner-slide__action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: #ecd277;
    color: #1a3c40;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

    .banner-slide__action:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(0,0,0,0.3);
        color: #1a3c40;
    }

/* Swiper navigation overrides for RTL */
.banner-section .swiper-button-next,
.banner-section .swiper-button-prev {
    color: #ecd277;
    transform: translateY(-50%);
}

    .banner-section .swiper-button-next::after,
    .banner-section .swiper-button-prev::after {
        font-size: 1.2rem;
        font-weight: 700;
    }

.banner-section .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.banner-section .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ecd277;
}

@media (max-width: 991px) {
    .banner-section {
        height: 50vh;
        min-height: 400px;
    }

    .banner-slide__title {
        font-size: 1.5rem;
    }

    .banner-slide__subtitle {
        font-size: 1rem;
    }
}
/* Awards carousel cards (single-face) */
.awards-section .awards-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

    .awards-section .awards-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    }

.awards-section .awards-card__image {
    position: relative;
    height: 240px;
    min-height: 240px;
    max-height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .awards-section .awards-card__image img {
        width: auto;
        height: auto;
        max-height: 150px;
        max-width: 100%;
        padding: 20px;
        object-fit: contain;
        margin: 0 auto;
        transition: transform 0.4s ease;
    }

.awards-section .awards-card:hover .awards-card__image img {
    transform: scale(1.05);
}

.awards-section .awards-card__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.awards-section .awards-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a3c40;
}

.awards-section .awards-card__desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
    flex: 1;
    margin-bottom: 1rem;
}

.awards-section .awards-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f5e0f;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .awards-section .awards-card__link:hover {
        color: #0a3d0a;
    }

    .awards-section .awards-card__link i {
        transition: transform 0.2s ease;
    }

.awards-section .awards-card:hover .awards-card__link i {
    transform: translateX(-4px);
}

/* Awards carousel wrapper */
.awards-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .awards-carousel-wrapper .awardsSwiper .swiper-wrapper {
        align-items: stretch;
    }

    .awards-carousel-wrapper .awardsSwiper .swiper-slide {
        display: flex;
    }

    .awards-carousel-wrapper .awardsSwiper {
        flex: 1;
        order: 2;
        padding-bottom: 20px;
    }

.awards-nav-prev {
    order: 3;
}

.awards-nav-next {
    order: 1;
}

/* External nav buttons for awards */
.awards-nav-prev,
.awards-nav-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #0f5e0f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

    .awards-nav-prev:hover,
    .awards-nav-next:hover {
        background: #0f5e0f;
        color: #fff;
    }

@media (max-width: 991px) {
    .awards-section .awards-card__image {
        height: 180px;
    }

    .awards-nav-prev,
    .awards-nav-next {
        display: none;
    }
}
