-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1286 lines (1236 loc) · 80.4 KB
/
index.html
File metadata and controls
1286 lines (1236 loc) · 80.4 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 charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevRevel - Enterprise Technology Services</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./assets/style.css">
<!-- Headroom for smart sticky nav -->
<script defer src="https://cdn.jsdelivr.net/npm/headroom.js@0.12.0/dist/headroom.min.js"></script>
<!-- Swiper CSS for Services Carousel -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
</head>
<body>
<!-- Navigation -->
<nav id="siteNav" class="fixed w-full top-0 z-50 nav-transparent transition-all duration-300">
<div class="max-w-7xl mx-auto px-4 py-3">
<div class="flex items-center justify-between gap-6">
<div class="flex items-center gap-10">
<a href="#" class="flex items-center gap-2 text-2xl font-semibold tracking-tight">
<img src="./assets/images/logo.png" alt="logo" id="logo-dark" width="100">
<img src="./assets/images/logo-light.png" alt="logo" id="logo-light" width="100">
</a>
<div class="hidden md:flex items-center gap-8 text-sm font-medium group/nav relative">
<a href="#services" class="nav-link hover:text-blue-500 transition-colors">Services</a>
<a href="#technologies" class="nav-link hover:text-blue-500 transition-colors">Technologies</a>
<a href="#about" class="nav-link hover:text-blue-500 transition-colors">Why Us</a>
<a href="#contact" class="nav-link hover:text-blue-500 transition-colors">Contact</a>
</div>
</div>
<div class="flex items-center gap-4">
<div class="hidden md:block text-xs uppercase tracking-[0.16em] text-[var(--text-tertiary)]">
Available for new projects</div>
<div class="theme-toggle" onclick="toggleTheme()" title="Toggle theme">
<span class="icon sun" aria-hidden="true">☀️</span>
<span class="icon moon" aria-hidden="true">🌙</span>
<div class="theme-toggle-slider"></div>
</div>
<a href="#contact"
class="btn-primary px-4 py-2.5 rounded-lg text-sm font-medium shadow-md shadow-blue-500/25">Book
a Strategy Call</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="pt-28 md:pt-32 pb-16 px-6 relative overflow-hidden hero-with-video"
style="background: var(--bg-primary);">
<div class="max-w-7xl mx-auto relative hero-content">
<div class="grid md:grid-cols-[minmax(0,3fr)_minmax(0,2fr)] gap-12 items-center">
<div class="max-w-3xl">
<div class="fade-in delay-1">
<div
class="inline-flex items-center gap-3 px-4 py-2 rounded-full text-xs font-semibold uppercase tracking-[0.16em] mb-6 hero-badge">
<span class="h-2 w-2 rounded-full bg-green-400"></span>
Enterprise Technology Partner • Pune, India
</div>
</div>
<h1
class="hero-title text-3xl md:text-4xl lg:text-5xl font-bold mb-6 leading-tight fade-in delay-2">
Building the Future of
<span class="gradient-text">Digital Enterprise</span>
</h1>
<p class="hero-subtitle text-base md:text-lg mb-8 fade-in delay-3"
style="color: var(--text-secondary);">
DevRevel helps ambitious teams design, build, and scale robust software platforms—across web,
mobile, and cloud—so they can move faster without compromising on reliability or security.
</p>
<div class="flex flex-col sm:flex-row gap-4 fade-in delay-4">
<a href="#contact"
class="btn-primary px-8 py-4 rounded-lg font-medium text-center text-sm md:text-base">Schedule
a Strategy Session</a>
<a href="#services"
class="btn-secondary px-8 py-4 rounded-lg font-medium text-center text-sm md:text-base flex items-center justify-center gap-2">
View Service Catalogue
<span class="text-lg">↗</span>
</a>
</div>
<div class="mt-8 flex flex-wrap items-center gap-6 text-sm">
<div class="flex items-center gap-4 p-3 pr-5 rounded-xl border"
style="border-color: var(--border-color); background: var(--bg-secondary);">
<div class="h-12 w-12 rounded-lg bg-gradient-to-br from-blue-500/20 to-blue-700/20 border flex items-center justify-center text-sm font-semibold"
style="border-color: var(--border-color); color: var(--accent-primary);">12+</div>
<div>
<p class="font-semibold" style="color: var(--text-primary);">Years of Delivery</p>
<p class="text-xs" style="color: var(--text-secondary);">Complex enterprise systems</p>
</div>
</div>
<div class="h-8 w-px" style="background: var(--border-color);"></div>
<div class="flex items-center gap-4 p-3 pr-5 rounded-xl border"
style="border-color: var(--border-color); background: var(--bg-secondary);">
<div class="h-12 w-12 rounded-lg bg-gradient-to-br from-blue-500/20 to-blue-700/20 border flex items-center justify-center text-sm font-semibold"
style="border-color: var(--border-color); color: var(--accent-primary);">50+</div>
<div>
<p class="font-semibold" style="color: var(--text-primary);">Enterprise clients</p>
<p class="text-xs" style="color: var(--text-secondary);">From discovery to post-go-live
support</p>
</div>
</div>
</div>
</div>
<!-- Right side: Impact in numbers (light/dark friendly) -->
<div class="fade-in delay-4" >
<img src="./assets/images/hero_page.png" alt="hero-img">
</div>
</div>
</div>
</section>
<!-- Trusted By - Horizontal Scrolling Marquee -->
<section class="py-12 px-6"
style="background: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);">
<div class="max-w-7xl mx-auto">
<p class="text-center text-sm font-medium mb-8" style="color: var(--text-tertiary);">TRUSTED BY LEADING ENTERPRISES</p>
<div class="items-center justify-between">
<!-- Original set -->
<div class="logo-item">Microsoft</div>
<div class="logo-item">AWS</div>
<div class="logo-item">Google</div>
<div class="logo-item">Oracle</div>
<div class="logo-item">IBM</div>
<div class="logo-item">SAP</div>
</div>
</div>
</section>
<!-- Services Section - Swiper Horizontal Carousel -->
<section id="services" class="py-24 px-6">
<div class="max-w-7xl mx-auto">
<div class="max-w-3xl mb-6">
<h2 class="text-4xl md:text-5xl font-bold mb-4">Our Services</h2>
<p class="text-lg" style="color: var(--text-secondary);">Comprehensive technology solutions designed to
drive innovation, efficiency, and growth across your organization.</p>
</div>
<!-- Swiper Container -->
<div class="swiper services-swiper">
<div class="swiper-wrapper mt-7 mb-16">
<!-- Service 1 -->
<div class="swiper-slide">
<div class="service-card p-8 rounded-xl">
<div class="w-12 h-12 rounded-lg flex items-center justify-center mb-6"
style="background: rgba(59, 130, 246, 0.1);">
<svg class="w-6 h-6" style="color: var(--accent-primary);" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"></path>
</svg>
</div>
<h3 class="text-xl font-semibold mb-3">Custom Software Development</h3>
<p class="mb-6" style="color: var(--text-secondary);">Enterprise-grade software solutions tailored
to your business requirements, built with modern architectures.</p>
<ul class="space-y-3">
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">Enterprise Software Development</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">Legacy System Modernization</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">API Development & Integration</span>
</li>
</ul>
</div>
</div>
<!-- Service 2 -->
<div class="swiper-slide">
<div class="service-card p-8 rounded-xl">
<div class="w-12 h-12 rounded-lg flex items-center justify-center mb-6"
style="background: rgba(59, 130, 246, 0.1);">
<svg class="w-6 h-6" style="color: var(--accent-primary);" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M3 15a4 4 0 004 4h9a5 5 0 10-.1-9.999 5.002 5.002 0 10-9.78 2.096A4.001 4.001 0 003 15z">
</path>
</svg>
</div>
<h3 class="text-xl font-semibold mb-3">Cloud Solutions</h3>
<p class="mb-6" style="color: var(--text-secondary);">Strategic cloud transformation services to
optimize your infrastructure, reduce costs, and accelerate innovation.</p>
<ul class="space-y-3">
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">Cloud Migration & Strategy</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">Multi-Cloud Architecture</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">DevOps & Automation</span>
</li>
</ul>
</div>
</div>
<!-- Service 3 -->
<div class="swiper-slide">
<div class="service-card p-8 rounded-xl">
<div class="w-12 h-12 rounded-lg flex items-center justify-center mb-6"
style="background: rgba(59, 130, 246, 0.1);">
<svg class="w-6 h-6" style="color: var(--accent-primary);" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z">
</path>
</svg>
</div>
<h3 class="text-xl font-semibold mb-3">AI & Machine Learning</h3>
<p class="mb-6" style="color: var(--text-secondary);">Harness the power of artificial intelligence
to automate processes, gain insights, and make data-driven decisions.</p>
<ul class="space-y-3">
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">Predictive Analytics</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">Natural Language Processing</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">Computer Vision Solutions</span>
</li>
</ul>
</div>
</div>
<!-- Service 4 -->
<div class="swiper-slide">
<div class="service-card p-8 rounded-xl">
<div class="w-12 h-12 rounded-lg flex items-center justify-center mb-6"
style="background: rgba(59, 130, 246, 0.1);">
<svg class="w-6 h-6" style="color: var(--accent-primary);" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M7 21a4 4 0 01-4-4V5a2 2 0 012-2h4a2 2 0 012 2v12a4 4 0 01-4 4zm0 0h12a2 2 0 002-2v-4a2 2 0 00-2-2h-2.343M11 7.343l1.657-1.657a2 2 0 012.828 0l2.829 2.829a2 2 0 010 2.828l-8.486 8.485M7 17h.01">
</path>
</svg>
</div>
<h3 class="text-xl font-semibold mb-3">Digital Transformation</h3>
<p class="mb-6" style="color: var(--text-secondary);">End-to-end digital transformation services to
modernize operations and deliver exceptional customer experiences.</p>
<ul class="space-y-3">
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">UI/UX Design & Development</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">E-commerce Solutions</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">Mobile App Development</span>
</li>
</ul>
</div>
</div>
<!-- Service 5 -->
<div class="swiper-slide">
<div class="service-card p-8 rounded-xl">
<div class="w-12 h-12 rounded-lg flex items-center justify-center mb-6"
style="background: rgba(59, 130, 246, 0.1);">
<svg class="w-6 h-6" style="color: var(--accent-primary);" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z">
</path>
</svg>
</div>
<h3 class="text-xl font-semibold mb-3">Cybersecurity</h3>
<p class="mb-6" style="color: var(--text-secondary);">Comprehensive security solutions to protect
your digital assets and ensure compliance with industry standards.</p>
<ul class="space-y-3">
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">Security Assessment & Audit</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">Threat Detection & Response</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">Compliance Management</span>
</li>
</ul>
</div>
</div>
<!-- Service 6 -->
<div class="swiper-slide">
<div class="service-card p-8 rounded-xl">
<div class="w-12 h-12 rounded-lg flex items-center justify-center mb-6"
style="background: rgba(59, 130, 246, 0.1);">
<svg class="w-6 h-6" style="color: var(--accent-primary);" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6"></path>
</svg>
</div>
<h3 class="text-xl font-semibold mb-3">Data & Analytics</h3>
<p class="mb-6" style="color: var(--text-secondary);">Transform raw data into actionable insights
with advanced analytics and business intelligence solutions.</p>
<ul class="space-y-3">
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">Business Intelligence</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">Data Warehousing</span>
</li>
<li class="flex items-start">
<svg class="w-5 h-5 mr-3 mt-0.5 flex-shrink-0" style="color: var(--accent-primary);"
fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M5 13l4 4L19 7"></path>
</svg>
<span style="color: var(--text-secondary);">Real-time Analytics</span>
</li>
</ul>
</div>
</div>
</div>
<!-- Pagination -->
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- Technologies Section -->
<section id="technologies" class="py-24 px-6" style="background: var(--bg-secondary);">
<div class="max-w-7xl mx-auto">
<div class="max-w-3xl mb-16">
<h2 class="text-4xl md:text-5xl font-bold mb-4">Technology Stack</h2>
<p class="text-lg" style="color: var(--text-secondary);">We leverage industry-leading technologies and
frameworks to deliver robust, scalable solutions.</p>
</div>
<!-- Frontend -->
<div class="mb-12">
<h3 class="text-xl font-semibold mb-6" style="color: var(--text-secondary);">Frontend Development</h3>
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-4">
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/html5/html5-original.svg" />
<p class="font-medium">HTML5</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/css3/css3-original.svg" />
<p class="font-medium">CSS3</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/sass/sass-original.svg" />
<p class="font-medium">Sass</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/tailwindcss/tailwindcss-original.svg" />
<p class="font-medium">Tailwind CSS</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/bootstrap/bootstrap-original.svg" />
<p class="font-medium">Bootstrap</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/javascript/javascript-original.svg" />
<p class="font-medium">JavaScript</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/typescript/typescript-original.svg" />
<p class="font-medium">TypeScript</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/jquery/jquery-original-wordmark.svg" />
<p class="font-medium">JQuery</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/react/react-original.svg" />
<p class="font-medium">React</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/angular/angular-original.svg" />
<p class="font-medium">Angular</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/vuejs/vuejs-original.svg" />
<p class="font-medium">Vue</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/nextjs/nextjs-original.svg" />
<p class="font-medium">NextJs</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/vitejs/vitejs-original.svg" />
<p class="font-medium">viteJs</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/babel/babel-original.svg" />
<p class="font-medium">Babel</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/ngrx/ngrx-plain.svg" />
<p class="font-medium">Ngrx</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/chartjs/chartjs-original.svg" />
<p class="font-medium">ChartJs</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/reactnavigation/reactnavigation-original.svg" />
<p class="font-medium">Reactnavigation</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/rxjs/rxjs-original.svg" />
<p class="font-medium">rxJs</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/axios/axios-plain.svg" />
<p class="font-medium">axios</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/materialui/materialui-original.svg" />
<p class="font-medium">MaterialUI</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/reactbootstrap/reactbootstrap-original.svg" />
<p class="font-medium">React Bootstrap</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/reactrouter/reactrouter-original-wordmark.svg" />
<p class="font-medium">react router</p>
</div>
</div>
</div>
<!-- Backend -->
<div class="mb-12">
<h3 class="text-xl font-semibold mb-6" style="color: var(--text-secondary);">Backend Development</h3>
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-4">
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/nodejs/nodejs-original.svg" />
<p class="font-medium">NodeJS</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/express/express-original.svg" />
<p class="font-medium">ExpressJS</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/python/python-original.svg" />
<p class="font-medium">Python</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/flask/flask-original.svg" />
<p class="font-medium">flask</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/fastapi/fastapi-original.svg" />
<p class="font-medium">FastAPI</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/django/django-plain.svg" />
<p class="font-medium">django</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/djangorest/djangorest-original.svg" />
<p class="font-medium">django REST</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/nodemon/nodemon-original.svg" />
<p class="font-medium">nodemon</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/graphql/graphql-plain.svg" />
<p class="font-medium">graphql</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/socketio/socketio-original.svg" />
<p class="font-medium">Socket io</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/sequelize/sequelize-original.svg" />
<p class="font-medium">Sequelize</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/mongoose/mongoose-original.svg" />
<p class="font-medium">mongoose</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/php/php-original.svg" />
<p class="font-medium">PHP</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/laravel/laravel-original.svg" />
<p class="font-medium">laravel</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/composer/composer-original.svg" />
<p class="font-medium">composer</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/livewire/livewire-original-wordmark.svg" />
<p class="font-medium">livewire</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/nestjs/nestjs-original.svg" />
<p class="font-medium">nestJs</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/swagger/swagger-original.svg" />
<p class="font-medium">nestJs</p>
</div>
</div>
</div>
<!-- Database -->
<div class="mb-12">
<h3 class="text-xl font-semibold mb-6" style="color: var(--text-secondary);">Database & Storage</h3>
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-4">
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/mongodb/mongodb-original.svg" />
<p class="font-medium">MongoDB</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/mysql/mysql-original.svg" />
<p class="font-medium">MySQL</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/postgresql/postgresql-original.svg" />
<p class="font-medium">postgreSQL</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/mariadb/mariadb-original.svg" />
<p class="font-medium">mariaDB</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/redis/redis-original.svg" />
<p class="font-medium">redis</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/dynamodb/dynamodb-original.svg" />
<p class="font-medium">DynamoDB</p>
</div>
</div>
</div>
<!-- Mobile App Development -->
<div class="mb-12">
<h3 class="text-xl font-semibold mb-6" style="color: var(--text-secondary);">Mobile App Development</h3>
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-4">
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/reactnative/reactnative-original-wordmark.svg" />
<p class="font-medium">React Native</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/flutter/flutter-original.svg" />
<p class="font-medium">flutter</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/expo/expo-original.svg" />
<p class="font-medium">Expo</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/androidstudio/androidstudio-original.svg" />
<p class="font-medium">android Studio</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/swift/swift-original.svg" />
<p class="font-medium">swift</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/dart/dart-original.svg" />
<p class="font-medium">dart</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/xcode/xcode-original.svg" />
<p class="font-medium">xcode</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/android/android-original.svg" />
<p class="font-medium">android</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/apple/apple-original.svg" />
<p class="font-medium">apple</p>
</div>
</div>
</div>
<!-- Cloud & DevOps -->
<div class="mb-12">
<h3 class="text-xl font-semibold mb-6" style="color: var(--text-secondary);">Cloud & DevOps </h3>
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-4">
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/amazonwebservices/amazonwebservices-original-wordmark.svg" />
<p class="font-medium">AWS</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/azure/azure-original.svg" />
<p class="font-medium">Azure</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/googlecloud/googlecloud-original.svg" />
<p class="font-medium">Google Cloud</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/cpanel/cpanel-original.svg" />
<p class="font-medium">CPanel</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/heroku/heroku-original.svg" />
<p class="font-medium">Heroku</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/netlify/netlify-original.svg" />
<p class="font-medium">netlify</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/vercel/vercel-original.svg" />
<p class="font-medium">vercel</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/docker/docker-original.svg" />
<p class="font-medium">Docker</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/kubernetes/kubernetes-original.svg" />
<p class="font-medium">kubernetes</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/jenkins/jenkins-original.svg" />
<p class="font-medium">Jenkins</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/nginx/nginx-original.svg" />
<p class="font-medium">ngInx</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/apache/apache-original.svg" />
<p class="font-medium">Apache</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/digitalocean/digitalocean-original.svg" />
<p class="font-medium">Digital Ocean</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/firebase/firebase-original.svg" />
<p class="font-medium">firebase</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/linux/linux-original.svg" />
<p class="font-medium">linux</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/ngrok/ngrok-original.svg" />
<p class="font-medium">ngrok</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/git/git-original.svg" />
<p class="font-medium">Git</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/github/github-original.svg" />
<p class="font-medium">github</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/gitlab/gitlab-original.svg" />
<p class="font-medium">GitLab</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/bitbucket/bitbucket-original.svg" />
<p class="font-medium">bitbucket</p>
</div>
</div>
</div>
<!-- CMS Tools -->
<div class="mb-12">
<h3 class="text-xl font-semibold mb-6" style="color: var(--text-secondary);">CMS Tools</h3>
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-4">
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/wordpress/wordpress-original.svg" />
<p class="font-medium">wordpress</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/woocommerce/woocommerce-original.svg" />
<p class="font-medium">wooCommerce</p>
</div>
</div>
</div>
<!-- Other Tools -->
<div class="mb-12">
<h3 class="text-xl font-semibold mb-6" style="color: var(--text-secondary);">Other Tools</h3>
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-4">
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/vscode/vscode-original.svg" />
<p class="font-medium">vscode</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/postman/postman-original.svg" />
<p class="font-medium">Postman</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/cloudflare/cloudflare-original.svg" />
<p class="font-medium">cloudflare</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/windows11/windows11-original.svg" />
<p class="font-medium">windows</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/vim/vim-original.svg" />
<p class="font-medium">vim</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/v8/v8-original.svg" />
<p class="font-medium">v8</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/ubuntu/ubuntu-original.svg" />
<p class="font-medium">ubuntu</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/twilio/twilio-original.svg" />
<p class="font-medium">twilio</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/ssh/ssh-original-wordmark.svg" />
<p class="font-medium">ssh</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/codepen/codepen-original.svg" />
<p class="font-medium">codepen</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/replit/replit-original.svg" />
<p class="font-medium">replit</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/powershell/powershell-original.svg" />
<p class="font-medium">powershell</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/npm/npm-original.svg" />
<p class="font-medium">npm</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/json/json-original.svg" />
<p class="font-medium">json</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/jira/jira-original.svg" />
<p class="font-medium">jira</p>
</div>
<div class="tech-badge p-4 rounded-lg flex flex-col items-center justify-center text-center">
<img width="50"
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/bash/bash-original.svg" />
<p class="font-medium">bash</p>
</div>
</div>
</div>
</div>
</section>
<!-- Why Choose Us -->
<section id="about" class="py-24 px-6">
<div class="max-w-7xl mx-auto">
<div class="max-w-3xl mb-16">
<h2 class="text-4xl md:text-5xl font-bold mb-4">Why Choose DevRevel</h2>
<p class="text-lg" style="color: var(--text-secondary);">We bring deep industry expertise, proven
methodologies, and a commitment to excellence that sets us apart.</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div>
<div class="text-4xl font-bold mb-4" style="color: var(--accent-primary);">01</div>
<h3 class="text-xl font-semibold mb-3">Industry Expertise</h3>
<p style="color: var(--text-secondary);">12+ years of experience delivering enterprise solutions
across finance, healthcare, retail, and manufacturing sectors.</p>
</div>
<div>
<div class="text-4xl font-bold mb-4" style="color: var(--accent-primary);">02</div>
<h3 class="text-xl font-semibold mb-3">Agile Methodology</h3>
<p style="color: var(--text-secondary);">Fast, iterative development cycles with continuous
integration and deployment for rapid time-to-market.</p>
</div>
<div>
<div class="text-4xl font-bold mb-4" style="color: var(--accent-primary);">03</div>
<h3 class="text-xl font-semibold mb-3">24/7 Support</h3>
<p style="color: var(--text-secondary);">Round-the-clock technical support and maintenance to ensure
your systems run smoothly at all times.</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-24 px-6" style="background: var(--bg-secondary);">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-4xl md:text-5xl font-bold mb-4">Let's Build Together</h2>
<p class="text-lg" style="color: var(--text-secondary);">Tell us about your project and let's discuss
how we can help you achieve your goals.</p>
</div>
<div class="contact-form">
<div class="contact-header">
<span class="badge">Priority onboarding</span>
<span class="text-sm" style="color: var(--text-secondary);">Get a response in under 24 hours</span>
</div>
<div class="grid md:grid-cols-3">
<form class="contact-body md:col-span-2" onsubmit="handleSubmit(event)">
<div class="grid md:grid-cols-2 gap-6 mb-6">
<div>
<label class="block text-sm font-medium mb-2">Full Name *</label>
<input type="text" required class="w-full px-4 py-3 rounded-lg" placeholder="John Doe">