        .blueprint-bg {
            background-image: linear-gradient(to right, rgba(42, 169, 224, 0.08) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(42, 169, 224, 0.08) 1px, transparent 1px);
            background-size: 32px 32px;
        }

        /* Custom scrollbar for horizontal gallery slider */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }

        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Marquee Animation for Mobile Top Bar */
        @keyframes marquee {
            0% {
                transform: translateX(0%);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .animate-marquee {
            animation: marquee 22s linear infinite;
        }

        .animate-marquee:hover {
            animation-play-state: paused;
        }