
    .sports-slider .slick-slide {
        margin: 0 10px;
    }

    .orange-bg {
        background-color: #ef7d00;
    }

    .orange-bg .inventors-slider h4 {
        color: #fff;
    }

    .orange-bg .inventors-slider h4 a {
        background: #fff;
        padding: 5px 10px;
        font-size: 16px;
        display: inline-flex;
        border-radius: 4px;
    }

    .schedule-table th,
    .schedule-table td {
        border: 1px solid #ddd;
        text-align: left;
        vertical-align: top;
        word-wrap: break-word;
    }

    .schedule-table tbody tr:nth-child(even) {
        background-color: #fff;
    }

    .schedule-table th:nth-child(1),
    .schedule-table th:nth-child(3),
    .schedule-table td:nth-child(1),
    .schedule-table td:nth-child(3) {
        width: 15%;
    }

    .schedule-table th:nth-child(2),
    .schedule-table th:nth-child(4),
    .schedule-table td:nth-child(2),
    .schedule-table td:nth-child(4) {
        width: 35%;
    }

    .stat-icon {

        height: 25px;
        width: 25px;
    }

    /* --- Hero Section Styling --- */
    .hero-section {
        background: #ffffff;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 25%, rgba(255, 237, 181, 1) 100%);

        padding-top: 50px;
        padding-bottom: 20px;
        position: relative;
        overflow-x: hidden;
    }

    .pill-badge {
        background-color: #dcdcdc;
        color: #333;
        font-weight: 600;
        padding: 8px 25px;
        border-radius: 20px;
        display: inline-block;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }

    .main-heading {
        font-weight: 800;
        color: #000;
        font-size: 2rem;

        text-transform: uppercase;

    }

    /* Middle Content Area */
    .grant-logo-text {
        font-weight: 800;
        font-size: 2rem;
        line-height: 1;
        color: #333;
        text-align: right;
    }

    .grant-logo-text span {
        display: block;
        color: #f58634;
        /* Orange */
    }

    .vertical-divider {
        width: 2px;
        background-color: #333;
        height: 80px;
        margin: 0 30px;
    }

    .grant-amount-text {
        font-weight: 800;
        font-size: 3.5rem;
        /* Large 1 LAC */
        line-height: 1;
        color: #f58634;
        /* Orange */
        text-align: left;
    }

    .grant-sub {
        font-size: 1.2rem;
        font-weight: 700;
        color: #333;
        display: block;
    }

    .grant-desc {
        font-size: 1rem;
        margin-top: 30px;
        font-weight: 500;
        color: #000000;
    }

    .institutes-list {
        font-weight: 700;
        font-size: 1.1rem;
        margin-top: 10px;
        color: #000000;
    }

    /* Student Image Circles */
    .student-wrapper {
        position: relative;
        display: inline-block;
        padding: 20px;
    }

    /*   .student-img {
            width: 140px;
            height: 140px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
        }*/

    /* Decorative concentric circles using pseudo-elements or border */

    /* Doodle Icons (Ribbon/Arrow) - simulated with placeholders */

    .stats-container {
        background: white;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
        /* Border handling for grid */
        border: 1px solid #dee2e6;
    }

    .stats-col {
        padding: 30px 10px;
        border-right: 1px solid #dee2e6;
        border-bottom: 1px solid #dee2e6;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #fff;
        transition: 0.3s;
    }

    .stats-col:hover {
        background-color: #fffbf5;
    }

    .stat-title {
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #000;
    }

    .stat-count {
        font-weight: 700;
        font-size: 1rem;
        color: #333;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .stat-icon {
        color: #f58634;
        font-size: 1.1rem;
    }

    /* --- Responsive Tweaks --- */
    @media (max-width: 991px) {
        .vertical-divider {
            display: none;
            /* Hide vertical line on mobile */
        }

        .grant-logo-text,
        .grant-amount-text {
            text-align: center;
            margin-bottom: 15px;
        }

        .main-heading {
            font-size: 1.8rem;
        }

        .student-wrapper {
            margin-bottom: 30px;
        }

        /* Connect borders correctly on mobile stacking */
        .stats-col {

            border-bottom: 1px solid #dee2e6;
        }
    }

    @media (min-width: 992px) {

        /* Remove right border for the last item in a row */
        .stats-col:nth-child(5),
        .stats-col:last-child {
            border-right: none;
        }

        /* Remove bottom border for the last row */
        .stats-row-2 .stats-col {
            border-bottom: none;
        }
    }