* { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: 'Inter', sans-serif; 
            background: #ffffff; 
            color: #334155; 
            line-height: 1.7; 
            overflow-x: hidden;
        }
        
        .container { width: min(1200px, 92%); margin: auto; }
        
        h1, h2, h3 { 
            color: #0f172a; 
            font-weight: 700; 
            letter-spacing: -0.02em; 
        }

        /* Enhanced Reveal Animations */
        .reveal { 
            opacity: 0; 
            transform: translateY(40px) scale(0.98); 
            transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1); 
        }
        .reveal.active { 
            opacity: 1; 
            transform: translateY(0) scale(1); 
        }

        /* Section Global Spacing */
        section { padding: 100px 0; }
        .section-title { text-align: center; font-size: 38px; margin-bottom: 50px; position: relative; }

        /* 1. Hero Section */
        .hero { 
            background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
            padding: 140px 0 100px 0; 
            display: flex; 
            align-items: center; 
            gap: 60px; 
        }
        .hero-text { flex: 1.2; }
        .hero-text h1 { font-size: 58px; line-height: 1.15; margin-bottom: 24px; }
        .hero-text h1 span { color: #4285f4; }
        .hero-text p { font-size: 18px; color: #475569; margin-bottom: 30px; max-width: 600px; }
        
        .hero-img { flex: 0.8; text-align: center; }
        .hero-img img { 
            width: 100%; 
            max-width: 480px; 
            border-radius: 24px; 
            box-shadow: 0 20px 40px -15px rgba(0,0,0,0.08); 
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        /* Continuous hovering pulse effect */
        .hero-img img:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 30px 60px -20px rgba(66, 133, 244, 0.2);
        }

        /* 2. Value Grid */
        .value-section { background: #f8fafc; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
        .value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .box { 
            padding: 40px 30px; 
            background: #ffffff; 
            border-radius: 16px; 
            border: 1px solid #e2e8f0; 
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }
        .box:hover {
            transform: translateY(-5px);
            border-color: #4285f4;
            box-shadow: 0 15px 30px -10px rgba(66, 133, 244, 0.1);
        }
        .box h3 { color: #34a853; margin-bottom: 15px; font-size: 22px; }
        .box p { color: #475569; font-size: 15px; }

        /* Business Advantages Matrix */
        .advantage-section { background: #ffffff; }
        .adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
        .adv-card { padding: 30px; background: #f8fafc; border-radius: 14px; border-left: 4px solid #4285f4; }
        .adv-card h4 { font-size: 18px; color: #0f172a; margin-bottom: 8px; }
        .adv-card p { font-size: 14px; color: #64748b; }

        /* 3. Workflow Section */
        .workflow { background: #f8fafc; }
        .workflow-container { max-width: 800px; margin: auto; }
        .step { 
            margin-bottom: 24px; 
            padding: 25px 30px; 
            border-left: 4px solid #fbbc05; 
            background: #ffffff; 
            border-radius: 0 16px 16px 0;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
            transition: transform 0.3s ease;
        }
        .step:hover { transform: translateX(8px); }
        .step h3 { font-size: 20px; color: #0f172a; margin-bottom: 6px; }

        /* 4. Performance Stats Section */
        .stats { text-align: center; background: #ffffff; }
        .stats h2 { font-size: 36px; max-width: 700px; margin: 0 auto 20px auto; }
        .stats p { font-size: 18px; color: #475569; max-width: 600px; margin: auto; }

        /* Interactive FAQ Accordion Area */
        .faq-section { background: #f8fafc; border-top: 1px solid #e2e8f0; }
        .faq-box { max-width: 800px; margin: auto; display: flex; flex-direction: column; gap: 15px; }
        .faq-item { 
            background: #ffffff; 
            border-radius: 12px; 
            border: 1px solid #e2e8f0; 
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-header {
            padding: 22px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
        }
        .faq-header h4 { font-size: 16px; color: #0f172a; display: flex; align-items: center; gap: 12px; margin: 0; }
        .faq-header h4 i { color: #4285f4; font-size: 16px; }
        .faq-icon {
            font-size: 14px;
            color: #64748b;
            transition: transform 0.3s ease;
        }
        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
            background: #ffffff;
        }
        .faq-body p {
            font-size: 14px;
            color: #475569;
            padding: 0 25px 22px 53px;
            line-height: 1.6;
        }
        /* Active State Classes for JavaScript Accordion */
        .faq-item.active-faq {
            border-color: #4285f4;
            box-shadow: 0 10px 20px -10px rgba(66, 133, 244, 0.1);
        }
        .faq-item.active-faq .faq-icon {
            transform: rotate(180deg);
            color: #4285f4;
        }
        .faq-item.active-faq .faq-body {
            max-height: 1000px;
            transition: max-height 1s cubic-bezier(1, 0, 1, 0);
        }

        /* 5. Bottom Modern CTA */
        .cta-section { background: #ffffff; text-align: center; }
        .cta-container {
            background: linear-gradient(135deg, #e0e7ff 0%, #e0f2fe 100%);
            padding: 60px 40px;
            border-radius: 24px;
            max-width: 1000px;
            margin: auto;
            box-shadow: 0 12px 32px -12px rgba(66, 133, 244, 0.15);
        }
        .cta-container h2 { font-size: 36px; margin-bottom: 16px; }
        .cta-container p { font-size: 16px; color: #334155; max-width: 700px; margin: 0 auto 35px auto; }
        
        /* Buttons Padding & Shape Systems */
        .btn-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
        .btn { 
            padding: 16px 38px; 
            border: none; 
            cursor: pointer; 
            font-weight: 700; 
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
            border-radius: 14px; 
            font-size: 16px; 
        }
        .btn-blue { background: #4285f4; color: white; box-shadow: 0 4px 14px rgba(66, 133, 244, 0.25); }
        .btn-blue:hover { background: #2b6cb0; transform: translateY(-4px); box-shadow: 0 6px 20px rgba(66, 133, 244, 0.35); }
        
        .btn-outline { background: #ffffff; color: #4285f4; border: 1px solid #cbd5e1; }
        .btn-outline:hover { background: #f1f5f9; transform: translateY(-4px); border-color: #94a3b8; }

        /* ==========================================
           RESPONSIVE RE-ADJUSTMENTS
        ========================================== */
        @media (max-width: 992px) {
            .hero { flex-direction: column; text-align: center; gap: 40px; padding: 120px 0 70px 0; }
            .hero-text p { margin: 0 auto 30px auto; }
            .hero-img { order: -1; }
            .section-title { font-size: 32px; }
            .hero .container { 
                flex-direction: column !important; 
                text-align: center; 
                gap: 40px; 
            }
            .hero-text p { margin: 0 auto 30px auto; }
            
            /* Order 1 dene se image text ke NICHE chali jayegi */
            .hero-img { order: 1 !important; } 
            
            .section-title { font-size: 32px; }
        }
        
        @media (max-width: 768px) {
            ssection { padding: 70px 0; }
            .hero-text h1 { font-size: 38px; }
            .cta-container { padding: 40px 20px; border-radius: 16px; }
            .cta-container h2 { font-size: 26px; }
            .btn-group { flex-direction: column; gap: 12px; }
            .btn { width: 100%; text-align: center; }
            .faq-header { padding: 18px 20px; }
            .faq-body p { padding: 0 20px 18px 45px; }
        }

        .Banner {
        margin-bottom: 0px;
        position: relative;
        background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.85)), url('imgs/banner.avif') no-repeat center center/cover;
        height: 350px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
    }

    .hero-content h1 {
        font-size: 42px;
        font-weight: 800;
        letter-spacing: 1px;
        margin-bottom: 15px;
        text-transform: uppercase;
        color: white;
    }

    .hero-content h2{
        font-size: 28px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 0px;
        color: #cbd5e1;
        font-style: italic;
    }
