
        :root {
            --bg: #0b1220;
            --accent: #dc3545;
            --text: #fff;
            --muted: #cbd5e1;
            --speed: 20s;
        }

        /* Container */
        .ticker-wrap {
            /* background: var(--bg); */
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 12px;
            overflow: hidden;
            border-radius: 6px;
            padding-left: 0px;
        }

        /* Label */
        .ticker-label {
            background: rgba(255, 255, 255, 0.06);
            color: var(--accent);
            border-radius: 4px;
            font-weight: 700;
            letter-spacing: 0.02em;
            white-space: nowrap;
            flex: 0 0 auto;
        }

        /* The scrolling area */
        .ticker {
            position: relative;
            flex: 1 1 auto;
            overflow: hidden;
            --marquee-padding: 20px;
            background-color: var(--bs-nav);
        }

        /* The moving track (two identical lists for seamless loop) */
        .ticker-track {
            display: inline-flex;
            gap: var(--marquee-padding);
            align-items: center;
            white-space: nowrap;
            animation: marquee var(--speed) linear infinite;
        }

        /* Pause animation when parent has .paused */
        .ticker.paused .ticker-track {
            animation-play-state: paused;
        }

        /* Headline item style */
        .ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 6px 10px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 4px;
            color: var(--muted);
            font-size: 0.95rem;
        }

        /* Headline title */
        .ticker-item strong {
            color: var(--text);
            margin-right: 6px;
        }

        /* Make it accessible focusable */
        .ticker-item a {
            color: inherit;
            text-decoration: none;
            outline: none;
        }

        .ticker-item a:focus {
            box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.12);
            border-radius: 4px;
        }

        /* Keyframes for marquee */
        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }

            /* track repeats so -50% loops */
        }

        /* Responsive: slow down on small screens */
        @media (max-width:600px) {
            :root {
                --speed: 28s;
            }

            .ticker-item {
                font-size: 0.88rem;
                padding: 6px 8px;
            }
        }



        /* .backtop {
            position: fixed;
            right: 10px;
            bottom: 20px;
            z-index: 2;
            width: 48px;
            height: 48px;
            font-size: 15px;
            color: white;
            line-height: 48px;
            text-align: center;
            display: none;
            border-radius: 50%;
            background: #002e45;
            -webkit-box-shadow: 0px 0px 15px 3px rgba(71, 254, 126, 0.5);
            box-shadow: 0px 0px 15px 3px rgb(0 255 77);
            -webkit-animation: mahmud 2s infinite;
            animation: sabbir 2s infinite;
            transition: all linear .3s;
            -webkit-transition: all linear .3s;
            -moz-transition: all linear .3s;
            -ms-transition: all linear .3s;
            -o-transition: all linear .3s;
        }

        @keyframes sabbir {
            0% {
                margin-bottom: 0px;
            }

            50% {
                margin-bottom: 15px;
            }
        } */

        /* .backtop:hover {
            color: white;
        } */

        .intro {
            display: none;
        }

        .activebtn {
            display: block;
        }

        /* .mobilebar,
        .boton {
            height: 40px;
            width: 40px;
            display: flex !important;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            background: #f7f7f7;
        }

        .boton {
            height: 40px;
            width: 40px;
            display: flex !important;
            justify-content: center;
            align-items: center;
        }

        .mobilebar:hover {
            height: 40px;
            width: 40px;
            background: #002D43;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            color: white;
            transition: .2s ease-in-out;
        }

        .boton:hover {
            height: 40px;
            width: 40px;
            background: #002D43;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            color: white;
            transition: .2s ease-in-out;
        }

        .mobileshopingcart {
            height: 40px;
            width: 40px !important;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            background: #f7f7f7;

        }

        .mobileshopingcart:hover {
            background: #002D43;
            color: #fff;
            transition: .2s ease-in-out;
        }

        .whatbtn {
            position: fixed;
            right: 1px;
            z-index: 1;
            bottom: 25%;
        }

        .cartbtn {
            position: fixed;
            right: 1px;
            z-index: 1;
            bottom: 34%;
        }


        .cartbtn a h3 {
            color: #00ff3c;
            padding: 3px 11px;
            background: #002D43;
        }


        .whaticon {
            font-size: 30px;
            background: #002D43;
            color: white;
            padding: 5px;
            transition: .2s all;
        }

        .carticon {
            font-size: 15px;
        }

        .whaticon:hover {
            font-size: 35px;
            background: #00ff3c;
        }

        .carticon:hover {
            font-size: 17px;
            transition: .2s all;
        } */

        .story {
            text-align: center;
            margin: 10px;
        }

        .story img {
            width: 100px;
            height: 112px;
            border-radius: 50%;
            border: 3px solid var(--bs-storyimg);
            padding: 3px;
            object-fit: cover;
        }

        .story-title {
            font-size: 14px;
            margin-top: 8px;
            font-weight: 500;
        }

        .news-container {
            border-right: 2px solid var(--bs-cat-color);
            padding-left: 15px;
        }

        .news-title {
            color: #7a1433;
            font-weight: bold;
        }

        .category-badge {
            background-color: var(--bs-cat-color);
            color: #fff;
            border-radius: 15px;
            padding: 5px 12px;
            font-size: 14px;
        }

        .news-item {
            border-top: 1px solid #ddd;
            padding-top: 10px;
            margin-top: 10px;
        }

        .time {
            font-size: 13px;
            color: gray;
        }

        .spacetop-100 {
            margin-top: 100px;
        }

        .maxw-100 {
            max-width: 130px !important;
        }

        .no-hover:hover {
            color: #fff !important;
            background-color: var(--bs-main-color) !important;
        }

        .line-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .linehight40 {
            line-height: 40px;
        }
