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

        body {
            font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
            overflow-x: hidden;
            background: #f8f9fa;
        }

        /* Enhanced Navbar */
        .navbar {
            background: linear-gradient(135deg, #ffffff 0%, #c2185b 100%);
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .navbar-brand {
            color: #621b1b !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .navbar-brand i {
            font-size: 1.8rem;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        .nav-link:hover {
            color: white !important;
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
            color: white;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

       

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            animation: fadeInDown 0.8s ease;
        }

        .hero-section .lead {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease;
        }

        .btn-hero {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .btn-hero-primary {
            background: white;
            color: #e91e63;
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
            background: #f8f9fa;
            color: #e91e63;
        }

        .btn-hero-secondary {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            backdrop-filter: blur(10px);
            border: 2px solid white;
        }

        .btn-hero-secondary:hover {
            background: white;
            color: #e91e63;
            transform: translateY(-3px);
        }

        /* Features Section */
        .features-section {
            padding: 5rem 0;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #7f8c8d;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
            border-color: #e91e63;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-icon i {
            font-size: 2.5rem;
            color: white;
        }

        .feature-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: #7f8c8d;
            line-height: 1.6;
        }

        /* How It Works Section */
        .how-it-works-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .step-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            margin-bottom: 2rem;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

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

        .step-card h5 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .step-card p {
            color: #7f8c8d;
        }

        /* Language Switcher */
        .language-section {
            padding: 3rem 0;
            background: white;
        }

        .language-switcher {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            padding: 2rem 0;
        }

        .lang-btn {
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border: 2px solid #e0e0e0;
            background: white;
            color: #2c3e50;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 150px;
        }

        .lang-btn:hover {
            border-color: #e91e63;
            color: #e91e63;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
        }

        .lang-btn.active {
            background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
            color: white;
            border-color: #e91e63;
            box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
        }

        /* Template Gallery */
        .template-gallery {
            padding: 5rem 0;
            background: white;
        }

        .template-scroll-container {
            display: flex;
            overflow-x: auto;
            overflow-y: hidden;
            gap: 1.5rem;
            padding: 1rem 0 2rem 0;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }

        .template-scroll-container::-webkit-scrollbar {
            height: 10px;
        }

        .template-scroll-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .template-scroll-container::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
            border-radius: 10px;
        }

        .template-scroll-container::-webkit-scrollbar-thumb:hover {
            background: #c2185b;
        }

        .template-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            flex: 0 0 350px;
            min-width: 350px;
        }

        .template-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .template-image {
            /* position: absolute;
    top: 0;
    left: 0;
    width: 100%; */
    /* height: 100%; */
            width: 100%;
            height: 400px;
            object-fit: contain;
            border-bottom: 4px solid #e91e63;
        }

        .template-info {
            padding: 1.5rem;
            text-align: center;
        }

        .template-info h5 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .btn-select-template {
            margin-top: 1rem;
            padding: 0.75rem 2rem;
            background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-select-template:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
        }

        /* Template Preview Section */
        .template-preview-section {
            padding: 3rem 0 5rem;
            background: #f8f9fa;
        }

        .preview-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 0.5s ease;
        }

        .preview-image-container {
            padding: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #f8f9fa;
        }

        .preview-template-img {
            max-width: 100%;
            max-height: 600px;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
        }

        .preview-actions {
            padding: 2rem;
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            background: white;
        }

        .btn-preview-action {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-use-template {
            background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
            color: white;
        }

        .btn-use-template:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
        }

        .btn-close-preview {
            background: #6c757d;
            color: white;
        }

        .btn-close-preview:hover {
            background: #5a6268;
            transform: translateY(-3px);
        }

        /* Pricing Section */
        .pricing-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
            color: white;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #e91e63 0%, #c2185b 100%);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .price-tag {
            font-size: 3rem;
            font-weight: 700;
            color: #e91e63;
            margin: 1rem 0;
        }

        .price-features {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .price-features li {
            padding: 0.75rem 0;
            color: #2c3e50;
            border-bottom: 1px solid #e0e0e0;
        }

        .price-features li i {
            color: #27ae60;
            margin-right: 0.5rem;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 5rem 0;
            background: white;
        }

        .testimonial-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            font-size: 5rem;
            color: #e91e63;
            opacity: 0.2;
            position: absolute;
            top: -1rem;
            left: 1rem;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
        }

        .testimonial-text {
            font-style: italic;
            color: #555;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .author-info h6 {
            margin: 0;
            color: #2c3e50;
            font-weight: 600;
        }

        .author-info p {
            margin: 0;
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h5 {
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section .lead {
                font-size: 1.1rem;
            }

            .btn-hero {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .feature-card {
                margin-bottom: 1.5rem;
            }

            .template-image {
                height: 300px;
            }

            .template-card {
                flex: 0 0 280px;
                min-width: 280px;
            }

            .preview-template-img {
                max-height: 400px;
            }

            .btn-preview-action {
                width: 100%;
                justify-content: center;
            }

            .price-tag {
                font-size: 2rem;
            }

            .navbar-brand {
                font-size: 1.2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .nav-link {
                text-align: center;
                margin: 0.2rem 0;
            }
        }

        @media (max-width: 480px) {
            .hero-section h1 {
                font-size: 1.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                padding: 0 1rem;
            }

            .btn-hero {
                width: 100%;
            }

            .lang-btn {
                min-width: 120px;
                padding: 0.8rem 1.5rem;
            }

            .template-image {
                height: 250px;
            }

            .template-card {
                flex: 0 0 250px;
                min-width: 250px;
            }

            .preview-template-img {
                max-height: 350px;
            }

            .navbar-brand i {
                font-size: 1.3rem;
            }

            .navbar-brand span {
                font-size: 1rem;
            }
        }

        /* Modal Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.show {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            animation: slideUp 0.3s ease;
        }

        .modal-body {
            padding: 2rem;
        }

        .template-preview-large {
            width: 100%;
            border-radius: 10px;
        }

        .modal-footer {
            padding: 1.5rem 2rem;
            display: flex;
            gap: 1rem;
            border-top: 1px solid #e0e0e0;
        }

        .btn-modal-close,
        .btn-modal-create {
            flex: 1;
            padding: 1rem;
            border-radius: 10px;
            border: none;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-modal-close {
            background: #e0e0e0;
            color: #2c3e50;
        }

        .btn-modal-close:hover {
            background: #d0d0d0;
        }

        .btn-modal-create {
            background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
            color: white;
        }

        .btn-modal-create:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
       .video-responsive {
    width: 100%;
    max-width: 1200px;       /* Controls desktop size */
    margin: 0 auto 48px;
    aspect-ratio: 16 / 9;
}

.video-responsive iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
    
    </style>