    html, body {
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100vh;
}
#headerCanvas {
    pointer-events: none;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            color: black;
            overflow-x: hidden !important;
            background: #010101;
            color: white;
        }

        html, body {
            width: 100%;
            overflow-x: hidden; /* Blocks horizontal overflow */
        }

        header {
            background: #00509e;
            color: #fff;
            padding: 20px;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 10;
            display: flex;
            padding: 10px 10px;
            justify-content: space-between !important;
            align-items: center;
        }

        header h1 {
            font-size: 2px;
            margin-right: 7;
            display: flex;
            flex-direction: row;
            padding: 10px 10px;
            flex-wrap: no-wrap;
            margi-nleft: 60px;
        }

        /* Hamburger Button */
        .hamburger {
            display: fixed;
            cursor: pointer;
            width: 70px;
            height: 70px;
            position: flex;
            background-color: cyan;
            border: 1px solid orange;
        }

        .hamburger div {
            width: 100%;
            height: 4px;
            background-color: black;
            margin: 5px 0;
            transition: transform 0.3s ease;
        }

        .hamburger.open div:nth-child(1) {
            transform: rotate(45deg);
            position: absolute;
            top: 50%;
        }

        .hamburger.open div:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open div:nth-child(3) {
            transform: rotate(-45deg);
            position: absolute;
            top: 50%;
        }

        /* Sidebar Layout */
        #sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: 260px;
            height: 100%;
            background: rgba(20, 20, 30, 0.9);
            backdrop-filter: blur(12px);
            box-shadow: 4px 0 15px rgba(0, 0, 0, 0.4);
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            z-index: 100;
        }

        /* Branding */
        #sidebar .brand {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            color: #ffffff;
            letter-spacing: 1px;
            margin-bottom: 10px;
            background: linear-gradient(90deg, #00e0ff, #0072ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Navigation Links */
        .nav-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .nav-links a {
            padding: 12px 16px;
            border-radius: 10px;
            color: #f0f0f0;
            font-size: 15px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            background: transparent;
            display: flex;
            align-items: center;
        }

        .nav-links a:hover {
            background: linear-gradient(90deg, #00509e, #0072ff);
            color: #ffffff;
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
        }

        /* Optional: Icon Styling Placeholder */
        .nav-links a::before {
            content: "•";
            display: inline-block;
            margin-right: 10px;
            color: #00bfff;
            font-weight: bold;
        }

        #overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            z-index: 5;
        }

        main {
            padding: 20px;
        }

        /* REVAMPED SERVICE BOXES - OUT OF THIS WORLD DESIGN */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 40px 0;
            perspective: 1000px;
        }

        .service-box {
            position: relative;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            background: rgba(10, 15, 30, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transform-style: preserve-3d;
            transform: translateZ(0);
        }

        .service-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg,
                #00f7ff, #ff00ff, #00ffaa, #ff00ff, #00f7ff);
            background-size: 400% 400%;
            animation: gradientShift 3s ease infinite;
            z-index: 2;
        }

        .service-box::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(255, 255, 255, 0.1),
                transparent
            );
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .service-box:hover {
            transform: translateY(-15px) rotateX(5deg) scale(1.03);
            box-shadow:
                0 25px 50px rgba(0, 247, 255, 0.3),
                0 0 80px rgba(0, 255, 170, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .service-box:hover::after {
            opacity: 1;
            animation: shine 1.5s ease;
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            display: inline-block;
            background: linear-gradient(135deg, #00f7ff, #ff00ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            filter: drop-shadow(0 0 10px rgba(0, 247, 255, 0.5));
            transition: all 0.5s ease;
        }

        .service-box:hover .service-icon {
            transform: scale(1.2) rotate(10deg);
            filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.7));
        }

        .service-box h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #00f7ff, #ff00ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
            position: relative;
            z-index: 1;
        }

        .service-box p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        .service-features {
            list-style: none;
            margin: 20px 0;
            text-align: left;
            position: relative;
            z-index: 1;
        }

        .service-features li {
            padding: 8px 0;
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            padding-left: 25px;
        }

        .service-features li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #00f7ff;
            font-weight: bold;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #00f7ff, #ff00ff);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0, 247, 255, 0.4);
            z-index: 1;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 0, 255, 0.6);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
        }

        .floating-element {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(0, 247, 255, 0.5);
            border-radius: 50%;
            animation: float 6s infinite ease-in-out;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            left: 80%;
            animation-delay: 1s;
        }

        .floating-element:nth-child(3) {
            top: 80%;
            left: 20%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(4) {
            top: 30%;
            left: 70%;
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0.7;
            }
            25% {
                transform: translateY(-20px) translateX(10px);
                opacity: 1;
            }
            50% {
                transform: translateY(-10px) translateX(-10px);
                opacity: 0.5;
            }
            75% {
                transform: translateY(10px) translateX(15px);
                opacity: 0.8;
            }
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes shine {
            0% {
                transform: rotate(45deg) translateX(-100%);
            }
            100% {
                transform: rotate(45deg) translateX(100%);
            }
        }

        /* Service box color variations */
        .service-box:nth-child(1) { border-top: 4px solid #00f7ff; }
        .service-box:nth-child(2) { border-top: 4px solid #ff00ff; }
        .service-box:nth-child(3) { border-top: 4px solid #00ffaa; }
        .service-box:nth-child(4) { border-top: 4px solid #ffdd00; }
        .service-box:nth-child(5) { border-top: 4px solid #ff0066; }
        .service-box:nth-child(6) { border-top: 4px solid #00a3ff; }
        .service-box:nth-child(7) { border-top: 4px solid #aa00ff; }
        .service-box:nth-child(8) { border-top: 4px solid #ffaa00; }
        .service-box:nth-child(9) { border-top: 4px solid #00ffaa; }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .services {
                grid-template-columns: 1fr;
            }

            .service-box {
                padding: 20px;
            }

            .service-icon {
                font-size: 2.5rem;
            }

            .service-box h3 {
                font-size: 1.5rem;
            }
        }

        /* Rest of your existing CSS remains unchanged */
        footer {
            text-align: center;
            padding: 20px;
            background: #333;
            color: white;
        }

        /* Services Sidebar Style: No Icons, Just Text Under the Grid */
        #sidebar .service-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            justify-items: center;
        }

        #sidebar button {
            width: 100px; /* Adjusted size for visibility */
            height: 100px; /* Same */
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            text-align: center;
            padding: 10px;
        }

        #sidebar .service-grid button span {
            font-size: 14px;
            text-align: center;
            display: block;
        }
        .moto {
            text-align: center;
            color: cyan;
            font-size: 24px;
            font-style: bold;
            position: relative;
            margin-top: 23px;
        }
        .moto::before,
        .moto::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 70vw;
            height: 4px;
            background: linear-gradient(90deg, #ccc, #666, #fff, #00ff88);
            filter: drop-shadow(0 0 2px #00ff88);
            animation: scroll-moto 5s linear infinite;
        }
        @keyframes scroll-moto {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(0);
            }
        }

        .moto::before { top: 0; }
        .moto::after { bottom: 0; }

        .submoto {
            text-align: center;
            color: orange;
            font-size: 1.2rem;
            animation: scroll 5s linear infinite;
        }
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        .siervice-box a {
            color: white;
            padding: 15px 25px;
            text-decoration: none;
            display: block;
            font-size: 1.2em;
            transition: background 0.3s ease;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            width: 250px;
            background-color: #00509e;
            top: 38px;
            maegin-right: 0;
            z-index: 1;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        }

        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }

        .dropdown-content a:hover {
            background-color: indigo;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }
        .cta {
            text-align: center;
            margin: 20px 0;
        }

        .cta-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        /* Futuristic Sidebar (Quick Links) styles */
        /* Wrapper for relative positioning */
        .dropDownWrapper {
            position: absolute;
            right: 10px;
            margin-bottom: 0;
        }

        .sidebar2 {
            position: absolute!important;
            top: 150px; right: 20px;
            background: #121212;
            color: #fff;
            width: 220px;
            padding: 20px;
            border-radius: 10px;
            box-shadow: -2px 2px 10px rgba(0,0,0,0.5);
            font-family: var(--font-main);
            z-index: 1000 !important;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
        }
        .sidebar2.active {
            max-height: 600px;
        }
        .sidebar2 h3 {
            margin: 0 0 15px;
            font-size: 1rem;
            text-align: center;
            letter-spacing: 1px;
        }
        .sidebar2 ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar2 ul li {
            margin: 10px 0;
            white-space: nowrap;      /* prevent wrapping */
            overflow: hidden;
            text-overflow: ellipsis;  /* add "..." if too long */
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 5px;
        }
        .sidebar2 ul li:last-child {
            border-bottom: none;
        }
        .sidebar2 ul li a {
            color: #fff;
            text-decoration: underline; /* underlined */
            transition: color 0.3s ease;
        }
        .sidebar2 ul li a:hover {
            color: #ffdd57;
        }
        /* drop-in animation */
        .sidebar2.active ul li {
            opacity: 0;
            transform: translateY(-10px);
            animation: dropDown 0.4s forwards;
        }
        @keyframes dropDown {
            to { opacity: 1; transform: translateY(0); }
        }
        .sidebar2.active ul li:nth-child(1)  { animation-delay: 0.1s; }
        .sidebar2.active ul li:nth-child(2)  { animation-delay: 0.2s; }
        .sidebar2.active ul li:nth-child(3)  { animation-delay: 0.3s; }
        .sidebar2.active ul li:nth-child(4)  { animation-delay: 0.4s; }
        .sidebar2.active ul li:nth-child(5)  { animation-delay: 0.5s; }
        .sidebar2.active ul li:nth-child(6)  { animation-delay: 0.6s; }
        .sidebar2.active ul li:nth-child(7)  { animation-delay: 0.7s; }
        .sidebar2.active ul li:nth-child(8)  { animation-delay: 0.8s; }
        .sidebar2.active ul li:nth-child(9)  { animation-delay: 0.9s; }
        .sidebar2.active ul li:nth-child(10) { animation-delay: 1.0s; }
        .sidebar2 {
            /* Add these properties */
            display: block; /* Override any potential inherited display:none */
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s ease, max-height 0.5s ease-out;
        }

        .sidebar2.active {
            visibility: visible;
            opacity: 1;
            max-height: 600px;
        }
        /* Overlay for futuristic dropdown */
        .dropdown-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            z-index: 900;
            display: none;
        }
        .dropdown-overlay.active {
            display: block;
        }

        /* Icon button styling */
        .icon {
            background: transparent;
            border: none;
            cursor: pointer;
        }
        /* Custom dropdown icon transitions */
        .dropdown-icon {
            transition: transform 0.4s ease, fill 0.4s ease;
            fill: #333; /* Inactive state color */
        }
        .icon.active .dropdown-icon {
            transform: rotate(180deg);
            fill: #ff3b3f; /* Active state color */
        }
        .hero {
            width: 100vw; /* Full viewport width */
            margin-left: calc(-50vw + 50%); /* Center alignment fix */
            padding: 0 !important; /* Remove any default padding */
            height: 50vh;
        }
        .cyber-scroll {
            grid-auto-columns: minmax(900vw, 1fr); /* Each pane = full viewport */
            width: 400vw; /* 4 screens wide (adjust based on panes) */
        }
        .category-pane,
        .designer-pane,
        .event-pane {
            width: 100vw;
            margin: 0;
            box-sizing: border-box;
        }
        /* Modify these CSS rules */

        body {
            overflow-y: auto !important; /* Force vertical scroll */
            overscroll-behavior-y: contain; /* Prevent scroll chaining */
        }

        .hero {
            position: relative;
            overflow-y: hidden; /* Lock vertical scroll within section */
        }

        /* Add scroll exit portal */
        .scroll-exit {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            animation: bounce 2s infinite;
            cursor: pointer;
            z-index: 1000;
        }

        @keyframes bounce {
            0%, 100% { transform: translate(-50%, 0) }
            50% { transform: translate(-50%, -15px) }
        }
        <!-- Add this CSS after existing styles -->
        <style>
        /* === Category Modals === */
        .cyber-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(10,10,15,0.98);
            z-index: 10000;
            display: none;
            overflow-y: scroll;
            backdrop-filter: blur(20px);
        }

        .modal-active {
            display: block;
            animation: matrixEnter 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes matrixEnter {
            0% { opacity: 0; transform: scale(0.8); }
            100% { opacity: 1; transform: scale(1); }
        }

        .modal-content {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 2rem;
            border: 1px solid var(--cyber-cyan);
            border-radius: 20px;
            position: relative;
        }

        .modal-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .modal-item {
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid var(--hud-gray);
            transition: transform 0.3s ease;
        }

        .modal-item:hover {
            transform: translateY(-5px);
        }

        .modal-category {
            font-size: 3rem;
            background: linear-gradient(45deg, var(--cyber-cyan), var(--neon-magenta));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 2rem;
        }

        /* New Category Panes */
        .children-collection {
            background-image: linear-gradient(0deg, rgba(0,0,0,0.9) 20%, transparent 100%),
                            url('/static/images/img10.jpg');
        }

        .luxury-collection {
            background-image: linear-gradient(0deg, rgba(0,0,0,0.9) 20%, transparent 100%),
                            url('/static/images/img1.jpg');
        }

        .techwear-collection {
            background-image: linear-gradient(0deg, rgba(0,0,0,0.9) 20%, transparent 100%),
                            url('/static/images/img10.jpg');
        }
        :root {
            --cyber-cyan: #00f7ff;
            --neon-magenta: #ff00ff;
            --matrix-green: #00ff9d;
            --void-black: #0a0a0f;
            --hud-gray: rgba(255,255,255,0.1);
        }

        /* Core Structure */
        .hero {
            position: relative;
            height: 90vh;
            background: var(--void-black);
            border-bottom: 1px solid var(--hud-gray);
            overflow: hidden;
        }

        .cyber-scroll {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: minmax(100vw, 1fr);
            height: 100%;
            overflow-x: scroll;
            scroll-snap-type: x mandatory;
        }

        /* Category Panes */
        .category-pane {
            position: relative;
            scroll-snap-align: start;
            padding: 8rem;
            background-size: cover;
            background-position: center;
            border-right: 1px solid var(--hud-gray);
        }

        .men-collection { background-image: linear-gradient(0deg, rgba(0,0,0,0.9) 20%, transparent 100%), url('/static/images/img5.jpg') }
        .women-collection { background-image: linear-gradient(0deg, rgba(0,0,0,0.9) 20%, transparent 100%), url('/static/images/img9.jpg') }
        .unisex-collection { background-image: linear-gradient(0deg, rgba(0,0,0,0.9) 20%, transparent 100%), url('/static/images/image.jpg') }

        .content-vortex {
            position: relative;
            max-width: 600px;
            margin-top: auto;
            margin-bottom: 15vh;
            backdrop-filter: blur(10px);
            background: rgba(10,10,15,0.5);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid var(--hud-gray);
        }
        .content-vortex p {
            color: orange;
        }

        .neon-divider {
            color: var(--cyber-cyan);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
        }

        .neon-divider::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--cyber-cyan), transparent);
        }

        /* Holographic Buttons */
        .gateway-btn {
            background: linear-gradient(45deg,
                var(--cyber-cyan) 0%,
                var(--neon-magenta) 100%);
            border: none;
            padding: 1rem 2rem;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gateway-btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg,
                transparent 20%,
                rgba(255,255,255,0.1) 50%,
                transparent 80%);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            100% { transform: translateX(200%); }
        }

        /* Designer Grid Section */
        .designer-pane {
            scroll-snap-align: start;
            background: var(--void-black);
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 4rem;
        }

        .brand-matrix {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            padding: 2rem;
        }

        .designer-logo {
            height: 200px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--hud-gray);
            position: relative;
        }

        .designer-logo::after {
            content: attr(data-designer);
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            color: var(--matrix-green);
            font-size: 0.9rem;
        }

        /* Seasonal Event Section */
        .event-pane {
            scroll-snap-align: start;
            background: linear-gradient(45deg, #0f0b1d, #1d0b1d);
            padding: 4rem;
            display: flex;
            align-items: center;
        }

        .time-vortex {
            position: relative;
            z-index: 1;
        }

        .epoch-label {
            color: var(--neon-magenta);
            font-size: 1.2rem;
            letter-spacing: 3px;
        }

        .neon-split {
            font-size: 4rem;
            line-height: 1;
            margin: 2rem 0;
            background: linear-gradient(45deg,
                var(--cyber-cyan) 0%,
                var(--neon-magenta) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Scroll HUD */
        .scroll-hud {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 2px;
            background: var(--hud-gray);
        }

        .hud-progress {
            height: 100%;
            background: var(--cyber-cyan);
            width: 33%;
            transition: 0.3s ease;
        }

        @media (max-width: 768px) {
            .cyber-scroll {
                grid-auto-columns: minmax(100vw, 1.2fr);
            }

            .neon-divider {
                font-size: 2rem;
            }

            .designer-pane {
                grid-template-columns: 1fr;
            }
        }
        /* Remove previous scroll locks */
        body {
            overflow-x: hidden;
            overflow-y: auto !important; /* Normal vertical scroll */
        }

        .hero {
            height: auto; /* Remove fixed height */
            min-height: 100vh; /* Minimum full viewport */
            position: relative;
        }

        /* New scroll gateway */
        .scroll-gate {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 60px;
            background: var(--cyber-cyan);
            animation: portal-glow 2s infinite;
        }

        .product-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: var(--gradient-1);
            padding: 0.5rem 1rem;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(157,78,221,0.3);
        }

        @keyframes portal-glow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; box-shadow: 0 0 15px var(--cyber-cyan); }
        }
        #hologram-label {
            color: orange;
        }
        :root {
            --accent: #2575fc;
            --overlay: rgba(0, 0, 0, 0.6);
            --font-main: 'Segoe UI', Tahoma, sans-serif;
        }

        body {
            margin: 0;
            font-family: var(--font-main);
            background: #111;
            color: #fff;
            overflow-x: hidden;
        }

        /* the intro "card" */
        .introduction-container {
            position: relative;
            width: 100vw;
            height: 300px;
            overflow: hidden;
            cursor: pointer;
            background: center/cover url('/static/images/img9.jpg');
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* dark gradient so text pops */
        .introduction-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0,0,0,0.9) 20%, transparent 100%);
            z-index: 1;
        }

        .introduction-container .intro-text {
            position: relative;
            z-index: 2;
            padding: 0 20px;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.4;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* full-screen overlay */
        .fullscreen-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100vw; height: 100vh;
            background: var(--overlay);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
        }

        .fullscreen-overlay.active {
            display: flex;
            animation: fadeIn 0.5s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; } to { opacity: 1; }
        }

        .fullscreen-overlay .slide {
            flex: 0 0 100vw;
            height: 100vh;
            position: relative;
            scroll-snap-align: start;
            background: center/cover no-repeat;
        }

        .fullscreen-overlay .slide .slide-text {
            position: absolute;
            bottom: 10%;
            left: 5%;
            right: 5%;
            background: rgba(0,0,0,0.5);
            padding: 20px;
            border-radius: 8px;
            font-size: 1.2rem;
            line-height: 1.5;
            color: #fff;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

        .fullscreen-overlay .close-btn {
            position: absolute;
            top: 20px; right: 20px;
            background: var(--accent);
            border: none;
            color: #fff;
            font-size: 1.5rem;
            width: 40px; height: 40px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 2;
            transition: transform 0.2s;
        }
        .fullscreen-overlay .close-btn:hover {
            transform: scale(1.1);
        }

        .current-clients {
            padding: 3rem;
            background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
            color: #fff;
            font-family: 'Segoe UI', sans-serif;
            backdrop-filter: blur(8px);
            box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
        }

        .clients-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            background: linear-gradient(90deg, #00f2fe, #4facfe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .client-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .tab-button {
            padding: 0.7rem 1.5rem;
            background: transparent;
            border: 2px solid #00f2fe;
            border-radius: 30px;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .tab-button.active,
        .tab-button:hover {
            background: linear-gradient(to right, #00f2fe, #4facfe);
            color: #000;
            box-shadow: 0 0 15px rgba(0, 242, 254, 0.7);
        }

        .clients-container {
            position: relative;
        }

        .clients-category {
            display: none;
            white-space: nowrap;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 1rem;
            padding-bottom: 1rem;
            transition: opacity 0.5s ease;
        }

        .clients-category.active {
            display: flex;
        }

        .client-card {
            flex: 0 0 auto;
            width: 260px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1rem;
            margin-right: 1rem;
            text-align: center;
            scroll-snap-align: start;
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .client-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
        }

        .client-logo {
            max-width: 80px;
            margin-bottom: 1rem;
        }

        .client-name {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .client-location {
            font-size: 0.9rem;
            color: #ccc;
            margin-bottom: 1rem;
        }

        .client-photo {
            max-width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 10px;
        }
        .testimonials-section {
            padding: 4rem 2rem;
            background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
            color: white;
            overflow-x: hidden;
        }

        .testimonials-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            font-weight: bold;
            background: linear-gradient(90deg, #ff7e5f, #feb47b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .testimonials-slider {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 1rem;
        }

        .testimonial-card {
            flex: 0 0 300px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 1.5rem;
            padding: 2rem;
            scroll-snap-align: center;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
        }

        .testimonial-logo {
            height: 40px;
            margin-bottom: 1rem;
        }

        .testimonial-quote {
            font-style: italic;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .testimonial-profile {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .profile-pic {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #fff;
        }

        :root {
            --primary-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
            --cyber-purple: #6c5ce7;
            --neon-pink: #ff0066;
            --hologram-blue: rgba(0, 242, 254, 0.3);
            --matrix-green: #00ff9d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            min-height: 100vh;
            background: radial-gradient(circle at center, #0a0a1a, #000000);
        }

        .quantum-sidebar {
            position: relative;
            left: 0;
            margin-top: 5px;
            height: 100px;
            color: black;
            width: 100%;
            padding: 40px 25px;
            background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(252, 255, 250, 0.9) 30%,
            rgba(245, 255, 252, 0.8) 100%
            );
            backdrop-filter: blur(35px);
            border-right: 2px solid var(--hologram-blue);
            box-shadow: 20px 0 50px rgba(0, 242, 254, 0.1);
            display: flex;
            flex-direction: row;
            gap: 10px;
            overflow-X: auto;
            padding: 17px;
            z-index: 998;
        }
        .quantum-sidebar span {
            color: black;
            font-style: bold;
        }

        .hologram-line {
            position: absolute;
            right: -2px;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--primary-gradient);
            filter: blur(1px);
            opacity: 0.7;
        }

        .quantum-button {
            position: relative;
            padding: 20px 30px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
        }

        .quantum-button::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .quantum-button:hover {
            transform: translateX(30px) skewX(-5deg);
            background: rgba(255, 255, 255, 0.1);
        }

        .quantum-button:hover::before {
            opacity: 0.15;
        }

        .quantum-button i {
            font-size: 1.6rem;
            margin-right: 20px;
            background: black;
            var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: all 0.3s ease;
        }

        .button-text {
            font-family: 'Courier New', monospace;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
        }

        .button-text::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--matrix-green);
            transition: width 0.4s ease;
        }

        .quantum-button:hover .button-text::after {
            width: 100%;
        }
        .quantum-sidebar a {
            text-decoration: none;
        }

        /* Binary Hover Effect */
        .quantum-button:hover::after {
            content: attr(data-binary);
            position: absolute;
            right: -120px;
            color: var(--matrix-green);
            font-family: 'Courier New', monospace;
            font-size: 0.8rem;
            opacity: 0.5;
            animation: binary-flow 2s infinite linear;
        }

        @keyframes binary-flow {
            0% { transform: translateY(-50%); opacity: 0 }
            50% { opacity: 1 }
            100% { transform: translateY(50%); opacity: 0 }
        }

        /* Active State */
        .quantum-button.active {
            background: linear-gradient(90deg,
                rgba(108, 92, 231, 0.3) 0%,
                rgba(0, 242, 254, 0.15) 100%);
            border-left: 4px solid var(--neon-pink);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .quantum-sidebar {
                width: 100%;
                height: 80px;
                flex-direction: row;
                overflow-x: auto;
                padding: 10px;
                top: auto;
                bottom: 0;
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }

            .quantum-button {
                min-width: 150px;
                clip-path: none;
                padding: 15px 20px;
            }

            .quantum-button:hover {
                transform: translateY(-5px) skewX(-5deg);
            }

            .hologram-line {
                display: block;
            }

            .button-text::after {
                display: none;
            }
            .button-text {
                diaplay: inline-block;
                font-size: 10px;
                font-style: bold;
                font-weight: 700;
            }
        }

        /* Custom Scrollbar */
        .quantum-sidebar::-webkit-scrollbar {
            height: 8px;
        }

        .quantum-sidebar::-webkit-scrollbar-thumb {
            background: var(--primary-gradient);
            border-radius: 4px;
        }
        :root {
            /* Base Colors */
            --neon-core: #00ffaa;
            --cyber-teal: #00f5d4;
            --hologram-pink: #ff00ff;
            --matrix-green: #00ff9d;
            --void-purple: #7d00ff;
            --quantum-blue: #00a3ff;

            /* Button Gradients */
            --button-primary: linear-gradient(
                135deg,
                rgba(0, 255, 170, 0.15) 0%,
                rgba(0, 163, 255, 0.15) 100%
            );

            --button-hover: linear-gradient(
                145deg,
                rgba(0, 255, 170, 0.3) 0%,
                rgba(127, 0, 255, 0.3) 50%,
                rgba(0, 163, 255, 0.3) 100%
            );

            --button-accent: radial-gradient(
                circle at 80% 20%,
                rgba(255, 0, 255, 0.25) 0%,
                rgba(0, 255, 170, 0.25) 100%
            );

            --button-border: linear-gradient(
                45deg,
                transparent 0%,
                var(--neon-core) 50%,
                transparent 100%
            );
        }

        .quantum-button {
            background:
                var(--button-primary),
                var(--button-accent),
                rgba(0, 0, 0, 0.1);
            border: 1px solid;
            border-image: var(--button-border) 1;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }

        .quantum-button:hover {
            background:
                var(--button-hover),
                var(--button-accent),
                rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 25px rgba(0, 255, 170, 0.3),
                        inset 0 0 15px rgba(127, 0, 255, 0.2);
            transform: translateX(15px) skewX(-5deg);
        }

        .quantum-button.active {
            background:
                radial-gradient(circle at 85% 15%,
                    rgba(0, 255, 170, 0.4) 0%,
                    rgba(127, 0, 255, 0.4) 100%),
                rgba(0, 0, 0, 0.15);
            border-image: linear-gradient(
                45deg,
                var(--neon-core) 0%,
                var(--hologram-pink) 100%
            ) 1;
        }
        .slide { height: 100vh; position: relative; cursor: pointer; }
        .slide-text {
            position: relative;
            bottom: 0;
            left: 5%;
            background: rgba(0,0,0,0.5);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-size: 1rem;
            max-width: 40%;
            transition: background 0.3s;
        }
        .slide-text:hover { background: rgba(0,0,0,0.7); }

        /* Modal backdrop */
        .modal-backdrop {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100vw; height: 100vh;
            background: rgba(0,0,0,0.6);
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        .modal {
            background: #fff;
            border-radius: 1rem;
            max-width: 600px;
            width: 90%;
            padding: 2rem;
            position: relative;
        }
        .modal h2 { margin-top: 0; }
        .modal .close-btn {
            position: absolute;
            top: 1rem; right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .modal .learn-more {
            display: inline-block;
            margin-top: 1.5rem;
            padding: 0.75rem 1.5rem;
            background: #007bff;
            color: #fff;
            border-radius: 0.5rem;
            text-decoration: none;
        }
        .slides {
            display: flex;            /* lay slides out in a row */
            flex-wrap: nowrap;        /* don't wrap to the next line */
            overflow-x: auto;         /* allow horizontal scrolling/swiping */
            scroll-snap-type: x mandatory; /* optional: snap to each slide */
            -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
        }

        .slide {
            flex: 0 0 100%;           /* each slide takes 100% of container width */
            scroll-snap-align: start; /* optional: snap alignment */
        }
        .modal {
            background: #1e1e1e;
            color: #ddd;
        }
        .modal h2 {
            color: #fff;
        }
        .modal p {
            color: #ccc;
        }
        .modal .learn-more {
            background: #ff6f61;
            color: #fff;
        }
        .modal .close-btn {
            color: #aaa;
        }
        .slide {
            position: relative;      /* establish a containing block for absolutely-positioned children */
            overflow: hidden;        /* prevent anything from spilling out */
        }

        .slide-text {
            position: fixed;      /* remove it from normal flow */
            bottom: 50px;            /* distance from the bottom edge of .slide */
            left: 10px;              /* distance from the left edge */
            right: 10px;             /* optional—lets text wrap within these margins */
            background: rgba(0,0,0,0.5);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-size: 1rem;
        }
        /* Ensure the slides container fills the viewport */
        .slides {
            position: relative;
            width: 100vw;
            height: 100vh;
            overflow: hidden;           /* hide anything outside the viewport */
        }

        /* Each slide fills the container exactly */
        .slide {
            position: absolute;         /* stack all slides on top of each other */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: none;              /* hide all by default */
        }

        /* The "active" slide is visible */
        .slide.active {
            display: block;
        }

        /* Make the background image cover the slide */
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;          /* crop/scale to fill without distortion */
        }

        /* Caption stays inside at the bottom */
        .slide-text {
            position: absolute;
            bottom: 10px;
            left: 10px;
            right: 10px;
            background: rgba(0,0,0,0.5);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-size: 1rem;
            z-index: 10;                /* above the image */
        }
        /* Container holds all slides in a row and snaps to them */
        .slides {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;           /* native smooth scroll */
            -webkit-overflow-scrolling: touch; /* momentum scroll on iOS */
            width: 100vw;
            height: 100vh;
            margin: 0;
            padding: 0;
        }

        /* Each slide fills the viewport and snaps into place */
        .slide {
            flex: 0 0 100%;
            scroll-snap-align: start;
            position: relative;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            transition: transform 0.5s ease-in-out; /* for any manual transform animations */
        }

        /* Make the image cover the slide */
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Caption stays inside at the bottom */
        .slide-text {
            position: absolute;
            bottom: 10px;
            left: 10px;
            right: 10px;
            background: rgba(0,0,0,0.5);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-size: 1rem;
            z-index: 10;
        }
        .lazy-img {
            opacity: 0;
            transition: opacity 1.5s ease-in;
        }
        .lazy-img[src] {
            opacity: 1;
        }
        .blur-loading {
            filter: blur(50px);
            transition: filter 0.6s ease, opacity 0.6s ease;
            opacity: 0;
        }

        /* When image starts loading (src is set) */
        .blur-loading[src] {
            opacity: 1;
        }

        /* When image is fully loaded */
        .blur-loaded {
            filter: blur(0);
        }
        /* Header container styles */
        header {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5px;
            min-height: 100px; /* adjust height as needed */
            overflow: hidden;
            color: #fff; /* Ensures text contrast; you might adjust as background shifts */
        }

        /* Ensure the logo is fixed at 70px x 70px */
        header img {
            width: 100px;
            height: 100px;
            border: none;
            background: none;
            display: inline-block;
            z-index: 2000;
            padding: 0;
        }

        /* Header title style */
        header h1 {
            font-size: 26px;
            margin: 0 auto;
            z-index: 1;
            position: relative;
            white-space: nowrap; /* Prevents line breaks */
            text-align: center;
            line-height: 1.2;
            overflow: hidden;
            text-overflow: ellipsis; /* Optional: adds ... if it's too long */
        }

        @media screen and (max-width: 768px) {
            header h1 {
                font-size: clamp(16px, 5vw, 22px);
                white-space: normal;
                word-break: keep-all;
                line-height: 1.2;
                font-weight: 800;
                text-align: center;
                padding: 0 12px;
                display: inline-block;
                width: 100%;
            }
}


        /* Dropdown styling */
        .dropDownWrapper, .dropDown, .icon {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            position: relative;
        }

        /* Optional: remove default button styles */
        button {
            background: none;
            border: none;
            cursor: pointer;
        }

        /* Ensure the animated canvas fills the header, behind the content */
        #headerCanvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        /* Social Icons Section */
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .social-icon {
            font-size: 2rem;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .social-icon:hover {
            transform: scale(1.2);
            color: #00ffaa;
        }

        /* Specific Social Icon Color */
        .social-icon.facebook:hover {
            color: #3b5998;
        }

        .social-icon.twitter:hover {
            color: #00acee;
        }

        .social-icon.linkedin:hover {
            color: #0077b5;
        }

        .social-icon.instagram:hover {
            color: #e1306c;
        }

        .social-icon.youtube:hover {
            color: #ff0000;
        }

        .social-icon.github:hover {
            color: #211f1f;
        }
        /* General styles for all slides */
        .slides {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Button for next slide */
        .nextBtn {
            position: fixed;
            top: 50%;
            right: 20px;
            background: transparent;
            opacity:
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: white;
            z-index: 700;
        }

        /* Button for next slide */
        .prevBtn {
            position: fixed;
            top: 50%;
            left: 20px;
            background: transparent;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: white;
            z-index: 700;
        }
        .prevBtn.nextBtn::before {
            content: "";
            height: 10px;
            width: 10px;
            color: blue;
            border-radius: 50%;
            }


        /* Slide container */
        .slide {
            position: relative;
            width: 100%;
            height: 100%:
        }

        /* Lazy loading*/
        .lazy-img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Text overlay on the slides */
        .slide-text {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            font-weight: 400;
            font-size: 18px;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 10px;
            border-radius: 5px;
            max-width: 90%;
            box-sizing: border-box;
        }


        @media (max-width: 768px) {
            .nextBtn {
                font-size: 30px;
                right: 5px;
            }

            .slide-text {
                font-size: 16px;
                bottom: 10px;
                left: 10px;
                padding: 8px;
                max-width: 85%;
            }
        }

        @media (max-width: 480px) {
            .next-Btn {
                font-size: 20px;
                right: 5px;
            }

            .slide-text {
                font-size: 14px;
                bottom: 5px;
                left: 5px;
                padding: 6px;
                max-width: 80%;
            }

            .slide-text {
                font-size: 12px;
                bottom: 5px;
                left: 5px;
                padding: 5px;
            }
        }
        /* MAJOR OVERIDES */
        .sidebar2 {
            position: fixed !important;
            top: 70px !important;
            right: 20px !important;
            display: none !important;
            visibility: hidden !important;
            opacity: 1 !important;
            transform: none !important;
            max-height: unset !important;
            z-index: 1001 !important;
            transition: none !important;
            animation: none !important;
        }

        .sidebar2.active {
            display: block !important;
            visibility: visible !important;
        }

        /* Nuclear option: Kill conflicting animations */
        .sidebar2.active ul li {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
        }

        .dropdown-overlay {
            z-index: 1000 !important;
            background: rgba(0,0,0,0.3) !important;
        }

        .dropDownWrapper {
            position: relative;
            display: inline-block;
        }


        .sidebar2 {
            top: 150px !important;
            right: 0 !important;
            margin-top: 15px;
        }


        #icon {
            position: static !important;
            transform-origin: center;
        }

        /* Visual connection between icon and dropdown */
        .sidebar2::before {
            content: '';
            position: absolute;
            top: -10px;
            right: 15px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid #121212;
        }
        .sidebar2 ul li a {
            color: #00f7ff !important;
            text-shadow: 0 0 8px rgba(0, 247, 255, 0.8) !important;
            text-decoration: underline;
            transition: all 0.3s ease;
        }

        .sidebar2 ul li a:hover {
            color: #ffffff !important;
            text-shadow: 0 0 12px rgba(255, 255, 255, 1) !important;
        }
        .sidebar2 ul li a {
            color: #00f7ff; /* Neon cyan base */
            text-decoration: underline;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            position: relative;
        }

        /* Glow effect on hover */
        .sidebar2 ul li a:hover {
            color: #ffffff !important;
            text-shadow:
                0 0 5px #00f7ff,
                0 0 10px #00a2ff,
                0 0 20px rgba(0, 162, 255, 0.5);
            transform: translateX(3px);
        }

        /* Animated underline effect */
        .sidebar2 ul li a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #00f7ff;
            transition: width 0.4s ease;
        }

        .sidebar2 ul li a:hover::after {
            width: 100%;
            box-shadow: 0 0 5px #00f7ff;
        }

        /* Pulse animation for active items */
        @keyframes neon-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; text-shadow: 0 0 10px #00f7ff; }
        }

        .sidebar2 ul li a:active {
            animation: neon-pulse 0.3s ease;
        }
        @import url('https://fonts.googleapis.com/css2?family=Uncial+Antiqua&family=MedievalSharp&display=swap');

        /* Cinematic Background Animation */
        @keyframes cinematicZoom {
            0% { transform: scale(1) translate(0, 0) !important; }
            25% { transform: scale(1.1) translate(-2%, 2%) !important; }
            50% { transform: scale(1.2) translate(2%, -2%) !important; }
            75% { transform: scale(1.1) translate(-1%, 1%) !important; }
            100% { transform: scale(1) translate(0, 0) !important; }
        }

        /* Apply directly to your lazy-loaded images */
        .slide .lazy-img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            animation: cinematicZoom 30s ease-in-out infinite alternate !important;
            transform-origin: center !important;
            position: absolute !important;
            top: 0 !important;
            left: 0 !important;
            z-index: 1 !important;
        }

        /* Plasma Border Animation */
        @keyframes plasmaBorder {
            0% { background-position: 0% 50% !important; }
            50% { background-position: 100% 50% !important; }
            100% { background-position: 0% 50% !important; }
        }

        .slides {
            position: relative !important;
            border: 10px solid transparent !important;
            border-radius: 30px !important;
            padding: 12px !important;
            background: linear-gradient(#000, #000) padding-box, linear-gradient(135deg, #00f7ff, #ff00ff, #00ffaa, #ff00ff, #00f7ff) border-box !important;
            background-size: 400% 400% !important;
            animation: plasmaBorder 20s linear infinite !important;
            box-shadow: 0 0 40px rgba(0, 247, 255, 0.4) !important;
            overflow: hidden !important;
            z-index: 0 !important;
        }

        /* Floating Glass Card Animation */
        @keyframes floatPulse {
            0% { transform: translateX(-50%) translateY(0) scale(1) !important; }
            50% { transform: translateX(-50%) translateY(-5px) scale(1.04) !important; }
            100% { transform: translateX(-50%) translateY(0) scale(1) !important; }
        }

        /* Force absolute positioning for floating card */
        .slide-text {
            position: absolute !important;
            bottom: 10% !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            background: rgba(255, 255, 255, 0.08) !important;
            backdrop-filter: blur(18px) !important;
            border: 2px solid rgba(255, 255, 255, 0.2) !important;
            border-radius: 25px !important;
            padding: 3rem 4rem !important;
            width: 60% !important;
            max-width: 700px !important;
            text-align: center !important;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5) !important;
            animation: floatPulse 5s infinite ease-in-out !important;
            z-index: 50 !important;
        }

        /* Heading (Ancient Cute Font) */
        .slide-text h3 {
            font-family: 'Uncial Antiqua', cursive !important;
            font-size: 2.8rem !important;
            color: #ffee99 !important;
            margin-bottom: 1rem !important;
            text-shadow: 0 0 10px #000 !important;
        }

        /* Paragraph */
        .slide-text p {
            font-family: 'MedievalSharp', cursive !important;
            font-size: 1.5rem !important;
            color: #eee !important;
            margin-bottom: 2rem !important;
            line-height: 1.7 !important;
        }

        /* Neon Button */
        .slide-text button,
        .slide-text  {
            display: inline-block !important;
            padding: 1rem 3rem !important;
            font-size: 1.2rem !important;
            border-radius: 50px !important;
            border: none !important;
            font-weight: bold !important;
            text-transform: uppercase !important;
            color: white !important;
            background: linear-gradient(45deg, #ff00cc, #3300ff) !important;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.7), 0 0 30px rgba(51, 0, 255, 0.7) !important;
            transition: all 0.4s ease !important;
            text-decoration: none !important;
        }
        /* Mobile / small screens */
        @media (max-width: 768px) {
            .slide-text {
                display:inline-block;
                font-size:15px;
                padding:2px 2px;
                bottom:0;
            }


        }

        .slide-text button:hover,
        .slide-text a:hover {
            transform: scale(1.1) !important;
            box-shadow: 0 0 40px rgba(255, 0, 255, 1), 0 0 60px rgba(51, 0, 255, 1) !important;
        }

        /* Smooth transitions globally */
        .slide, .slide-text, .lazy-img {
            transition: all 1s ease-in-out !important;
        }

        /* =========================
   GLOBAL SCROLL SANITY FIX
   ========================= */

/* 1. Force page to be scrollable */
html, body {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    position: relative !important;
}

/* 2. Kill ALL scroll locking from sections */
.hero,
main,
section,
div {
    max-height: none !important;
}

/* 3. Fix HERO (biggest offender) */
.hero {
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
}

/* 4. Fix horizontal scroll containers (prevent scroll hijack) */
.cyber-scroll,
.slides {
    overflow-x: auto !important;
    overflow-y: visible !important;
    touch-action: pan-x pan-y !important;
}

/* 5. Stop slides from collapsing layout */
.slides {
    display: flex !important;
    flex-wrap: nowrap !important;
}

.slide {
    position: relative !important;
    display: block !important;
    flex: 0 0 100% !important;
    height: auto !important;
    min-height: 100vh !important;
}

/* 6. Disable scroll trapping overlays unless active */
.fullscreen-overlay,
.cyber-modal {
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
}

/* If they are hidden, make sure they DON'T block scroll */
.fullscreen-overlay:not(.active),
.cyber-modal:not(.modal-active) {
    display: none !important;
}

/* 7. Fix any fixed elements blocking scroll */
*[style*="position: fixed"] {
    max-height: 100vh !important;
}

/* 8. Prevent scroll-jacking behavior */
* {
    overscroll-behavior: auto !important;
}

/* 9. Mobile-specific fix */
@media (max-width: 768px) {
    body {
        touch-action: pan-y !important;
    }
}

    html, body {
        overflow-y: auto !important;
        height: auto !important;
        min-height: 100vh;
        }

    #headerCanvas {
    pointer-events: none;
    }
    /* Restore horizontal slider behavior */
.cyber-scroll {
    overflow-x: auto !important;
    overflow-y: hidden !important; /* IMPORTANT */
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    touch-action: pan-x !important; /* allow horizontal gestures */
}

/* Keep slides working properly */
.slides {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
}


/* =========================
   SERVICE BOX – REFINED HOVER
   ========================= */

/* Reset heavy effects */
.service-box {
    transform: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease !important;
}

/* Kill the crazy shine overlay */
.service-box::after {
    display: none !important;
}

/* Subtle hover */
.service-box:hover {
    transform: scale(1.03) !important;
    box-shadow:
        0 8px 25px rgba(0, 247, 255, 0.15),
        0 0 15px rgba(0, 255, 170, 0.08) !important;
    filter: brightness(1.05);
}

/* Icon: small responsive pop */
.service-box:hover .service-icon {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(0, 247, 255, 0.4));
}

/* Title: very subtle glow */
.service-box:hover h3 {
    text-shadow: 0 0 6px rgba(0, 247, 255, 0.4);
}


/* Tiny glitch effect */
@keyframes subtleGlitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(0.5px, -0.5px); }
    40% { transform: translate(-0.5px, 0.5px); }
    60% { transform: translate(0.3px, 0.2px); }
    80% { transform: translate(-0.3px, -0.2px); }
}

.service-box:hover {
    animation: subtleGlitch 0.3s ease;
}


/* ============================================
   GODMODE / INTERSTELLAR CLIENT SECTION CSS
   ============================================ */

:root {
  /* Primary Colors - Cosmic Elegance */
  --primary-dark: #0a0f1c;
  --primary-deep: #0f172a;
  --primary-mid: #1e293b;
  --primary-light: #334155;

  /* Accent Colors - Celestial */
  --accent-gold: #fbbf24;
  --accent-amber: #f59e0b;
  --accent-purple: #8b5cf6;
  --accent-cyan: #06b6d4;
  --accent-rose: #f43f5e;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  --gradient-glow: linear-gradient(120deg, rgba(251, 191, 36, 0.1), rgba(139, 92, 246, 0.1));
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  --gradient-border: linear-gradient(135deg, var(--accent-gold), var(--accent-purple), var(--accent-cyan));

  /* Shadows */
  --shadow-sm: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(251, 191, 36, 0.3);
  --shadow-neon: 0 0 30px rgba(139, 92, 246, 0.4);

  /* Animations */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-glass: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Main Section Container */
.clients-section {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 6rem 2rem;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 0% 0%, rgba(15, 23, 42, 0.03) 0%, rgba(15, 23, 42, 0.01) 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Animated Background Particles */
.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -2;
}

/* Floating Orbs Animation */
.clients-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.05), transparent 70%);
  top: -150px;
  right: -150px;
  border-radius: 50%;
  animation: floatOrb 20s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(-50px, 50px) scale(1.2); opacity: 0.5; }
}

/* Header Section - Cosmic */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  position: relative;
  animation: fadeInUp 0.6s ease-out;
}

.section-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  border-radius: 100px;
  filter: blur(8px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.section-tag:hover::before {
  opacity: 1;
}

.section-header h2 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  position: relative;
  animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-border);
  border-radius: 3px;
  animation: expandWidth 0.8s ease-out 0.3s backwards;
}

@keyframes expandWidth {
  from { width: 0; opacity: 0; }
  to { width: 80px; opacity: 1; }
}

.section-header p {
  color: #475569;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== INTERSTELLAR TABS ========== */
.clients-tabs {
  position: relative;
  margin-top: 2rem;
}

.clients-tabs input[type="radio"] {
  display: none;
}

.tabs-labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 80px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.tabs-labels label {
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #475569;
  background: transparent;
  border-radius: 60px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tabs-labels label::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}

.tabs-labels label .count {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.2rem 0.6rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.tabs-labels label:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.tabs-labels label:hover .count {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

/* Active Tab States */
#tab-all:checked ~ .tabs-labels label[for="tab-all"],
#tab-retail:checked ~ .tabs-labels label[for="tab-retail"],
#tab-hospitality:checked ~ .tabs-labels label[for="tab-hospitality"],
#tab-hardware:checked ~ .tabs-labels label[for="tab-hardware"],
#tab-others:checked ~ .tabs-labels label[for="tab-others"] {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

#tab-all:checked ~ .tabs-labels label[for="tab-all"] .count,
#tab-retail:checked ~ .tabs-labels label[for="tab-retail"] .count,
#tab-hospitality:checked ~ .tabs-labels label[for="tab-hospitality"] .count,
#tab-hardware:checked ~ .tabs-labels label[for="tab-hardware"] .count,
#tab-others:checked ~ .tabs-labels label[for="tab-others"] .count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Tab Panes with Stunning Animations */
.tabs-content {
  position: relative;
  min-height: 600px;
}

.tab-pane {
  display: none;
  animation: fadeSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#tab-all:checked ~ .tabs-content .tab-pane[data-tab="all"],
#tab-retail:checked ~ .tabs-content .tab-pane[data-tab="retail"],
#tab-hospitality:checked ~ .tabs-content .tab-pane[data-tab="hospitality"],
#tab-hardware:checked ~ .tabs-content .tab-pane[data-tab="hardware"],
#tab-others:checked ~ .tabs-content .tab-pane[data-tab="others"] {
  display: block;
}


/* ============================================
   ULTIMATE SLIDE TEXT - HORIZONTAL FLOATING BAR
   Overrides all existing styles with !important
   ============================================ */

/* Desktop & Tablet (larger screens) */
@media screen and (min-width: 769px) {
    .slide-text {
        position: absolute !important;
        bottom: 40px !important;
        left: 40px !important;
        right: auto !important;
        width: auto !important;
        min-width: 280px !important;
        max-width: 480px !important;
        background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 86, 59, 0.9) 100%) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        padding: 18px 28px !important;
        border-radius: 16px !important;
        color: #ffffff !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        line-height: 1.5 !important;
        text-align: left !important;
        letter-spacing: 0.3px !important;
        border-left: 5px solid #00ffaa !important;
        border-right: none !important;
        border-top: none !important;
        border-bottom: none !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 255, 170, 0.2) !important;
        z-index: 100 !important;
        transition: all 0.3s ease !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .slide-text:hover {
        transform: translateY(-5px) !important;
        border-left-width: 6px !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 255, 170, 0.4) !important;
    }
}

/* Mobile Phones (small screens) - HORIZONTAL BAR AT BOTTOM */
@media screen and (max-width: 768px) {
    .slide-text {
        position: absolute !important;
        bottom: 20px !important;
        left: 20px !important;
        right: 20px !important;
        width: auto !important;
        max-width: none !important;
        background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 86, 59, 0.95) 100%) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        padding: 14px 20px !important;
        border-radius: 14px !important;
        color: #ffffff !important;
        font-size: 0.85rem !important;
        font-weight: 500 !important;
        line-height: 1.4 !important;
        text-align: center !important;
        letter-spacing: 0.2px !important;
        border-left: 4px solid #00ffaa !important;
        border-right: none !important;
        border-top: none !important;
        border-bottom: none !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 255, 170, 0.25) !important;
        z-index: 100 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        display: block !important;
    }
}

/* Extra Small Phones (under 480px) */
@media screen and (max-width: 480px) {
    .slide-text {
        bottom: 15px !important;
        left: 15px !important;
        right: 15px !important;
        padding: 12px 16px !important;
        border-radius: 12px !important;
        font-size: 0.75rem !important;
        border-left-width: 3px !important;
    }
}

/* Landscape Mode for Phones */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .slide-text {
        bottom: 12px !important;
        left: 20px !important;
        right: 20px !important;
        padding: 10px 18px !important;
        font-size: 0.75rem !important;
    }
}

/* Large Desktop Screens (over 1200px) */
@media screen and (min-width: 1200px) {
    .slide-text {
        bottom: 60px !important;
        left: 60px !important;
        min-width: 320px !important;
        max-width: 550px !important;
        padding: 24px 36px !important;
        font-size: 1.1rem !important;
        border-left-width: 6px !important;
    }
}

/* Ultra Wide Screens (over 1600px) */
@media screen and (min-width: 1600px) {
    .slide-text {
        bottom: 80px !important;
        left: 80px !important;
        min-width: 380px !important;
        max-width: 620px !important;
        padding: 28px 42px !important;
        font-size: 1.2rem !important;
    }
}

/* Ensure text doesn't overflow */
.slide-text {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
}

/* Optional: Add a subtle floating animation */
@keyframes gentleFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
    100% {
        transform: translateY(0);
    }
}

.slide-text {
    animation: gentleFloat 3s ease-in-out infinite !important;
}

/* Disable animation if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .slide-text {
        animation: none !important;
    }
}

/* Also fix the slide image to not interfere with text */
.slide {
    position: relative !important;
    overflow: hidden !important;
}

.slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 40% !important;
}
