﻿/* ===================================
   AWARDS HERO
=================================== */

.awards-hero {
    background: linear-gradient( rgba(0,0,0,.70), rgba(0,0,0,.70)), url('../images/awards-banner.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 850px;
    margin: auto;
}

.sub-title {
    display: inline-block;
    background: #F68B1F;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.awards-hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.awards-hero p {
    font-size: 18px;
    line-height: 1.8;
}

/* ===================================
   INTRO SECTION
=================================== */

.recognition-intro {
    padding: 100px 0;
}

.intro-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

    .intro-content h2 {
        color: #199B43;
        font-size: 42px;
        margin-bottom: 25px;
    }

    .intro-content p {
        line-height: 1.9;
        color: #555;
        font-size: 17px;
    }

/* ===================================
   SECTION TITLE
=================================== */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title span {
        color: #F68B1F;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .section-title h2 {
        color: #199B43;
        font-size: 42px;
        margin-top: 10px;
    }

/* ===================================
   FEATURED AWARDS
=================================== */

.featured-awards {
    padding: 100px 0;
    background: #f8faf9;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.award-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
}

    .award-card:hover {
        transform: translateY(-8px);
    }

    .award-card.featured {
        border-top: 5px solid #F68B1F;
    }

.award-icon {
    width: 90px;
    height: 90px;
    background: #199B43;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
}

.award-card h3 {
    color: #199B43;
    margin-bottom: 15px;
    line-height: 1.5;
}

.award-card p {
    color: #666;
    line-height: 1.8;
}

/* ===================================
   RECOGNITIONS
=================================== */

.recognition-section {
    padding: 100px 0;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.recognition-card {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
}

    .recognition-card:hover {
        transform: translateY(-8px);
    }

    .recognition-card i {
        font-size: 50px;
        color: #F68B1F;
        margin-bottom: 20px;
    }

    .recognition-card h3 {
        color: #199B43;
        margin-bottom: 15px;
        font-size: 20px;
    }

    .recognition-card p {
        color: #666;
        line-height: 1.7;
    }
/* ===================================
   RECOGNITION TIMELINE
=================================== */

.award-timeline {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #199B43;
        transform: translateX(-50%);
    }

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

    .timeline-item:nth-child(odd) {
        left: 0;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        top: 35px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #F68B1F;
        border: 4px solid #fff;
        box-shadow: 0 0 0 4px #199B43;
        z-index: 2;
    }

    .timeline-item:nth-child(odd)::before {
        right: -12px;
    }

    .timeline-item:nth-child(even)::before {
        left: -12px;
    }

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .3s;
}

    .timeline-content:hover {
        transform: translateY(-5px);
    }

.timeline-year {
    display: inline-block;
    background: #199B43;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    color: #199B43;
    margin-bottom: 15px;
    font-size: 22px;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
}
/* ===================================
   LEADERSHIP SECTION
=================================== */

.leadership-section {
    padding: 100px 0;
    background: #f8faf9;
}

.leadership-content {
    max-width: 900px;
    margin: auto;
}

    .leadership-content ul {
        list-style: none;
        padding: 0;
    }

    .leadership-content li {
        background: #fff;
        padding: 25px;
        margin-bottom: 20px;
        border-left: 5px solid #199B43;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,.06);
        font-size: 17px;
    }

/* ===================================
   CERTIFICATE GALLERY
=================================== */

.certificates-gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.10);
}

    .gallery-item img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: .5s;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

/* ===================================
   TIMELINE OF RECOGNITIONS
=================================== */

.award-timeline {
    padding: 100px 0;
    background: #f8faf9;
}

.timeline {
    max-width: 900px;
    margin: auto;
    position: relative;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        width: 4px;
        height: 100%;
        background: #199B43;
        transform: translateX(-50%);
    }

.timeline-item {
    width: 50%;
    padding: 20px 40px;
    position: relative;
}

    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
    }

.timeline-content {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .timeline-content h3 {
        color: #199B43;
        margin-bottom: 10px;
    }

/* ===================================
   CTA SECTION
=================================== */

.awards-cta {
    background: linear-gradient( 135deg, #199B43, #146c31);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

    .awards-cta h2 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .awards-cta p {
        max-width: 750px;
        margin: 0 auto 30px;
        line-height: 1.9;
    }

    .awards-cta .btn-primary {
        background: #F68B1F;
        color: #fff;
        padding: 15px 35px;
        border-radius: 50px;
        display: inline-block;
        font-weight: 600;
        transition: .3s;
    }

        .awards-cta .btn-primary:hover {
            background: #fff;
            color: #199B43;
        }

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px) {

    .awards-grid,
    .recognition-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .awards-hero h1 {
        font-size: 40px;
    }

    .intro-content h2,
    .section-title h2 {
        font-size: 32px;
    }

    .awards-grid,
    .recognition-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px;
        text-align: left !important;
    }

    .awards-cta h2 {
        font-size: 34px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px;
        padding-right: 0;
    }

        .timeline-item::before {
            left: 10px !important;
            right: auto !important;
        }
}
