-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathindex.html
More file actions
1328 lines (1153 loc) · 49.1 KB
/
index.html
File metadata and controls
1328 lines (1153 loc) · 49.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="google-adsense-account" content="ca-pub-9053181808447685">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-B4RY8JS35D"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-B4RY8JS35D');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary SEO metadata -->
<title>Mail Karo - AI Email Assistant | Generate Professional Emails Instantly</title>
<meta name="google-site-verification" content="yjkjNb9z2OH2U201BKAgQqu42l1u7Rs79sVYIMmwn5s" />
<!-- Primary meta description -->
<meta name="description"
content="Mail Karo is an AI-powered email assistant that helps you write professional emails instantly. Generate smart, clean and effective emails for any purpose within seconds.">
<!-- SEO keywords -->
<meta name="keywords"
content="Mail Karo, AI Email Generator, Email Assistant, AI Writing Tool, Professional Emails, Auto Email Generator, MailKaro">
<!-- Author -->
<meta name="author" content="Mail Karo Team">
<!-- Robots -->
<meta name="robots" content="index, follow">
<!-- Canonical URL -->
<link rel="canonical" href="https://mail-karo.netlify.app/">
<!-- Favicons -->
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="shortcut icon" href="/favicon.ico">
<!-- Open Graph (Facebook, LinkedIn Preview) -->
<meta property="og:title" content="Mail Karo - AI Email Assistant">
<meta property="og:description"
content="Generate professional emails instantly using Mail Karo — your personal AI-powered email assistant.">
<meta property="og:image" content="https://mail-karo.netlify.app/All Images/Logo.png">
<meta property="og:url" content="https://mail-karo.netlify.app/">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Mail Karo">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Mail Karo - AI Email Assistant">
<meta name="twitter:description" content="Write better emails instantly with AI. Free, Fast, Simple.">
<meta name="twitter:image" content="https://mail-karo.netlify.app/All Images/Logo.png">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Poppins:wght@400;600&display=swap"
rel="stylesheet">
<!-- Font Awesome CDN for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
<script>
document.documentElement.dataset.theme = localStorage.getItem("theme") || "dark";
</script>
<!-- Styles -->
<link rel="stylesheet" href="Homepage CSS/navbar.css">
<link rel="stylesheet" href="Homepage CSS/hero.css">
<link rel="stylesheet" href="Homepage CSS/prompt.css">
<link rel="stylesheet" href="Homepage CSS/footer.css">
<link rel="stylesheet" href="Homepage CSS/scroll.css">
<link rel="stylesheet" href="Homepage CSS/upcoming-features.css">
<link rel="stylesheet" href="Homepage CSS/email-pdf.css">
<link rel="stylesheet" href="Homepage CSS/faq.css">
<link rel="stylesheet" href="Homepage CSS/current-features.css">
<link rel="stylesheet" href="Homepage CSS/testimonial.css">
<link rel="stylesheet" href="Homepage CSS/Banner1.css">
<link rel="stylesheet" href="Homepage CSS/Banner2.css">
<link rel="stylesheet" href="Homepage CSS/quality-checker.css">
<link rel="stylesheet" href="Homepage CSS/our-services.css">
<link rel="stylesheet" href="Homepage CSS/price.css">
<link rel="stylesheet" href="Homepage CSS/blog.css">
<link rel="stylesheet" href="Homepage CSS/story.css">
<link rel="stylesheet" href="Homepage CSS/chatbot.css">
<!-- Mail Karo — Full SEO Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "SoftwareApplication",
"name": "Mail Karo",
"operatingSystem": "Web",
"applicationCategory": "ProductivityApplication",
"applicationSubCategory": "AI Email Generator",
"description": "Mail Karo is an AI-powered email assistant that helps users generate professional emails instantly using advanced AI technology.",
"image": "https://mail-karo.netlify.app/All Images/Logo.png",
"url": "https://mail-karo.netlify.app/",
"creator": {
"@type": "Organization",
"name": "Mail Karo"
},
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "INR",
"availability": "https://schema.org/InStock"
}
},
{
"@type": "Organization",
"name": "Mail Karo",
"url": "https://mail-karo.netlify.app/",
"logo": "https://mail-karo.netlify.app/All Images/Logo.png",
"sameAs": [
"https://www.linkedin.com",
"https://twitter.com"
]
},
{
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://mail-karo.netlify.app/"
},
{
"@type": "ListItem",
"position": 2,
"name": "AI Email Generator",
"item": "https://mail-karo.netlify.app/#prompt"
}
]
}
]
}
</script>
</head>
<body>
<!-- Navbar section -->
<header class="navbar">
<div class="nav-container">
<div class="logo-area">
<img src="All Images/Logo.png" alt="Mail Karo Logo" class="logo" />
<span class="brand-name">Mail Karo</span>
</div>
<button class="menu-btn" id="menu-btn" aria-label="Toggle Menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</button>
<nav class="nav-links" id="nav-links">
<ul>
<li><a class="nav-item" href="All-pages-html/about.html">About</a></li>
<li><a class="nav-item" href="All-pages-html/privacyPolicy.html">Privacy Policy</a></li>
<li><a class="nav-item" href="All-pages-html/terms.html">Terms Of Service</a></li>
<li><a id="contact-us-btn" class="nav-item" href="contactUs.html">Contact Us</a></li>
</ul>
</nav>
<!-- RIGHT SIDE: DARK MODE + LOGIN / PROFILE -->
<div class="nav-actions">
<!-- Theme Toggle Button -->
<button class="theme-toggle" id="theme-toggle" aria-label="Toggle Theme">
<svg class="sun-and-moon" aria-hidden="true" width="24" height="24" viewBox="0 0 24 24">
<circle class="sun" cx="12" cy="12" r="5" fill="currentColor" />
<g class="sun-beams" stroke="currentColor">
<line x1="12" y1="1" x2="12" y2="3" />
<line x1="12" y1="21" x2="12" y2="23" />
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64" />
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78" />
<line x1="1" y1="12" x2="3" y2="12" />
<line x1="21" y1="12" x2="23" y2="12" />
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36" />
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22" />
</g>
<mask id="moon-mask">
<rect x="0" y="0" width="100%" height="100%" fill="white" />
<circle cx="16" cy="10" r="5.5" fill="black" />
</mask>
<circle class="moon" cx="12" cy="12" r="5" mask="url(#moon-mask)" fill="currentColor" />
</svg>
</button>
<!-- 🔥 Login Button (visible BEFORE login) -->
<button id="loginBtn" class="login-btn">Login with Google</button>
<!-- 🟢 Profile Image (visible AFTER login) -->
<img id="userProfileImg" class="profile-img hidden" src="" alt="Profile" />
<!-- Profile Dropdown -->
<div id="userDropdown" class="dropdown hidden">
<p id="userName" class="dropdown-name"></p>
<button id="logoutBtn" class="dropdown-item">Logout</button>
</div>
</div>
</div>
</header>
<!-- Call to action section -->
<!-- Global Unified Background Wrapper Start -->
<div class="hero-wrapper">
<!-- Testimonials section -->
<section class="hero" id="home">
<div class="hero-container">
<div class="hero-content">
<!-- TYPEWRITER ANIMATION TARGET -->
<h1 class="hero-title">
<span id="typewriter-text"></span>
</h1>
<p class="hero-subtitle">
Experience the power of <strong>AI-driven email writing</strong>.<br>
Save time, sound professional, and impress your readers — instantly.
<br><br>
✨ Generate emails in seconds<br>
🚀 100% free, fast & reliable<br>
🔐 Your content stays private
</p>
<a href="#prompt" class="hero-btn">Get Started</a>
</div>
<div class="hero-image">
<img class="mailkaro-logo" src="All Images/Transparent_Logo.png" alt="Mail Karo Logo" />
</div>
</div>
</section>
<!-- ✅ Hero Section End -->
<section class="mk-hero">
<div class="mk-hero-content">
<!-- LEFT: IMAGE -->
<div class="mk-hero-image">
<img src="All Images/b1-removebg-preview.png" alt="Mail Karo Secure Email">
</div>
<!-- RIGHT: TEXT -->
<div class="mk-hero-text">
<h1>You’re in safe hands.</h1>
<p>
Mail Karo ensures your emails are fully secure and private.
Your content never gets stored — everything stays encrypted.
</p>
<div class="mk-badges">
<span>Privacy</span>
<span>Fast</span>
<span>AI Powered</span>
</div>
<a href="#prompt" class="mk-btn">Use AI Email Generator →</a>
</div>
</div>
</section>
<section class="mk-pdf-hero">
<div class="mk-pdf-wrapper">
<!-- LEFT: TEXT -->
<div class="mk-pdf-text">
<h1>Bring instant PDF creation to Mail Karo.</h1>
<p>
Export your emails, notes, and drafts as clean, fast,
<strong>ready-to-share PDFs.</strong>
All inside your Mail Karo workspace.
</p>
<a href="#mk-instant-pdf" class="mk-btn mk-pdf-btn">
Download PDF Add-On →
</a>
</div>
<!-- RIGHT: IMAGE -->
<div class="mk-pdf-image">
<img src="All Images/b2-removebg-preview.png" alt="PDF Generator">
</div>
</div>
</section>
</div>
<!-- ✅ Global Unified Background Wrapper End -->
<section class="our-services" id="our-services">
<div class="services-container">
<div class="header-content">
<h2 class="gold-title">Our Services</h2>
<p class="silver-subtitle">Unlock powerful tools designed to boost your productivity—all free to use.</p>
</div>
<!-- The Glow Box Container -->
<div class="services-glow-box">
<div class="services-grid">
<!-- Card 1: AI Email Generation -->
<div class="service-card">
<div class="card-glow"></div>
<div class="service-badges">
<span class="service-badge free">FREE</span>
<span class="service-badge available">AVAILABLE</span>
</div>
<div class="icon-container">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect width="20" height="16" x="2" y="4" rx="2" />
<path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" />
<path d="M19 2v4" />
<path d="M17 4h4" />
</svg>
</div>
<h3>AI Email Generation</h3>
<p>Create personalized emails in seconds with AI.</p>
<a href="#prompt" class="cta-button">Generate Email →</a>
</div>
<!-- Card 2: AI Email Quality Checker -->
<div class="service-card">
<div class="card-glow"></div>
<div class="service-badges">
<span class="service-badge free">FREE</span>
<span class="service-badge available">AVAILABLE</span>
</div>
<div class="icon-container">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10" />
<path d="m9 12 2 2 4-4" />
</svg>
</div>
<h3>AI Email Quality Checker</h3>
<p>Enhance your emails with AI-driven quality checks.</p>
<a href="#quality-checker" class="cta-button">Check Email Quality →</a>
</div>
<!-- Card 3: PDF Converter & Downloader -->
<div class="service-card">
<div class="card-glow"></div>
<div class="service-badges">
<span class="service-badge free">FREE</span>
<span class="service-badge available">AVAILABLE</span>
</div>
<div class="icon-container">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z" />
<polyline points="14 2 14 8 20 8" />
<path d="M12 18v-6" />
<path d="m9 15 3 3 3-3" />
</svg>
</div>
<h3>PDF Converter & Downloader</h3>
<p>Convert and download PDFs to and from various formats.</p>
<a href="#mk-instant-pdf" class="cta-button">Convert PDF →</a>
</div>
<!-- Card 4: AI Email Improver / Rewriter -->
<div class="service-card">
<div class="card-glow"></div>
<div class="service-badges">
<span class="service-badge free">Premium</span>
<span class="service-badge available">Coming Soon</span>
</div>
<div class="icon-container">
<!-- Edit Icon -->
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"/>
<path d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"/>
</svg>
</div>
<h3>AI Email Improver</h3>
<p>Transforms poorly written emails into clear, confident, and impactful messages.</p>
<a href="#home" class="cta-button">Rewrite Email →</a>
</div>
<!-- Card 5: AI Tone Optimizer -->
<div class="service-card">
<div class="card-glow"></div>
<div class="service-badges">
<span class="service-badge free">Premium</span>
<span class="service-badge available">Coming Soon</span>
</div>
<div class="icon-container">
<!-- Tuning / slider icon -->
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="21" y1="4" x2="14" y2="4"/>
<line x1="10" y1="4" x2="3" y2="4"/>
<line x1="21" y1="12" x2="12" y2="12"/>
<line x1="8" y1="12" x2="3" y2="12"/>
<line x1="21" y1="20" x2="16" y2="20"/>
<line x1="12" y1="20" x2="3" y2="20"/>
<circle cx="12" cy="4" r="2"/>
<circle cx="8" cy="12" r="2"/>
<circle cx="16" cy="20" r="2"/>
</svg>
</div>
<h3>AI Tone Optimizer</h3>
<p>Adjusts the same email into Formal, Friendly, Polite, or Assertive tones.</p>
<a href="#home" class="cta-button">Optimize Tone →</a>
</div>
<!-- Card 6: AI Email Translator (Professional Mode) -->
<div class="service-card">
<div class="card-glow"></div>
<div class="service-badges">
<span class="service-badge free">Premium</span>
<span class="service-badge available">Coming Soon</span>
</div>
<div class="icon-container">
<!-- Translation Icon -->
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 8h14"/>
<path d="M7 8v10"/>
<path d="M17 8v4"/>
<path d="m18 22-3.5-3.5a10 10 0 0 0 0-14L18 1"/>
<path d="m6 1 3.5 3.5a10 10 0 0 1 0 14L6 22"/>
</svg>
</div>
<h3>AI Email Translator</h3>
<p>Converts Hindi or Hinglish emails into clean, corporate-ready English.</p>
<a href="#home" class="cta-button">Translate Email →</a>
</div>
</div>
</div>
</div>
</section>
<!-- Prompt section -->
<section class="prompt-section" id="prompt">
<div class="prompt-container">
<h2 class="prompt-title">Generate Your Email Instantly</h2>
<p class="prompt-subtitle">Enter your topic or idea below and let AI craft a perfect email for you.</p>
<!-- Template selector -->
<div class="template-box">
<label for="templateSelect">Template:</label>
<select id="templateSelect">
<option value="">-- Select a Template --</option>
<option value="job">Job Application Email</option>
<option value="complaint">Complaint Email</option>
<option value="followup">Follow-Up Email</option>
<option value="leave">Leave Request Email</option>
<option value="apology">Apology Email</option>
<option value="meeting">Meeting Request Email</option>
<option value="offer">Offer Acceptance Email</option>
<option value="resignation">Resignation Email</option>
<option value="reminder">Gentle Reminder Email</option>
<option value="support">Customer Support Email</option>
<option value="refund">Refund Request Email</option>
<option value="thanks">Thank-You Email</option>
<option value="inquiry">General Inquiry Email</option>
<option value="marketing">Marketing Email</option>
<option value="feedback">Feedback Email</option>
<!-- ⭐ Saved Templates appear here via JS -->
<optgroup label="Your Saved Templates" id="savedTemplatesGroup"></optgroup>
</select>
<!-- Save Template Button -->
<button id="saveTemplateBtn" class="ghost-btn" style="padding:8px 16px;">💾 Save Template</button>
<!-- ⭐ NEW — Autofill Wizard Button -->
<button id="openWizardBtn" class="ghost-btn" style="padding:8px 16px;">🧭 Autofill Wizard</button>
</div>
<div class="prompt-box">
<textarea id="promptInput" placeholder="e.g. Follow up after meeting with client..." rows="1"></textarea>
<button id="generateBtn">Generate</button>
</div>
<!-- ⭐ Live Word + Character Counter -->
<div class="counter-box">
<span id="charCount">0 chars</span> •
<span id="wordCount">0 words</span>
</div>
<!-- ⭐ Tone + Email Length + Language Selector -->
<div class="tone-box">
<!-- Tone -->
<div class="tone-item">
<label for="toneSelect">Tone:</label>
<select id="toneSelect">
<option value="formal">Formal</option>
<option value="friendly">Friendly</option>
<option value="polite">Polite</option>
<option value="confident">Confident</option>
<option value="casual">Casual</option>
<option value="apologetic">Apologetic</option>
</select>
</div>
<!-- Length -->
<div class="length-item">
<label for="lengthSelect">Length:</label>
<select id="lengthSelect">
<option value="small">Small (100–150 words)</option>
<option value="medium">Medium (150–200 words)</option>
<option value="large">Large (200–250 words)</option>
</select>
</div>
<!-- ⭐ NEW — Language Selector -->
<div class="language-item">
<label for="languageSelect">Language:</label>
<select id="languageSelect">
<option value="english" selected>English</option>
<option value="hindi">Hindi</option>
<option value="Hinglish">Hinglish</option>
<option value="marathi">Marathi</option>
<option value="gujarati">Gujarati</option>
<option value="punjabi">Punjabi</option>
<option value="bengali">Bengali</option>
<option value="tamil">Tamil</option>
<option value="telugu">Telugu</option>
<option value="kannada">Kannada</option>
<option value="malayalam">Malayalam</option>
<option value="odia">Odia</option>
<option value="assamese">Assamese</option>
<option value="konkani">Konkani</option>
<option value="manipuri">Manipuri</option>
<option value="sanskrit">Sanskrit</option>
<option value="urdu">Urdu</option>
</select>
</div>
</div>
<div class="output-box">
<div class="output-header">
<h3>Generated Email</h3>
</div>
<p id="outputText">Your AI-generated email will appear here...</p>
<!-- ⭐ Ghost Buttons Section -->
<div class="action-buttons">
<button class="ghost-btn" id="copyBtn">📋 Copy</button>
<button class="ghost-btn" id="regenerateBtn">🔁 Regenerate</button>
<button class="ghost-btn" id="resetBtn">🧹 Reset</button>
</div>
</div>
<!-- ⭐⭐⭐ WIZARD MODAL (Option-C) ⭐⭐⭐ -->
<div id="wizardModal" class="wizard-modal" aria-hidden="true">
<div class="wizard-card">
<div class="wizard-header">
<h3>Smart Autofill Wizard</h3>
<button id="closeWizardBtn" class="ghost-btn">✖</button>
</div>
<div class="wizard-body">
<div id="wizardStepWrap" class="wizard-step-wrap"></div>
<div class="wizard-progress">
<small id="wizardProgressText">Step 1 of 1</small>
</div>
</div>
<div class="wizard-footer">
<button id="wizardBackBtn" class="ghost-btn">⬅ Back</button>
<button id="wizardNextBtn" class="ghost-btn">Next ➜</button>
<button id="wizardFinishBtn" class="ghost-btn" style="display:none;">Finish ✔</button>
</div>
</div>
</div>
<!-- ⭐⭐⭐ Wizard End ⭐⭐⭐ -->
</div>
</section>
<!-- ✅ Prompt & Output Section End -->
<section class="quality-section" id="quality-checker">
<div class="quality-container">
<h2 class="quality-title">AI Email Quality Checker</h2>
<p class="quality-subtitle">
Analyze your email for grammar, clarity, tone, and risk before sending.
</p>
<!-- Checking Type -->
<div class="quality-options">
<div class="quality-option">
<label for="checkTypeSelect">Select Mode:</label>
<select id="checkTypeSelect">
<option value="normal">Normal</option>
<option value="medium">Medium</option>
<option value="advanced">Advanced</option>
</select>
</div>
</div>
<!-- Input -->
<div class="quality-input-box">
<textarea id="qualityInput" placeholder="Paste the email you want to review here..." rows="3"></textarea>
<button id="checkBtn">🛡️ Check</button>
</div>
<!-- Total Time -->
<div class="quality-timer">
<span id="totalTime">Total Time: 0s</span>
</div>
<!-- Output -->
<div class="quality-output-box">
<div class="quality-output-header">
<h3>Email Quality Report</h3>
</div>
<p id="qualityOutput">
Your AI Email Quality Check Report will appear here...
</p>
<div class="quality-actions">
<div class="quality-mode-inline">
<label for="checkTypeSelectMirror">Select Mode:</label>
<select id="checkTypeSelectMirror">
<option value="normal">Normal</option>
<option value="medium">Medium</option>
<option value="advanced">Advanced</option>
</select>
</div>
<button class="quality-ghost-btn" id="recheckBtn">🔁 Rechecking</button>
<button class="quality-ghost-btn" id="resetQualityBtn">🧹 Reset</button>
</div>
</div>
</div>
</section>
<!-- PDF converter section -->
<section id="mk-instant-pdf" class="mk-instant-pdf">
<h2 class="mk-pdf-title mk-anim">Instant PDF Export</h2>
<div class="mk-pdf-inner">
<div class="mk-pdf-left">
<p class="mk-pdf-desc mk-anim">
Convert your AI-generated email into a clean, ready-to-share PDF with one tap.
Mail Karo formats the content automatically so you can save, share, or archive important emails instantly.
The filename is created from the email topic (first 1–2 words) for meaningful saved files.
Works seamlessly on mobile and desktop — downloads directly to the device.
Animations play each time you scroll to this section, keeping the experience lively and premium.
No extra input needed — it converts the email already generated above.
One tap, instant PDF — Mail Karo handles the rest.
</p>
<div class="mk-pdf-actions">
<button id="mkPdfDownloadBtn" class="mk-pdf-btn mk-anim">⬇️ Download Email as PDF</button>
<button id="mkPdfPreviewBtn" class="mk-pdf-btn outline mk-anim">🔍 Preview</button>
</div>
</div>
<div class="mk-pdf-right mk-anim" aria-hidden="true">
<div class="mk-floating-pdf">
<svg width="58" height="58" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" />
<polyline points="14 2 14 8 20 8" />
<line x1="16" y1="13" x2="8" y2="13" />
<line x1="16" y1="17" x2="8" y2="17" />
<line x1="10" y1="9" x2="8" y2="9" />
</svg>
</div>
</div>
</div>
</section>
<!-- ===== End Instant Pdf converter section ===== -->
<section class="current-features-section" id="current-features">
<h2>Current Features</h2>
<div class="cf-grid">
<!-- Card 1: AI Email Generation -->
<div class="cf-card">
<div class="cf-icon"><i class="fas fa-robot"></i></div>
<h3>AI Email Generator</h3>
<p>Generate professional emails instantly with smart AI. Context-aware and perfectly formatted.</p>
<button class="cf-btn" id="cf-gen-btn">Try It Now</button>
</div>
<!-- Card 2: PDF Converter -->
<div class="cf-card">
<div class="cf-icon"><i class="fas fa-file-pdf"></i></div>
<h3>PDF Converter</h3>
<p>Convert your emails into clean, shareable PDFs in one click. Download directly to your device.</p>
<button class="cf-btn" id="cf-pdf-btn">Convert to PDF</button>
</div>
<!-- Card 3: Tone Selector -->
<div class="cf-card">
<div class="cf-icon"><i class="fas fa-sliders-h"></i></div>
<h3>Tone Selector</h3>
<p>Choose the perfect tone: Formal, Friendly, Urgent, or Polite. Customize how you sound.</p>
<select class="cf-select" id="cf-tone-select">
<option value="formal">Formal</option>
<option value="friendly">Friendly</option>
<option value="polite">Polite</option>
<option value="confident">Confident</option>
</select>
</div>
<!-- Card 4: Length Optimization -->
<div class="cf-card">
<div class="cf-icon"><i class="fas fa-ruler-combined"></i></div>
<h3>Length Optimizer</h3>
<p>Adjust email length to fit your needs. Short, Medium, or Long formats available.</p>
<div class="cf-length-options" id="cf-length-scroll">
<button class="cf-length-btn active" data-value="small">Short</button>
<button class="cf-length-btn" data-value="medium">Medium</button>
<button class="cf-length-btn" data-value="large">Long</button>
</div>
</div>
<!-- Card 5: Templates Selector -->
<div class="cf-card">
<div class="cf-icon"><i class="fas fa-layer-group"></i></div>
<h3>Smart Templates</h3>
<p>Access pre-designed templates for Job Apps, Leaves, Complaints, and more.</p>
<select class="cf-select" id="cf-template-select">
<option value="">Select Template</option>
<option value="job">Job Application</option>
<option value="leave">Leave Request</option>
<option value="followup">Follow Up</option>
</select>
</div>
<!-- Card 6: Dark/Light Mode -->
<div class="cf-card" id="cf-theme-toggle" style="cursor: pointer;">
<div class="cf-icon"><i class="fas fa-moon"></i></div>
<h3>Dark Mode</h3>
<p>Switch between Dark and Light themes for a comfortable reading experience.</p>
<button class="cf-btn">Toggle Theme</button>
</div>
</div>
</section>
<!--Plan & Pricing-->
<section class="premium-services" id="pricing">
<div class="services-container">
<div class="header-content">
<h2 class="gold-title">Plans & Pricing</h2>
<p class="silver-subtitle">
Simple plans. No hidden charges. Upgrade only when needed.
</p>
</div>
<!-- The Glow Box Container -->
<div class="services-glow-box">
<div class="services-grid">
<!-- Card 1: Free Plan -->
<div class="service-card">
<div class="card-glow"></div>
<div class="service-badges">
<span class="service-badge free">FREE</span>
<span class="service-badge available">ACTIVE</span>
</div>
<div class="icon-container">
<!-- Gift Icon -->
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="20 12 20 22 4 22 4 12"/>
<rect x="2" y="7" width="20" height="5"/>
<line x1="12" y1="22" x2="12" y2="7"/>
<path d="M12 7c0-3-2-5-4-5s-4 2-4 5"/>
<path d="M12 7c0-3 2-5 4-5s4 2 4 5"/>
</svg>
</div>
<h3>Free Plan</h3>
<p>Best for students and casual email usage.</p>
<p><strong>₹0 / forever</strong></p>
<a href="#home" class="cta-button pricing-cta">Get Started →</a>
</div>
<!-- Card 2: Pro Plan -->
<div class="service-card">
<div class="card-glow"></div>
<div class="service-badges">
<span class="service-badge free">POPULAR</span>
<span class="service-badge available">RECOMMENDED</span>
</div>
<div class="icon-container">
<!-- Star Icon -->
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polygon points="12 2 15 8.5 22 9.3 17 14 18.3 21 12 17.8 5.7 21 7 14 2 9.3 9 8.5"/>
</svg>
</div>
<h3>Pro Plan</h3>
<p>For professionals who write emails daily.</p>
<p><strong>₹299 / month</strong></p>
<a href="#home" class="cta-button pricing-cta">Upgrade to Pro →</a>
</div>
<!-- Card 3: Business Plan -->
<div class="service-card">
<div class="card-glow"></div>
<div class="service-badges">
<span class="service-badge free">PREMIUM</span>
<span class="service-badge available">COMING SOON</span>
</div>
<div class="icon-container">
<!-- Briefcase Icon -->
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="2" y="7" width="20" height="14" rx="2"/>
<path d="M16 7V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2"/>
</svg>
</div>
<h3>Business Plan</h3>
<p>Team access with advanced AI controls.</p>
<p><strong>Custom Pricing</strong></p>
<a href="#home" class="cta-button pricing-cta">Coming Soon</a>
</div>
</div>
</div>
</div>
</section>
<div id="payment-alert" class="alert-overlay">
<div class="alert-box">
<span id="close-alert" class="close-icon">×</span>
<p>
<strong>Payment section is under development.</strong><br />
We are currently working on it.<br />Sorry for the inconvenience.
</p>
</div>
</div>
<!-- Founder Story -->
<section class="mk-story" id="customer-story">
<div class="mk-story__container">
<!-- TOP HEADING -->
<div class="mk-story__heading">
<span class="mk-story-tag">Founder Spotlight</span>
<h2>For Professionals, Students, Founders, and Creators</h2>
<p>Hear from people who use Mail Karo to write smarter emails—faster.</p>
<a class="mk-story__toplink" href="#testimonials">
See more customer stories <span>→</span>
</a>
</div>
<!-- MAIN CARD -->
<div class="mk-story__card">
<!-- LEFT: TEXT -->
<div class="mk-story__left">
<blockquote class="mk-story__quote">
“Mail Karo saved me 30 minutes daily while writing professional emails”
</blockquote>
<div class="mk-story__person">
<div class="mk-story__name">ADARSH JAYPRAKASH MISHRA</div>
<div class="mk-story__role">Founder, Mail Karo</div>
</div>
<a class="mk-story__cta" href="#testimonials">
See more customer stories <span>→</span>
</a>
</div>
<!-- RIGHT: IMAGE -->
<div class="mk-story__right">
<div class="mk-story__imgWrap">
<!-- 🔥 replace src with your image path -->
<img
src="All Images/Founder_2.png"
alt="Adarsh Mishra - Founder"
class="mk-story__img"
/>
</div>
<!-- decorative shapes -->
<div class="mk-decor">
<div class="mk-shape mk-shape--semi-circle"></div>
<div class="mk-shape mk-shape--parallelogram-top"></div>
<div class="mk-shape mk-shape--parallelogram-bottom"></div>
<div class="mk-shape mk-shape--triangle-1"></div>
<div class="mk-shape mk-shape--triangle-2"></div>
<div class="mk-shape mk-shape--triangle-3"></div>
<div class="mk-plus mk-plus--1">
<div class="line h"></div>
<div class="line v"></div>
</div>
<div class="mk-plus mk-plus--2">
<div class="line h"></div>
<div class="line v"></div>
</div>
<div class="mk-plus mk-plus--3">
<div class="line h"></div>
<div class="line v"></div>
</div>
<div class="mk-plus mk-plus--4">
<div class="line h"></div>
<div class="line v"></div>
</div>
</div>
</div>
</div>
</section>
<!-- ✅ Upcoming Features Section Start -->
<section id="upcoming-features" class="uf-reveal">
<div class="features-container uf-reveal">
<h2 class="section-title uf-reveal">Upcoming Features</h2>
<p class="section-subtitle uf-reveal">Discover what's next for Mail Karo. Innovation on the horizon!</p>
<div class="features-grid">
<div class="feature-card uf-reveal">
<span class="feature-icon">🤖</span>
<h3>AI Email Summarizer</h3>
<p>Converts long or complex emails into short, clear, and actionable summaries. Designed for busy users who
want instant understanding and daily productivity.</p>
</div>
<div class="feature-card uf-reveal">
<span class="feature-icon">💬</span>
<h3>AI Reply Generator</h3>
<p>Suggests professional replies based on the context of received emails. Eliminates the effort of thinking
through responses and improves retention.</p>
</div>
<div class="feature-card uf-reveal">
<span class="feature-icon">✍️</span>
<h3>AI Email Improver / Rewriter</h3>
<p>Transforms poorly written emails into clear, confident, and impactful messages. A powerful feature for
students and job seekers.</p>
</div>
<div class="feature-card uf-reveal">
<span class="feature-icon">🛡️</span>
<h3>AI Email Quality Checker</h3>
<p>Detects grammar issues, clarity problems, unprofessional tone, and risky wording. A QA-driven feature that
builds trust and communication confidence.</p>
</div>
<div class="feature-card uf-reveal">
<span class="feature-icon">🌍</span>
<h3>AI Email Translator (Professional Mode)</h3>
<p>Converts Hindi or Hinglish emails into clean, corporate-ready English. A strong India-focused USP for mass
user adoption.</p>
</div>
<div class="feature-card uf-reveal">
<span class="feature-icon">🎯</span>
<h3>AI Tone Optimizer</h3>
<p>Adjusts the same email into Formal, Friendly, Polite, or Assertive tones. Helps users avoid communication
mistakes in professional scenarios.</p>
</div>