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

        :root {
            --saffron: #FF9933;
            --orange: #FF6B35;
            --golden: #FFD700;
            --sun-yellow: #FFC107;
            --water-blue: #1E88E5;
            --leaf-green: #4CAF50;
            --white: #FFFFFF;
            --dark-bg: #1a1a2e;
            --dark-card: #16213e;
            --dark-text: #eee;
            --light-bg: #FFF8F3;
            --light-text: #333;
            --shadow: rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            line-height: 1.6;
            background: var(--light-bg);
            color: var(--light-text);
            transition: all 0.3s ease;
            overflow-x: hidden;
        }

        body.dark-mode {
            background: var(--dark-bg);
            color: var(--dark-text);
        }

        /* Header */
        header {
            background: linear-gradient(135deg, var(--saffron), var(--orange));
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px var(--shadow);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sun-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--sun-yellow);
            border-radius: 50%;
            position: relative;
            box-shadow: 0 0 20px var(--golden);
            animation: rotate 10s linear infinite;
        }

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

            to {
                transform: rotate(360deg);
            }
        }

        .theme-toggle {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s;
        }

        .theme-toggle:hover {
            background: white;
            color: var(--orange);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(255, 153, 51, 0.1), rgba(255, 107, 53, 0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FF9933" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,138.7C672,128,768,128,864,138.7C960,149,1056,171,1152,165.3C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            padding: 2rem 20px;
        }

        body.dark-mode .hero {
            background: linear-gradient(rgba(30, 136, 229, 0.1), rgba(76, 175, 80, 0.1)),
                var(--dark-bg);
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--saffron), var(--orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero .hindi {
            font-size: clamp(1.8rem, 4vw, 3rem);
            color: var(--orange);
            margin-bottom: 1rem;
        }

        body.dark-mode .hero .hindi {
            color: var(--sun-yellow);
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--light-text);
        }

        body.dark-mode .hero-description {
            color: var(--dark-text);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, var(--saffron), var(--orange));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        /* Features Section */
        .features {
            padding: 4rem 20px;
            background: white;
            position: relative;
            z-index: 999;
        }

        body.dark-mode .features {
            background: var(--dark-card);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--orange);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.8rem;
            color: var(--saffron);
            margin-bottom: 3rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 5px 15px var(--shadow);
        }

        body.dark-mode .feature-card {
            background: var(--dark-bg);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, var(--saffron), var(--orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--orange);
        }

        .feature-card .hindi-title {
            font-size: 1.2rem;
            color: var(--saffron);
            margin-bottom: 1rem;
        }

        /* About Section */
        .about {
            padding: 4rem 20px;
            background: linear-gradient(135deg, rgba(255, 153, 51, 0.05), rgba(255, 107, 53, 0.05));
        }

        body.dark-mode .about {
            background: var(--dark-bg);
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow);
        }

        body.dark-mode .about-card {
            background: var(--dark-card);
        }

        /* Process Section */
        .process {
            padding: 4rem 20px;
            background: white;
        }

        body.dark-mode .process {
            background: var(--dark-card);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--saffron), var(--orange));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        /* Testimonial Section */
        .testimonials {
            padding: 4rem 20px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 193, 7, 0.1));
        }

        body.dark-mode .testimonials {
            background: var(--dark-bg);
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 1rem;
            box-shadow: 0 5px 15px var(--shadow);
            max-width: 600px;
            margin: 2rem auto;
        }

        body.dark-mode .testimonial-card {
            background: var(--dark-card);
        }

        .quote {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .customer-name {
            color: var(--orange);
            font-weight: bold;
        }

        /* Special Offer Banner */
        .offer-banner {
            background: linear-gradient(135deg, var(--golden), var(--sun-yellow));
            color: var(--dark-bg);
            padding: 3rem 20px;
            text-align: center;
        }

        .offer-text {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .timer {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .time-unit {
            background: white;
            padding: 1rem;
            border-radius: 10px;
            min-width: 80px;
        }

        .time-value {
            font-size: 2rem;
            font-weight: bold;
            color: var(--orange);
        }

        .time-label {
            font-size: 0.9rem;
            color: var(--light-text);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--saffron), var(--orange));
            color: white;
            padding: 3rem 20px 1rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section {
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: white;
            color: var(--orange);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .hero {
                min-height: 70vh;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .timer {
                gap: 1rem;
            }

            .time-unit {
                min-width: 60px;
                padding: 0.5rem;
            }

            .time-value {
                font-size: 1.5rem;
            }
        }

        /* Decorative Elements */
        .mandala {
            position: absolute;
            opacity: 0.05;
            animation: rotate 20s linear infinite;
        }

        .mandala-1 {
            top: 10%;
            left: -5%;
            width: 200px;
            height: 200px;
        }

        .mandala-2 {
            bottom: 10%;
            right: -5%;
            width: 250px;
            height: 250px;
        }

        /* Floating Animation */
        .float {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }
    


.powered-by {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--saffron);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid var(--saffron);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.powered-by:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 255, 0.1);
}

.powered-by .logo-icon {
    width: 20px;
    height: 20px;
    background: var(linear-gradient(135deg, #0000FF 0%, #A855F7 70%, #00A8D4 100%));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}