-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
771 lines (714 loc) · 40.4 KB
/
index2.html
File metadata and controls
771 lines (714 loc) · 40.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
<!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">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
transition: background-color 0.3s ease, color 0.3s ease;
}
/* Theme Variables */
:root {
--bg-primary: #ffffff;
--bg-secondary: #f8f9fa;
--bg-tertiary: #f1f3f5;
--text-primary: #1a1a1a;
--text-secondary: #4a5568;
--text-tertiary: #718096;
--border-color: #e2e8f0;
--accent-primary: #3b82f6;
--accent-secondary: #1e40af;
--card-bg: #ffffff;
--nav-bg: rgba(255, 255, 255, 0.95);
}
body.dark-theme {
--bg-primary: #0a0a0a;
--bg-secondary: #141414;
--bg-tertiary: #1a1a1a;
--text-primary: #ffffff;
--text-secondary: #cbd5e0;
--text-tertiary: #a0aec0;
--border-color: #2d3748;
--accent-primary: #3b82f6;
--accent-secondary: #60a5fa;
--card-bg: #141414;
--nav-bg: rgba(10, 10, 10, 0.95);
}
body {
background-color: var(--bg-primary);
color: var(--text-primary);
}
/* Navigation */
nav {
background-color: var(--nav-bg);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border-color);
}
/* Smooth Scroll */
html {
scroll-behavior: smooth;
}
/* Theme Toggle */
.theme-toggle {
cursor: pointer;
width: 52px;
height: 28px;
background: var(--bg-tertiary);
border-radius: 14px;
position: relative;
transition: background 0.3s;
border: 1px solid var(--border-color);
}
.theme-toggle-slider {
width: 22px;
height: 22px;
background: var(--accent-primary);
border-radius: 50%;
position: absolute;
top: 2px;
left: 3px;
transition: transform 0.3s;
}
body.dark-theme .theme-toggle-slider {
transform: translateX(24px);
}
/* Cards */
.service-card {
background: var(--card-bg);
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}
.service-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
border-color: var(--accent-primary);
}
body.dark-theme .service-card:hover {
box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}
/* Fade In Animation */
.fade-in {
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 0.7s ease forwards;
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
/* Buttons */
.btn-primary {
background: var(--accent-primary);
color: white;
transition: all 0.3s ease;
}
.btn-primary:hover {
background: var(--accent-secondary);
transform: translateY(-2px);
box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
}
.btn-secondary {
border: 1px solid var(--border-color);
color: var(--text-primary);
transition: all 0.3s ease;
}
.btn-secondary:hover {
border-color: var(--accent-primary);
color: var(--accent-primary);
}
/* Input Fields */
input, select, textarea {
background: var(--bg-secondary);
border: 1px solid var(--border-color);
color: var(--text-primary);
transition: all 0.3s ease;
}
input:focus, select:focus, textarea:focus {
outline: none;
border-color: var(--accent-primary);
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
/* Tech Badge */
.tech-badge {
background: var(--bg-secondary);
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}
.tech-badge:hover {
border-color: var(--accent-primary);
transform: translateY(-2px);
}
/* Stats Counter */
.stat-number {
font-size: 3rem;
font-weight: 700;
color: var(--accent-primary);
}
/* Section Divider */
.section-divider {
border-top: 1px solid var(--border-color);
}
/* Logo Grid */
.logo-item {
opacity: 0.6;
transition: opacity 0.3s ease;
filter: grayscale(100%);
}
.logo-item:hover {
opacity: 1;
filter: grayscale(0%);
}
/* Professional gradient text */
.gradient-text {
background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="fixed w-full top-0 z-50">
<div class="max-w-7xl mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center space-x-12">
<a href="#" class="text-2xl font-bold">
<span class="gradient-text">DevRevel</span>
</a>
<div class="hidden md:flex space-x-8">
<a href="#services" class="text-sm font-medium hover:text-blue-600 transition-colors">Services</a>
<a href="#technologies" class="text-sm font-medium hover:text-blue-600 transition-colors">Technologies</a>
<a href="#about" class="text-sm font-medium hover:text-blue-600 transition-colors">About</a>
<a href="#contact" class="text-sm font-medium hover:text-blue-600 transition-colors">Contact</a>
</div>
</div>
<div class="flex items-center space-x-4">
<div class="theme-toggle" onclick="toggleTheme()">
<div class="theme-toggle-slider"></div>
</div>
<a href="#contact" class="btn-primary px-6 py-2.5 rounded-lg text-sm font-medium">Get Started</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="pt-32 pb-20 px-6" style="background-color: var(--bg-primary);">
<div class="max-w-7xl mx-auto">
<div class="max-w-4xl">
<div class="fade-in delay-1">
<div class="inline-block px-4 py-2 rounded-full text-sm font-medium mb-6" style="background: var(--bg-secondary); border: 1px solid var(--border-color);">
Enterprise Technology Solutions
</div>
</div>
<h1 class="text-5xl md:text-6xl font-bold mb-6 leading-tight fade-in delay-2">
Building the Future of
<span class="gradient-text">Digital Enterprise</span>
</h1>
<p class="text-xl mb-8 fade-in delay-3" style="color: var(--text-secondary);">
We partner with industry leaders to transform businesses through cutting-edge technology solutions, delivering measurable results and sustainable growth.
</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">Schedule a Consultation</a>
<a href="#services" class="btn-secondary px-8 py-4 rounded-lg font-medium text-center">Explore Services</a>
</div>
</div>
<!-- Stats -->
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 mt-20 pt-16 section-divider fade-in delay-4">
<div>
<div class="stat-number">500+</div>
<p class="mt-2" style="color: var(--text-secondary);">Projects Delivered</p>
</div>
<div>
<div class="stat-number">50+</div>
<p class="mt-2" style="color: var(--text-secondary);">Enterprise Clients</p>
</div>
<div>
<div class="stat-number">12</div>
<p class="mt-2" style="color: var(--text-secondary);">Years Experience</p>
</div>
<div>
<div class="stat-number">98%</div>
<p class="mt-2" style="color: var(--text-secondary);">Client Satisfaction</p>
</div>
</div>
</div>
</section>
<!-- Trusted By -->
<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="grid grid-cols-2 md:grid-cols-6 gap-8 items-center">
<div class="logo-item text-center text-2xl font-bold" style="color: var(--text-tertiary);">Microsoft</div>
<div class="logo-item text-center text-2xl font-bold" style="color: var(--text-tertiary);">AWS</div>
<div class="logo-item text-center text-2xl font-bold" style="color: var(--text-tertiary);">Google</div>
<div class="logo-item text-center text-2xl font-bold" style="color: var(--text-tertiary);">Oracle</div>
<div class="logo-item text-center text-2xl font-bold" style="color: var(--text-tertiary);">IBM</div>
<div class="logo-item text-center text-2xl font-bold" style="color: var(--text-tertiary);">SAP</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" 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">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>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Service 1 -->
<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 and best practices.</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 Application 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>
<!-- Service 2 -->
<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>
<!-- Service 3 -->
<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>
<!-- Service 4 -->
<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>
<!-- Service 5 -->
<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>
<!-- Service 6 -->
<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>
</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 text-center">
<p class="font-medium">React</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">Angular</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">Vue.js</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">Next.js</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">TypeScript</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">Tailwind CSS</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 text-center">
<p class="font-medium">Node.js</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">Python</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">Java</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">.NET Core</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">Go</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">GraphQL</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 text-center">
<p class="font-medium">AWS</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">Azure</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">Google Cloud</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">Docker</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">Kubernetes</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">Terraform</p>
</div>
</div>
</div>
<!-- Database -->
<div>
<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 text-center">
<p class="font-medium">PostgreSQL</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">MongoDB</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">Redis</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">MySQL</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">Elasticsearch</p>
</div>
<div class="tech-badge p-4 rounded-lg text-center">
<p class="font-medium">Cassandra</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>
<form class="service-card p-8 rounded-xl" 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">
</div>
<div>
<label class="block text-sm font-medium mb-2">Work Email *</label>
<input type="email" required class="w-full px-4 py-3 rounded-lg" placeholder="john@company.com">
</div>
</div>
<div class="grid md:grid-cols-2 gap-6 mb-6">
<div>
<label class="block text-sm font-medium mb-2">Company Name *</label>
<input type="text" required class="w-full px-4 py-3 rounded-lg" placeholder="Acme Corporation">
</div>
<div>
<label class="block text-sm font-medium mb-2">Phone Number</label>
<input type="tel" class="w-full px-4 py-3 rounded-lg" placeholder="+1 (555) 000-0000">
</div>
</div>
<div class="mb-6">
<label class="block text-sm font-medium mb-2">Service Interest *</label>
<select required class="w-full px-4 py-3 rounded-lg">
<option value="">Select a service</option>
<option value="software">Custom Software Development</option>
<option value="cloud">Cloud Solutions</option>
<option value="ai">AI & Machine Learning</option>
<option value="digital">Digital Transformation</option>
<option value="security">Cybersecurity</option>
<option value="data">Data & Analytics</option>
</select>
</div>
<div class="mb-6">
<label class="block text-sm font-medium mb-2">Project Details *</label>
<textarea required rows="5" class="w-full px-4 py-3 rounded-lg" placeholder="Tell us about your project requirements, timeline, and budget..."></textarea>
</div>
<button type="submit" class="btn-primary w-full py-4 rounded-lg font-medium">
Submit Request
</button>
</form>
</div>
</section>
<!-- Footer -->
<footer class="py-12 px-6" style="background: var(--bg-primary); border-top: 1px solid var(--border-color);">
<div class="max-w-7xl mx-auto">
<div class="grid md:grid-cols-4 gap-12 mb-12">
<div>
<div class="text-2xl font-bold mb-4">
<span class="gradient-text">DevRevel</span>
</div>
<p style="color: var(--text-secondary);">Next Generation Technology for Everyone</p>
</div>
<div>
<h4 class="font-semibold mb-4">Services</h4>
<ul class="space-y-2" style="color: var(--text-secondary);">
<li><a href="#" class="hover:text-blue-600 transition-colors">Software Development</a></li>
<li><a href="#" class="hover:text-blue-600 transition-colors">Cloud Solutions</a></li>
<li><a href="#" class="hover:text-blue-600 transition-colors">AI & ML</a></li>
<li><a href="#" class="hover:text-blue-600 transition-colors">Cybersecurity</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Company</h4>
<ul class="space-y-2" style="color: var(--text-secondary);">
<li><a href="https://devrevel.com" class="hover:text-blue-600 transition-colors">About Us</a></li>
<li><a href="#" class="hover:text-blue-600 transition-colors">Careers</a></li>
<li><a href="#" class="hover:text-blue-600 transition-colors">Case Studies</a></li>
<li><a href="#contact" class="hover:text-blue-600 transition-colors">Contact</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Contact</h4>
<ul class="space-y-2" style="color: var(--text-secondary);">
<li>info@devrevel.com</li>
<li>+91 749 950 1554</li>
<li>Pune, Maharashtra</li>
<li>India</li>
</ul>
</div>
</div>
<div class="pt-8 text-center section-divider" style="color: var(--text-tertiary);">
<p>© 2024 DevRevel. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Theme Toggle
function toggleTheme() {
document.body.classList.toggle('dark-theme');
const theme = document.body.classList.contains('dark-theme') ? 'dark' : 'light';
localStorage.setItem('theme', theme);
}
// Load saved theme
const savedTheme = localStorage.getItem('theme');
if (savedTheme === 'dark') {
document.body.classList.add('dark-theme');
}
// Form submission
function handleSubmit(e) {
e.preventDefault();
alert('Thank you for your interest! Our team will contact you within 24 hours.');
e.target.reset();
}
// Smooth scroll
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
</script>
</body>
</html>