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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(ellipse at top, #1a1a2e 0%, #0a0a0a 50%);
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 170, 255, 0.15) 0%, transparent 70%);
            top: -300px;
            right: -200px;
            animation: float 20s ease-in-out infinite;
        }

        .bg-animation::after {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
            bottom: -400px;
            left: -300px;
            animation: float 25s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(50px, -50px) rotate(120deg); }
            66% { transform: translate(-50px, 50px) rotate(240deg); }
        }

        /* Navbar */
        .navbar {
            background: rgba(10, 10, 10, 0.8) !important;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 12px 0;
            background: rgba(10, 10, 10, 0.95) !important;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #00aaff 0%, #8a2be2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.7) !important;
            font-weight: 500;
            margin: 0 15px;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00aaff, #8a2be2);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #ffffff !important;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            position: relative;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #ffffff 0%, #00aaff 50%, #8a2be2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

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

        .btn-primary-custom {
            background: linear-gradient(135deg, #00aaff 0%, #0088cc 100%);
            border: none;
            padding: 18px 45px;
            font-weight: 600;
            font-size: 1.1rem;
            color: #ffffff;
            border-radius: 50px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease 0.4s backwards;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary-custom::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.6s ease;
        }

        .btn-primary-custom:hover::before {
            left: 100%;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 170, 255, 0.5);
            color: #ffffff;
        }

        .btn-secondary-custom {
            background: transparent;
            border: 2px solid #00aaff;
            padding: 16px 43px;
            font-weight: 600;
            font-size: 1.1rem;
            color: #00aaff;
            border-radius: 50px;
            transition: all 0.4s ease;
            animation: fadeInUp 1s ease 0.5s backwards;
            text-decoration: none;
            display: inline-block;
            margin-left: 20px;
        }
		
		@media (max-width: 473px) {
            
            .btn-secondary-custom {
                margin-left: 0;
				margin-top: 1rem;
				display: flex;
				justify-content: center;
            }
			.btn-primary-custom {
                margin-left: 0;
				margin-top: 1rem;
				display: flex;
				justify-content: center;
            }
        }

        .btn-secondary-custom:hover {
            background: #00aaff;
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 170, 255, 0.3);
        }

        model-viewer {
            width: 100%;
            height: 600px;
            background: transparent;
        }

        /* Features Section */
        .features-section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #00aaff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.2rem;
            margin-bottom: 60px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(0, 170, 255, 0.5);
            box-shadow: 0 20px 60px rgba(0, 170, 255, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #00aaff 0%, #8a2be2 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
        }

        .feature-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 120px 0;
            position: relative;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 50px;
            transition: all 0.4s ease;
            position: relative;
            height: 100%;
        }

        .pricing-card.popular {
            border: 2px solid #00aaff;
            box-shadow: 0 20px 60px rgba(0, 170, 255, 0.3);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 170, 255, 0.4);
        }

        .pricing-card h5 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .pricing-card .description {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 30px;
            font-size: 1rem;
        }

        .price {
            font-size: 4rem;
            font-weight: 800;
            color: #00aaff;
            margin-bottom: 30px;
        }

        .price small {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .pricing-card ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        .pricing-card ul li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.8);
        }

        .pricing-card ul li::before {
            content: '✓';
            color: #00aaff;
            font-weight: bold;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        /* Footer */
        .footer {
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 60px 0 30px;
        }

        .footer h4 {
            font-weight: 800;
            font-size: 2rem;
            background: linear-gradient(135deg, #00aaff 0%, #8a2be2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .social-icons a {
            display: inline-flex;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            margin: 0 10px;
            color: #ffffff;
            font-size: 1.3rem;
            transition: all 0.3s ease;
			text-decoration:blink;
        }

        .social-icons a:hover {
            background: linear-gradient(135deg, #00aaff 0%, #8a2be2 100%);
            border-color: transparent;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 170, 255, 0.4);
        }

        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .price {
                font-size: 3rem;
            }
        }