/* Notice Board */
@keyframes scroll-up {
        0% { transform: translateY(400px); } /* Starts from just below the box */
        100% { transform: translateY(-100%); } /* Scrolls all the way out of the top */
    }
    .animate-scroll-up {
        animation: scroll-up 15s linear infinite; /* 15s speed hai, kam zyada kar sakte ho */
    }
    /* Hover karne par scrolling pause karne ke liye */
    .pause-on-hover:hover {
        animation-play-state: paused;
    }


.no-scrollbar::-webkit-scrollbar {
        display: none;
    }
    .no-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

/* 
// gallery move  */

    .no-scrollbar::-webkit-scrollbar { display: none; }
    .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
    .drag-scroll { cursor: grab; }
    .drag-scroll:active { cursor: grabbing; }