
        :root {
            --primary: #4f46e5;
            --primary-light: #6366f1;
            --primary-dark: #4338ca;
            --secondary: #10b981;
            --secondary-light: #34d399;
            --dark: #1e293b;
            --darker: #0f172a;
            --light: #f8fafc;
            --lighter: #ffffff;
            --gray: #94a3b8;
            --gray-light: #e2e8f0;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: var(--lighter);
            box-shadow: var(--shadow-sm);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            box-shadow: var(--shadow);
            padding: 10px 0;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            
        }
        
        .logo-icon {
            font-size: 28px;
            margin-right: 8px;
        }
        
        .logo span {
            color: var(--secondary);
        
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .cta-button {
            background-color: var(--primary);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow);
        }
        
        .cta-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .cta-button i {
            font-size: 14px;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            padding: 180px 0 100px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0) 70%);
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 52px;
            margin-bottom: 20px;
            color: var(--darker);
            line-height: 1.2;
            animation: fadeInUp 0.8s ease;
        }
        
        .hero p {
            font-size: 20px;
            color: var(--dark);
            max-width: 700px;
            margin: 0 auto 40px;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            animation: fadeInUp 0.8s ease 0.4s forwards;
            opacity: 0;
        }
        
        .secondary-button {
            background-color: white;
            color: var(--primary);
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            border: 2px solid var(--primary);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow);
        }
        
        .secondary-button:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
   .hero-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateX(10deg);
    animation: float 6s ease-in-out infinite, fadeIn 1s ease 0.6s forwards;
    opacity: 0;
    border: 8px solid white;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    will-change: transform; /* Optimizes animations */
    overflow: hidden; /* Prevents content from overflowing during scale */
}

.hero-image:hover {
    transform: perspective(1000px) rotateX(10deg) scale(1.05);
    z-index: 10; /* Brings it above other elements during hover */
}

/* Add this to prevent layout shift */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: auto; /* Or set a fixed height if needed */
    overflow: visible;
}

        
        /* Features Section */
        .features {
            padding: 100px 0;
            background-color: white;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 40px;
            color: var(--darker);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 18px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: var(--lighter);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: var(--shadow);
            border: 1px solid var(--gray-light);
            opacity: 0;
            transform: translateY(20px);
        }
        
        .feature-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }
        
        .feature-icon {
            font-size: 48px;
            margin-bottom: 25px;
            color: var(--primary);
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 80px;
            height: 80px;
            background-color: rgba(79, 70, 229, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            background-color: var(--primary);
            color: white;
            transform: scale(1.1);
        }
        
        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--darker);
        }
        
        .feature-card p {
            color: var(--gray);
            font-size: 16px;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 100px 0;
            background-color: #f8fafc;
            position: relative;
        }
        
        .how-it-works::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.2;
            z-index: 0;
        }
        
        .how-it-works .container {
            position: relative;
            z-index: 1;
        }
        
        .steps {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .steps::before {
            content: '';
            position: absolute;
            top: 0;
            left: 20px;
            height: 100%;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            border-radius: 2px;
            z-index: 0;
        }
        
        .step {
            display: flex;
            gap: 30px;
            align-items: flex-start;
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.5s ease;
        }
        
        .step.animated {
            opacity: 1;
            transform: translateX(0);
        }
        
        .step:nth-child(even) {
            transform: translateX(20px);
        }
        
        .step:nth-child(even).animated {
            transform: translateX(0);
        }
        
        .step-number {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            font-weight: 700;
            font-size: 20px;
            box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
        }
        
        .step-content h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--darker);
        }
        
        .step-content p {
            color: var(--gray);
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background-color: white;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: var(--lighter);
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .testimonial-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            color: var(--dark);
            position: relative;
        }
        
        .testimonial-text::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: -15px;
            font-size: 60px;
            color: var(--primary-light);
            opacity: 0.2;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-weight: 600;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .author-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--darker);
        }
        
        .author-info p {
            color: var(--gray);
            font-size: 14px;
        }
        
        .rating {
            color: #fbbf24;
            margin-top: 5px;
            font-size: 14px;
        }
        
        /* Pricing */
        .pricing {
            padding: 100px 0;
            background-color: #f8fafc;
        }
        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .pricing-card {
            background-color: white;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .pricing-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: translateY(-10px);
        }
        
        .pricing-card.popular:hover {
            transform: translateY(-15px);
        }
        
        .popular-tag {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
        }
        
        .pricing-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--darker);
        }
        
        .price {
            font-size: 48px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }
        
        .price span {
            font-size: 16px;
            font-weight: 400;
            color: var(--gray);
            margin-top: 10px;
        }
        
        .pricing-features {
            margin-bottom: 30px;
            text-align: left;
        }
        
        .pricing-features li {
            list-style: none;
            margin-bottom: 12px;
            color: var(--gray);
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        
        .pricing-features li::before {
            content: '✓';
            color: var(--secondary);
            font-weight: bold;
        }
        
        /* FAQ Section */
        .faq {
            
            border-radius: 12px;
           
            overflow: hidden;
            margin: 50px 0;
        }
        
        .faq-header {
            padding: 30px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            text-align: center;
        }
        
        .faq-header h2 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .faq-header p {
            opacity: 0.9;
            font-size: 16px;
        }
        
        .faq-container {
            padding: 0 30px;
        }
        
        .faq-item {
            border-bottom: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(248, 250, 252, 0.5);
        }
        
        .faq-question h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--darker);
            flex: 1;
            padding-right: 20px;
        }
        
        .faq-question .icon {
            width: 24px;
            height: 24px;
            background-color: var(--primary-light);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .faq-question.active .icon {
            background-color: var(--secondary);
            transform: rotate(45deg);
        }
        
        .faq-answer {
            color: var(--gray);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            font-size: 15px;
            line-height: 1.7;
        }
        
        .faq-answer-content {
            padding: 0 0 20px;
        }
        
        .faq-answer.active {
            max-height: 500px; /* Adjust based on your longest answer */
        }

         /* Responsive */
        @media (max-width: 768px) {
            .faq-header {
                padding: 25px 20px;
            }
            
            .faq-container {
                padding: 0 20px;
            }
            
            .faq-question h3 {
                font-size: 16px;
            }
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            z-index: 0;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-section h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            max-width: 600px;
            margin: 0 auto 30px;
            opacity: 0.9;
            font-size: 18px;
        }
        
        .cta-button.white {
            background-color: white;
            color: var(--primary);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .cta-button.white:hover {
            background-color: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        /* Footer */
        footer {
            background-color: var(--darker);
            color: white;
            padding: 80px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: white;
            position: relative;
            display: inline-block;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            bottom: -8px;
            left: 0;
            border-radius: 2px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: var(--gray-light);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-column ul li a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-about p {
            color: var(--gray-light);
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: white;
            font-size: 20px;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: var(--gray-light);
            font-size: 14px;
        }
        
        .footer-bottom a {
            color: var(--gray-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: var(--secondary-light);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0% { transform: perspective(1000px) rotateX(10deg) translateY(0); }
            50% { transform: perspective(1000px) rotateX(10deg) translateY(-20px); }
            100% { transform: perspective(1000px) rotateX(10deg) translateY(0); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 42px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 36px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: var(--shadow-md);
                transform: translateY(-150%);
                transition: transform 0.4s ease;
                z-index: 999;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links a {
                padding: 10px 0;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .steps::before {
                left: 25px;
            }
            
            .step {
                flex-direction: column;
                gap: 15px;
            }
            
            .step-number {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 30px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .cta-section h2 {
                font-size: 32px;
            }
            
            .price {
                font-size: 36px;
            }
        }