/* ============================================
   STATISTICS SECTION
   ============================================ */

.statistics-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.statistics-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

/* Section Title */
.statistics-section .section-title {
    color: #004483;
    font-size:2.125rem;
    font-weight: 700;
    /* line-height: 1.2; */
    margin: 0 0 30px 0;
    text-align: left;
}

/* Statistics Layout - 3 Column Grid */
.statistics-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

/* Individual Stat Card */
.stat-card {
    position: relative;
    padding-top: 30px;
}
.stat-header{
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 10px;
}
.stat-icon{
    width: 40px;
}
/* Yellow top border */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #FFCC35;
}

/* Icon Circle */
.stat-card .stat-icon {
    margin-bottom: 20px;
}

.stat-card .stat-icon svg {
    display: block;
}

/* Stat Title */
.stat-card .stat-title {
    color: #004483;
    font-size: 1.5125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

/* Stat Content */
.stat-card .stat-content {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 3px;
}

.stat-card .stat-content p {
    margin: 0 0 12px 0;
}

.stat-card .stat-content strong {
    font-weight: 700;
    color: #004483;
}

/* Source Link */
.stat-card .stat-source {
    color: #004483;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: underline;
    display: inline-block;
    transition: color 0.3s ease;
}

.stat-card .stat-source:hover {
    color: #003366;
}

/* Explore Programs Button Container */
.statistics-section .button-container {
    text-align: center;
    
}

.statistics-section .explore-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #FFCC35;
    color: #004483;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 20px 32px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.statistics-section .explore-button .arrow {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

/* .statistics-section .explore-button:hover {
    background-color: #e6b82f;
    transform: translateY(-2px);
}

.statistics-section .explore-button:hover .arrow {
    transform: translateX(4px);
} */

/* ============================================
   TABLET — Medium screens
   ============================================ */
@media screen and (max-width: 992px) {
    
    .statistics-section {
        padding: 60px 0;
    }

    .statistics-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .statistics-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    /* Make third card span full width on 2-column layout */
    .stat-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* ============================================
   MOBILE — Small screens
   ============================================ */
@media screen and (max-width: 768px) {
    
    .statistics-section {
        padding: 60px 0 !important;
    }

    .statistics-section .container {
        padding: 0 16px;
    }

    .statistics-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 32px;
        text-align: left;
        line-height: 45px;
    }

    .statistics-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }

    .stat-card:nth-child(3) {
        max-width: 100%;
    }

    .stat-card {
        padding-top: 24px;
    }

    .stat-card .stat-icon svg {
        width: 36px;
        height: 36px;
    }

    .stat-card .stat-title {
        
        margin-bottom: 12px;
    }

    .stat-card .stat-content {
        font-size: 20px;
        font-weight: 500;
    }

    .statistics-section .button-container {
        margin-top: 40px;
        text-align: left;
        width: 300px;
        margin: auto;
    }

    .statistics-section .explore-button {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 1.125rem;
    }
}