        body {
            box-sizing: border-box;
        }
        
        .glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-delayed {
            animation: float 6s ease-in-out infinite 2s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotateY(0deg); }
            50% { transform: translateY(-20px) rotateY(180deg); }
        }
        
        .zoom-in-out {
            animation: zoomInOut 4s ease-in-out infinite;
        }
        
        .slide-left {
            animation: slideLeft 8s linear infinite;
        }
        
        .slide-right {
            animation: slideRight 10s linear infinite;
        }
        
        @keyframes zoomInOut {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        @keyframes slideLeft {
            0% { transform: translateX(100vw); }
            100% { transform: translateX(-100vw); }
        }
        
        @keyframes slideRight {
            0% { transform: translateX(-100vw); }
            100% { transform: translateX(100vw); }
        }
        
        .card-3d {
            transform-style: preserve-3d;
            transition: transform 0.3s ease;
        }
        
        .card-3d:hover {
            transform: rotateY(10deg) rotateX(10deg) scale(1.05);
        }
        
        .btn-3d {
            transform: perspective(1000px) rotateX(0deg);
            transition: all 0.3s ease;
        }
        
        .btn-3d:hover {
            transform: perspective(1000px) rotateX(-10deg) translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        
        .hero-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .hero-slide.active {
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
        }
        
        .card-slider {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 0.75rem 0.75rem 0 0;
        }
        
        .card-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .card-slide.active {
            opacity: 1;
        }
        
        .service-card {
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-slider {
            position: relative;
            width: 80px;
            height: 80px;
            overflow: hidden;
            border-radius: 50%;
            margin: 0 auto 1rem;
        }
        
        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .testimonial-slide.active {
            opacity: 1;
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Text Animations */
        .typewriter {
            overflow: hidden;
            border-right: 3px solid #06b6d4;
            white-space: nowrap;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }
        
        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }
        
        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: #06b6d4; }
        }
        
        .text-slide-up {
            animation: slideUpText 1s ease-out forwards;
            opacity: 0;
            transform: translateY(50px);
        }
        
        @keyframes slideUpText {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .text-slide-left {
            animation: slideLeftText 1s ease-out forwards;
            opacity: 0;
            transform: translateX(-50px);
        }
        
        @keyframes slideLeftText {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .text-slide-right {
            animation: slideRightText 1s ease-out forwards;
            opacity: 0;
            transform: translateX(50px);
        }
        
        @keyframes slideRightText {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .text-bounce {
            animation: bounceText 2s ease-in-out infinite;
        }
        
        @keyframes bounceText {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        .text-glow {
            animation: glowText 2s ease-in-out infinite alternate;
        }
        
        @keyframes glowText {
            from {
                text-shadow: 0 0 5px #06b6d4, 0 0 10px #06b6d4, 0 0 15px #06b6d4;
            }
            to {
                text-shadow: 0 0 10px #06b6d4, 0 0 20px #06b6d4, 0 0 30px #06b6d4;
            }
        }
        
        .text-wave {
            display: inline-block;
        }
        
        .text-wave span {
            display: inline-block;
            animation: wave 2s ease-in-out infinite;
        }
        
        .text-wave span:nth-child(1) { animation-delay: 0s; }
        .text-wave span:nth-child(2) { animation-delay: 0.1s; }
        .text-wave span:nth-child(3) { animation-delay: 0.2s; }
        .text-wave span:nth-child(4) { animation-delay: 0.3s; }
        .text-wave span:nth-child(5) { animation-delay: 0.4s; }
        .text-wave span:nth-child(6) { animation-delay: 0.5s; }
        .text-wave span:nth-child(7) { animation-delay: 0.6s; }
        .text-wave span:nth-child(8) { animation-delay: 0.7s; }
        .text-wave span:nth-child(9) { animation-delay: 0.8s; }
        .text-wave span:nth-child(10) { animation-delay: 0.9s; }
        .text-wave span:nth-child(11) { animation-delay: 1s; }
        .text-wave span:nth-child(12) { animation-delay: 1.1s; }
        .text-wave span:nth-child(13) { animation-delay: 1.2s; }
        .text-wave span:nth-child(14) { animation-delay: 1.3s; }
        .text-wave span:nth-child(15) { animation-delay: 1.4s; }
        .text-wave span:nth-child(16) { animation-delay: 1.5s; }
        .text-wave span:nth-child(17) { animation-delay: 1.6s; }
        .text-wave span:nth-child(18) { animation-delay: 1.7s; }
        
        @keyframes wave {
            0%, 40%, 100% {
                transform: translateY(0);
            }
            20% {
                transform: translateY(-10px);
            }
        }
        
        .text-scale {
            animation: scaleText 1s ease-out forwards;
            transform: scale(0);
        }
        
        @keyframes scaleText {
            to {
                transform: scale(1);
            }
        }
        
        .text-rotate {
            animation: rotateText 1s ease-out forwards;
            opacity: 0;
            transform: rotate(-180deg);
        }
        
        @keyframes rotateText {
            to {
                opacity: 1;
                transform: rotate(0deg);
            }
        }
        
        .text-flip {
            animation: flipText 1s ease-out forwards;
            opacity: 0;
            transform: rotateY(-90deg);
        }
        
        @keyframes flipText {
            to {
                opacity: 1;
                transform: rotateY(0deg);
            }
        }
        
        .text-gradient {
            background: linear-gradient(45deg, #06b6d4, #f97316, #8b5cf6);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .text-pulse {
            animation: pulseText 2s ease-in-out infinite;
        }
        
        @keyframes pulseText {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
        }
        
        .text-shake {
            animation: shakeText 0.5s ease-in-out;
        }
        
        @keyframes shakeText {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
            20%, 40%, 60%, 80% { transform: translateX(2px); }
        }
        
        .text-rainbow {
            background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: rainbow 3s ease infinite;
        }
        
        @keyframes rainbow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .text-neon {
            color: #fff;
            text-shadow: 
                0 0 5px #06b6d4,
                0 0 10px #06b6d4,
                0 0 20px #06b6d4,
                0 0 40px #06b6d4;
            animation: neonFlicker 2s ease-in-out infinite alternate;
        }
        
        @keyframes neonFlicker {
            0%, 18%, 22%, 25%, 53%, 57%, 100% {
                text-shadow: 
                    0 0 5px #06b6d4,
                    0 0 10px #06b6d4,
                    0 0 20px #06b6d4,
                    0 0 40px #06b6d4;
            }
            20%, 24%, 55% {
                text-shadow: none;
            }
        }
        
        .cube {
            width: 60px;
            height: 60px;
            position: relative;
            transform-style: preserve-3d;
            animation: rotate 10s infinite linear;
        }
        
        .cube-face {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(6, 182, 212, 0.3);
            border: 2px solid rgba(6, 182, 212, 0.6);
        }
        
        .cube-face:nth-child(1) { transform: rotateY(0deg) translateZ(30px); }
        .cube-face:nth-child(2) { transform: rotateY(90deg) translateZ(30px); }
        .cube-face:nth-child(3) { transform: rotateY(180deg) translateZ(30px); }
        .cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(30px); }
        .cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(30px); }
        .cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(30px); }
        
        @keyframes rotate {
            0% { transform: rotateX(0deg) rotateY(0deg); }
            100% { transform: rotateX(360deg) rotateY(360deg); }
        }
        
        .hidden-page {
            display: none;
        }
        
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu.open {
            transform: translateX(0);
        }
        
        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .hero-bg {
                min-height: 100vh;
                padding: 2rem 1rem;
            }
            
            .hero-bg h1 {
                font-size: 2.5rem !important;
                line-height: 1.2;
            }
            
            .hero-bg p {
                font-size: 1rem !important;
                margin-bottom: 1.5rem !important;
            }
            
            .cube {
                width: 40px;
                height: 40px;
            }
            
            .cube-face {
                width: 40px;
                height: 40px;
            }
            
            .floating {
                animation: floatMobile 4s ease-in-out infinite;
            }
            
            @keyframes floatMobile {
                0%, 100% { transform: translateY(0px) scale(0.8); }
                50% { transform: translateY(-10px) scale(0.9); }
            }
            
            .card-3d:hover {
                transform: scale(1.02);
            }
            
            .btn-3d:hover {
                transform: translateY(-2px);
            }
            
            .grid {
                gap: 1rem !important;
            }
            
            .px-8 {
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }
            
            .py-20 {
                padding-top: 3rem !important;
                padding-bottom: 3rem !important;
            }
            
            .text-5xl {
                font-size: 2rem !important;
            }
            
            .text-4xl {
                font-size: 1.75rem !important;
            }
            
            .text-3xl {
                font-size: 1.5rem !important;
            }
            
            .mb-16 {
                margin-bottom: 2rem !important;
            }
            
            .mb-12 {
                margin-bottom: 1.5rem !important;
            }
        }
        
        @media (max-width: 480px) {
            .hero-bg h1 {
                font-size: 2rem !important;
            }
            
            .hero-bg .text-xl {
                font-size: 1rem !important;
            }
            
            .hero-bg .text-lg {
                font-size: 0.9rem !important;
            }
            
            .px-4 {
                padding-left: 0.75rem !important;
                padding-right: 0.75rem !important;
            }
            
            .space-y-4 > * + * {
                margin-top: 0.75rem !important;
            }
        }
