
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

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

        /* Header/Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        .nav-links a {
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -5px;
            left: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

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

        .nav-links a:hover {
            color: #667eea;
            transform: translateY(-2px);
        }

        .cta-nav {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .cta-nav:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
            filter: brightness(1.1);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: 
                linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
                url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2074&q=80') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            color: white;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="rgba(255,255,255,0.1)" fill-opacity="0.1"><circle cx="7" cy="7" r="1"/><circle cx="53" cy="53" r="1"/><circle cx="30" cy="30" r="1"/></g></svg>');
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: 900;
            margin-bottom: 25px;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            letter-spacing: -2px;
        }

        .hero-tagline {
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 600;
            opacity: 0.95;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 50px;
            opacity: 0.9;
            line-height: 1.6;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        .hero-cta {
            background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
            color: #667eea;
            padding: 22px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.2rem;
            display: inline-block;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .hero-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            background: white;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .floating-elements::before,
        .floating-elements::after {
            content: '💰';
            position: absolute;
            font-size: 2rem;
            animation: float 6s ease-in-out infinite;
            opacity: 0.3;
        }

        .floating-elements::before {
            top: 20%;
            left: 10%;
            animation-delay: -2s;
        }

        .floating-elements::after {
            top: 60%;
            right: 15%;
            animation-delay: -4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

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

        /* Section Styling */
        .section {
            padding: 120px 0;
            position: relative;
        }

        .section-hero-bg {
            background: 
                linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%),
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80') center/cover;
        }

        .section-jobs-bg {
            background: 
                linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%),
                url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
            color: white;
        }

        .section-testimonials-bg {
            background: 
                linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 255, 0.95) 100%),
                url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
        }

        .section-payment-bg {
            background: 
                linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%),
                url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2340&q=80') center/cover;
            color: white;
        }

        .section-contact-bg {
            background: 
                linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%),
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2073&q=80') center/cover;
            color: white;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            letter-spacing: -1px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.4rem;
            text-align: center;
            margin-bottom: 60px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
            line-height: 1.7;
        }

        /* Glass morphism effect */
        .glass {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
        }

        .glass-dark {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        /* About Section */
        .about-content {
            text-align: center;
            font-size: 1.4rem;
            max-width: 900px;
            margin: 0 auto;
            padding: 60px;
            line-height: 1.8;
        }

        /* Jobs Grid */
        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .job-card {
            padding: 40px 35px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .job-card::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.6s;
        }

        .job-card:hover::before {
            left: 100%;
        }

        .job-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
        }

        .job-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            display: block;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
        }

        .job-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
        }

        .job-description {
            line-height: 1.7;
            opacity: 0.9;
        }

        /* Why Section */
        .why-content {
            text-align: center;
            font-size: 1.4rem;
            max-width: 1000px;
            margin: 0 auto;
            padding: 60px;
            line-height: 1.8;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .testimonial {
            padding: 40px;
            position: relative;
            transition: all 0.4s ease;
            border-radius: 25px;
        }

        .testimonial::before {
            content: '"';
            font-size: 6rem;
            color: #667eea;
            position: absolute;
            top: -10px;
            left: 25px;
            opacity: 0.3;
            font-family: serif;
        }

        .testimonial:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .testimonial-author {
            font-weight: 800;
            font-size: 1.1rem;
            color: #333;
        }

        .stars {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.3rem;
            filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
        }

        /* FAQs */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 25px;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
        }

        .faq-question {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px 35px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 35px;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-question:hover {
            background: linear-gradient(135deg, #5a6fd8 0%, #6b5b95 100%);
        }

        .faq-answer {
            padding: 25px 35px;
            background: white;
            font-size: 1.05rem;
            line-height: 1.7;
            border-left: 4px solid #667eea;
        }

        /* Payment Section */
        .payment-icons {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin: 60px 0;
            flex-wrap: wrap;
        }

        .payment-icon {
            padding: 30px;
            border-radius: 20px;
            min-width: 150px;
            font-weight: 700;
            font-size: 1.1rem;
            text-align: center;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .payment-icon:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }

        .contact-item {
            text-align: center;
            padding: 50px 30px;
            border-radius: 25px;
            transition: all 0.4s ease;
        }

        .contact-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(255, 255, 255, 0.1);
        }

        .contact-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: #667eea;
            filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.3));
        }

        .contact-title {
            font-weight: 800;
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: white;
        }

        .contact-info {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Final CTA */
        .final-cta {
            background: 
                linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%),
                url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
            color: white;
            text-align: center;
            padding: 120px 0;
            position: relative;
        }

        .final-cta h2 {
            font-size: 3.5rem;
            margin-bottom: 30px;
            font-weight: 900;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .final-cta p {
            font-size: 1.4rem;
            margin-bottom: 50px;
            opacity: 0.95;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .final-cta-btn {
            background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
            color: #667eea;
            padding: 25px 60px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.3rem;
            display: inline-block;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .final-cta-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            background: white;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            font-size: 1.1rem;
        }

        /* Parallax Effect */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero-tagline {
                font-size: 1.3rem;
            }

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

            .jobs-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .payment-icons {
                flex-direction: column;
                align-items: center;
            }

            .about-content,
            .why-content {
                padding: 40px 20px;
                font-size: 1.2rem;
            }

            .parallax {
                background-attachment: scroll;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
    