        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background: #ffffff !important;
            color: #212529;
            line-height: 1.6;
            overflow-x: hidden;
            /* padding-top: 90px; */
        }

        /* Animated Background - WORKING */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.05;
            pointer-events: none;
        }

        .bg-animation::before,
        .bg-animation::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            animation: floatBg 20s infinite ease-in-out;
        }

        .bg-animation::before {
            width: 600px;
            height: 600px;
            background: #3E89EC;
            top: -200px;
            left: -200px;
        }

        .bg-animation::after {
            width: 800px;
            height: 800px;
            background: #2C6FCE;
            bottom: -300px;
            right: -300px;
            animation-delay: 5s;
        }

        @keyframes floatBg {
            0%, 100% { 
                transform: translate(0, 0) scale(1); 
            }
            33% { 
                transform: translate(100px, -100px) scale(1.1); 
            }
            66% { 
                transform: translate(-50px, 100px) scale(0.9); 
            }
        }

        /* Navigation */
        .sazs-header {
            background: white;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .sazs-header-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 10px 20px;
        }

        .sazs-header-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .sazs-brand-image {
            width: 150px;
            height: 70px;
        }

        .sazs-menu-list {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .sazs-menu-link {
            color: rgba(0, 0, 0, 0.8);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
            transition: color 0.3s;
        }

        .sazs-menu-link:hover {
            color: #3E89EC;
        }

        .sazs-button {
            padding: 0.65rem 1.5rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid rgba(0, 0, 0, 0.2);
            background: transparent;
            color: rgba(0, 0, 0, 0.8);
            transition: all 0.3s;
        }

        .sazs-button:hover {
            background: rgba(62, 137, 236, 0.1);
            border-color: #3E89EC;
            color: #3E89EC;
        }

        /* Hero Section - ANIMATED */
        .hero {
            position: relative;
            padding: 8rem 5% 6rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(62, 137, 236, 0.05) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(44, 111, 206, 0.05) 100%);
            background-size: 200% 200%;
            animation: gradientShift 15s ease infinite;
            overflow: hidden;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(62, 137, 236, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(44, 111, 206, 0.08) 0%, transparent 50%);
            z-index: -1;
            animation: bgPulse 10s ease infinite;
        }

        @keyframes bgPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(62, 137, 236, 0.03) 2px, rgba(62, 137, 236, 0.03) 4px),
                repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(62, 137, 236, 0.03) 2px, rgba(62, 137, 236, 0.03) 4px);
            background-size: 50px 50px;
            opacity: 0.5;
            z-index: -1;
        }

        /* Floating Shapes - ANIMATED */
        /* .hero-decorative-elements {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #3E89EC, #2C6FCE);
            top: -100px;
            right: 10%;
            animation: float1 20s ease-in-out infinite;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #2C6FCE, #3E89EC);
            bottom: -50px;
            left: 5%;
            animation: float2 15s ease-in-out infinite;
        }

        .shape-3 {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #3E89EC, rgba(62, 137, 236, 0.5));
            top: 50%;
            left: 50%;
            animation: float3 18s ease-in-out infinite;
        }

        @keyframes float1 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        @keyframes float2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(20px, -40px) scale(1.1); }
        }

        @keyframes float3 {
            0%, 100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
            33% { transform: translate(-45%, -55%) rotate(120deg) scale(0.9); }
            66% { transform: translate(-55%, -45%) rotate(240deg) scale(1.1); }
        }

        .hero > * {
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(62, 137, 236, 0.1);
            border: 1px solid #3E89EC;
            border-radius: 50px;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #212529, #3E89EC);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: #666;
            max-width: 800px;
            margin: 0 auto 3rem;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, #3E89EC, #2C6FCE);
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            box-shadow: 0 10px 50px rgba(62, 137, 236, 0.3);
            animation: fadeInUp 0.8s ease-out 0.8s both, ctaPulse 2s ease-in-out 1s infinite;
            transition: all 0.3s;
        }

        @keyframes ctaPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .hero-cta:hover {
            transform: translateY(-3px) scale(1.08);
            box-shadow: 0 20px 70px rgba(62, 137, 236, 0.6);
            animation: ctaPulse 0.5s ease-in-out;
        } */

        /* Features - ANIMATED ON SCROLL */
        .features {
            padding: 6rem 5%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            background: rgba(62, 137, 236, 0.1);
            border: 1px solid #3E89EC;
            border-radius: 50px;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: #3E89EC;
            box-shadow: 0 20px 50px rgba(62, 137, 236, 0.15);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            /* background: rgba(62, 137, 236, 0.1); */
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }

        .feature-card:hover .feature-icon {
            /* background: #3E89EC; */
            transform: rotate(5deg) scale(1.1);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .feature-card p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Scroll Fade Animation - WORKING */
        .scroll-fade {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .scroll-fade.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered animations */
        .features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
        .features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
        .features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
        .features-grid .feature-card:nth-child(4) { transition-delay: 0.4s; }
        .features-grid .feature-card:nth-child(5) { transition-delay: 0.5s; }
        .features-grid .feature-card:nth-child(6) { transition-delay: 0.6s; }
        .features-grid .feature-card:nth-child(7) { transition-delay: 0.7s; }
        .features-grid .feature-card:nth-child(8) { transition-delay: 0.8s; }

        .feature-icon {
    width: 48px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 16px;
}

/* Individual icons using nth-child */
.features-grid .feature-card:nth-child(1) .feature-icon {
    background-image: url("../assets/contentImages/oneclickblu.webp") ;
}

.features-grid .feature-card:nth-child(2) .feature-icon {
    background-image: url("../assets/contentImages/GSTblu.webp");
}

.features-grid .feature-card:nth-child(3) .feature-icon {
    background-image: url("../assets/contentImages/realtimeblu.webp");
}

.features-grid .feature-card:nth-child(4) .feature-icon {
    background-image: url("../assets/contentImages/ewayblu.webp");
}

.features-grid .feature-card:nth-child(5) .feature-icon {
    background-image: url("../assets/contentImages/creditblu.webp");
}

.features-grid .feature-card:nth-child(6) .feature-icon {
    background-image: url("../assets/contentImages/auditblu.webp");
}

.features-grid .feature-card:nth-child(7) .feature-icon {
    background-image: url("../assets/contentImages/weightblu.webp");
}

.features-grid .feature-card:nth-child(8) .feature-icon {
    background-image: url("../assets/contentImages/Seamlessblu.webp");
}

        /* Benefits */
        .benefits {
            padding: 6rem 5%;
            /* background: linear-gradient(180deg, transparent, rgba(62, 137, 236, 0.03)); */

    background: url("/src/assets/contentImages/einvoice5.webp") center / cover no-repeat;
    /* min-height: 100vh; */
        background-size: cover; /* change here */

    
        }

        .benefits-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .benefits-content h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 2rem;
        }

        .benefits-list {
            list-style: none;
            display: grid;
            gap: 1.5rem;
        }

        .benefits-list li {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .benefits-list li:hover {
            border-color: #3E89EC;
            transform: translateX(10px);
        }

        .benefit-check {
            min-width: 28px;
            height: 28px;
            background: #3E89EC;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }

        .benefits-visual {
            position: relative;
            height: 500px;
        }

        .visual-card {
            position: absolute;
            background: white;
            border: 2px solid #3E89EC;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(62, 137, 236, 0.2);
            animation: floatVisual 4s ease-in-out infinite;
        }

        @keyframes floatVisual {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .visual-card:nth-child(1) { top: 0; left: 0; animation-delay: 0s; }
        .visual-card:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 1.3s; }
        .visual-card:nth-child(3) { bottom: 0; left: 20%; animation-delay: 2.6s; }

        .visual-card-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .visual-card-text {
            font-weight: 700;
        }

        /* CTA */
        .cta-section {
            padding: 8rem 5%;
            text-align: center;
        }

        .cta-box {
            max-width: 1300px;
            margin: 0 auto;
            padding: 4rem 3rem;
            background: linear-gradient(135deg, #2C6FCE, #3E89EC);
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(62, 137, 236, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotateGlow 20s linear infinite;
        }

        @keyframes rotateGlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .cta-box h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            z-index: 1;
        }

        .cta-box p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.3rem 3.5rem;
            background: white;
            color: #3E89EC;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            border-radius: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        footer {
            background: #0b0d1f;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            /* body { padding-top: 70px; } */
            .hero { padding: 5rem 5% 4rem; }
            .benefits-container { grid-template-columns: 1fr; }
            .benefits-visual { height: 350px; }
        }
