 
        /* CSS Color and Style Definitions */
        :root {
            --dark-bg: #0d0221; /* Dark Purple/Blue Base */
            --royal-blue: #26408B;
            --purple: #724cf9;
            --dark-pink: #e01e5a;
            --red: #ff3333;
            --text-light: #f0f0f0;
            --text-dark: #333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        /* Header and Navigation */
        header {
            background: rgba(13, 2, 33, 0.8);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            border-bottom: 1px solid var(--royal-blue);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-light);
            text-decoration: none;
        }

        .logo span {
            color: var(--purple);
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--dark-pink);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 1rem;
            background: linear-gradient(rgba(13, 2, 33, 0.7), rgba(13, 2, 33, 1)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?q=80&w=2670') no-repeat center center/cover;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        /* Cool Element: Animated Gradient Text */
        .animated-gradient-text {
            background: linear-gradient(90deg, var(--purple), var(--dark-pink), var(--red), var(--purple));
            background-size: 300% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradient-animation 5s ease infinite;
        }

        @keyframes gradient-animation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        /* Cool Element: Glowing Button */
        .cta-button {
            display: inline-block;
            background-color: var(--purple);
            color: var(--text-light);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 0 5px var(--purple), 0 0 15px var(--purple);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            background-color: var(--dark-pink);
            box-shadow: 0 0 10px var(--dark-pink), 0 0 30px var(--dark-pink), 0 0 50px var(--dark-pink);
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            text-align: center;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--text-light);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        /* Cool Element: Frosted Glass Cards */
        .service-card {
            background: rgba(38, 64, 139, 0.2); /* Royal Blue at 20% opacity */
            backdrop-filter: blur(15px);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            border: 1px solid rgba(114, 76, 249, 0.3);
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .service-card h3 {
            color: var(--purple);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        /* Footer */
        footer {
            background-color: #08011a;
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid var(--royal-blue);
        }

    