-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1303 lines (1236 loc) · 78.2 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
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 charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- !----------------------title ------------------------------------------->
<title>Razorpay - Best Payment Solution for Online Payments Indian</title>
<!-- !----------------------Icons Cdn --------------------------------------->
<link href="https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css" rel="stylesheet">
<script src="https://unpkg.com/feather-icons"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- !----------------------link Css File ----------------------------------->
<link rel="stylesheet" href="main.css" />
<!-- !----------------------favicon ----------------------------------------->
<link rel="shortcut icon" href="./Images/favicon.png" type="image/x-icon">
<!--!------------------------Google Fonts ------------------------------------>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
/* @import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800;900&display=swap'); */
.companiesList {
animation: 15s infinite linear companiesAnimation;
}
.ctasection{
background-size: 100% 100%;
padding-top: 10rem;
padding-bottom: 10rem;
}
@keyframes companiesAnimation {
0% {
top: 0;
}
100% {
top: -160%;
}
}
</style>
</head>
<body>
<div class="overflow-x-hidden relative w-full" >
<!-- !-----------------------------------------------------------------navbar banner ----------------------------------------------------------------------->
<section class="w-full h-14 hidden lg:block bg-gradient-to-r from-[#4332A3] to-[#286CD5]">
<div class="flex flex-row justify-center items-center">
<img src="https://media.razorpay.com/file/platform/acq/banner/pos.png" alt="">
<p class="font-mullish font-bold mr-6 text-white flex text-md">
<span class="font-mullish border-b-2 border-[#00FFCB] text-[#00FFCB] mr-8">
New
</span>
Say hello to the future of In-Store payments with Razorpay POS!
</p>
<button class="font-mullish text-sm rounded-sm text-deepBlue font-bold cursor-pointer py-[4px] px-[14px] bg-[#00FFCB]">Know More</button>
</div>
</section>
<!--!----------------------------------------------------------------- nav bar ----------------------------------------------------------------------------->
<nav class="bg-deepBlue">
<div
class="relative w-[1080px] mx-[134px] flex items-center justify-between"
>
<!--!--------------------------- logo ------------------------------------>
<a href="/" class="cursor-pointer py-5 pr-7">
<img
src="./Images/logo.svg"
alt="Razorpay Logo"
width="125px"
height="30px"
/>
</a>
<!-- !--------------------------Navbar list items ------------------------->
<ul class="flex gap-6">
<li
class="text-slate-200 font-mullish py-5 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group hidden lg:block"
>
<a href="#">Payments</a>
<div
class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block transition-all duration-200"
></div>
</li>
<li
class="text-slate-200 font-mullish py-5 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group hidden lg:block"
>
<a href="#">Banking+</a>
<div
class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block transition-all duration-200"
></div>
</li>
<li
class="text-slate-200 font-mullish py-5 hover:text-lightBlue cursor-pointer transition-all duration-200 relative hidden lg:block group"
>
<a href="#">Line of Credit</a>
</li>
<li
class="text-slate-200 font-mullish py-5 hover:text-lightBlue cursor-pointer transition-all duration-200 hidden lg:block relative group"
>
<a href="#">Payroll</a>
</li>
<li
class="text-slate-200 font-mullish py-5 hover:text-lightBlue cursor-pointer transition-all duration-200 hidden lg:block relative group"
>
<a href="#">Resources</a>
<div
class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block transition-all duration-200"
></div>
</li>
<li
class="text-slate-200 font-mullish py-5 hover:text-lightBlue cursor-pointer transition-all duration-200 hidden lg:block relative group"
>
<a href="#">Support</a>
<div
class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block transition-all duration-200"
></div>
</li>
<li
class="text-slate-200 font-mullish py-5 hover:text-lightBlue cursor-pointer transition-all duration-200 hidden lg:block relative group"
>
<a href="#">Pricing</a>
</li>
</ul>
<!-- !-----------------------------India Flag Image -------------------------->
<div class="flex gap-6 group">
<img
src="./Images/india-flag.svg"
width="28px"
height="20px"
class="cursor-pointer hidden lg:block"
/>
<!--!------------- Login Button ---------------->
<button
class="py-3 px-5 font-mullish text-white border-lightBlue border rounded-sm text-sm font-bold"
>
Log In
</button>
<!--!------------- Sign In Button ---------------->
<button
class="py-1 px-6 font-mullish border-none hidden lg:flex items-center rounded-sm text-sm font-bold bg-white text-lightBlue300 border transition-all duration-200 hover:text-lightBlue500"
>
Sign Up <i class="ri-arrow-right-line"></i>
</button>
</div>
</nav>
<!--!---------------------------------------------------------------- hero section ------------------------------------------------------------------------->
<section class="relative bg-deepBlue">
<div class="max-w-[1080px] w-10/12 flex sm:flex-col lg:flex-row justify-between items-center mx-auto ">
<!--!------------------------------ left part --------------------------------->
<div >
<!--!----hero section heading ------->
<h1 class="font-mullish font-bold text-[40px] leading-[1.2] text-white mb-6">Power your finance, grow your business</h1>
<!--!-----small lightgreen line ----->
<div class="w-6 h-1 bg-greenLight mb-8"></div>
<!--!-----hero section paragrapgh --->
<p class="font-mullish text-[18px] text-white leading-7 opacity-70 mb-10">
Accept payments from customers. Automate payouts to vendors &
employees. Never run out of working capital.
</p>
<!--!-----SignUp Now Button --------->
<button class=" box-border font-mullish bg-lightBlue text-white rounded-md font-bold hover:bg-lightBlue500 transition-all duration-200ms px-[18px] py-[12px]">SignUp Now <i class="ri-arrow-right-line"></i></button>
</div>
<!--!------------------------------- right part --------------------------------->
<img src="https://razorpay.com/build/browser/static/home-desktop.4a9233fc.jpg" alt="" class="w-full max-w-[680px]" />
</div>
<!--!----------------------------------------------------------- shape part ------------------------------------------------------------------------------>
<div class="absolute left-0 right-0 w-[103%]">
<img src="./Images/hero-shape.svg" alt="" class=" w-full object-fill"/>
</div>
</section>
<!--!------------------------------------------------------------- content section ------------------------------------------------------------------------->
<section class="relative mt-[190px] overflow-hidden ">
<!--!---------hero section navbar -->
<!-- <nav class="bg-[url(./Images/navsvg.svg)] w-[1349px] h-[64px] fixed top-0 bg-no-repeat bg-cover translate-y-0 transition ease-in-out duration-150 ">
<div class="max-w-[1080px] relative flex justify-between h-[64px] items-center mx-auto">
<img src="./Images/logoblack.png" alt="Razorpay Logo" width="125px" height="30px">
<div class="flex justify-evenly w-[324px] h-[36px]">
<img src="./Images/india-flag.svg" alt="" width="28px" height="20px" class="cursor-pointer">
<button class="font-mullish font-bold py-[7px] px-[18px] text-white cursor-pointer rounded-sm bg-gradient-to-r from-[#2A86F3] to-[#105AEE]"> Start Accepting payments </button>
</div>
</div>
</nav> -->
<!-- !--------------floating image design----------------------------->
<img src="./Images/feature-section1-dottedrows.png" alt="" loading="lazy" width="233" height="167" class="absolute -top-32 left-[10rem] inline-block"/>
<img src="./Images/feature-section1-dottedrows.png" alt="" loading="lazy" width="233" height="167" class="absolute top-[3rem] right-0 inline-block rotate-180"/>
<div class="relative w-11/12 max-w-[1080px] mx-auto pt-4">
<!--!--------------------content section heading ------------------->
<h2 class="font-mullish font-extrabold text-center text-2xl leading-[1.2] mb-4 hidden md:block">Accept Payments with Razorpay Payment Suite</h2>
<h2 class="inline-block text-center md:hidden font-mullish text-[2.5rem] leading-[1.2] font-extrabold mx-auto">Explore Payments with Razorpay Payment Suite</h2>
<!--!-----small lightgreen line ----->
<div class="w-6 h-1 bg-greenLight mx-auto mb-20"></div>
<!--!-------------------------- content box ------------------------->
<div class="w-full min-h-[520px] bg-white flex rounded-md relative p-10 py-10 border">
<!-- <div
class="absolute border-t-[6rem] border-l-[6rem] border-t-transparent border-l-white z-20 top-6 right-0 md:hidden">
</div> -->
<!--!------------------------------------- left section --------------------------------------------------------->
<div class="flex flex-col justify-between w-full ">
<!-- !----------------------------------------- ----left section heading ----------------------------------- -->
<h3 class="font-mullish text-[28px] font-bold max-w-[500px]">Supercharge your business with the all‑powerful <span class="text-lightBlue">Payment Gateway</span></h3>
<!-- !----------------content section list items --------------------->
<ul class="space-y-2 my-6 md:my-0">
<li class="font-mullish flex items-center space-x-3">
<i class="fa-solid fa-check text-greenLight"></i>
<span class="">100+ Payment Methods</span>
</li>
<li class="font-mullish flex items-center space-x-3">
<i class="fa-solid fa-check text-greenLight"></i>
<span>Industry Leading Success Rate</span>
</li>
<li class="font-mullish flex items-center space-x-3">
<i class="fa-solid fa-check text-greenLight"></i>
<span>Superior Checkout Experience</span>
</li>
<li class="font-mullish flex items-center space-x-3">
<i class="fa-solid fa-check text-greenLight"></i>
<span>Easy to Integrate</span>
</li>
<li class="font-mullish flex items-center space-x-3">
<i class="fa-solid fa-check text-greenLight"></i>
<span>Instant Settlements from day 1</span>
</li>
<li class="font-mullish flex items-center space-x-3">
<i class="fa-solid fa-check text-greenLight"></i>
<span>In-depth Reporting and Insights</span>
</li>
</ul>
<!--!------------------------------------ btn & hyperlink ----------------------------------->
<div class="flex flex-col-reverse md:flex-row items-center space-x-4 ">
<!-- !----------------------- SignUp button --------------------->
<button class=" box-border font-mullish cursor-pointer w-full md:w-fit bg-lightBlue text-white rounded-md font-bold hover:bg-lightBlue500 transition-all duration-200ms px-[18px] py-[12px]">SignUp Now <i class="ri-arrow-right-line"></i></button>
<!--!------------------------- hyperlink ------------------------>
<div class="flex sm:flex-start md:items-center cursor-pointer group">
<!-- !-----------------------Know More Hyperlink ---------------->
<a href="#" class="font-mullish font-bold text-lightBlue500 group-hover:text-gray-800 transition-all duration-200">Know More </a>
<i class="fa-solid fa-greater-than text-lightBlue500 group-hover:text-gray-800"></i>
</div>
</div>
</div>
<!-- !--------content section right side image ------------------------------------------------>
<img src="./Images/payment-suite.png" alt="" class="max-w-[630px] right-0 bottom-0 hidden md:max-w-[400px] lg:max-w-[630px] md:block lg:block absolute"/>
</div>
<!--!------------------------------------------------------------------ Card section ---------------------------------------------------------------------------------------------->
<div class="w-full grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 mt-16">
<!--!----------------------------------------------------------------- box1 ------------------------------------------------------------------------------->
<div class="w-full min-h-[15rem] relative cursor-pointer mb-5 featureCard" >
<!--!---------------small logo iamge --------------------------------->
<img src="./Images/payment-link-icon.svg" alt="" class="featureCardIcon bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200"/>
<!--!-------------------------------------------- box shape ----------------------------------------------->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" style="stroke-opacity: 0.15em;" class="featureCardSVG stroke-1 stroke-[#8f93a159] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z" fill="#fff">
</path>
</svg>
<!--!----------------------------- box content ----------------------------------------->
<div class="z-[100] featureCardBox absolute h-full w-full flex flex-col justify-between pl-5 py-6 pr-8 ">
<!--!-------------------------------- text ------------------------------------------->
<div>
<h3 class=" font-mullish font-extrabold text-deepBlueHead leading-[1.2] text-[1.375rem] featureCard">Payment Links</h3>
<p class="font-mullish text-gray-500 mt-4 featureCard">Share payment link via an email, SMS, messenger, chatbot etc. and get paid immediately</p>
</div>
<!--!---------------------------------- hyperlink ----------------------------------------->
<div class="flex items-center cursor-pointer group">
<a href="#" class="font-mullish font-bold text-lightBlue500 group-hover:text-gray-800 transition-all duration-200 text-[0.85rem]">Know More </a>
<i class="fa-solid fa-greater-than text-lightBlue500 group-hover:text-gray-800 text-[0.85rem]"></i>
</div>
</div>
</div>
<!--!----------------------------------------------------------------- box2 ------------------------------------------------------------------------------->
<div class="w-full min-h-[15rem] relative cursor-pointer mb-5 featureCard">
<img src="./Images/payment-pages-icon.svg" alt="" class="featureCardIcon bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200"/>
<!-- box shape -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" style="stroke-opacity: 0.15em;" class="featureCardSVG stroke-1 stroke-[#8f93a159] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z" fill="#fff">
</path>
</svg>
<!-- box content -->
<div class="z-[100] featureCardBox absolute h-full w-full flex flex-col justify-between pl-5 py-6 pr-8 ">
<!-- text -->
<div>
<h3 class=" font-mullish font-extrabold text-deepBlueHead leading-[1.2] text-[1.375rem] featureCard">Payment Pages</h3>
<p class="font-mullish text-gray-500 mt-4 featureCard">Take your store online instantly with zero coding. Accept international & domestic payments</p>
</div>
<!-- hyperlink -->
<div class="flex items-center cursor-pointer group">
<a href="#" class="font-mullish font-bold text-lightBlue500 group-hover:text-gray-800 transition-all duration-200 text-[0.85rem]">Know More </a>
<i class="fa-solid fa-greater-than text-lightBlue500 group-hover:text-gray-800 text-[0.85rem]"></i>
</div>
</div>
</div>
<!--!----------------------------------------------------------------- box3 ------------------------------------------------------------------------------->
<div class="w-full min-h-[15rem] relative cursor-pointer mb-5 featureCard">
<img src="./Images/payment-buttons-icon.svg" alt="" class="featureCardIcon bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200"/>
<!-- box shape -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" style="stroke-opacity: 0.15em;" class="featureCardSVG stroke-1 stroke-[#8f93a159] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z" fill="#fff">
</path>
</svg>
<!-- box content -->
<div class="z-[100] featureCardBox absolute h-full w-full flex flex-col justify-between pl-5 py-6 pr-8 ">
<!-- text -->
<div>
<h3 class=" font-mullish font-extrabold text-deepBlueHead leading-[1.2] text-[1.375rem] featureCard">Payment Buttons</h3>
<p class="font-mullish text-gray-500 mt-4 featureCard">Create, Copy & Collect With Payment Button. Collect one time or subscription payments & more</p>
</div>
<!-- hyperlink -->
<div class="flex items-center cursor-pointer group">
<a href="#" class="font-mullish font-bold text-lightBlue500 group-hover:text-gray-800 transition-all duration-200 text-[0.85rem]">Know More </a>
<i class="fa-solid fa-greater-than text-lightBlue500 group-hover:text-gray-800 text-[0.85rem]"></i>
</div>
</div>
</div>
<!--!----------------------------------------------------------------- box4 ------------------------------------------------------------------------------->
<div class="w-full min-h-[15rem] relative cursor-pointer mb-5 featureCard">
<img src="./Images/route-icon.svg" alt="" class="featureCardIcon bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200"/>
<!-- box shape -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" style="stroke-opacity: 0.15em;" class="featureCardSVG stroke-1 stroke-[#8f93a159] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z" fill="#fff">
</path>
</svg>
<!-- box content -->
<div class="z-[100] featureCardBox absolute h-full w-full flex flex-col justify-between pl-5 py-6 pr-8 ">
<!-- text -->
<div>
<h3 class=" font-mullish font-extrabold text-deepBlueHead leading-[1.2] text-[1.375rem] featureCard">Route</h3>
<p class="font-mullish text-gray-500 mt-4 featureCard">Split incoming payments automatically to vendor’s accounts, manage marketplace money flow...</p>
</div>
<!-- hyperlink -->
<div class="flex items-center cursor-pointer group">
<a href="#" class="font-mullish font-bold text-lightBlue500 group-hover:text-gray-800 transition-all duration-200 text-[0.85rem]">Know More </a>
<i class="fa-solid fa-greater-than text-lightBlue500 group-hover:text-gray-800 text-[0.85rem]"></i>
</div>
</div>
</div>
<!--!----------------------------------------------------------------- box5 ------------------------------------------------------------------------------->
<div class="w-full min-h-[15rem] relative cursor-pointer mb-5 featureCard">
<img src="./Images/subscriptions-icon.svg" alt="" class="bg-lightBlue absolute featureCardIcon right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200"/>
<!-- box shape -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" style="stroke-opacity: 0.15em;" class="featureCardSVG stroke-1 stroke-[#8f93a159] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z" fill="#fff">
</path>
</svg>
<!-- box content -->
<div class="z-[100] featureCardBox absolute h-full w-full flex flex-col justify-between pl-5 py-6 pr-8 ">
<!-- text -->
<div>
<h3 class=" font-mullish font-extrabold text-deepBlueHead leading-[1.2] text-[1.375rem] featureCard">Subscriptions</h3>
<p class="font-mullish text-gray-500 mt-4 featureCard">Subscription plans with automated recurring transactions on various payment modes.</p>
</div>
<!-- hyperlink -->
<div class="flex items-center cursor-pointer group">
<a href="#" class="font-mullish font-bold text-lightBlue500 group-hover:text-gray-800 transition-all duration-200 text-[0.85rem]">Know More </a>
<i class="fa-solid fa-greater-than text-lightBlue500 group-hover:text-gray-800 text-[0.85rem]"></i>
</div>
</div>
</div>
<!--!----------------------------------------------------------------- box6 ------------------------------------------------------------------------------->
<div class="w-full min-h-[15rem] relative cursor-pointer mb-5 featureCard">
<img src="./Images/smart-collect-icon.svg" alt="" class="bg-lightBlue featureCardIcon absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200"/>
<!-- box shape -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" style="stroke-opacity: 0.15em;" class="featureCardSVG stroke-1 stroke-[#8f93a159] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z" fill="#fff">
</path>
</svg>
<!-- box content -->
<div class="z-[100] featureCardBox absolute h-full w-full flex flex-col justify-between pl-5 py-6 pr-8 ">
<!-- text -->
<div>
<h3 class=" font-mullish font-extrabold text-deepBlueHead leading-[1.2] text-[1.375rem] featureCard">Smart Collect</h3>
<p class="font-mullish text-gray-500 mt-4 featureCard">Automatically reconcile incoming NEFT, RTGS, IMPS, UPI payments using Customer Identifiers & UPI-IDs</p>
</div>
<!-- hyperlink -->
<div class="flex items-center cursor-pointer group">
<a href="#" class="font-mullish text-[0.85rem] font-bold text-lightBlue500 group-hover:text-gray-800 transition-all duration-200">Know More </a>
<i class="fa-solid fa-greater-than text-lightBlue500 group-hover:text-gray-800 text-[0.85rem]"></i>
</div>
</div>
</div>
</div>
<!-- !----------------------------horizontal card -------------------------------->
<div class="w-full max-w-[1080px] h-14 p-4 mt-5 border border-lightBlue300 rounded-lg text-center bg-gradient-to-b from-[#E3EEFE] to-[#F6FBFF]" >
<p class="font-mullish text-gray-600"><span class="font-mullish font-bold text-deepBlue text-[15px]">Not sure which product to choose?</span> Answer a few questions and we’ll help you out <span class="font-mullish font-bold text-[15px] text-lightBlue500 hover:bg-lightBlue500 hover:text-white cursor-pointer transition-all duration-400">Find me a product ></span></p>
</div>
</div>
</section>
<!--!--------------------------------------------------------------feature section ------------------------------------------------------------------------->
<section class="bg-[url(./Images/feature-section-2BG.svg)] bg-cover mt-14 bg-no-repeat pt-[10rem] pb-[350px]">
<div class="w-10/12 max-w-[1080px] pt-4 mx-auto relative">
<h2 class="font-mullish font-extrabold text-white text-center text-2xl leading-[1.2] mb-4">Explore RazorpayX powered Business Banking</h2>
<div class="w-6 h-1 bg-greenLight mx-auto mb-20"></div>
<!--!------------------------main feature box --------------------------------->
<div class="w-full min-h-[440px] flex relative ">
<img src="./Images/x-flame-1.png" alt="" loading="lazy" class="absolute -top-[142px] -left-[140px] w-[200px]"/>
<img src="./Images/x-flame-2.png" alt="" loading="lazy" class="absolute w-[270px] top-[190px] -right-[120px]"/>
<!-- !------------------------content box------------------------------------>
<div class="w-full min-h-[520px] bg-[#181C2E] flex rounded-md relative p-10 py-10 border border-gray-600" z-20 >
<!-- !----------left part ------------------->
<div class="flex flex-col gap-12 z-20 w-full">
<h3 class="font-mullish text-[28px] font-bold text-white max-w-[500px]">Manage your company’s finances and supercharge your business banking with <img src="./Images/razorpayX.svg" loading="lazy" class="inline ml-2"/></h3>
<ul class="space-y-2">
<li class="font-mullish flex items-center space-x-3">
<i class="fa-solid fa-check text-greenLight"></i>
<span class="font-mullish text-gray-300">Open a fully digital current account</span>
</li>
<li class="font-mullish flex items-center space-x-3">
<i class="fa-solid fa-check text-greenLight"></i>
<span class="font-mullish text-gray-300">Automate payables & compliment payments</span>
</li>
<li class="font-mullish flex items-center space-x-3">
<i class="fa-solid fa-check text-greenLight"></i>
<span class="font-mullish text-gray-300">Simplify and track spends with Corporate cards</span>
</li>
<li class="font-mullish flex items-center space-x-3">
<i class="fa-solid fa-check text-greenLight"></i>
<span class="font-mullish text-gray-300">View financial insights at a glance</span>
</li>
</ul>
<!-- !-----------btn & hyperlink------------>
<div class="flex flex-col-reverse md:flex-row items-center space-x-4 ">
<!-- !----------------------- SignUp button --------------------->
<button class=" box-border self-stretch md:w-fit items-center md:justify-start place-content-center font-mullish cursor-pointer bg-lightBlue text-white rounded-md font-bold hover:bg-lightBlue500 transition-all duration-200ms w-[190px] px-[18px] py-[14px] pr-[70px]">
SignUp
<div class="w-12 h-[60px] bg-greenLight absolute left-40 bottom-20 grid place-items-center skew-x-[20deg]">
<i class="ri-arrow-right-line -skew-x-[20deg]"></i>
</div>
</button>
<!--!------------------------- hyperlink ------------------------>
<div class="flex items-center cursor-pointer group">
<!-- !-----------------------Know More Hyperlink ---------------->
<a href="#" class="font-mullish font-bold text-lightBlue500 group-hover:text-lightBlue300 transition-all duration-200">Know More </a>
<i class="fa-solid fa-greater-than text-lightBlue500 group-hover:text-lightBlue300"></i>
</div>
</div>
</div>
<!-- !----------------bg img for content box ----------->
<img src="./Images/buisness-banking.png" alt="" class="max-w-[680px] right-0 hidden md:max-w-[400px] md:block lg:max-w-[600px] lg:block bottom-10 absolute z-5">
</div>
</div>
<!--!------------------------------------------------------------------ Card section ---------------------------------------------------------------------------------------------->
<div class="w-full grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 mt-16">
<!--!----------------------------------------------------------------- box1 ------------------------------------------------------------------------------->
<div class="w-full min-h-[15rem] relative cursor-pointer mb-5 featureCard2" >
<!--!---------------small logo iamge --------------------------------->
<img src="./Images/current-icon.svg" alt="" class="featureCardIcon bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200"/>
<!--!-------------------------------------------- box shape ----------------------------------------------->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" style="stroke-opacity: 0.15em;" class="featureCardSVG stroke-1 stroke-[#8f93a159] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z" fill="#181C2E">
</path>
</svg>
<!--!----------------------------- box content ----------------------------------------->
<div class="z-[100] featureCardBox absolute h-full w-full flex flex-col justify-between pl-5 py-6 pr-8 ">
<!--!-------------------------------- text ------------------------------------------->
<div>
<h3 class=" font-mullish font-extrabold text-white leading-[1.2] text-[1.375rem] featureCard2">Current Account</h3>
<p class="font-mullish text-gray-400 mt-4 featureCard2">Current accounts for fast-growing businesses, supported by the best-in-class technology</p>
</div>
<!--!---------------------------------- hyperlink ----------------------------------------->
<div class="flex items-center cursor-pointer group">
<a href="#" class="font-mullish font-bold text-lightBlue500 text-[0.85rem]">Know More </a>
<i class="fa-solid fa-greater-than text-lightBlue500 text-[0.85rem]"></i>
</div>
</div>
</div>
<!--!----------------------------------------------------------------- box2 ------------------------------------------------------------------------------->
<div class="w-full min-h-[15rem] relative cursor-pointer mb-5 featureCard2">
<img src="./Images/payouts-icon.svg" alt="" class="featureCardIcon bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200"/>
<!-- box shape -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" style="stroke-opacity: 0.15em;" class="featureCardSVG stroke-1 stroke-[#8f93a159] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z" fill="#181C2E">
</path>
</svg>
<!-- box content -->
<div class="z-[100] featureCardBox absolute h-full w-full flex flex-col justify-between pl-5 py-6 pr-8 ">
<!-- text -->
<div>
<h3 class=" font-mullish font-extrabold text-white leading-[1.2] text-[1.375rem] featureCard2">Payouts</h3>
<p class="font-mullish text-gray-400 mt-4 featureCard2">Make simple, reliable & secure payouts to bank accounts, UPI IDs or wallets</p>
</div>
<!-- hyperlink -->
<div class="flex items-center cursor-pointer group">
<a href="#" class="font-mullish font-bold text-lightBlue500 group-hover:text-gray-800 transition-all duration-200 text-[0.85rem]">Know More </a>
<i class="fa-solid fa-greater-than text-lightBlue500 group-hover:text-gray-800 text-[0.85rem]"></i>
</div>
</div>
</div>
<!--!----------------------------------------------------------------- box3 ------------------------------------------------------------------------------->
<div class="w-full min-h-[15rem] relative cursor-pointer mb-5 featureCard2">
<img src="./Images/capital-credit-icon.svg" alt="" class="featureCardIcon bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200"/>
<!-- box shape -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" style="stroke-opacity: 0.15em;" class="featureCardSVG stroke-1 stroke-[#8f93a159] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z" fill="#181C2E">
</path>
</svg>
<!-- box content -->
<div class="z-[100] featureCardBox absolute h-full w-full flex flex-col justify-between pl-5 py-6 pr-8 ">
<!-- text -->
<div>
<h3 class=" font-mullish font-extrabold text-white leading-[1.2] text-[1.375rem] featureCard2">Payroll</h3>
<p class="font-mullish text-gray-400 mt-4 featureCard2">Set your payroll and compliances like TDS, ESIC, PT, & PF on autopilot.</p>
</div>
<!-- hyperlink -->
<div class="flex items-center cursor-pointer group">
<a href="#" class="font-mullish font-bold text-lightBlue500 group-hover:text-gray-800 transition-all duration-200 text-[0.85rem]">Know More </a>
<i class="fa-solid fa-greater-than text-lightBlue500 group-hover:text-gray-800 text-[0.85rem]"></i>
</div>
</div>
</div>
</div>
<!-- !------------------------------------------------------demo box------------------------------------------->
<div class="relative justify-around items-center hidden md:flex-col lg:flex-row md:flex lg:flex my-[64px] py-[32px] border border-gray-600 rounded-lg">
<p class="font-mullish text-[20px] text-white">Check out the live demo to learn how RazorpayX works. <span class="font-mullish font-bold text-white text-[20px] ">No sign-up required!</span> </p>
<button class=" box-border font-mullish cursor-pointer bg-lightBlue text-white rounded-md font-bold hover:bg-lightBlue500 transition-all duration-200ms w-[290px] px-[18px] py-[14px] pr-[90px]">
Check out the demo
<div class="w-12 h-[60px] bg-greenLight absolute right-12 bottom-7 grid place-items-center skew-x-[20deg]">
<i class="ri-arrow-right-line -skew-x-[20deg]"></i>
</div>
</button>
</div>
</div>
</section>
<!--!---------------------------------------------------------------Feature Section 2 ---------------------------------------------------------------------->
<section class="bg-white relative">
<div class="relative w-11/12 max-w-[1080px] mx-auto pt-4">
<img src="./Images/feature-section1-dottedrows.png" alt="" loading="lazy" class="absolute w-[233px] left-[300px] -top-[6rem] z-[10]"/>
<img src="./Images/feature-section1-dottedrows.png" alt="" loading="lazy" class="absolute w-[233px] -right-[3.5rem] -top-[6rem] z-[10]"/>
<div class="w-full grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-y-10 gap-x-4 relative z-[10]">
<!--!------------------- item1 -------------------------------->
<div class="relative flex items-center">
<h2 class="text-deepBlue font-mullish font-extrabold text-4xl leading-[3.375rem]">New in the <br> <span class="font-mullish text-lightBlue500">Razorpay</span> <br>Product Suite</h2>
</div>
<!--!---------------------- card1 ------------------------------>
<div class="bg-[url(./Images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer shadow-md hover:shadow-lg bg-white bg-no-repeat p-[40px] hover:scale-105 transition-all duration-200 hover:bg-[url(./Images/instant-settlement-bghover.svg)]">
<img src="./Images/razorpayXicon.svg" alt="" class="w-10 h-10">
<h3 class="font-mullish text-lg font-extrabold pt-4 ">Instant Settlements</h3>
<p class="font-mullish text-gray-600 py-3 leading-normal ">Settle your customer payments within 10 seconds as soon your account is activated, even during holidays.</p>
<div class="flex items-center cursor-pointer group">
<!-- !-----------------------Know More Hyperlink ---------------->
<a href="#" class="font-mullish font-bold text-lightBlue500 text-[14px]">Know More </a>
<i class="fa-solid fa-greater-than text-lightBlue500 text-[10px] "></i>
</div>
</div>
<!--!---------------------- card2 ------------------------------>
<div class="bg-[url(./Images/upi-autopay-bg.svg)] w-full max-h-[300px] cursor-pointer shadow-md hover:shadow-lg bg-white bg-no-repeat p-[40px] hover:scale-105 transition-all duration-200 hover:bg-[url(./Images/upi-autopay-hoverbg.svg)]">
<img src="./Images/autopay-icon.svg" alt="" class="w-10 h-10 bg-lightBlue300 rounded-full">
<h3 class="font-mullish text-lg font-extrabold pt-4 ">UPI Autopay</h3>
<p class="font-mullish text-gray-600 py-3 leading-normal ">Allow customers to set up recurring payments using UPI Apps.</p>
<div class="flex items-center cursor-pointer group">
<!-- !-----------------------Know More Hyperlink ---------------->
<a href="#" class="font-mullish font-bold text-lightBlue500 text-[14px]">Know More </a>
<i class="fa-solid fa-greater-than text-lightBlue500 text-[10px]"></i>
</div>
</div>
<!--!---------------------- card3 ------------------------------>
<div class="bg-[url(./Images/magic-checkout-bg.svg)] w-full max-h-[300px] cursor-pointer shadow-md hover:shadow-lg bg-white bg-no-repeat p-[40px] hover:scale-105 transition-all duration-200 hover:bg-[url(./Images/magic-checkout-hoverbg.svg)]">
<img src="./Images/magic-checkout.svg" alt="" class="w-10 h-10 bg-lightBlue500 rounded-full">
<h3 class="font-mullish text-lg font-extrabold pt-4 ">Payment Button</h3>
<p class="font-mullish text-gray-600 py-3 leading-normal ">Accept payments on your website, in less than 5 minutes. No developer needed.</p>
<div class="flex items-center cursor-pointer group">
<!-- !-----------------------Know More Hyperlink ---------------->
<a href="#" class="font-mullish font-bold text-lightBlue500 text-[14px] ">Know More </a>
<i class="fa-solid fa-greater-than text-lightBlue500 text-[10px] "></i>
</div>
</div>
<!--!---------------------- card4 ------------------------------>
<div class="bg-[url(./Images/payment-button-bg.svg)] w-full max-h-[300px] cursor-pointer shadow-md hover:shadow-lg bg-white bg-no-repeat p-[40px] hover:scale-105 transition-all duration-200 hover:bg-[url(./Images/payment-button-hoverbg.svg)]">
<img src="./Images/payment-button.svg" alt="" class="bg-lightBlue500 rounded-full w-10 h-10">
<h3 class="font-mullish text-lg font-extrabold pt-4 ">QR Codes</h3>
<p class="font-mullish text-gray-600 py-3 leading-normal ">Create unlimited QR codes with business branding and start accepting payments for free*.</p>
<div class="flex items-center cursor-pointer group">
<!-- !-----------------------Know More Hyperlink ---------------->
<a href="#" class="font-mullish font-bold text-lightBlue500 text-[14px] ">Know More </a>
<i class="fa-solid fa-greater-than text-lightBlue500 text-[10px] "></i>
</div>
</div>
<!--!---------------------- card5 ------------------------------>
<div class="bg-[url(./Images/instantsettlement-bg.svg)] w-full max-h-[300px] cursor-pointer shadow-md hover:shadow-lg bg-white bg-no-repeat p-[40px] hover:scale-105 transition-all duration-200 hover:bg-[url(./Images/instantsettlement-hoverbg.svg)]">
<img src="./Images/instant-settlement-icon.svg" alt="" class="w-10 bg-lightBlue500 rounded-full h-10">
<img src="" alt="">
<h3 class="font-mullish text-lg font-extrabold pt-4 ">Magic Checkout</h3>
<p class="font-mullish text-gray-600 py-3 leading-normal ">Improve your order conversion rates & reduce return-to-origins. Boost your business by 20%!.</p>
<div class="flex items-center cursor-pointer group">
<!-- !-----------------------Know More Hyperlink ---------------->
<a href="#" class="font-mullish font-bold text-[14px] text-lightBlue500 ">Know More </a>
<i class="fa-solid fa-greater-than text-[10px] text-lightBlue500 "></i>
</div>
</div>
</div>
</div>
</section>
<!--!----------------------------------------------------------------Core Features ------------------------------------------------------------------------->
<section class="wfull bg-[url(./Images/core-features-sectionBg.svg)] bg-cover bg-no-repeat mt-14 relative coreFeaturesBg mb-20">
<div class="relative w-11/12 max-w-[1080px] mx-auto pt-4">
<h2 class="font-mullish font-extrabold text-white text-center text-2xl leading-[1.2] mt-40 mb-4">Features</h2>
<div class="w-6 h-1 bg-greenLight mx-auto mb-5"></div>
<p class="text-white font-mullish text-center max-w-[450px] mb-8 mx-auto">Empower your business with all the right tools to accept online payments and provide the best customer experience</p>
<div class="w-full grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-[2rem] relative z-[10]">
<!--!---------- card1 ----------->
<div class= "w-full max-h-[300px] p-[10px] ">
<img src="./Images/instant-activation-icon.svg" alt="" class="w-10 h-10">
<h3 class="font-mullish text-lg text-white font-bold pt-4 ">Instant Activation</h3>
<p class="font-mullish text-white py-3 leading-normal ">Get activated and transact within 2 minutes. Completely online onboarding with minimum documentation.</p>
</div>
<!--!------------card2 ----------->
<div class= "w-full max-h-[300px] p-[10px] ">
<img src="./Images/easy-integration.svg" alt="" class="w-10 h-10">
<h3 class="font-mullish text-lg text-white font-bold pt-4 ">Easy Integration</h3>
<p class="font-mullish text-white py-3 leading-normal ">With plugins for all major platforms and languages, integrate and go live with Razorpay in less than an hour.</p>
</div>
<!--!------------card3 ----------->
<div class= "w-full max-h-[300px] p-[10px] ">
<img src="./Images/api-driven-icon.svg" alt="" class="w-10 h-10">
<h3 class="font-mullish text-lg text-white font-bold pt-4 ">API Driven</h3>
<p class="font-mullish text-white py-3 leading-normal ">Build your business for scale with our complete API-driven automation that requires zero manual intervention.</p>
</div>
<!--!------------card4 ----------->
<div class= "w-full max-h-[300px] p-[10px] ">
<img src="./Images/payment-modes.svg" alt="" class="w-10 h-10">
<h3 class="font-mullish text-lg text-white font-bold pt-4 ">100+ payment modes</h3>
<p class="font-mullish text-white py-3 leading-normal ">Offer your customers the luxury of all payment modes including Credit/Debit cards, Netbanking, UPI, Wallets etc.</p>
</div>
<!--!------------card5 ----------->
<div class= "w-full max-h-[300px] p-[10px] mb-20">
<img src="./Images/simple-pricing.svg" alt="" class="w-10 h-10">
<h3 class="font-mullish text-lg text-white font-bold pt-4 ">Simple Pricing</h3>
<p class="font-mullish text-white py-3 leading-normal ">Our innovative payment solutions with competitive pricing make payments simpler.</p>
</div>
<!--!------------card6 ----------->
<div class= "w-full max-h-[300px] p-[10px] mb-20">
<img src="./Images/industry-support-icon.svg" alt="" class="w-10 h-10">
<h3 class="font-mullish text-lg text-white font-bold pt-4 ">Best in Industry Support</h3>
<p class="font-mullish text-white py-3 leading-normal ">Always available email, phone and chat based support to help you in your every step.</p>
</div>
<!--!------------card7 ----------->
<div class= "w-full max-h-[300px] p-[10px] mb-20">
<img src="./Images/dashboard-reporting-icon.svg" alt="" class="w-10 h-10">
<h3 class="font-mullish text-lg text-white font-bold pt-4 ">Dashboard Reporting</h3>
<p class="font-mullish text-white py-3 leading-normal ">Real-time data and insights on your Razorpay Dashboard to make informed business decisions.</p>
</div>
<!--!------------card8 ----------->
<div class= "w-full max-h-[300px] p-[10px] mb-20">
<img src="./Images/secure-icon.svg" alt="" class="w-10 h-10">
<h3 class="font-mullish text-lg text-white font-bold pt-4 ">Secure</h3>
<p class="font-mullish text-white py-3 leading-normal ">PCI DSS Level 1 compliant solution which removes your burden of regulatory compliance.</p>
</div>
</div>
</div>
</section>
<!-- !----------------------------------------------------------------Join Razorpay Section ---------------------------------------------------------------->
<section class="bg-[#f5f8fe] relative pt-40 pb-12 -mt-[200px] -z-[100]">
<div class="w-11/12 max-w-[1080px] relative mx-auto flex flex-col md:flex-row sm:my-10 gap-100 justify-around ">
<!-- !-----left part -------->
<div class="flex flex-col justify-center w-full md:max-w-[calc(100%-600px)] ">
<h2 class="font-mullish font-extrabold text-2xl text-deepBlue">Join the 50,00,000 businesses using Razorpay</h2>
<div class="w-6 h-1 bg-greenLight mb-10 my-4"></div>
<p class="font-mullish opacity-80">We make it easier for you to focus on building great products while we work on simplifying your payments. Become one of us by joining thousands of our happy users and simplify the online payment experience for your customers.</p>
<p class="font-mullish mt-6 opacity-80 mb-6">Focus on your business while we handle the complexities of payments for you.</p>
<button class=" font-mullish cursor-pointer bg-lightBlue text-white rounded-md font-bold w-[190px] px-[18px] py-[14px]">Get Started <i class="ri-arrow-right-line"></i></button>
</div>
<!-- !----RIGHT PART----------->
<div class="h-[500px] w-[500px] relative mx-auto overflow-y-hidden">
<img src="./Images/comanies.png" class="absolute w-full object-cover h-full md:h-auto z-10 companiesList">
<div style="background: linear-gradient(180deg, #f4f8ff, #fff0)" class="absolute w-full h-[150px] top-0 z-50"></div>
<div style="background: linear-gradient(0deg , #f4f8ff #fff8)" class="absolute w-full h-[150px] bottom-0 z-50">
</div>
</div>
</div>
</section>
<!-- !----------------------------------------------------------------Testimonial Section ------------------------------------------------------------------>
<section class="relative">
<div class="w-11/12 max-w-[1300px] mx-auto relative py-20">
<!-- !--- background image --------->
<img src="./Images/feature-section1-dottedrows.png" alt="" class="absolute w-[200px] top-[8rem] left-[2rem] -z-10">
<!-- !------heading----------- -->
<h2 class="font-mullish font-extrabold text-2xl text-deepBlue text-center mb-5">An Experience <br> People Love to Talk About</h2>
<div class="w-6 h-1 bg-greenLight mb-10 my-4 mx-auto"></div>
<!--!-------left buttom ---------->
<button class="w-[36px] h-[36px] md:w-[96px] md:h-[96px] bg-[#f4f8ff] rounded-full absolute left-0 top-1/2 -translate-y-1/2 grid place-items-center">
<div class="w-[65%] h-[65%] bg-[#f4f8ff] mix-blend-multiply rounded-full grid place-items-center">
<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" class="feather feather-chevron-left stroke-[5px] w-6 h-6 md:w-10 md:h-10 text-gray-400">
<polyline points="15 18 9 12 15 6"></polyline>
</svg>
</div>
</button>
<!--!-------right buttom ---------->
<button class="w-[36px] h-[36px] md:w-[96px] md:h-[96px] bg-[#f4f8ff] rounded-full absolute right-0 top-1/2 -translate-y-1/2 grid place-items-center">
<div class="w-[65%] h-[65%] bg-[#f4f8ff] mix-blend-multiply rounded-full grid place-items-center">
<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" class="feather feather-chevron-right stroke-[5px] w-6 h-6 md:w-10 md:h-10 text-gray-400">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</button>
<!--!--------main content ---------->
<div class="max-w-[960px] flex flex-col xl:flex-row items-center mx-auto my-20 justify-evenly">
<!-- !-------left img------------>
<img src="https://razorpay.com/build/browser/static/subham.042b5094.png" alt="" loading="lazy" height="320px" width="320px" class="rounded-xl"/>
<!-- !--------right img --------->
<div class="max-w-[430px] flex flex-col ">
<img src="./Images/quotes.svg" alt="" loading="lazy" width="35px" class="-mb-2 xl:order-1" height="40px">
<p class="font-mullish text-3xl font-extralight text-gray-600 leading-10 xl:order-1">Acquire Customers From New Customer Segments</p>
<a href="#" class="font-mullish text-gray-400 italic underline xl:order-1">Learn More</a>
<h3 class="font-mullish font-extrabold text-2xl text-deepBlue -order-1 xl:order-1">Subham Kumar</h3>
<p class="font-mullish font-medium mb-3 xl:order-1">Product Manager</p>
<img src="https://razorpay.com/build/browser/static/unacademy.1c618f03.svg" alt="" class="xl:order-1" loading="lazy" width="220px" height="80px"/>
</div>
</div>
<!--!----------6 dots section ------->
<div class="w-full flex flex-row justify-center mx-auto space-x-2 ">
<div class="w-[10px] h-[10px] rounded-full bg-gray-300"></div>
<div class="w-[10px] h-[10px] rounded-full bg-lightBlue500"></div>
<div class="w-[10px] h-[10px] rounded-full bg-gray-300"></div>
<div class="w-[10px] h-[10px] rounded-full bg-gray-300"></div>
<div class="w-[10px] h-[10px] rounded-full bg-gray-300"></div>
<div class="w-[10px] h-[10px] rounded-full bg-gray-300"></div>
</div>
</div>
</section>
<!--!------------------------------------------------------------------Supercharge Section ----------------------------------------------------------------->
<section class="bg-[url(./Images/CTABg.svg)] w-full h-full bg-no-repeat bg-cover relative ctasection ">
<!-- !-------------content Box --------------->
<div class="w-11/12 max-w-[1080px] mx-auto flex flex-row relative items-center justify-between space-x-20 ">
<!--!-------------left part ----------------->
<div class="w-[776px] ml-10">
<h2 class="font-mullish font-bold text-white text-2xl">Supercharge your business with Razorpay</h2>
<div class="w-6 h-1 bg-greenLight mb-6 my-4"></div>
<p class="font-mullish w-[440px] text-white mb-8" >Sign up now to experience the future of payments and offer your customers the best checkout experience.</p>
<!-- !-------------unordered List ------------>
<ul class="flex flex-row flex-wrap gap-x-11 gap-y-3 max-w-[600px] text-white ">
<li class="font-mullish flex items-center text-white ">
<i class="fa-solid fa-check text-greenLight mr-3"></i>
<span class="font-mullish text-white">Quick onboarding</span>
</li>
<li class="font-mullish flex items-center text-white ">
<i class="fa-solid fa-check text-greenLight mr-3"></i>
<span class="font-mullish text-white">Access to entire product suite</span>
</li>
<li class="font-mullish flex items-center text-white ">
<i class="fa-solid fa-check text-greenLight mr-3"></i>
<span class="font-mullish text-white">API access</span>
</li>
<li class="font-mullish flex items-center text-white ">
<i class="fa-solid fa-check text-greenLight mr-3"></i>
<span class="font-mullish text-white">24x7 support</span>
</li>
</ul>
<!-- !-------BUTTON -------------->
<button class="font-mullish min-w-[32px] mt-4 text-sm font-bold cursor-pointer py-3 px-4 bg-white flex rounded-sm text-lightBlue300 border items-center hover:text-lightBlue500 transition-all duration200">
Sign Up Now <i class="ri-arrow-right-line"></i>
</button>
</div>
<!-- !---------------RIGHT SIDE IMG ------------------->
<img src="./Images/ctaImg.svg" alt="" width="240px" class="hidden lg:block" height="282px">
</div>
</section>
<!--!-------------------------------------------------------------------Footer ----------------------------------------------------------------------------->
<footer style="background: linear-gradient(to right, #eef9fe, #edf7ff)" class="-mt-[400px] md:-mt-[300px]">
<div class="w-10/12 pt-[400px] pb-10 md:pt-[350px] md:my-0 md:w-11/12 max-w-[1080px] mx-auto flex flex-col space-y-6 lg:space-y-0 lg:space-x-4 lg:flex-row justify-between">
<!-- column - 1 -->
<div class="flex flex-col md:max-w-[340px] lg:max-w-[260px]">
<img src="./Images/logo-dark.svg" loading="lazy" width="120px" height="24px">
<p class="text-sm text-grayText my-3 font-mullish">
Razorpay is the only payments solution in India that allows
businesses to accept, process and disburse payments with its product
suite. It gives you access to all payment modes including credit
card, debit card, netbanking, UPI and popular wallets including
JioMoney, Mobikwik, Airtel Money, FreeCharge, Ola Money and PayZapp.
</p>
<p class="text-sm text-grayText my-3 font-mullish">
RazorpayX supercharges your business banking experience, bringing
effectiveness, efficiency, and excellence to all financial
processes. With RazorpayX, businesses can get access to
fully-functional current accounts, supercharge their payouts and
automate payroll compliance.
</p>
<p class="text-sm text-grayText my-3 font-mullish">
Manage your marketplace, automate bank transfers, collect recurring
payments, share invoices with customers and avail working capital
loans - all from a single platform. Fast forward your business with
Razorpay.
</p>
<p class="text-[0.625rem] text-grayText my-3 font-mullish">
Disclaimer: The RazorpayX powered Current Account and VISA corporate
credit card are provided by RBI licensed banks. Your RazorpayX
powered account is provided by our partner bank, in accordance with
RBI regulations. RazorpayX itself is not a bank and doesn't hold or
claim to hold a banking license.
</p>
<p class="font-mullish uppercase font-bold text-gray2">
Subscribe to our newsletter
</p>
<form class="relative bg-white w-[260px] mt-2 mb-4">
<input placeholder="Your email address" class="pr-16 font-mullish border-gray-300 outline-lightBlue focus:outline-lightBlue placeholder:text-sm py-2 px-4 border rounded-sm transition-all duration-200">
<button class="h-[90%] bg-white absolute right-[1.5px] top-1/2 -translate-y-1/2 z-10 font-mullish text-sm font-bold text-lightBlue300 flex rounded-sm items-center hover:text-lightBlue500 transition-all duration-200">
Subscribe
<svg viewBox="0 0 24 24" focusable="false" class="w-[14px] h-[14px] ml-3">
<path fill="currentColor" d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"></path>
</svg>
</button>
</form>
<div class="flex items-start space-x-4">
<img src="./Images/footer-certificate-1.png" loading="lazy" width="92" height="40" class="cursor-pointer">
<img src="./Images/footer-certificate-2.jpg" loading="lazy" width="122" height="80" class="cursor-pointer">
</div>
</div>
<!-- column - 2 -->
<div class="flex flex-col space-y-4 md:space-y-0 md:flex-row md:space-x-4 justify-between">
<!-- sub column - 1 -->
<div class="space-y-3">
<div>
<p class="font-mullish uppercase font-bold text-gray2 mb-1">
BANKING PLUS
</p>
<ul class="space-y-2">
<li>
<a href="#" class="font-mullish font-medium text-lightBlue500 hover:text-grayBlue transition-all duration-200">RazorpayX</a>
</li>
<li>
<a href="#" class="font-mullish font-medium text-lightBlue500 hover:text-grayBlue transition-all duration-200">Current Accounts</a>
</li>
<li>
<a href="#" class="font-mullish font-medium text-lightBlue500 hover:text-grayBlue transition-all duration-200">Payouts</a>
</li>
<li>
<a href="#" class="font-mullish font-medium text-lightBlue500 hover:text-grayBlue transition-all duration-200">Payout Links</a>
</li>
<li>
<a href="#" class="font-mullish font-medium text-lightBlue500 hover:text-grayBlue transition-all duration-200">Corporate Credit Card</a>
</li>
<li>
<a href="#" class="relative font-mullish font-medium text-lightBlue500 hover:text-grayBlue transition-all duration-200">
View Live Demo
<span class="text-white font-mullish uppercase bg-green-500 rounded-sm text-xs font-bold p-1">New</span>
</a>
</li>
</ul>
</div>
<div>
<p class="font-mullish uppercase font-bold text-gray2 mb-1">
LENDING
</p>
<ul class="space-y-2">
<li>
<a href="#" class="font-mullish font-medium text-lightBlue500 hover:text-grayBlue transition-all duration-200">Razorpay Capital</a>
</li>
<li>
<a href="#" class="font-mullish font-medium text-lightBlue500 hover:text-grayBlue transition-all duration-200">Instant Settlements</a>
</li>
<li>
<a href="#" class="font-mullish font-medium text-lightBlue500 hover:text-grayBlue transition-all duration-200">Working Capital Loans</a>
</li>