* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            background: linear-gradient(135deg, #1a1b3a 0%, #2d1b4e 50%, #3a1c5c 100%);
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 27, 58, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
            transform: translateY(0);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(45deg, #00d4ff, #ff006e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-links a:hover {
            color: #00d4ff;
            transform: translateY(-2px);
            background: rgba(0, 212, 255, 0.1);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #00d4ff, #ff006e);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 80%;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: linear-gradient(45deg, #00d4ff, #ff006e);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background: rgba(26, 27, 58, 0.95);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.3s ease;
            z-index: 999;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1rem 0;
            padding: 1rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-align: center;
            width: 80%;
        }

        .mobile-nav a:hover {
            background: linear-gradient(45deg, #ff006e, #c77dff);
            transform: scale(1.05);
        }

        /* Overlay */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, #1a1b3a 0%, #2d1b4e 50%, #3a1c5c 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(199, 125, 255, 0.1) 0%, transparent 50%);
            animation: backgroundShift 10s ease-in-out infinite;
        }

        .hero-content {
            z-index: 2;
            max-width: none;
            width: 100%;
            animation: fadeInUp 1.2s ease-out;
        }

        .hero h1 {
            font-size: 5.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00d4ff, #ff006e, #c77dff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
            white-space: nowrap;
            text-shadow: 0 0 50px rgba(0, 212, 255, 0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1.2s ease-out 0.3s both;
        }

        .motto {
            font-size: 2rem;
            font-weight: 600;
            color: #00d4ff;
            margin-bottom: 3rem;
            letter-spacing: 3px;
            animation: fadeInUp 1.2s ease-out 0.6s both;
            text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
        }

        .cta-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1.2s ease-out 0.9s both;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(45deg, #ff006e, #c77dff);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-secondary {
            background: transparent;
            border: 2px solid #00d4ff;
            color: #00d4ff;
        }

        .cta-secondary:hover {
            background: #00d4ff;
            color: #1a1b3a;
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
        }

        /* Advanced Floating Elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(0,212,255,0.15), rgba(255,0,110,0.25));
            animation: advancedFloat 8s ease-in-out infinite;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .floating-element:nth-child(1) {
            width: 120px;
            height: 120px;
            top: 15%;
            left: 8%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 80px;
            height: 80px;
            top: 70%;
            right: 12%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 15%;
            left: 15%;
            animation-delay: 4s;
        }

        .floating-element:nth-child(4) {
            width: 60px;
            height: 60px;
            top: 40%;
            right: 25%;
            animation-delay: 6s;
        }

        /* Sections */
        section {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .section-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            opacity: 0;
            transform: translateY(60px);
            transition: all 1s ease;
        }

        .section-content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-text h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #00d4ff, #ff006e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .section-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #00d4ff, #ff006e);
            border-radius: 2px;
            animation: expandLine 1s ease-out 0.5s both;
        }

        .section-text p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .section-text .features {
            list-style: none;
            margin: 2rem 0;
        }

        .section-text .features li {
            color: rgba(255, 255, 255, 0.8);
            margin: 1rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 1.1rem;
        }

        .section-text .features li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: #00d4ff;
            font-size: 1.2rem;
        }

        .section-cta {
            margin-top: 3rem;
        }

        .section-visual {
            height: 450px;
            background: linear-gradient(45deg, rgba(0,212,255,0.1), rgba(255,0,110,0.1));
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(0,212,255,0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .section-visual img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 25px;
            z-index: 2;
        }

        .section-visual img:not([src*=".jpg"]):not([src*=".jpeg"]):not([src*=".png"]):not([src*=".gif"]):not([src*=".webp"]),
        .section-visual img[src="add-your-image-here.jpg"] {
            display: none;
        }

        .image-placeholder {
            font-size: 2rem;
            background: linear-gradient(45deg, #00d4ff, #ff006e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            text-align: center;
            z-index: 1;
            opacity: 0.8;
            letter-spacing: 1px;
        }

        .section-visual img[src]:not([src=""]):not([src="add-your-image-here.jpg"]) + .image-placeholder {
            display: none;
        }

        /* Create Section */
        .create {
            background: linear-gradient(135deg, #2d1b4e 0%, #1a1b3a 100%);
        }

        /* Innovate Section */
        .innovate {
            background: linear-gradient(135deg, #1a1b3a 0%, #3a1c5c 100%);
        }

        .innovate .section-content {
            grid-template-columns: 1fr 1fr;
        }

        /* Elevate Section */
        .elevate {
            background: linear-gradient(135deg, #3a1c5c 0%, #2d1b4e 100%);
        }

        /* Stats Section */
        .stats {
            background: rgba(0, 0, 0, 0.2);
            padding: 80px 0;
            backdrop-filter: blur(10px);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item {
            color: white;
            padding: 2rem;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(0, 212, 255, 0.1);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(45deg, #00d4ff, #ff006e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(20px);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #00d4ff;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            line-height: 1.8;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #00d4ff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {
            0%, 100% { 
                background-position: 0% 50%; 
            }
            50% { 
                background-position: 100% 50%; 
            }
        }

        @keyframes advancedFloat {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg) scale(1); 
            }
            25% { 
                transform: translateY(-25px) rotate(90deg) scale(1.1); 
            }
            50% { 
                transform: translateY(-15px) rotate(180deg) scale(0.9); 
            }
            75% { 
                transform: translateY(-30px) rotate(270deg) scale(1.05); 
            }
        }

        @keyframes backgroundShift {
            0%, 100% { 
                filter: hue-rotate(0deg); 
            }
            50% { 
                filter: hue-rotate(30deg); 
            }
        }

        @keyframes expandLine {
            from {
                width: 0;
            }
            to {
                width: 80px;
            }
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #00d4ff, #ff006e);
            z-index: 9999;
            transition: width 0.1s ease;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links { 
                display: none; 
            }
            
            .mobile-menu-toggle { 
                display: flex; 
            }

            .hero h1 { 
                font-size: 2.8rem; 
                white-space: normal;
                line-height: 1.2;
            }
            
            .motto { 
                font-size: 1.3rem; 
                letter-spacing: 1px;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .cta-group {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 80%;
                max-width: 300px;
                text-align: center;
            }
            
            .section-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }
            
            .section-text h2 { 
                font-size: 2rem; 
            }

            .section-visual {
                height: 300px;
            }

            .image-placeholder {
                font-size: 1.5rem;
            }

            .floating-element {
                display: none;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            section {
                padding: 80px 0;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .motto {
                font-size: 1.1rem;
            }

            nav {
                padding: 1rem;
            }

            .logo {
                font-size: 1.5rem;
            }
        }
