-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
795 lines (795 loc) · 36.5 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"/>
</head>
<body>
<!--Navigation Bar-->
<section class="shadow-lg sticky top-0 bg-white">
<div class="flex items-center justify-evenly p-4">
<!--Logo-->
<div>
<a href="#">
<img src="./vandit-bera Paytm-Clone master Assets/pytm-logo.png" class="w-44" alt="">
</a>
</div>
<!--Navigation Menus-->
<div class="flex items-center gap-8">
<a href="#" class="font-sans font-medium text-lg
hover:bg-gray-100 p-2 rounded-lg">
Paytm for Consumer
</a>
<a href="#" class="font-sans font-medium text-lg
hover:bg-gray-100 p-2 rounded-lg">
Paytm for Business
</a>
<a href="#" class="font-sans font-medium text-lg
hover:bg-gray-100 p-2 rounded-lg">
Investor Relation
</a>
<a href="#" class="font-sans font-medium text-lg
hover:bg-gray-100 p-2 rounded-lg">
Company
</a>
<a href="#" class="font-sans font-medium text-lg
hover:bg-gray-100 p-2 rounded-lg">
Career
</a>
</div>
<!--Sign in Button-->
<button class="flex items-center gap-2 bg-LightBlue400 py-2 px-4 cursor-pointer rounded-3xl
font-sans font-medium text-lg text-white hover:bg-darkBlue group">
<h2>Sign in</h2>
<i class="fa-solid fa-user bg-darkBlue p-2 rounded-full group-hover:bg-LightBlue400"></i>
</button>
</div>
</section>
<!--Feature Section 1-->
<section class="flex justify-between bg-gray-100 pb-10 pt-10">
<!--Left Box-->
<div class="flex flex-col justify-center gap-4">
<img src="./paytmClone/paytm-upi-logo.avif"
class="w-24 ml-4 border-x border-y rounded-3xl shadow-md"
alt="">
<h1 class="font-sans font-bold text-6xl ml-4 mt-4">
India's Most-loved <br>
Payments App
</h1>
<p class="font-sans font-medium text-lg ml-4 mt-2">
Recharge & pay bills, book flights & movie tickets,
<br>invest in stocks & mutual funds, and do a lot <br> more.
</p>
<button class="bg-black max-w-[240px] py-2.5 px-2.5 my-0.5 mx-3 cursor-pointer rounded-3xl mt-5 text-white
hover:bg-white hover:text-black hover:border-x hover:border-y hover:border-black transition-all
duration-200 flex items-center justify-center gap-2">
<span class="font-sans font-medium text-base">
Download Paytm App
</span>
<i class="fa-brands fa-apple"></i>
<i class="fa-brands fa-google-play"></i>
</button>
</div>
<!--Right Box-->
<div>
<img src="./vandit-bera Paytm-Clone master Assets/hero-1-mob.png" alt="">
</div>
</section>
<!--Feature Section 2-->
<section class="bg-LightBlue400 flex flex-col gap-8 pt-20 pb-20">
<h1 class="font-sans font-bold text-white text-4xl ml-8">
Recharge & Pay Bills on Paytm.
</h1>
<!--Logo & Text-->
<div class="grid grid-cols-7 grid-rows-1 mx-auto gap-20">
<div class="flex flex-col gap-4 hover:scale-125 transition-all duration-300 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-2-1.png"
class="w-16"
alt="">
<div class="flex flex-col">
<span class="font-sans font-medium text-white text-lg">
Recharge
</span>
<span class="font-sans font-bold text-white text-base">
Prepaid
</span>
<span class="font-sans font-bold text-white text-base flex">
Mobile
<img src="./paytmClone/feather--chevron-darkblue.svg" alt="">
</span>
</div>
</div>
<div class="flex flex-col gap-4 hover:scale-125 transition-all duration-300 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-2-3.png"
class="w-16"
alt="">
<div class="flex flex-col">
<span class="font-sans font-medium text-white text-lg">
Pay
</span>
<span class="font-sans font-bold text-white text-base">
Electricity
</span>
<span class="font-sans font-bold text-white text-base flex">
Bill
<img src="./paytmClone/feather--chevron-darkblue.svg" alt="">
</span>
</div>
</div>
<div class="flex flex-col gap-4 hover:scale-125 transition-all duration-300 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-2-4.png"
class="w-16"
alt="">
<div class="flex flex-col">
<span class="font-sans font-medium text-white text-lg">
Recharge
</span>
<span class="font-sans font-bold text-white text-base">
DTH
</span>
<span class="font-sans font-bold text-white text-base flex">
Connection
<img src="./paytmClone/feather--chevron-darkblue.svg" alt="">
</span>
</div>
</div>
<div class="flex flex-col gap-4 hover:scale-125 transition-all duration-300 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-2-5.png"
class="w-16"
alt="">
<div class="flex flex-col">
<span class="font-sans font-medium text-white text-lg">
Book
</span>
<span class="font-sans font-bold text-white text-base">
Gas
</span>
<span class="font-sans font-bold text-white text-base flex">
Cylinder
<img src="./paytmClone/feather--chevron-darkblue.svg" alt="">
</span>
</div>
</div>
<div class="flex flex-col gap-4 hover:scale-125 transition-all duration-300 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-2-2.png"
class="w-16"
alt="">
<div class="flex flex-col">
<span class="font-sans font-medium text-white text-lg">
Pay
</span>
<span class="font-sans font-bold text-white text-base">
Rent
</span>
<span class="font-sans font-bold text-white text-base flex">
Payment
<img src="./paytmClone/feather--chevron-darkblue.svg" alt="">
</span>
</div>
</div>
<div class="flex flex-col gap-4 hover:scale-125 transition-all duration-300 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-2-6.png"
class="w-16"
alt="">
<div class="flex flex-col">
<span class="font-sans font-medium text-white text-lg">
Pay
</span>
<span class="font-sans font-bold text-white text-base">
Credit
</span>
<span class="font-sans font-bold text-white text-base flex">
Card Bill
<img src="./paytmClone/feather--chevron-darkblue.svg" alt="">
</span>
</div>
</div>
<div class="flex flex-col gap-4 hover:scale-125 transition-all duration-300 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-2-7.png"
class="w-16"
alt="">
<div class="flex flex-col">
<span class="font-sans font-medium text-white text-lg">
All
</span>
<span class="font-sans font-bold text-white text-base">
Payment
</span>
<span class="font-sans font-bold text-white text-base flex">
Services
<img src="./paytmClone/feather--chevron-darkblue.svg" alt="">
</span>
</div>
</div>
</div>
</section>
<!--Feature Section 3-->
<section class="bg-darkBlue flex flex-col gap-8 pt-20 pb-20">
<h1 class="font-sans font-bold text-white text-4xl ml-6">
Book & Buy on Paytm.
</h1>
<!--Logo & Text-->
<div class="grid grid-cols-7 grid-rows-1 mx-auto gap-20">
<div class="flex flex-col gap-4 hover:scale-125 transition-all duration-300 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-3-1.png"
class="w-16"
alt="">
<div class="flex flex-col">
<span class="font-sans font-medium text-white text-lg">
Movie
</span>
<span class="font-sans font-bold text-white text-base flex">
Tickets
<img src="./paytmClone/feather--chevron-darkblue.svg" alt="">
</span>
</div>
</div>
<div class="flex flex-col gap-4 hover:scale-125 transition-all duration-300 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-3-2.png"
class="w-16"
alt="">
<div class="flex flex-col">
<span class="font-sans font-medium text-white text-lg">
Flight
</span>
<span class="font-sans font-bold text-white text-base flex">
Tickets
<img src="./paytmClone/feather--chevron-darkblue.svg" alt="">
</span>
</div>
</div>
<div class="flex flex-col gap-4 hover:scale-125 transition-all duration-300 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-3-3.png"
class="w-16"
alt="">
<div class="flex flex-col">
<span class="font-sans font-medium text-white text-lg">
Bus
</span>
<span class="font-sans font-bold text-white text-base flex">
Tickets
<img src="./paytmClone/feather--chevron-darkblue.svg" alt="">
</span>
</div>
</div>
<div class="flex flex-col gap-4 hover:scale-125 transition-all duration-300 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-3-4.png"
class="w-16"
alt="">
<div class="flex flex-col">
<span class="font-sans font-medium text-white text-lg">
Train
</span>
<span class="font-sans font-bold text-white text-base flex">
Tickets
<img src="./paytmClone/feather--chevron-darkblue.svg" alt="">
</span>
</div>
</div>
<div class="flex flex-col gap-4 hover:scale-125 transition-all duration-300 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-3-5.png"
class="w-16"
alt="">
<div class="flex flex-col">
<span class="font-sans font-medium text-white text-lg">
Car &
</span>
<span class="font-sans font-bold text-white text-base flex">
Bike
<img src="./paytmClone/feather--chevron-darkblue.svg" alt="">
</span>
</div>
</div>
<div class="flex flex-col gap-4 hover:scale-125 transition-all duration-300 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-3-6.png"
class="w-16"
alt="">
<div class="flex flex-col">
<span class="font-sans font-medium text-white text-lg">
International
</span>
<span class="font-sans font-bold text-white text-base flex">
Flights
<img src="./paytmClone/feather--chevron-darkblue.svg" alt="">
</span>
</div>
</div>
<div class="flex flex-col gap-4 hover:scale-125 transition-all duration-300 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-3-7.webp"
class="w-16"
alt="">
<div class="flex flex-col">
<span class="font-sans font-medium text-white text-lg">
Invest
</span>
<span class="font-sans font-bold text-white text-base flex">
in Stocks
<img src="./paytmClone/feather--chevron-darkblue.svg" alt="">
</span>
</div>
</div>
</div>
</section>
<!--Feature Section 4-->
<section class="flex flex-col bg-gray-100">
<div class="font-sans font-bold text-5xl ml-24 mt-20">
Paytm Payment Instruments
</div>
<div class="flex max-w-[1150px] mx-auto p-10 bg-white rounded-xl mt-10">
<!--Left Box-->
<div class="flex flex-col gap-5 w-5/6">
<div class="flex items-center gap-2">
<img src="./vandit-bera Paytm-Clone master Assets/hero-5-l.png"
class="w-20"
alt="">
<h3 class="font-sans font-bold text-xl">
UPI Money <br> Transfer
</h3>
</div>
<h2 class="font-sans font-bold text-4xl max-w-[400px]">
Pay anyone directly from your bank account.
</h2>
<span class="font-sans font-medium text-base max-w-[700px]">
Pay anyone, everywhere. Make contactless & secure <br> payments in-stores or online using Paytm Wallet or
Directly from your Bank Account. Plus,send & recieve money from anyone.
</span>
<button class="bg-black max-w-[240px] py-2.5 px-2.5 cursor-pointer rounded-3xl mt-5 text-white
hover:bg-white hover:text-black hover:border-x hover:border-y hover:border-black transition-all
duration-200 flex items-center justify-center gap-2">
<span class="font-sans font-medium text-base">
Download Paytm App
</span>
<i class="fa-brands fa-apple"></i>
<i class="fa-brands fa-google-play"></i>
</button>
</div>
<!--Right Box-->
<div>
<img src="./vandit-bera Paytm-Clone master Assets/hero-5-r.webp"
class="w-11/12"
alt="">
</div>
</div>
</section>
<!--Feature Section 5-->
<section class="flex bg-gray-100 gap-12 pb-20">
<!--Left Div-->
<div class="flex flex-col gap-3 p-12 bg-white mt-12 rounded-2xl ml-14 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-7-l-t.png"
class="w-44 mt-4"
alt="">
<h2 class="font-sans font-bold text-5xl mt-5 max-w-[500px]">
Unlimited Cashback <br> Every time
</h2>
<span class="font-sans font-semibold text-xl mt-2 max-w-[450px]">
Paytm HDFC Bank Select Credit Card. A card <br> with assured Cashback and incredible offers.
</span>
<span class="font-sans text-gray-500 text-sm max-w-[400px]">
*Paytm Payments Bank does not provide any loan or credit <br> card on the Paytm App.
<a href="#" class="text-LightBlue400 font-bold">Know More</a>
</span>
<img src="./vandit-bera Paytm-Clone master Assets/hero-7-l-b.webp"
class="mt-4"
alt="">
</div>
<!--Right Div-->
<div class="flex flex-col gap-3 p-12 bg-white mt-12 rounded-2xl mr-14 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-7-r-t.png"
class="w-44 mt-16"
alt="">
<h2 class="font-sans font-bold text-5xl mt-5 max-w-[500px]">
Unlimited Cashback <br> Every time
</h2>
<span class="font-sans font-semibold text-xl mt-2 max-w-[450px]">
Paytm HDFC Bank Select Credit Card. A card <br> with assured Cashback and incredible offers.
</span>
<span class="font-sans text-gray-500 text-sm max-w-[400px]">
*Paytm Payments Bank does not provide any loan or credit <br> card on the Paytm App.
<a href="#" class="text-LightBlue400 font-bold">Know More</a>
</span>
<img src="./vandit-bera Paytm-Clone master Assets/hero-7-r-b.webp"
class="mt-4"
alt="">
</div>
</section>
<!--Feature Section 6-->
<section class=" bg-gray-100">
<div class="flex justify-between bg-white pt-16">
<!--Left Box-->
<div class="flex flex-col gap-4 ml-16 justify-center">
<img src="./vandit-bera Paytm-Clone master Assets/hero-10-l.webp"
class="w-36"
alt="">
<h1 class="font-sans font-bold text-5xl mt-4">
Insurance made easy.
</h1>
<p class="font-sans font-medium text-xl mt-2">
Buying insurance does not have to be tedious, time- <br>
consuming & confusing. Paytm Insurance removes the <br>
worry of getting insured making it simple, <br>
convenient & easy-to-understand.
</p>
<button class="max-w-[175px] bg-darkBlue text-white rounded-3xl p-2 mt-1 font-semibold text-lg
flex items-center justify-center gap-2 hover:bg-LightBlue400 transition-all duration-200">
<span>Learn More</span>
<i class="fa-solid fa-chevron-right text-base"></i>
</button>
</div>
<!--Right Box-->
<div class="w-1/3">
<img src="./vandit-bera Paytm-Clone master Assets/hero-10-r.webp"
alt="">
</div>
</div>
</section>
<!--Feature Section 7-->
<section class="bg-gray-100 flex items-center justify-between pt-20 pb-20">
<!--Left Box-->
<div class="w-5/12 ml-14">
<img src="./vandit-bera Paytm-Clone master Assets/hero-9-l.webp"
alt="">
</div>
<!--Right Box-->
<div class="flex flex-col gap-8 mr-14">
<img src="./vandit-bera Paytm-Clone master Assets/hero-9-r.webp"
class="w-4/12"
alt="">
<h2 class="font-sans font-bold text-5xl mt-4">
Build Long-term <br>
Wealth & Achieve <br>
your Goals.
</h2>
<p class="font-sans font-medium text-xl">
Investing on Paytm Money is transparent, low-cost and <br>
commission-free. Buy stocks & mutual funds that can <br>
help you create wealth & realise your dreams.
</p>
<button class="bg-darkBlue max-w-[175px] text-white rounded-3xl p-2 flex items-center justify-center gap-3
hover:bg-LightBlue400 transition-all duration-200">
<span class="font-sans font-semibold text-lg">Learn More</span>
<i class="fa-solid fa-chevron-right text-base"></i>
</button>
</div>
</section>
<!--Feature Section 8-->
<section>
<!--upper Div-->
<div class="ml-14 mt-28">
<h1 class="font-sans font-bold text-5xl">
Financial Services by Paytm
</h1>
</div>
<!--Lower Div-->
<div class="flex items-center justify-between pt-12 pb-20">
<!--Left Box-->
<div class="flex flex-col gap-10 ml-14">
<img src="./vandit-bera Paytm-Clone master Assets/hero-11-r.png"
class="w-52"
alt="">
<h2 class="font-sans font-bold text-5xl mt-5">
Get a Personal Loan in <br>
2 Minutes.
</h2>
<p class="font-sans font-medium text-xl">
Paytm offers India's quickest multi-purpose, hassle- <br>
free loan. It is 100% digital, transparent and <br>
paperless.
</p>
<button class="max-w-[175px] bg-darkBlue text-white rounded-3xl p-2 mt-1 font-semibold text-lg
flex items-center justify-center gap-2 hover:bg-LightBlue400 transition-all duration-200">
<span>Learn More</span>
<i class="fa-solid fa-chevron-right text-base"></i>
</button>
</div>
<!--Right Box-->
<div class="w-4/12 mr-14">
<img src="./vandit-bera Paytm-Clone master Assets/hero-11-l.webp"
alt="">
</div>
</div>
</section>
<!--Feature Section 9-->
<section>
<!--Upper Div-->
<div>
<h1 class="font-sans font-bold text-5xl ml-14 mt-28">Business Services by Paytm</h1>
</div>
<!--Lower Div-->
<div class="flex items-center justify-between bg-gray-100 mt-10 max-w-[1150px] mx-auto rounded-xl pt-20 pb-20">
<!--Left Section-->
<div class="flex flex-col gap-8 ml-28">
<h2 class="font-sans font-bold text-4xl">
Accept payments <br>
online with ease
</h2>
<p class="font-sans font-medium text-lg">
Grow your business with thew payment gateway that <br>
powers India's largest brands and even the Paytm App.
</p>
<button class="flex bg-darkBlue text-white items-center justify-center gap-3 max-w-[175px] rounded-3xl p-2
hover:bg-LightBlue400 transition-all duration-200">
<div class="font-sans font-semibold text-lg">Learn More</div>
<i class="fa-solid fa-chevron-right"></i>
</button>
</div>
<!--Right Section-->
<div class="w-5/12">
<img src="./vandit-bera Paytm-Clone master Assets/hero-12.webp"
alt="">
</div>
</div>
</section>
<!--Feature Sectin 10-->
<div class="flex items-center justify-between bg-gray-100 mt-12 max-w-[1150px] mx-auto rounded-xl pt-20 pb-20">
<!--Left Section-->
<div class="flex flex-col gap-8 ml-28">
<h2 class="font-sans font-bold text-4xl">
In-shop payments <br>
powered by Paytm.
</h2>
<p class="font-sans font-medium text-lg">
Millions of small & big businesses use Paytm to accept <br>
payments anywhere any time with a wide range of <br>
solutions for all kinds of merchants.
</p>
<button class="flex bg-darkBlue text-white items-center justify-center gap-3 max-w-[175px] rounded-3xl p-2
hover:bg-LightBlue400 transition-all duration-200">
<div class="font-sans font-semibold text-lg">Learn More</div>
<i class="fa-solid fa-chevron-right"></i>
</button>
</div>
<!--Right Section-->
<div class="w-5/12 mr-14">
<img src="./vandit-bera Paytm-Clone master Assets/hero-13.webp"
alt="">
</div>
</div>
<!--Feature Sectin 11-->
<section>
<!--Upper Div-->
<div>
<h1 class="font-sans font-bold text-5xl ml-14 mt-32 pb-16">
Business Tools to help <br>
your business grow
</h1>
</div>
<!--Lowerv Div-->
<div class="grid grid-cols-4 grid-rows-1 ml-14 pb-10">
<!--Grid 1-->
<div>
<img src="./vandit-bera Paytm-Clone master Assets/hero-14-1.webp"
alt="">
<h2 class="font-sans font-bold text-3xl mt-6">
POS Billing <br>
Software
</h2>
<p class="font-sans font-medium text-xl mt-5 pb-3">
Say Hello to Smart Retail <br>
Business Management
</p>
<a href="#" class="font-sans font-bold">
Learn More
</a>
</div>
<!--Grid 2-->
<div>
<img src="./vandit-bera Paytm-Clone master Assets/hero-14-2.webp"
alt="">
<h2 class="font-sans font-bold text-3xl mt-6">
Paytm for <br>
Business App
</h2>
<p class="font-sans font-medium text-xl mt-5 pb-3">
Everything you need to <br>
manage your business <br>
on your phone
</p>
<a href="#" class="font-sans font-bold">
Learn More
</a>
</div>
<!--Grid 3-->
<div>
<img src="./vandit-bera Paytm-Clone master Assets/hero-14-3.webp"
alt="">
<h2 class="font-sans font-bold text-3xl mt-6">
Advertise on <br>
Paytm
</h2>
<p class="font-sans font-medium text-xl mt-5 pb-3">
Grow your business by <br>
advertising on India's <br>
largest mobile business
</p>
<a href="#" class="font-sans font-bold">
Learn More
</a>
</div>
<!--Grid 4-->
<div>
<img src="./vandit-bera Paytm-Clone master Assets/hero-14-4.webp"
alt="">
<h2 class="font-sans font-bold text-3xl mt-6">
Business <br>
Khata
</h2>
<p class="font-sans font-medium text-xl mt-5 pb-3">
Managing Khata made <br>
easy
</p>
<a href="#" class="font-sans font-bold">
Learn More
</a>
</div>
</div>
</section>
<!--Feature Sectin 12-->
<section class="flex pb-12 mt-44 gap-8">
<!--Left Section-->
<div class="flex flex-col gap-4 w-1/4 ml-28">
<img src="./vandit-bera Paytm-Clone master Assets/hero-9-r.webp"
class="w-32"
alt="">
<p class="font-sans font-medium text-base mt-10">
Get started on wealth <br>
creation journey with <br>
zero brokerage fee & <br>
hidden charges.
</p>
<a href="#" class="font-sans font-semibold text-lg text-LightBlue400 hover:text-darkBlue">
Learn More
</a>
</div>
<!--Right Section-->
<div class="grid grid-cols-5 grid-rows-1 gap-8 mr-5">
<div class="bg-LightBlue400 flex flex-col items-center rounded-xl pt-2 pb-6 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-15-r-1.webp"
class="w-11/12 hover:scale-105 transition-all duration-200"
alt="">
<h3 class="font-sans font-bold text-lg text-white max-w-[80px] text-center mt-4 leading-tight">
Invest in Stocks
</h3>
</div>
<div class="bg-LightBlue400 flex flex-col items-center rounded-xl pt-2 pb-6 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-15-r-2.webp"
class="w-11/12 hover:scale-105 transition-all duration-200"
alt="">
<h3 class="font-sans font-bold text-lg text-white max-w-[80px] text-center mt-4 leading-tight">
Apply for IPO
</h3>
</div>
<div class="bg-LightBlue400 flex flex-col items-center rounded-xl pt-2 pb-6 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-15-r-3.webp"
class="w-11/12 hover:scale-105 transition-all duration-200"
alt="">
<h3 class="font-sans font-bold text-lg text-white max-w-[80px] text-center mt-4 leading-tight">
Invest in ETPs
</h3>
</div>
<div class="bg-LightBlue400 flex flex-col items-center rounded-xl pt-2 pb-6 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-15-r-4.webp"
class="w-11/12 hover:scale-105 transition-all duration-200"
alt="">
<h3 class="font-sans font-bold text-lg text-white max-w-[80px] text-center mt-4 leading-tight">
Buy Gold
</h3>
</div>
<div class="bg-LightBlue400 flex flex-col items-center rounded-xl pt-2 pb-6 cursor-pointer">
<img src="./vandit-bera Paytm-Clone master Assets/hero-15-r-5.webp"
class="w-11/12 hover:scale-105 transition-all duration-200"
alt="">
<h3 class="font-sans font-bold text-lg text-white max-w-[120px] text-center mt-4 leading-tight">
Invest in Mutual Funds
</h3>
</div>
</div>
</section>
<!--Feature Sectin 13-->
<section class="flex pb-10 ml-28 mt-12 gap-4">
<!--Upper Section-->
<div>
<img src="./vandit-bera Paytm-Clone master Assets/hero-16-l.webp"
class="w-40"
alt="">
<p class="font-sans font-medium text-base mt-12 pb-3">
Best travel solutions with <br>
quick ticket bookings, <br>
great offers and easy refunds
</p>
<a href="#" class="font-sans font-semibold text-lg text-LightBlue400
hover:text-darkBlue transition-all duration-200">
Learn More
</a>
</div>
<!--Lower Section-->
<div class="grid grid-cols-5 grid-rows-1 gap-8 mr-5">
<div class="bg-LightBlue400 text-white p-4 pt-10 rounded-xl cursor-pointer
hover:scale-105 transition-all duration-200">
<img src="./vandit-bera Paytm-Clone master Assets/hero-16-r-2.webp" class="w-16" alt="">
<p class="font-sans font-bold text-lg mt-5">
100% Refund
</p>
<p class="font-sans font-bold text-sm">
With Paytm's <br>
Cancellation Protect
</p>
</div>
<div class="bg-LightBlue400 text-white p-4 pt-10 rounded-xl cursor-pointer
hover:scale-105 transition-all duration-200">
<img src="./vandit-bera Paytm-Clone master Assets/hero-16-r-1.webp"
class="w-16"
alt="">
<p class="font-sans font-bold text-base mt-5">
Flat 14% <br>
Cashback <br>
With code <br>
WelcomeFlight
</p>
</div>
<div class="bg-LightBlue400 text-white p-4 pt-10 rounded-xl cursor-pointer
hover:scale-105 transition-all duration-200">
<img src="./vandit-bera Paytm-Clone master Assets/hero-16-r-5.webp" class="w-16" alt="">
<p class="font-sans font-bold text-lg mt-5">
Hassle Free <br>
Train Ticket <br>
Bookings
</p>
</div>
<div class="bg-LightBlue400 text-white p-4 pt-10 rounded-xl cursor-pointer
hover:scale-105 transition-all duration-200">
<img src="./vandit-bera Paytm-Clone master Assets/hero-16-r-4.webp" class="w-16" alt="">
<p class="font-sans font-bold text-lg mt-5">
Sanitised Bus <br>
Options With <br>
TravelSafe+
</p>
</div>
<div class="bg-LightBlue400 text-white p-4 pt-10 rounded-xl cursor-pointer
hover:scale-105 transition-all duration-200">
<img src="./vandit-bera Paytm-Clone master Assets/hero-16-r-6.webp" class="w-16" alt="">
<p class="font-sans font-bold text-lg mt-5">
PNR Status <br>
Check In Few <br>
Simple Clicks
</p>
</div>
</div>
</section>
<!--Footer Section-->
<section class="flex justify-between bg-gray-100 pt-16">
<!--Left Box-->
<div class="flex gap-4 ml-4 items-center">
<h2 class="font-sans text-lg font-semibold">
Download Paytm App <br>
to Pay from anywhere
</h2>
<a href="#">
<img src="./vandit-bera Paytm-Clone master Assets/footer-mac.svg" alt="">
</a>
<a href="#">
<img src="./vandit-bera Paytm-Clone master Assets/footer-android.svg" alt="">
</a>
</div>
<!--Right Section-->
<div class="flex gap-5 mr-6 items-center">
<a href="#">
<img src="./vandit-bera Paytm-Clone master Assets/footer-twitter.svg" class="w-8" alt="">
</a>
<a href="#">
<img src="./vandit-bera Paytm-Clone master Assets/footer-insta.svg" class="w-8" alt="">
</a>
<a href="#">
<img src="./vandit-bera Paytm-Clone master Assets/footer-facebook.svg" class="w-4" alt="">
</a>
</div>
</section>
<!--Footer Design Section-->
<section class="mt-10">
<div class="bg-LightBlue400 h-3 w-full"></div>
<div class="bg-darkBlue h-3 w-full"></div>
</section>
</body>
</html>