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

        body {
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: #0a0e27;
            color: #fff;
            cursor: none;
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid #667eea;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.05s ease;
            transform: translate(-50%, -50%);
            will-change: transform;
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: all 0.15s ease;
            transform: translate(-50%, -50%);
            will-change: transform;
        }

        .cursor.active {
            transform: translate(-50%, -50%) scale(1.5);
            background: rgba(102, 126, 234, 0.2);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            animation: slideDownNav 0.8s ease;
        }

        @keyframes slideDownNav {
            from {
                transform: translateY(-100px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            font-family: 'Space Grotesk', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
        }

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

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

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

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transition: width 0.3s;
        }

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

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
        }

        .animated-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            animation: float 20s infinite ease-in-out;
        }

        .circle:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .circle:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 15%;
            animation-delay: 3s;
        }

        .circle:nth-child(3) {
            width: 250px;
            height: 250px;
            bottom: 10%;
            left: 50%;
            animation-delay: 6s;
        }

        .circle:nth-child(4) {
            width: 180px;
            height: 180px;
            top: 30%;
            right: 40%;
            animation-delay: 2s;
            background: linear-gradient(135deg, rgba(118, 75, 162, 0.15), rgba(102, 126, 234, 0.1));
        }

        .circle:nth-child(5) {
            width: 220px;
            height: 220px;
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.08));
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #667eea;
            border-radius: 50%;
            animation: particleFloat 15s infinite ease-in-out;
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
        }

        .particle:nth-child(6) { top: 20%; left: 30%; animation-delay: 0s; }
        .particle:nth-child(7) { top: 50%; left: 70%; animation-delay: 2s; }
        .particle:nth-child(8) { top: 80%; left: 50%; animation-delay: 4s; }
        .particle:nth-child(9) { top: 40%; left: 15%; animation-delay: 1s; }
        .particle:nth-child(10) { top: 70%; left: 85%; animation-delay: 3s; }
        .particle:nth-child(11) { top: 15%; left: 60%; animation-delay: 5s; }
        .particle:nth-child(12) { top: 90%; left: 25%; animation-delay: 2.5s; }
        .particle:nth-child(13) { top: 35%; left: 80%; animation-delay: 4.5s; }

        @keyframes particleFloat {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            25% { transform: translate(100px, -100px) scale(1.5); opacity: 0.8; }
            50% { transform: translate(-50px, 50px) scale(0.8); opacity: 0.5; }
            75% { transform: translate(80px, 80px) scale(1.2); opacity: 0.7; }
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(50px, -50px) scale(1.1); }
            66% { transform: translate(-50px, 50px) scale(0.9); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }

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

        .hero-content h1 {
            font-size: 60px;
            margin-bottom: 20px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #667eea 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 300% 300%;
            animation: glow 2s ease-in-out infinite alternate, gradientFlow 5s ease infinite;
        }

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

        @keyframes glow {
            from { filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5)); }
            to { filter: drop-shadow(0 0 30px rgba(118, 75, 162, 0.8)); }
        }

        .subtitle {
            font-size: 24px;
            color: #e2e8f0;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 600;
            animation: fadeIn 1.5s ease 0.5s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            animation: fadeIn 1.8s ease 0.8s both;
        }

        .btn {
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            font-family: 'Space Grotesk', sans-serif;
        }

        .btn::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;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            border: none;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid #667eea;
            color: #fff;
        }

        .btn-secondary:hover {
            background: rgba(102, 126, 234, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
        }

        /* Services Section */
        .services {
            padding: 100px 50px;
            background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
        }

        .section-title {
            text-align: center;
            font-size: 48px;
            margin-bottom: 60px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #4facfe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeIn 1s ease;
        }

        .services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(102, 126, 234, 0.2);
            transition: all 0.4s;
            animation: fadeIn 1s ease;
            position: relative;
            overflow: hidden;
            flex: 1 1 280px;
            max-width: 350px;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            transition: left 0.5s;
        }

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

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
            border-color: rgba(102, 126, 234, 0.5);
        }

        .service-icon {
            font-size: 60px;
            margin-bottom: 20px;
            animation: bounce 2s infinite;
        }

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

        .service-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #fff;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
        }

        .service-card p {
            color: #a0aec0;
            line-height: 1.8;
            font-size: 16px;
            font-weight: 500;
        }

        /* Reviews Section */
        .reviews {
            padding: 100px 50px;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
            overflow: hidden;
        }

        .scroll-hint {
            text-align: center;
            color: #667eea;
            font-size: 16px;
            margin-bottom: 30px;
            animation: pulse 2s infinite;
            font-weight: 600;
        }

        .reviews-container {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-behavior: smooth;
            cursor: grab;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: #667eea #1a1f3a;
        }

        .reviews-container:active {
            cursor: grabbing;
        }

        .reviews-container::-webkit-scrollbar {
            height: 10px;
        }

        .reviews-container::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .reviews-container::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
        }

        .reviews-container::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
        }

        .review-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(102, 126, 234, 0.2);
            transition: all 0.4s;
            animation: fadeIn 1s ease;
            position: relative;
            overflow: hidden;
            min-width: 350px;
            max-width: 350px;
            flex-shrink: 0;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 120px;
            color: rgba(102, 126, 234, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .review-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
            border-color: rgba(102, 126, 234, 0.5);
        }

        .stars {
            font-size: 20px;
            margin-bottom: 15px;
            animation: glow 2s ease-in-out infinite alternate;
        }

        .review-text {
            color: #e2e8f0;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 16px;
            position: relative;
            z-index: 1;
            font-weight: 500;
        }

        .reviewer {
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            z-index: 1;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 18px;
            color: #fff;
            animation: pulse 2s infinite;
            font-family: 'Space Grotesk', sans-serif;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
            50% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
        }

        .reviewer-info h4 {
            color: #fff;
            margin-bottom: 5px;
            font-size: 18px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
        }

        .reviewer-info p {
            color: #a0aec0;
            font-size: 14px;
            font-weight: 500;
        }

        /* Contact Section */
        .contact {
            padding: 100px 50px;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
            animation: pulseGradient 10s ease infinite;
            z-index: 0;
        }

        @keyframes pulseGradient {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }

        .contact > * {
            position: relative;
            z-index: 1;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .contact-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px 40px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(102, 126, 234, 0.2);
            transition: all 0.3s;
            animation: slideIn 1s ease;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .contact-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
        }

        .contact-item h3 {
            background: linear-gradient(135deg, #667eea 0%, #4facfe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            font-size: 20px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
        }

        .contact-item p {
            color: #a0aec0;
            font-size: 18px;
            font-weight: 600;
        }

        .contact-item a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: #667eea;
        }

        /* Footer */
        footer {
            background: #0a0e27;
            padding: 30px;
            text-align: center;
            color: #a0aec0;
            border-top: 1px solid rgba(102, 126, 234, 0.2);
        }

        /* Responsive */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 3px;
            transition: all 0.3s;
        }

        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }

            .logo {
                font-size: 22px;
            }

            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(10px);
                width: 70%;
                padding: 30px;
                border-radius: 20px 0 0 20px;
                border: 1px solid rgba(102, 126, 234, 0.3);
                transition: right 0.4s ease;
                gap: 20px;
            }

            .hero {
                padding: 20px;
            }

            .hero-content {
                padding: 0 10px;
            }

            .hero-content h1 {
                font-size: 32px;
                line-height: 1.2;
            }

            .subtitle {
                font-size: 16px;
                margin-bottom: 30px;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 15px;
                width: 100%;
            }

            .btn {
                width: 100%;
                padding: 12px 30px;
                font-size: 14px;
            }

            .services {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 28px;
                margin-bottom: 40px;
            }

            .services-grid {
                gap: 20px;
            }

            .service-card {
                flex: 1 1 100%;
                max-width: 100%;
                padding: 30px 25px;
            }

            .service-icon {
                font-size: 50px;
            }

            .service-card h3 {
                font-size: 20px;
            }

            .service-card p {
                font-size: 14px;
            }

            .reviews {
                padding: 60px 20px;
            }

            .scroll-hint {
                font-size: 14px;
            }

            .review-card {
                min-width: 280px;
                max-width: 280px;
                padding: 25px;
            }

            .review-text {
                font-size: 14px;
            }

            .contact {
                padding: 60px 20px;
            }

            .contact-info {
                gap: 20px;
                flex-direction: column;
                align-items: center;
            }

            .contact-item {
                width: 100%;
                max-width: 400px;
                padding: 25px 30px;
            }

            .cursor, .cursor-follower {
                display: none;
            }

            body {
                cursor: auto;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 24px;
            }

            .subtitle {
                font-size: 14px;
            }

            .section-title {
                font-size: 24px;
            }

            .service-card {
                padding: 25px 20px;
            }

            .review-card {
                min-width: 260px;
                max-width: 260px;
            }

            .contact-item h3 {
                font-size: 18px;
            }

            .contact-item p {
                font-size: 16px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .hero-content h1 {
                font-size: 48px;
            }

            .subtitle {
                font-size: 20px;
            }

            .section-title {
                font-size: 40px;
            }

            .services {
                padding: 80px 40px;
            }

            .service-card {
                flex: 1 1 calc(50% - 15px);
                max-width: calc(50% - 15px);
            }

            .reviews {
                padding: 80px 40px;
            }

            .contact {
                padding: 80px 40px;
            }
        }
