/* ===========================================
   Awards Page Styles
   =========================================== */

/* Section Title */
.awards-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 2rem;
}

/* Stats Section */
.awards-stats-section {
    padding: 4rem 0;
}

.awards-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card-awards {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.stat-card-awards:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 2rem;
}

.stat-icon-green {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.stat-icon-blue {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.stat-icon-purple {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

.stat-icon-amber {
    background: rgba(255, 193, 7, 0.15);
    color: #d39e00;
}

.stat-value-awards {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.stat-title-awards {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.stat-desc-awards {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}


/* Awards List Section */
.awards-list-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.award-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.award-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.award-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.award-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon-wrapper i {
    font-size: 1.5rem;
    color: #0d6efd;
}

.award-year {
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
}

.award-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.award-org {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.award-category {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.award-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}


/* Milestones Section */
.milestones-section {
    padding: 4rem 0;
}

.milestones-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.milestone-card {
    position: relative;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 1.5rem;
    padding-left: 2rem;
    overflow: hidden;
}

.milestone-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #0d6efd;
}

.milestone-year {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.milestone-events {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.milestone-events li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #6c757d;
    line-height: 1.5;
}

.milestone-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0d6efd;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

/* Future Section */
.future-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.future-card {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, #fff 100%);
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: 0.75rem;
    padding: 2rem;
}

.future-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}

.future-intro {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.future-subtitle {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.75rem;
}

.future-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.future-list li {
    color: #6c757d;
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.future-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-weight: bold;
}


/* ===========================================
   Responsive Styles
   =========================================== */

@media (max-width: 1200px) {
    .awards-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .awards-stats-section,
    .awards-list-section,
    .milestones-section,
    .future-section {
        padding: 2rem 0;
    }

    .awards-section-title {
        font-size: 1.5rem;
    }

    .awards-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card-awards {
        padding: 1.5rem;
    }

    .stat-icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    .stat-icon i {
        font-size: 1.5rem;
    }

    .stat-value-awards {
        font-size: 1.75rem;
    }

    .award-card {
        padding: 1.25rem;
    }

    .award-title {
        font-size: 1.1rem;
    }

    .milestone-card {
        padding: 1.25rem;
        padding-left: 1.5rem;
    }

    .milestone-year {
        font-size: 1.25rem;
    }

    .future-card {
        padding: 1.5rem;
    }

    .future-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .award-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-value-awards {
        font-size: 1.5rem;
    }
}
