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

        * {
            font-family: 'Poppins', sans-serif;
        }

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

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

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

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.5);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes rotateIn {
            from {
                opacity: 0;
                transform: rotate(-180deg) scale(0.5);
            }
            to {
                opacity: 1;
                transform: rotate(0deg) scale(1);
            }
        }

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

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: white; }
        }

        @keyframes slideLeft {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        @keyframes slideRight {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes spinReverse {
            from { transform: rotate(360deg); }
            to { transform: rotate(0deg); }
        }

        @keyframes wiggle {
            0%, 100% { transform: rotate(-3deg); }
            50% { transform: rotate(3deg); }
        }

        @keyframes morph {
            0%, 100% {
                border-radius: 50% 50% 50% 50%;
                transform: scale(1);
            }
            25% {
                border-radius: 60% 40% 60% 40%;
                transform: scale(1.1);
            }
            50% {
                border-radius: 40% 60% 40% 60%;
                transform: scale(0.9);
            }
            75% {
                border-radius: 70% 30% 70% 30%;
                transform: scale(1.05);
            }
        }

        @keyframes drift {
            0%, 100% {
                transform: translateX(0px) translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateX(30px) translateY(-20px) rotate(90deg);
            }
            50% {
                transform: translateX(-20px) translateY(-40px) rotate(180deg);
            }
            75% {
                transform: translateX(-30px) translateY(-10px) rotate(270deg);
            }
        }

        @keyframes orbit {
            0% {
                transform: rotate(0deg) translateX(50px) rotate(0deg);
            }
            100% {
                transform: rotate(360deg) translateX(50px) rotate(-360deg);
            }
        }

        @keyframes glow {
            0% {
                box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
            }
            100% {
                box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
            }
        }

        .gradient-bg {
            background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 50%, #06B6D4 100%);
            background-size: 200% 200%;
            animation: gradientShift 6s ease infinite;
        }

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

        .text-gradient {
            background: linear-gradient(135deg, #3B82F6, #8B5CF6, #06B6D4);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease infinite;
        }

        .card-hover {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .card-hover:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-animation {
            animation-delay: calc(var(--stagger) * 0.1s);
        }

        .hero-text {
            overflow: hidden;
            border-right: 3px solid white;
            white-space: nowrap;
            margin: 0 auto;
            animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
        }

        .section-title {
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 4px;
            background: linear-gradient(135deg, #3B82F6, #8B5CF6);
            border-radius: 2px;
            transition: width 0.8s ease;
        }

        .section-title.visible::after {
            width: 80px;
        }

        /* Enhanced Mobile Menu Styles */
        .mobile-menu-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 40;
        }

        .mobile-menu-backdrop.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 85%;
            max-width: 400px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.95) 0%, rgba(139, 92, 246, 0.95) 100%);
            backdrop-filter: blur(20px);
            box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 50;
            overflow-y: auto;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .mobile-menu-header {
            padding: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-menu-close {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-menu-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .mobile-menu-items {
            padding: 2rem 1.5rem;
        }

        .mobile-menu-item {
            display: flex;
            align-items: center;
            padding: 1rem 1.5rem;
            margin-bottom: 0.5rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.125rem;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(50px);
        }

        .mobile-menu.open .mobile-menu-item {
            animation: slideInMenuItem 0.5s ease forwards;
        }

        .mobile-menu-item:nth-child(1) { animation-delay: 0.1s; }
        .mobile-menu-item:nth-child(2) { animation-delay: 0.15s; }
        .mobile-menu-item:nth-child(3) { animation-delay: 0.2s; }
        .mobile-menu-item:nth-child(4) { animation-delay: 0.25s; }
        .mobile-menu-item:nth-child(5) { animation-delay: 0.3s; }

        @keyframes slideInMenuItem {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .mobile-menu-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(5px);
        }

        .mobile-menu-item svg {
            width: 24px;
            height: 24px;
            margin-right: 1rem;
        }

        .mobile-menu-footer {
            padding: 2rem 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: auto;
        }

        .mobile-menu-contact {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 12px;
            color: white;
        }

        .mobile-menu-contact h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .mobile-menu-contact p {
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            opacity: 0.8;
        }

        .pricing-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border: 2px solid rgba(59, 130, 246, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
            transition: left 0.5s ease;
        }

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

        .pricing-card:hover {
            background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
            border-color: rgba(59, 130, 246, 0.4);
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
        }

        .service-icon {
            transition: all 0.4s ease;
        }

        .service-icon:hover {
            transform: rotate(360deg) scale(1.1);
        }

        .feedback-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid rgba(59, 130, 246, 0.1);
            transition: all 0.4s ease;
            min-height: 200px;
        }

        .feedback-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
        }

        .star-rating {
            color: #fbbf24;
        }

        .testimonial-slider {
            overflow: hidden;
            position: relative;
        }

        .testimonial-track {
            display: flex;
            animation: slideLeft 30s linear infinite;
        }

        .testimonial-track:hover {
            animation-play-state: paused;
        }

        /* Enhanced Background Elements */
        .bg-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .bg-element-1 {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 5%;
            animation: float 4s ease-in-out infinite, glow 3s ease-in-out infinite alternate;
        }

        .bg-element-2 {
            width: 60px;
            height: 60px;
            top: 20%;
            right: 10%;
            animation: drift 15s ease-in-out infinite, spin-slow 8s linear infinite;
        }

        .bg-element-3 {
            width: 80px;
            height: 80px;
            bottom: 30%;
            left: 15%;
            animation: morph 8s ease-in-out infinite, float-delayed 5s ease-in-out infinite;
        }

        .bg-element-4 {
            width: 40px;
            height: 40px;
            top: 60%;
            right: 20%;
            animation: wiggle 2s ease-in-out infinite, orbit 20s linear infinite;
        }

        .bg-element-5 {
            width: 120px;
            height: 120px;
            bottom: 10%;
            right: 5%;
            animation: float-slow 6s ease-in-out infinite, spin-reverse 10s linear infinite;
        }

        .bg-element-6 {
            width: 30px;
            height: 30px;
            top: 40%;
            left: 30%;
            animation: bounce-slow 2s infinite, glow 4s ease-in-out infinite alternate;
        }

        .bg-element-7 {
            width: 70px;
            height: 70px;
            top: 70%;
            left: 60%;
            animation: drift 12s ease-in-out infinite reverse, morph 6s ease-in-out infinite;
        }

        .bg-element-8 {
            width: 50px;
            height: 50px;
            bottom: 50%;
            right: 40%;
            animation: float 3s ease-in-out infinite, spin-slow 15s linear infinite reverse;
        }

        /* Particle System */
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
        }

        .particle-1 { top: 15%; left: 25%; animation: float 8s ease-in-out infinite; }
        .particle-2 { top: 35%; left: 75%; animation: float 6s ease-in-out infinite 1s; }
        .particle-3 { top: 55%; left: 15%; animation: float 10s ease-in-out infinite 2s; }
        .particle-4 { top: 75%; left: 85%; animation: float 7s ease-in-out infinite 3s; }
        .particle-5 { top: 25%; left: 50%; animation: float 9s ease-in-out infinite 4s; }
        .particle-6 { top: 65%; left: 40%; animation: float 5s ease-in-out infinite 2.5s; }
        .particle-7 { top: 45%; left: 80%; animation: float 11s ease-in-out infinite 1.5s; }
        .particle-8 { top: 85%; left: 20%; animation: float 6.5s ease-in-out infinite 3.5s; }

        /* Business Doodle Art Styles - ENHANCED VISIBILITY */
        .doodle-container {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .doodle {
            position: absolute;
            stroke: currentColor;
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            opacity: 0.15;
        }

        .doodle-float-1 { animation: float 8s ease-in-out infinite; }
        .doodle-float-2 { animation: float 10s ease-in-out infinite 1s; }
        .doodle-float-3 { animation: float 12s ease-in-out infinite 2s; }
        .doodle-float-4 { animation: float 9s ease-in-out infinite 3s; }
        .doodle-float-5 { animation: float 11s ease-in-out infinite 4s; }
        .doodle-float-6 { animation: float 7s ease-in-out infinite 2.5s; }
        .doodle-drift-1 { animation: drift 20s ease-in-out infinite; }
        .doodle-drift-2 { animation: drift 25s ease-in-out infinite 5s; }
        .doodle-spin-1 { animation: spin-slow 15s linear infinite; }
        .doodle-spin-2 { animation: spin-reverse 18s linear infinite; }
        .doodle-wiggle { animation: wiggle 3s ease-in-out infinite; }

        /* Enhanced Pricing Section */
        .pricing-header {
            background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 50%, #06B6D4 100%);
            border-radius: 24px 24px 0 0;
            position: relative;
            overflow: hidden;
        }

        .pricing-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate-in 20s linear infinite;
        }

        .pricing-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .price-value {
            position: relative;
            display: inline-block;
        }

        .price-value::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, currentColor, transparent);
            border-radius: 2px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(59, 130, 246, 0.1);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .feature-list li:hover {
            padding-left: 0.5rem;
            background: rgba(59, 130, 246, 0.02);
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            margin-right: 0.75rem;
            color: #3B82F6;
            flex-shrink: 0;
        }

        .note-box {
            background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
            border-left: 4px solid #F59E0B;
            padding: 1.5rem;
            border-radius: 12px;
            margin-top: 2rem;
            box-shadow: 0 4px 6px rgba(245, 158, 11, 0.1);
        }

        .note-box h3 {
            color: #92400E;
            margin-top: 0;
            margin-bottom: 1rem;
            font-size: 1.25rem;
            font-weight: 700;
        }

        .note-box ul {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }

        .note-box li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: #78350F;
        }

        .note-box li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #F59E0B;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .hero-text {
                font-size: 2.5rem;
                line-height: 1.2;
            }

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

            .bg-element {
                transform: scale(0.7);
            }

            .doodle {
                transform: scale(0.8);
                opacity: 0.12;
            }

            .mobile-menu {
                width: 90%;
            }
        }
