        /* ========================================
           ANIMATION STYLES
        ======================================== */
        
        /* Prevent FOUC (Flash of Unstyled Content) */
        body:not(.loaded) .fade-in,
        body:not(.loaded) .slide-in-left,
        body:not(.loaded) .slide-in-right,
        body:not(.loaded) .scale-in,
        body:not(.loaded) .bounce-in {
            opacity: 0;
        }
        
        /* Base animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        .bounce-in {
            opacity: 0;
            transform: scale(0.5);
            transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .bounce-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Stagger animation delays */
        .fade-in:nth-child(1) { transition-delay: 0.1s; }
        .fade-in:nth-child(2) { transition-delay: 0.2s; }
        .fade-in:nth-child(3) { transition-delay: 0.3s; }
        .fade-in:nth-child(4) { transition-delay: 0.4s; }
        .fade-in:nth-child(5) { transition-delay: 0.5s; }

        .scale-in:nth-child(1) { transition-delay: 0.1s; }
        .scale-in:nth-child(2) { transition-delay: 0.2s; }
        .scale-in:nth-child(3) { transition-delay: 0.3s; }
        .scale-in:nth-child(4) { transition-delay: 0.4s; }

        /* Mobile responsive animations - reduce transform distances */
        @media (max-width: 768px) {
            .fade-in {
                transform: translateY(20px);
            }
            
            .slide-in-left {
                transform: translateX(-30px);
            }
            
            .slide-in-right {
                transform: translateX(30px);
            }
            
            .scale-in {
                transform: scale(0.95);
            }
            
            .bounce-in {
                transform: scale(0.8);
            }
            
            /* Faster animations on mobile */
            .fade-in,
            .slide-in-left,
            .slide-in-right {
                transition: opacity 0.5s ease, transform 0.5s ease;
            }
            
            .scale-in {
                transition: opacity 0.4s ease, transform 0.4s ease;
            }
            
            .bounce-in {
                transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            }
        }

        @media (max-width: 480px) {
            /* Minimal animations on very small screens */
            .fade-in,
            .slide-in-left,
            .slide-in-right {
                transform: translateY(10px);
            }
            
            .fade-in,
            .slide-in-left,
            .slide-in-right,
            .scale-in,
            .bounce-in {
                transition: opacity 0.3s ease, transform 0.3s ease;
            }
            
            /* Ensure no overflow on small screens */
            .container,
            .containerr,
            .containerrr {
                padding: 0 10px;
                max-width: 100%;
            }
            
            .feature-box {
                min-width: 260px;
            }
            
            .section-padding {
                padding: 40px 0;
            }
            
            .benefits-section-padding {
                padding: 50px 0;
            }
        }

        /* Benefits Section - Custom Styles */
        .benefits-section-padding {
            padding: 80px 0;
        }

        .benefits-section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            color: #f8fafc;
        }

        .benefits-section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #0066ff, #00f2ff);
            border-radius: 2px;
        }

        .benefits-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .benefits-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-bottom: 40px;
        }

        .benefits-slider-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .benefits-card {
            /* padding: 22px 10px 18px 10px; */
            min-width: 158px;
            /* max-width: 220px; */
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.16s ease;
            will-change: transform, opacity;
            backface-visibility: hidden;
        }

        .benefits-card img {
            width: 100%;
            max-width: 224px;
            margin-bottom: 14px;
            filter: drop-shadow(0px 5px 10px rgba(0, 242, 255, 0.2));
            transition: filter 0.3s ease;
        }

        .benefits-card:hover {
            transform: scale(1.08);
        }

        .benefits-card:hover img {
            filter: drop-shadow(0px 8px 16px rgba(0, 242, 255, 0.4));
        }

        /* Desktop (1025px+): Static Grid - NO Slider */
        @media (min-width: 1025px) {
            .benefits-wrapper {
                display: flex;
                flex-wrap: wrap;
                gap: 30px;
                justify-content: center;
                overflow: visible !important;
            }

            #benefits-slider-wrapper {
                width: 100%;
                overflow: visible !important;
            }

            #benefits-slider-list {
                display: flex;
                flex-wrap: wrap;
                gap: 30px;
                justify-content: center;
                transform: none !important;
                transition: none !important;
            }
        }

        /* Tablet View (769px - 1024px): Show all 4 cards in grid */
        @media (max-width: 1024px) and (min-width: 769px) {
            .benefits-wrapper {
                display: flex;
                flex-wrap: wrap;
                gap: 25px;
                justify-content: center;
                overflow: visible !important;
            }

            #benefits-slider-wrapper {
                width: 100%;
                overflow: visible !important;
            }

            #benefits-slider-list {
                display: flex;
                flex-wrap: wrap;
                gap: 25px;
                justify-content: center;
                transform: none !important;
                transition: none !important;
            }

            .benefits-card {
                flex: 0 0 calc(50% - 12.5px);
                min-width: calc(50% - 12.5px);
                max-width: calc(50% - 12.5px);
            }

            .benefits-card img {
                max-width: 70%;
                max-height: 90%;

            }
        }

        /* Mobile View (below 768px) */
        @media (max-width: 768px) {
            .benefits-section-title {
                font-size: 1.8rem;
            }

            .benefits-wrapper {
                display: flex;
                flex-wrap: wrap;
                gap: 20px;
                justify-content: center;
                overflow: visible !important;
            }

            #benefits-slider-wrapper {
                width: 100%;
                overflow: visible !important;
            }

            #benefits-slider-list {
                display: flex;
                flex-wrap: wrap;
                gap: 20px;
                justify-content: center;
                transform: none !important;
                transition: none !important;
            }

            .benefits-card {
                flex: 0 0 calc(50% - 10px);
                min-width: calc(50% - 10px);
                max-width: calc(50% - 10px);
            }

            .benefits-card img {
                max-width: 100%;
            }
        }

        /* Small Mobile (below 600px) */
        @media (max-width: 600px) {
            .benefits-section-title {
                font-size: 1.5rem;
                margin-bottom: 40px;
            }

            .benefits-section-padding {
                padding: 60px 0;
            }

            .benefits-card {
                flex: 0 0 calc(50% - 8px);
                min-width: calc(50% - 8px);
                max-width: calc(50% - 8px);
            }

            #benefits-slider-list {
                gap: 16px;
            }
        }

        :root {
            --primary: #0066ff;
            --primary-dark: #0044cc;
            --secondary: #00f2ff;
            --dark: #0f172a;
            --light: #f8fafc;
            --gray: #64748b;
            --accent: #8b5cf6;
            --tech-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --success: #10b981;
            --warning: #f59e0b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        html {
            overflow-x: hidden;
        }

        /* Prevent animation overflow */
        main {
            overflow-x: hidden;
            width: 100%;
        }

        section {
            overflow-x: hidden;
            width: 100%;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 20%);
            z-index: -1;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .containerr {
            width: 100%;
            overflow: hidden;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .containerrr {
            width: 100%;
            display: none;
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }


        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--tech-gradient);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Header Styles */
        header {
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(100, 116, 139, 0.2);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            display: flex;
            align-items: center;
        }



        .cta-buttons {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--dark);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-buttons:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
        }

        .mobile-menu-btn {
            display: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            flex-direction: column;
            gap: 4px;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background: var(--light);
            transition: all 0.3s ease;
        }

        /* Why Zonixtec Section */
        .why-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 75px;
            gap: 40px;
        }

        .why-desc {
            max-width: 500px;
            text-align: left;
            margin: 0 auto 0 0;
            font-size: 1.08rem;
            line-height: 2;
            color: #D1DBE9;
        }

        .why-img {
            width: 360px;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
            display: block;
            border-radius: 10px;
            filter: drop-shadow(0px 10px 24px #00f2ff88);
        }

        /* Features Section */
        .features-row {
            display: flex;
            flex-wrap: wrap;
            gap: 38px;
            justify-content: center;
            margin-bottom: 60px;
        }

        .feature-box {
            /* background: rgba(30, 41, 59, 0.9);
            border-radius: 15px;
            padding: 39px 25px 34px 25px; */
            /* max-width: 300px; */
            max-width: 1900px;
            min-width: 420px;
            flex: 1 1 280px;
            text-align: center;
            box-shadow: 0 8px 28px 0 rgba(0, 36, 64, .09);
            border: 1px solid #23334a;
            position: relative;
            transition: transform 0.18s;
            will-change: transform, opacity;
            backface-visibility: hidden;
        }

        .feature-box img {
            width: 100%;
            max-width: 456px;
            margin-bottom: 18px;
            filter: drop-shadow(0px 5px 10px #00f2ff33);
        }

        .feature-box h3 {
            margin-bottom: 10px;
            color: var(--secondary);
            font-family: 'Orbitron', sans-serif;
            font-size: 1.1rem;
            letter-spacing: .01em;
        }

        .feature-box p {
            color: #CBD5E1;
            font-size: .98rem;
            min-height: 72px;
            margin: 10px;
        }

        .feature-box:hover {
            transform: scale(1.037);
            box-shadow: 0 12px 36px 0 #0089ff22;
        }

        /* Benefits Section */
        .benefits-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-bottom: 40px;
        }

        .benefit-box {
            /* background: rgba(30, 41, 59, 0.85); */
            /* border-radius: 14px; */
            padding: 22px 10px 18px 10px;
            min-width: 208px;
            max-width: 220px;
            text-align: center;
            /* border: 1px solid #23334a; */
            /* box-shadow: 0 4px 15px 0 #00f2ff18; */
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform .16s;
        }

        .benefit-box img {
            width: 100%;
            max-width: 224px;
            margin-bottom: 14px;
            filter: drop-shadow(0px 5px 10px #00f2ff33);
        }

        .benefit-box:hover {
            transform: scale(1.08);
        }

        /* Testimonials Section */
        .testimonial-wrapper {
            position: relative;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-wrapper1 {
            position: relative;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-container {
            display: flex;
            gap: 34px;
            /* transition: transform 0.4s ease-in-out; */
            transition: transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
            /* smoother & slower */
            padding: 20px 0;
        }

        .testimonial-card {
            flex: 0 0 calc(50% - 17px);
            min-width: calc(50% - 17px);
            background: #232834;
            border-radius: 18px;
            padding: 32px 23px;
            min-height: 280px;
            box-shadow: 0 8px 28px 0 #0089ff22;
            color: #DFE3E7;
            will-change: transform, opacity;
            backface-visibility: hidden;
        }

        .testimonial-card h3 {
            color: #41e0ff;
            font-size: 1.15rem;
            margin-bottom: 7px;
        }

        .testimonial-card .platform {
            color: #aaa;
            font-weight: 500;
            display: block;
            margin-bottom: 12px;
        }

        .testimonial-card .stars {
            color: #09eef7;
            margin-bottom: 17px;
        }

        .testimonial-card p {
            margin: 18px 0 0 0;
            line-height: 2;
        }

        .testimonial-controls {
            display: none;
            gap: 18px;
            justify-content: center;
            margin-bottom: 25px;
        }

        .testimonial-controls1 {
            display: none;
            gap: 18px;
            justify-content: center;
            margin-bottom: 25px;
        }

        .testimonial-controls2 {
            display: flex;
            gap: 18px;
            justify-content: flex-start;
            margin-bottom: 25px;
            align-items: center;
        }

        .testimonial-controls3 {
            display: none;
            gap: 18px;
            justify-content: center;
            margin-bottom: 25px;
        }

        .testimonial-nav {
            background: none;
            border: none;
            color: #41e0ff;
            font-size: 2.2rem;
            cursor: pointer;
            transition: color .15s, transform 0.2s;
            padding: 5px;
        }

        .testimonial-nav:hover:not(:disabled) {
            color: #00f2ff;
            transform: scale(1.1);
        }

        .testimonial-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .testimonial-nav1 {
            background: none;
            border: none;
            color: #41e0ff;
            font-size: 2.2rem;
            cursor: pointer;
            transition: color .15s, transform 0.2s;
            padding: 5px;
        }

        .testimonial-nav1:hover:not(:disabled) {
            color: #00f2ff;
            transform: scale(1.1);
        }

        .testimonial-nav1:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .testimonial-nav2 {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            cursor: pointer;
            transition: 0.2s ease;
        }

        /* Previous button - Blue with white icon */
        #featurePrev {
            background: #0066ff;
            color: #ffffff;
            box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
        }

        #featurePrev:hover:not(:disabled) {
            background: #0052cc;
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
        }

        /* Next button - Grey with black icon */
        #featureNext {
            background: #e2e8f0;
            color: #1e293b;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        #featureNext:hover:not(:disabled) {
            background: #cbd5e1;
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Testimonial Previous button - Blue with white icon */
        #testimonialPrev {
            background: #0066ff;
            color: #ffffff;
            box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
        }

        #testimonialPrev:hover:not(:disabled) {
            background: #0052cc;
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
        }

        /* Testimonial Next button - Grey with black icon */
        #testimonialNext {
            background: #e2e8f0;
            color: #1e293b;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        #testimonialNext:hover:not(:disabled) {
            background: #cbd5e1;
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .testimonial-nav2:active:not(:disabled) {
            transform: scale(0.95);
        }

        .testimonial-nav2:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
        }

        .testimonial-nav2 i {
            position: relative;
            z-index: 1;
        }

        /* CTA Section */
        .cta-section {
            padding: 60px;
            text-align: center;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--dark);
            border-radius: 10px;
            margin-top: 60px;
        }

        .cta-section h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-button {
            display: inline-block;
            background: var(--dark);
            color: var(--light);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 20px;
        }


        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--dark);
            color: var(--light);
            padding: 14px 36px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            background: var(--primary-dark);
            box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
        }

        .cta-button img {
            width: 22px;
            height: 22px;
            filter: brightness(0) invert(1);
            /* makes icon white */
            transition: transform 0.3s ease;
        }

        .cta-button:hover img {
            transform: scale(1.1) rotate(-5deg);
        }


        /* Responsive Styles */
        @media (max-width: 880px) {
            .why-flex {
                flex-direction: column;
                align-items: center;
            }

            .why-desc {
                text-align: center;
                margin: 0 auto 34px auto;
            }
            
            .why-img {
                max-width: 90%;
                width: 300px;
            }

            .testimonial-card {
                flex: 0 0 100%;
                min-width: 100%;
            }

            .containerrr {
                width: 100%;
                display: none;
                overflow: hidden;
                max-width: 900px;
                margin: 0 auto;
                padding: 0 20px;
            }

            .benefits-row {
                display: flex;
                flex-wrap: wrap;
                gap: 30px;
                justify-content: center;
                margin-bottom: 40px;
            }

        }

        @media (max-width: 768px) {
            .testimonial-controls2 {
                justify-content: center;
                margin-bottom: 20px;
            }

            .testimonial-nav2 {
                width: 45px;
                height: 45px;
                font-size: 1.5rem;
                padding: 10px;
            }

            .containerr {
                width: 100%;
                overflow: hidden;
                max-width: 1100px;
                margin: 0 auto;

            }





            .feature-box {
                /* background: rgba(30, 41, 59, 0.9);
            border-radius: 15px;
            padding: 39px 25px 34px 25px; */
                max-width: 300px;
                /* max-width: 1900px; */
                min-width: 352px;
                flex: 1 1 280px;
                text-align: center;
                box-shadow: 0 8px 28px 0 rgba(0, 36, 64, .09);
                border: 1px solid #23334a;
                position: relative;
                transition: transform 0.18s;
                will-change: transform, opacity;
                backface-visibility: hidden;
            }

            .feature-box img {
                width: 100%;
                max-width: 456px;
                margin-bottom: 18px;
                filter: drop-shadow(0px 5px 10px #00f2ff33);
            }
            
            /* Ensure animations don't break mobile layout */
            .feature-box.scale-in {
                transform: scale(0.95);
            }
            
            .feature-box.scale-in.visible {
                transform: scale(1);
            }


            .benefits-row {
                display: list-item;
                flex-wrap: wrap;
                gap: 30px;
                overflow: hidden;
                max-width: 320px;
                margin-bottom: 40px;
            }

            .containerrr {
                width: 100%;
                display: block;
                overflow: hidden;
                max-width: 900px;
                margin: 0 auto;
                padding: 0 20px;
            }

            /* .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: rgba(15, 23, 42, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                gap: 30px;
                transition: right 0.4s ease;
                z-index: 999;
                padding: 20px;
            }

            .nav-links.active {
                right: 0;
            } */

            .mobile-menu-btn {
                display: flex;
                z-index: 1000;
            }

            .section-padding {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-section h1 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 600px) {
            .testimonial-nav2 {
                width: 40px;
                height: 40px;
                font-size: 1.3rem;
                padding: 8px;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .cta-section {
                padding: 40px 20px;
            }
            
            .feature-box {
                min-width: 280px;
                max-width: 100%;
            }
            
            .why-img {
                width: 250px;
            }
            
            .container,
            .containerr {
                padding: 0 15px;
            }
            
            /* Further reduce animation transforms on small screens */
            .fade-in,
            .slide-in-left,
            .slide-in-right {
                transform: translateY(5px);
            }
        }