.revolution {
            position: relative;
            width: 100%;
            height: 76vh;
            overflow: hidden;
            background: #919191;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .slide.prev {
            transform: translateX(-100%) scale(0.8);
        }

        .slide.next {
            transform: translateX(100%) scale(0.8);
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.8s ease;
            transition-delay: 0.3s;
        }

        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.5)); }
            to { filter: drop-shadow(0 0 30px rgba(78, 205, 196, 0.5)); }
        }

        .slide-subtitle {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            margin-bottom: 30px;
            opacity: 0.9;
            font-weight: 300;
        }

        .slide-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 35px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .slide-cta::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;
        }

        .slide-cta:hover::before {
            left: 100%;
        }

        .slide-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }

        .navigation {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 100;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-dot.active {
            background: white;
            transform: scale(1.3);
        }

        .nav-dot::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-dot.active::before {
            opacity: 1;
        }

        .nav-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.1);
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 100;
            font-size: 20px;
        }

        .nav-arrows:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-arrow {
            left: 30px;
        }

        .next-arrow {
            right: 30px;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-shape {
            position: absolute;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-shape:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-shape:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(120deg); }
            66% { transform: translateY(10px) rotate(240deg); }
        }

        /* Progress bar */
        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            transition: width 0.1s linear;
            z-index: 101;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .revolution {
                height: 16vh;
            }

            .slide-content {
                padding: 0 15px;
                max-width: 90%;
            }

            .slide-title {
                font-size: clamp(2rem, 8vw, 3rem);
                margin-bottom: 15px;
            }

            .slide-subtitle {
                font-size: clamp(1rem, 4vw, 1.4rem);
                margin-bottom: 25px;
            }

            .slide-cta {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .nav-arrows {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }

            .prev-arrow {
                left: 15px;
            }

            .next-arrow {
                right: 15px;
            }

            .navigation {
                bottom: 20px;
                gap: 10px;
            }

            .nav-dot {
                width: 5px;
                height: 5px;
            }

            .floating-shape {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .slide-content {
                padding: 0 10px;
            }

            .navigation {
                bottom: 15px;
            }

            .nav-arrows {
                width: 45px;
                height: 45px;
                display: none;
            }
        }

        /* Tablet */
        @media (min-width: 769px) and (max-width: 1024px) {
            .slide-title {
                font-size: clamp(3rem, 6vw, 3.5rem);
            }

            .slide-subtitle {
                font-size: clamp(1.3rem, 3vw, 1.6rem);
            }
        }

        /* Large Desktop */
        @media (min-width: 1400px) {
            .slide-content {
                max-width: 1000px;
            }

            .slide-title {
                font-size: 4.5rem;
            }

            .slide-subtitle {
                font-size: 2rem;
            }
        }