
            .femtoappshowcase {
            
                text-align: left;
                padding: 40px;
                border-radius: 0%;
                background: rgba(52,14,111,255);
                color: white;    
            }
            
            .femtoappshowcase2 {
            
                text-align: left;
                padding: 40px;
                border-radius: 0%;
            background-color: aliceblue;
                color: rgb(0, 0, 0);    
            }
            .femtoappshowcase3 {
            
                text-align: left;
                padding: 5px;
                border-radius: 0%;
                background: rgba(52,14,111,255);
                color: rgb(255, 255, 255);    
            }
            .femtoappshowcase4 {
            
                text-align: left;
                padding: 40px;
                border-radius: 0%;
            background-color: #e83002;
                color: rgb(255, 255, 255);    
            }
            
            html {
                scroll-behavior: smooth;
            }
            
            .title {
                font-size: 4vw;
                font-weight: bold;
                margin-bottom: 10px;
            }
            .title-footer {
                font-size: 2vw;
                font-weight: bold;
                margin-bottom: 10px;
                text-align: center;
            }
            .subtitle {
                font-size: 18px;
                font-weight: bold;
                margin-bottom: 20px;
            }
            .subtitle-footer {
                font-size: 1vw;
                font-weight: bold;
            

            }
            .description {
                font-size: 14px;
                line-height: 1.5;
            }

            /* IMAGES */
            
            .image-container {
                position: relative;
                max-width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                height: 500px; /* Ensure a fixed height to prevent overlap */
                overflow: hidden; /* Prevents overflow */
            }
            
            /* Image stacking within column */
            .image-container img {
                position: absolute;
                width: 75%;
    height: auto;
            }
            
            img {
                width: 100%; /* Adjust based on your design */
                max-width: 100%; /* Prevents scaling beyond container */
                height: auto;
                position: relative;
                z-index: 1;
            }
            /* Adjust positions */
            .img-1 {
                top: 0;
                left: 0;
                z-index: 1;
            }
            
            .img-2 {
                top: 100px;
                left: 200px;
                z-index: 2;
                opacity: 0.9;
            }
            
            .img-3 {
                top: 250px;
                left: 0px;
                z-index: 3;
                opacity: 0.85;
            }
            
            .imagediv2{
                width: 100%;

                object-fit: cover;
            }
            .side-nav-container{
                z-index: 4;
            }
        /* RESPONSIVE FIXES: Show only one image on small screens */
        @media (max-width: 1024px) {
            .image-container {
                text-align: center;
                display: block;
                max-height: 225px; /* Ensures container height */
            }

            .image-container img {
                display: none; /* Hide all images */
            }
        
            .img-2 {
                display: block !important; /* Force it to show */
                position: relative;
                min-width: 100%;
                margin: auto;
                opacity: 1; /* Ensure it's fully visible */
                top: 0px;
                left: 0px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .imagediv2{
                display: none;
            }

            /* Mobile phone images in 3rd section */
            .femtoappshowcase3 {
                position: relative;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .desktop-carousel {
                display: none; /* Hide video carousel on mobile */
            }

            .mobile-phone-showcase {
                display: block;
                position: relative;
                width: 100%;
                height: 70vh;
            }

            /* Mobile Carousel Styles */
            .mobile-carousel {
                margin-left: 10%;
                margin-right: 10%;
            }

            ul.mobile-slides {
                display: block;
                position: relative;
                height: 60vh;
                margin: 0;
                padding: 0;
                overflow: hidden;
                list-style: none;
            }

            ul.mobile-slides input {
                display: none; 
            }

            .mobile-slide-container { 
                display: block; 
            }

            .mobile-slide-image {
                display: block;
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                opacity: 0;
                transition: all .7s ease-in-out;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .mobile-phone-img {
                max-width: 80%;
                max-height: 90%;
                object-fit: contain;
            }

            .mobile-carousel-controls {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                z-index: 999;
                font-size: 60px;
                line-height: 60px;
                color: #fff;
            }

            .mobile-carousel-controls label {
                display: block;
                position: absolute;
                padding: 0 5px;
                opacity: 0.7;
                transition: opacity 0.2s;
                cursor: pointer;
                padding-top: 25%;
            }

            .mobile-carousel-controls label:hover {
                opacity: 1;
            }

            .mobile-carousel-controls .mobile-prev-slide {
                width: 49%;
                text-align: left;
                left: 0;
            }

            .mobile-carousel-controls .mobile-next-slide {
                width: 49%;
                text-align: right;
                right: 0;
            }

            .mobile-carousel-dots {
                position: absolute;
                left: 0;
                right: 0;
                bottom: 20px;
                z-index: 999;
                text-align: center;
            }

            .mobile-carousel-dots .mobile-carousel-dot {
                display: inline-block;
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background-color: #fff;
                opacity: 0.5;
                margin: 10px;
                transition: transform 0.3s ease-in-out;
                cursor: pointer;
            }

            .mobile-carousel-dots .mobile-carousel-dot:hover {
                transform: scale(1.3);
                opacity: 1;
            }

            /* Show active mobile slide */
            input:checked + .mobile-slide-container .mobile-slide-image {
                opacity: 1;
                transform: scale(1);
            }

            /* Highlight active mobile dot */
            input#mobile-1:checked ~ .mobile-carousel-dots label#mobile-dot-1,
            input#mobile-2:checked ~ .mobile-carousel-dots label#mobile-dot-2,
            input#mobile-3:checked ~ .mobile-carousel-dots label#mobile-dot-3 {
                opacity: 1;
                background-color: #e83002;
            }

            /* Hide all mobile slides by default */
            .mobile-slides li {
                display: none;
                position: absolute;
                width: 100%;
            }

            /* Show only the active mobile slide */
            input[type="radio"]:checked + .mobile-slide-container {
                display: block;
                position: relative;
            }
        }

        /* Desktop styles - hide mobile showcase, show video carousel */
        @media (min-width: 1025px) {
            .mobile-phone-showcase {
                display: none;
            }

            .desktop-carousel {
                display: block;
            }
        }

        /*button*/
        .mybutton {
            background-color: transparent;  /* No fill */
            border: 4px solid #e83002;       /* Thick outline */
            color: #000000;                  /* Text color matches the outline */
            padding: 10px 20px;              /* Padding for button size */
            font-size: 16px;                 /* Font size */
            font-weight: bold;               /* Bold text */
            cursor: pointer;                /* Cursor changes to pointer on hover */
            border-radius: 5px;              /* Rounded corners */
            transition: all 0.3s ease;       /* Smooth transition on hover */
        }
        
        .mybutton:hover {
            background-color: #ff2f00;      /* Blue background on hover */
            color: rgb(191, 191, 191);                   /* Text turns white on hover */
            border-color: #ff2f00;          /* Darker border color on hover */
        }


        /*SLIDE*/
        .carousel2 {
            margin-left: 15%;
            margin-right: 15%;
        }
        .carousel-video {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        
        
        ul.slides {
            display: block;
            position: relative;
            height: 80vh; /* Increased height for 9:16 ratio */
            margin: 0;
            padding: 0;
            overflow: hidden;
            list-style: none;
        }
        
        .slides * {
            user-select: none;
            -ms-user-select: none;
            -moz-user-select: none;
            -khtml-user-select: none;
            -webkit-user-select: none;
            -webkit-touch-callout: none;
        }
        
        ul.slides input {
            display: none; 
        }
        
        
        .slide-container { 
            display: block; 
        }
        
        .slide-image {
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            opacity: 0;
            transition: all .7s ease-in-out;
        }   

        .slide-video {
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            opacity: 0;
            transition: all .7s ease-in-out;
        }   
        
        .slide-image img {
            width: auto;
            min-width: 100%;
            height: 100%;
        }
        
        .carousel2-controls {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            font-size: 100px;
            line-height: 60px;
            color: #fff;
        }
        
        .carousel2-controls label {
            display: block; /* Ensure they are always visible */
            position: absolute;
            padding: 0 5px;
            opacity: 0.5; /* Default 50% transparency */
            transition: opacity 0.2s;
            cursor: pointer;
            padding-top: 25%;
        }
        
        .carousel2-controls label:hover {
            opacity: 1; /* Fully visible on hover */
        }
        
        .carousel2-controls label:hover {
            opacity: 1;
        }
        
        .carousel2-controls .prev-slide {
            width: 49%;
            text-align: left;
            left: 0;
        }
        
        .carousel2-controls .next-slide {
            width: 49%;
            text-align: right;
            right: 0;
        }
        
        .carousel2-dots {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 20px;
            z-index: 999;
            text-align: center;
        }
        
        .carousel2-dots .carousel2-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #fff;
            opacity: 0.5;
            margin: 10px;
        }
        
        .carousel2-dots .carousel2-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #fff;
            opacity: 0.5;
            margin: 10px;
            transition: transform 0.3s ease-in-out;
        }
        
        .carousel2-dots .carousel2-dot:hover {
            transform: scale(1.5);
            opacity: 1;
        }
        
        input:checked + .slide-container .slide-image {
            opacity: 1;
            transform: scale(1);
            transition: opacity 1s ease-in-out;
        }

        input:checked + .slide-container .slide-video {
            opacity: 1;
            transform: scale(1);
            transition: opacity 1s ease-in-out;
        }
        
        input:checked + .slide-container .carousel2-controls label {
            display: block; 
        }
        
        input#vid-1:checked ~ .carousel2-dots label#vid-dot-1,
        input#vid-2:checked ~ .carousel2-dots label#vid-dot-2,
        input#vid-3:checked ~ .carousel2-dots label#vid-dot-3 {
            opacity: 1;
        }
        
        
        input:checked + .slide-container .nav label { display: block; }
        
        .slides li {
            display: none; /* Hide all slides by default */
            position: absolute;
            width: 100%;
        }
        
        input[type="radio"]:checked + li {
            display: block; /* Show only the active slide */
            position: relative;
        }
        
        @media (max-width: 768px) {
            .carousel2-controls {
                font-size: 40px; /* Reduce size */
                line-height: 30px;
                padding-top: 25%;
            left: -20px;
            right: -20px;
            }
        
            .carousel2-controls label {
                padding: 0 5px; /* Reduce padding */
                transform: scale(0.7); /* Shrinks buttons */
            }      
        }