    :root { --j-navy: #002147; --j-orange: #FF8C00; }
    body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #f8f9fa; }

    /* 1. Sleek Stats Bar Style */
    .stats-bar-wrapper {
        background: #ffffff;
        padding: 30px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin: 40px 0;
    }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        border-right: 1px solid #f0f0f0;
    }
    .stat-item:last-child { border-right: none; }
    .stat-icon-box {
        background: rgba(0, 33, 71, 0.05);
        color: var(--j-navy);
        width: 45px; height: 45px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 12px; font-size: 1.4rem;
    }
    .stat-number { font-size: 1.6rem; font-weight: 800; color: var(--j-orange); margin: 0; }
    .stat-text { font-size: 0.8rem; font-weight: 700; color: #666; margin: 0; text-transform: uppercase; }

    /* 2. Course Card Image Fix */
    .course-card img {
        height: 200px;
        object-fit: cover;
        width: 100%;
        border-radius: 15px 15px 0 0;
    }

    @media (max-width: 768px) {
        .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
        .stat-item:nth-child(2) { border-right: none; }
    }

    .stats-bar-wrapper {
        /* background: #f8f9fa; /* Light Gray Background */
        background: linear-gradient(to right, #ffffff, #fcfcfc); /* Subtle Gradient */
        padding: 40px 0;
        border-top: 1px solid #e9ecef;
        margin-bottom: 0 !important; /* Footer కి గ్యాప్ లేకుండా చేస్తుంది */
        position: relative;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        align-items: center;
    }

    .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        /* మధ్యలో నిలువు గీత కోసం */
        border-right: 1px dashed #dee2e6; 
        padding: 10px 0;
    }

    /* చివరి ఐటమ్ కి బోర్డర్ తీసేయడానికి */
    .stat-item:last-child {
        border-right: none;
    }

    .stat-icon-box {
        background: var(--j-navy); /* Navy Background for Icon */
        color: white;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%; /* సర్కిల్ షేప్ */
        font-size: 1.2rem;
        box-shadow: 0 4px 10px rgba(0, 33, 71, 0.2);
    }

    .stat-number {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--j-navy);
        margin-bottom: 0;
        line-height: 1.2;
    }

    .stat-text {
        font-size: 0.85rem;
        font-weight: 600;
        color: #FF8C00; /* Orange color for Text */
        margin-bottom: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* మొబైల్ లో సెట్టింగ్స్ */
    @media (max-width: 768px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .stat-item {
            border-right: none;
            border-bottom: 1px dashed #dee2e6;
            padding: 20px 0;
        }
        .stat-item:nth-child(even) {
            border-left: 1px dashed #dee2e6;
            border-bottom: 1px dashed #dee2e6;
        }
    }
