    /* Flash Bar */
    .flash-wrapper {
        width: 100%;
        z-index: 999;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
        background: #ffffff;
        border-bottom: 1px solid #e0e0e0;
    }

    .flash-bar {
        max-width: 1400px;
        margin: 0 auto;
        height: 48px;
        display: flex;
        align-items: center;
        background: #ffffff;
    }

    .flash-label {
        background: #ffcc00;
        color: #000;
        font-weight: 900;
        padding: 0 20px;
        font-size: 15px;
        white-space: nowrap;
        height: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border-right: 2px solid #ffb700;
    }

    .flash-label i {
        color: #d00000;
        animation: blink 1.3s infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.35;
        }
    }

    .flash-content {
        flex: 1;
        overflow: hidden;
        position: relative;
        height: 100%;
    }

    .flash-text {
        display: inline-block;
        white-space: nowrap;
        position: absolute;
        left: 0;
        top: 27%;
        transform: translateY(-50%);
        font-weight: 700;
        font-size: 18px;
        color: #0d4a8a;
        padding-left: 20px;
        will-change: transform;
    }

    .flash-text span {
        margin-right: 20px;
        padding: 0 12px;
    }

    .flash-controls {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0 16px;
        background: #f8f9fa;
        height: 100%;
        flex-shrink: 0;
        border-left: 1px solid #e0e0e0;
    }

    .control-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #ccc;
        color: #444;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
    }

    .control-btn:hover {
        background: #0d589f;
        color: white;
        border-color: #0d589f;
        transform: scale(1.1);
    }

    .control-btn.active {
        background: #0d9f19;
        color: white;
        border-color: #0d9f21;
    }

    .control-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .flash-bar {
            height: 42px;
        }

        .flash-label {
            font-size: 13.5px;
            padding: 0 12px;
        }

        .flash-text {
            font-size: 13.5px;
        }

        .control-btn {
            width: 32px;
            height: 32px;
            font-size: 13px;
        }

        .flash-controls {
            padding: 0 10px;
        }
    }


    /* Data Box */

    /* Modern Category Box */
    .cate-box.modern-box {
        border: 2px solid #3053d3;
        /* Border color */
        border-radius: 12px;
        padding: 20px;
        background: #174678;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .cate-box.modern-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    /* Gradient Title */
    .cate-box.modern-box .title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 15px;
        background: #ffffff;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* List Style */
    .cate-box.modern-box ul {
        list-style: none;
        padding-left: 0;
    }

    .cate-box.modern-box ul li {
        margin-bottom: 12px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        transition: color 0.3s;
    }

    /* Custom Arrow Color */
    .cate-box.modern-box ul li i {
        color: #ffcc00;
        margin-right: 10px;
        transition: transform 0.3s;
    }

    .cate-box.modern-box ul li:hover i {
        transform: translateX(5px);
        color: #ffcc00;
    }

    /* Link Hover Effect */
    .cate-box.modern-box ul li a {
        text-decoration: none;
        color: #ffffff;
        transition: color 0.3s;
        font-weight: 600;
    }

    .cate-box.modern-box ul li:hover a {
        color: #ffcc00;
    }


    /* About Us */
    .rs-history {
        background: url("/frontend/images/about/about_bg.png");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        padding: 80px 0;
        /* background-color: #000; */
    }


    .rs-history .abt-title h2,
    .rs-history .about-desc p {
        color: #fff;
    }


    .rs-history .about-desc {
        background: rgba(0, 0, 0, 0.55);
        padding: 25px;
        border-radius: 10px;
    }

    .rs-history img {
        border: 8px solid #ffffff;
        border-radius: 8px;
        box-sizing: border-box;
        height: 230px;
    }

    .partner-img {
        height: 150px;
        width: 150px;
        object-fit: contain;
        background: #fff;
        border: 2px solid #1f3c88;
        padding: 10px;
        border-radius: 8px;
        box-sizing: border-box;
        display: flex;
        margin: 0 auto;
    }

    .book_preload img {
        width: 150px;
        height: auto;
        animation: pulse 1.5s ease-in-out infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 0.7;
        }

        50% {
            transform: scale(1.1);
            opacity: 1;
        }

        100% {
            transform: scale(1);
            opacity: 0.7;
        }
    }

    .rs-toolbar {
        display: block;
    }

    @media (max-width: 991px) {
        .rs-toolbar {
            display: none !important;
        }
    }

    @media (min-width: 992px) {
        .rs-toolbar {
            display: block !important;
        }
    }

    /* Default – Desktop */
    .site-logo {
        height: 70px;
        width: auto;
        margin-top: 8px;
    }

    /* Mobile View */
    @media (max-width: 767px) {
        .site-logo {
            height: 45px;
            /* height kam */
            width: 80%;
            /* width zyada */
            max-width: 220px;
            /* zyada bada na ho */
            margin-top: 5px;
        }
    }

    @media (max-width: 768px) {
        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        table {
            white-space: nowrap;
        }

        th,
        td {
            font-size: 13px;
            padding: 8px;
        }
    }


    /* Submenu container */
    .sub-menu.scroll-menu {
        max-height: 380px;
        /* visible height */
        overflow-y: auto;
        /* vertical scroll */
        overflow-x: hidden;
        transition: max-height 0.4s ease;
        scroll-behavior: smooth;
    }

    /* Optional: better scroll look */
    .sub-menu.scroll-menu::-webkit-scrollbar {
        width: 6px;
    }

    .sub-menu.scroll-menu::-webkit-scrollbar-thumb {
        background: linear-gradient(to right, #0aacd5, #4e0cd1);
        border-radius: 10px;
    }

    .sub-menu.scroll-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
    }