﻿
body {
    background: #f5f5f5;
    font-family: 'Segoe UI', sans-serif;
}

.stats-section {
    max-width: 1400px;
    margin: auto;
    padding: 20px;
}

.title {
    font-weight: 600;
    margin-bottom: 20px;
}

/* Card */
.stats-card {
    border-radius: 20px;
    padding: 20px 25px;
    margin-bottom: 25px;
}

/* Backgrounds */
.blue-bg {
    background: #dfeaea;
}

.orange-bg {
    background: #f4e3d2;
}

/* Header */
.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .stats-header h4 {
        font-size: 18px;
        font-weight: 500;
    }

    .stats-header span {
        color: #666;
        font-size: 14px;
    }

    .stats-header a {
        color: green;
        text-decoration: none;
        font-weight: 500;
    }

.orange-link {
    color: #ff5722 !important;
}

/* Stats Row */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Box */
.stat-box {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

    .stat-box h2 {
        color: #0b6b3a;
        font-weight: bold;
    }

.orange-bg .stat-box h2 {
    color: #e65100;
}

.stat-box p {
    font-size: 14px;
    color: #555;
}

/* Divider */
.divider {
    width: 1px;
    height: 50px;
    background: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        gap: 15px;
    }

    .divider {
        display: none;
    }
}

/*NEWS*/
body {
    background: #cfe3e3;
    font-family: 'Segoe UI', sans-serif;
}

.news-section {
    padding: 30px;
}

/* Column */
.news-col {
    padding: 20px;
    border-right: 1px solid #7fa3a3;
}

    .news-col:last-child {
        border-right: none;
    }

    /* Heading */
    .news-col h4 {
        font-weight: 600;
    }

/* Blue Line */
.line {
    width: 80%;
    height: 3px;
    background: #2f80ed;
    margin: 10px 0 20px;
}

/* List */
.news-list {
    list-style: none;
    padding: 0;
}

    .news-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 20px;
        border-bottom: 1px dashed #2f80ed;
        padding-bottom: 10px;
    }

        /* Bullet */
        .news-list li::before {
            content: "";
            width: 10px;
            height: 10px;
            border: 2px solid #2f80ed;
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: 5px;
        }

/* Date */
.date {
    font-size: 13px;
    color: #333;
    margin-top: 5px;
}

/* Read More */
.read-more {
    font-size: 13px;
    color: #007bff;
    cursor: pointer;
}

/* Button */
.view-btn {
    background: #2aa198;
    color: #fff;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    float: right;
    cursor: pointer;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .news-col {
        border-right: none;
        border-bottom: 1px solid #7fa3a3;
    }

    .view-btn {
        float: none;
    }
}

/*===== DYNAMICS*/
.scroll-box {
    height: 300px;
    overflow: hidden;
    position: relative;
}

/* Auto Scroll */
.scroll-box {
    animation: scrollUp 15s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Item */
.news-item {
    padding: 10px;
    border-bottom: 1px dashed #2f80ed;
    position: relative;
    padding-left: 25px;
}

    /* Bullet */
    .news-item::before {
        content: "";
        width: 10px;
        height: 10px;
        border: 2px solid #2f80ed;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 15px;
    }

.date {
    font-size: 12px;
    color: #333;
}

