/* counting css  */

.stats-section {
    padding: 80px 0;
    position: relative;
}

.stats-overlay {
    background: rgba(0, 0, 0, 0.85);
    max-width: 1200px;
    margin: auto;
    padding: 70px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box h2 {
    font-size: 60px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.stat-box p {
    color: #bcbcbc;
    font-size: 15px;
    letter-spacing: .5px;
}

/* Responsive */
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================ */
/* ============================================ */

/* mission vision css  */
        .about-tag {
            display: block;
            font-size: 14px;
            /* remember letter-spacing: 1px; */
            margin-bottom: 20px;
            color: #111;
        }

        /* Images */
        .about-images {
            position: relative;
        }

        .about-images img {
            width: 100%;
            /* border-radius: 14px; */
            object-fit: cover;
        }

        .img-one {
            height: 420px;
        }

        .img-two {
            height: 420px;
        }

        /* Heading */
        .about-heading {
            font-size: 42px;
            font-weight: 600;
            line-height: 1.25;
            margin-bottom: 40px;
        }

        /* Mission / Vision */
        .about-block {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid #ddd;
        }

        .about-block h5 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .about-block p {
            color: #fff;
            line-height: 1.7;
        }

        /* Stats */
        .stat-card {
            background: #000;
            color: #fff;
            padding: 28px;
            border-radius: 14px;
            height: 100%;
        }

        .stat-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            opacity: .8;
        }

        .stat-card h3 {
            font-size: 40px;
            font-weight: 700;
            margin: 18px 0 5px;
        }

        .stat-card p {
            font-size: 14px;
            opacity: .7;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .img-two {
                position: static;
                width: 100%;
                margin-top: 20px;
                height: auto;
            }

            .about-heading {
                font-size: 32px;
                margin-top: 40px;
            }
        }
        /* =========================================== */
        /* =========================================== */