.main-revolution {
            width: 100%;
            height: 70vh;
            position: relative;
            overflow: hidden;
            background: #000;
        }

        .revolution-slide {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .revolution-slide.active {
            opacity: 1;
            z-index: 10;
        }

        .slide-background {
            width: 100%;
            height: 100%;
            position: absolute;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            animation: zoomIn 8s ease-out forwards;
        }

        .revolution-slide.active .slide-background {
            animation: zoomIn 8s ease-out forwards;
        }

        @keyframes zoomIn {
            from {
                transform: scale(1.1) rotateZ(-2deg);
            }
            to {
                transform: scale(1) rotateZ(0deg);
            }
        }

        .slide-overlay {
            width: 100%;
            height: 100%;
            position: absolute;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .slide-content {
            position: relative;
            text-align: center;
            color: white;
            max-width: 90%;
            z-index: 5;
            filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
        }

        /* Animated Background Layers */
        .animated-bg-layer {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .animated-bg-layer.layer1 {
            background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.1) 50%, transparent 70%);
            animation: slideLayerLeft 15s linear infinite;
        }

        .animated-bg-layer.layer2 {
            background: linear-gradient(-45deg, transparent 30%, rgba(255, 0, 127, 0.1) 50%, transparent 70%);
            animation: slideLayerRight 20s linear infinite;
        }

        .animated-bg-layer.layer3 {
            background: radial-gradient(circle at 50% 50%, rgba(0, 255, 200, 0.08) 0%, transparent 80%);
            animation: pulse-layer 4s ease-in-out infinite;
        }

        @keyframes slideLayerLeft {
            from { transform: translateX(-100%); }
            to { transform: translateX(100%); }
        }

        @keyframes slideLayerRight {
            from { transform: translateX(100%); }
            to { transform: translateX(-100%); }
        }

        @keyframes pulse-layer {
            0%, 100% { opacity: 0.05; }
            50% { opacity: 0.15; }
        }

        /* Animated Subtitle */
        .slide-subtitle {
            font-size: clamp(14px, 3vw, 15px);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            font-weight: 600;
            color: #fff;
            opacity: 0;
            position: relative;
            overflow: hidden;
        }

        .revolution-slide.active .slide-subtitle {
            animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, glow 3s ease-in-out infinite;
            animation-delay: 0.2s, 0.2s;
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.3);
        }

        /* Animated Title */
        .slide-title {
            font-size: clamp(24px, 3vw, 35px);
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            opacity: 0;
            color: #fff;
        }

        .revolution-slide.active .slide-title {
            animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, glow 3s ease-in-out infinite;
            animation-delay: 0.4s, 0.4s;
            /*filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 40px rgba(0, 212, 255, 0.2));*/
        }

        /* Animated Description */
        .slide-description {
            font-size: clamp(14px, 2vw, 18px);
            margin-bottom: 30px;
            font-weight: 300;
            letter-spacing: 0.5px;
            opacity: 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            line-height: 1.6;
        }

        .revolution-slide.active .slide-description {
            animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, fadeInGlow 2s ease-in-out;
            animation-delay: 0.6s, 0.6s;
            /*text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);*/
        }

        @keyframes fadeInGlow {
            from {
                text-shadow: 0 0 0 rgba(0, 212, 255, 0.3);
            }
            to {
                text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
            }
        }

        /* Animated Button */
        .slide-button {
            display: inline-block;
            padding: 6px 25px;
            background: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #00d4ff 100%);
            background-size: 200% 100%;
            color: white;
            text-decoration: none;
            font-size: clamp(14px, 2vw, 16px);
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            border: 2px solid #00d4ff;
            transition: all 0.4s ease;
            opacity: 0;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .slide-button a {
            color: white;
            text-decoration: none;
        }

        .revolution-slide.active .slide-button {
            animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, pulse-button 2s ease-in-out infinite;
            animation-delay: 0.8s, 1s;
        }

        @keyframes pulse-button {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
            }
            50% {
                box-shadow: 0 0 30px 10px rgba(0, 212, 255, 0.2);
            }
        }

        .slide-button:hover {
            transform: scale(1.05) translateY(-3px);
            box-shadow: 0 15px 50px rgba(0, 212, 255, 0.6), 0 0 30px rgba(0, 212, 255, 0.4);
            background-position: -200% 0;
            border-color: #00ffff;
        }

        .slide-button:active {
            transform: scale(0.98);
        }

        /* Enhanced Particle Effects */
        .particles-container {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 3;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: #00d4ff;
            border-radius: 50%;
            box-shadow: 0 0 8px #00d4ff;
            animation: float-particle 6s ease-in-out infinite;
        }

        @keyframes float-particle {
            0% {
                opacity: 0;
                transform: translateY(100vh) translateX(0);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(-100vh) translateX(100px);
            }
        }

        /* Floating Orbs */
        .floating-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
        }

        .floating-orb:nth-child(1) {
            width: 250px;
            height: 250px;
            top: 5%;
            right: 5%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
            animation: float 12s ease-in-out infinite, spin 30s linear infinite;
        }

        .floating-orb:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: 10%;
            left: 5%;
            background: radial-gradient(circle, rgba(255, 0, 127, 0.25) 0%, transparent 70%);
            animation: float 14s ease-in-out infinite 2s, spin 25s linear infinite reverse;
            display: none;
        }

        .floating-orb:nth-child(3) {
            width: 220px;
            height: 220px;
            top: 40%;
            left: 8%;
            background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
            animation: float 16s ease-in-out infinite 4s, spin 20s linear infinite;
        }

        .floating-orb:nth-child(4) {
            width: 180px;
            height: 180px;
            top: 60%;
            right: 10%;
            background: radial-gradient(circle, rgba(100, 200, 255, 0.2) 0%, transparent 70%);
            animation: float 15s ease-in-out infinite 1s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.05); }
            50% { transform: translate(-20px, 25px) scale(0.95); }
            75% { transform: translate(40px, 20px) scale(1); }
        }

        @keyframes spin {
            from { filter: blur(40px) hue-rotate(0deg); }
            to { filter: blur(40px) hue-rotate(360deg); }
        }

        /* Light Rays */
        .light-rays {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 2;
            overflow: hidden;
            display: none;
        }

        .ray {
            position: absolute;
            width: 2px;
            height: 200%;
            background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.2), transparent);
            left: 50%;
            top: -50%;
            animation: ray-move 5s ease-in infinite;
        }

        @keyframes ray-move {
            from { transform: translateY(0); opacity: 0; }
            50% { opacity: 1; }
            to { transform: translateY(100%); opacity: 0; }
        }

        /* Slider Controls */
        .slider-dots {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 20;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .dot.active {
            background: #00d4ff;
            width: 28px;
            border-radius: 6px;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
        }

        .dot:hover {
            background: rgba(0, 212, 255, 0.8);
            transform: scale(1.1);
        }

        /* Arrow Controls */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(0, 212, 255, 0.4);
            color: #00d4ff;
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 20;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        .slider-arrow:hover {
            background: rgba(0, 212, 255, 0.2);
            border-color: #00d4ff;
            box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-arrow {
            left: 20px;
        }

        .next-arrow {
            right: 20px;
            left: auto;
        }

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

        @keyframes glow {
            0%, 100% {
                text-shadow: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.3);
            }
            50% {
                text-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 40px rgba(0, 212, 255, 0.5);
            }
        }

        /* Tablet */
        @media (max-width: 768px) {
            .main-revolution {
                height: 60vh;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .prev-arrow, .next-arrow {
                left: 15px;
            }

            .next-arrow {
                right: 15px;
                left: auto;
            }

            .slider-dots {
                bottom: 20px;
                gap: 8px;
            }

            .dot {
                width: 10px;
                height: 10px;
            }

            .dot.active {
                width: 24px;
            }

            .floating-orb:nth-child(1) { width: 180px; height: 180px; }
            .floating-orb:nth-child(3) { width: 160px; height: 160px; }
            .floating-orb:nth-child(4) { width: 130px; height: 130px; }
        }

        /* Mobile */
        @media (max-width: 480px) {
            .main-revolution {
                height: 13vh;
                min-height: 137px;
            }
            .slide-title {
              font-size: clamp(15px, 1vw, 12px);
              font-weight: 700;
              margin-bottom: 20px;
              line-height: 1.2;
              opacity: 0;
              color: #fff;
            }
            .slide-subtitle {
              font-size: clamp(5px, 2vw, 20px);
              text-transform: uppercase;
              letter-spacing: 2px;
              margin-bottom: 15px;
              font-weight: 600;
              color: #fff;
              opacity: 0;
              position: relative;
              overflow: hidden;
            }

            .slider-arrow {
                width: 38px;
                height: 38px;
                font-size: 16px;
            }

            .prev-arrow {
                left: 12px;
            }

            .next-arrow {
                right: 12px;
                left: auto;
            }

            .slider-dots {
                bottom: 15px;
                gap: 6px;
            }

            .dot {
                width: 8px;
                height: 8px;
            }

            .dot.active {
                width: 20px;
                border-radius: 4px;
            }

            .slide-content {
                padding: 10px;
            }

            .slide-subtitle {
                margin-bottom: 10px;
            }

            .slide-title {
                margin-bottom: 12px;
            }

            .slide-description {
                margin-bottom: 20px;
                font-size: clamp(9px, -0.5vw, 16px);
            }

            .slide-button {
                padding: 10px 24px;
                font-size: 13px;
                display: none;
            }

            .floating-orb:nth-child(1) { width: 120px; height: 120px; }
            .floating-orb:nth-child(3) { width: 100px; height: 100px; }
            .floating-orb:nth-child(4) { width: 80px; height: 80px; }
        }