-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.html
More file actions
1149 lines (1011 loc) · 49.6 KB
/
main.html
File metadata and controls
1149 lines (1011 loc) · 49.6 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">
<meta name="description" content="Falcon 98 - Your Trusted Technology Services Provider offering Web Development, Mobile App Development, Cloud Computing, Data Analytics, and IT Consulting in Sri Lanka">
<meta name="keywords" content="technology services, web development, mobile apps, cloud computing, data analytics, IT consulting, Sri Lanka, Falcon 98">
<meta name="author" content="Falcon 98">
<meta name="theme-color" content="#1e40af">
<title>Falcon 98 - Technology Services Provider | Web & Mobile Development</title>
<link rel="icon" type="image/png" href="https://res.cloudinary.com/dkj22lm1g/image/upload/v1763972046/Falcon_98-1_cx8xvv.png">
<link rel="shortcut icon" href="https://res.cloudinary.com/dkj22lm1g/image/upload/v1763972046/Falcon_98-1_cx8xvv.png">
<link rel="apple-touch-icon" href="https://res.cloudinary.com/dkj22lm1g/image/upload/v1763972046/Falcon_98-1_cx8xvv.png">
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* Accessibility: Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
/* Screen reader only class and focus styles for accessibility */
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}
.focus\:not-sr-only:focus {
position: static;
width: auto;
height: auto;
padding: inherit;
margin: inherit;
overflow: visible;
clip: auto;
white-space: normal;
}
/* Simple, Professional Keyframe Animations */
@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes slideInLeft {
0% {
opacity: 0;
transform: translateX(-30px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
opacity: 0;
transform: translateX(30px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@keyframes shimmer {
0% {
background-position: -1000px 0;
}
100% {
background-position: 1000px 0;
}
}
@keyframes bounceIn {
0% {
opacity: 0;
transform: scale(0.9);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes slideDown {
0% {
opacity: 0;
transform: translateY(-20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes scaleIn {
0% {
opacity: 0;
transform: scale(0.95);
}
100% {
opacity: 1;
transform: scale(1);
}
}
/* Professional Animation Classes */
.fade-in-up {
animation: fadeInUp 0.6s ease-out forwards;
}
.fade-in {
animation: fadeIn 0.8s ease-out forwards;
}
.slide-in-left {
animation: slideInLeft 0.7s ease-out forwards;
}
.slide-in-right {
animation: slideInRight 0.7s ease-out forwards;
}
.bounce-in {
animation: bounceIn 0.6s ease-out forwards;
}
.scroll-smooth {
scroll-behavior: smooth;
}
/* Professional Service Card */
.service-card {
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
transition: left 0.5s ease;
}
.service-card:hover::before {
left: 100%;
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
/* Maroon Gradient for CTA Buttons */
.bg-maroon-gradient {
background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
}
.bg-maroon-gradient:hover {
background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
}
.service-card .icon-wrapper {
transition: all 0.3s ease;
}
.service-card:hover .icon-wrapper {
transform: scale(1.1);
}
/* Professional Button Design */
.btn-primary {
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.btn-primary:active {
transform: translateY(0);
}
/* Professional Navigation Links */
.nav-link {
position: relative;
transition: all 0.3s ease;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: #7f1d1d;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.nav-link:hover {
color: #7f1d1d;
}
/* Professional Navigation */
nav {
transition: all 0.3s ease;
}
nav.scrolled {
background: rgba(17, 24, 39, 0.95);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.gradient-bg {
background: linear-gradient(135deg, #1e40af 0%, #7f1d1d 100%);
}
/* Professional Hero Section with Navy Blue and Maroon Theme */
/* Perfect Hero Section with Navy Blue Theme and Particles */
.hero-pattern {
background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
position: relative;
overflow: hidden;
min-height: 100vh;
display: flex;
align-items: center;
}
/* Particles Container */
.particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 1;
}
/* Optimized Individual Particles */
.particle {
position: absolute;
background: rgba(255, 255, 255, 0.5);
border-radius: 50%;
pointer-events: none;
animation: float linear infinite;
will-change: transform;
}
@keyframes float {
0% {
transform: translateY(100vh) translateX(0) rotate(0deg);
opacity: 0;
}
10% {
opacity: 1;
}
90% {
opacity: 1;
}
100% {
transform: translateY(-100px) translateX(100px) rotate(360deg);
opacity: 0;
}
}
/* Hero Content Container - Glass effect removed */
.hero-content {
position: relative;
z-index: 2;
padding: 3rem 2rem;
}
/* Simplified Decorative Element - Removed excessive orb */
.hero-pattern::before {
content: '';
position: absolute;
width: 600px;
height: 600px;
top: -300px;
right: -200px;
background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
border-radius: 50%;
filter: blur(100px);
z-index: 0;
}
/* Refined Hero Logo */
.hero-logo {
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}
.hero-logo:hover {
transform: scale(1.08) translateY(-5px);
filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
}
/* Enhanced Hero Content Typography */
.hero-title {
animation: fadeInUp 0.8s ease-out forwards;
text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
line-height: 1.2;
letter-spacing: -0.02em;
}
.hero-subtitle {
animation: fadeInUp 1s ease-out forwards;
animation-delay: 0.2s;
opacity: 0;
text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
font-weight: 300;
letter-spacing: 0.01em;
}
.hero-description {
animation: fadeInUp 1.2s ease-out forwards;
animation-delay: 0.3s;
opacity: 0;
line-height: 1.8;
}
.hero-buttons {
animation: fadeInUp 1.4s ease-out forwards;
animation-delay: 0.4s;
opacity: 0;
}
/* Professional Section Titles */
.section-title {
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: linear-gradient(90deg, #1e40af, #7f1d1d);
}
/* Professional Scroll-to-Top Button */
#scroll-top {
transition: all 0.3s ease;
background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
}
#scroll-top:hover {
transform: translateY(-4px);
box-shadow: 0 6px 16px rgba(127, 29, 29, 0.4);
}
/* Simple Progress Bar */
#progress-bar {
position: fixed;
top: 0;
left: 0;
height: 3px;
background: linear-gradient(90deg, #1e40af 0%, #7f1d1d 100%);
z-index: 9999;
transition: width 0.1s ease;
}
/* Simple Loading Animation */
.loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
display: flex;
justify-content: center;
align-items: center;
z-index: 10000;
transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-overlay.hidden {
opacity: 0;
visibility: hidden;
}
.loader {
width: 50px;
height: 50px;
border: 4px solid rgba(255, 255, 255, 0.1);
border-top-color: #ffffff;
border-radius: 50%;
animation: rotate 1s linear infinite;
}
/* Smooth Parallax Elements */
.parallax-slow {
transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.parallax-medium {
transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.parallax-fast {
transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
</style>
</head>
<body class="scroll-smooth">
<!-- Skip to main content for accessibility -->
<a href="#main-content" class="sr-only focus:not-sr-only focus:absolute focus:top-4 focus:left-4 focus:z-50 focus:bg-white focus:text-blue-900 focus:px-4 focus:py-2 focus:rounded">Skip to main content</a>
<!-- Loading Overlay -->
<div class="loading-overlay" id="loading-overlay" aria-hidden="true">
<div class="loader" role="status" aria-label="Loading"></div>
</div>
<!-- Progress Bar -->
<div id="progress-bar" style="width: 0%;" role="progressbar" aria-label="Page scroll progress"></div>
<!-- Navigation -->
<nav class="bg-gray-900 text-white fixed w-full top-0 z-50 shadow-lg" role="navigation" aria-label="Main navigation">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<div class="flex items-center">
<img src="https://res.cloudinary.com/dkj22lm1g/image/upload/v1763972046/Falcon_98-1_cx8xvv.png" alt="Falcon 98 Logo" class="h-10 w-10 mr-3">
<span class="font-bold text-xl text-white">Falcon 98</span>
</div>
<!-- Desktop Navigation -->
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-4">
<a href="#home" class="nav-link text-white px-3 py-2 rounded-md text-sm font-medium hover:text-blue-500" aria-label="Navigate to Home section">Home</a>
<a href="#about" class="nav-link text-white px-3 py-2 rounded-md text-sm font-medium hover:text-blue-500" aria-label="Navigate to About section">About</a>
<a href="#services" class="nav-link text-white px-3 py-2 rounded-md text-sm font-medium hover:text-blue-500" aria-label="Navigate to Services section">Services</a>
<a href="#contact" class="nav-link text-white px-3 py-2 rounded-md text-sm font-medium hover:text-blue-500" aria-label="Navigate to Contact section">Contact</a>
</div>
</div>
<!-- Mobile menu button -->
<div class="md:hidden">
<button id="mobile-menu-button" class="text-white inline-flex items-center justify-center p-2 rounded-md hover:text-blue-500 focus:outline-none" aria-label="Toggle mobile menu" aria-expanded="false">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile Navigation -->
<div id="mobile-menu" class="hidden md:hidden">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3 bg-gray-800">
<a href="#home" class="nav-link text-white block px-3 py-2 rounded-md text-base font-medium hover:text-blue-500">Home</a>
<a href="#about" class="nav-link text-white block px-3 py-2 rounded-md text-base font-medium hover:text-blue-500">About</a>
<a href="#services" class="nav-link text-white block px-3 py-2 rounded-md text-base font-medium hover:text-blue-500">Services</a>
<a href="#contact" class="nav-link text-white block px-3 py-2 rounded-md text-base font-medium hover:text-blue-500">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-pattern" aria-label="Hero section">
<main id="main-content"></main>
<!-- Animated Particles -->
<div class="particles" id="particles" aria-hidden="true"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16 relative z-10">
<div class="text-center">
<!-- Hero Content Container -->
<div class="hero-content max-w-5xl mx-auto">
<!-- Hero Logo with enhanced styling -->
<div class="mb-10">
<img src="https://res.cloudinary.com/dkj22lm1g/image/upload/v1763972046/Falcon_98-1_cx8xvv.png"
alt="Falcon 98 Logo"
class="hero-logo h-28 w-28 md:h-40 md:w-40 mx-auto">
</div>
<!-- Main Title with improved typography -->
<h1 class="hero-title text-5xl md:text-7xl lg:text-8xl font-extrabold text-white mb-6">
Welcome to <span class="bg-gradient-to-r from-blue-400 to-blue-200 bg-clip-text text-transparent">Falcon 98</span>
</h1>
<!-- Subtitle with better spacing -->
<p class="hero-subtitle text-2xl md:text-3xl lg:text-4xl text-blue-100 mb-6 max-w-4xl mx-auto">
Your Trusted Technology Services Provider
</p>
<!-- Description with improved readability -->
<p class="hero-description text-lg md:text-xl text-blue-200 mb-12 max-w-3xl mx-auto leading-relaxed">
Empowering businesses with innovative technology solutions in the digital era
</p>
<!-- CTA Buttons with enhanced styling -->
<div class="hero-buttons flex flex-col sm:flex-row gap-5 justify-center items-center">
<a href="#services"
class="btn-primary inline-flex items-center justify-center bg-maroon-gradient text-white px-10 py-4 rounded-xl font-bold text-lg hover:bg-red-800 shadow-xl hover:shadow-2xl transform hover:-translate-y-1 transition-all duration-300 min-w-[200px]">
<i class="fas fa-rocket mr-2"></i>
Our Services
</a>
<a href="#contact"
class="btn-primary inline-flex items-center justify-center bg-white bg-opacity-10 backdrop-blur-sm border-2 border-white text-white px-10 py-4 rounded-xl font-bold text-lg hover:bg-white hover:text-blue-900 shadow-xl hover:shadow-2xl transform hover:-translate-y-1 transition-all duration-300 min-w-[200px]">
<i class="fas fa-envelope mr-2"></i>
Contact Us
</a>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="section-title text-4xl font-bold text-gray-900 mb-4">About Falcon 98</h2>
<div class="w-24 h-1 bg-red-700 mx-auto"></div>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="text-center p-6 rounded-lg bg-gray-50 service-card">
<div class="icon-wrapper w-16 h-16 bg-red-50 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-lightbulb text-3xl text-red-700"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-4">Our Vision</h3>
<p class="text-gray-700">
To be a leading force in the technology industry, driving positive change through
creativity, innovation, and a commitment to excellence.
</p>
</div>
<div class="text-center p-6 rounded-lg bg-gray-50 service-card">
<div class="icon-wrapper w-16 h-16 bg-red-50 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-bullseye text-3xl text-red-700"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-4">Our Mission</h3>
<p class="text-gray-700">
We aim to empower businesses with transformative technology solutions that enhance
efficiency, foster growth, and create lasting value for our clients and partners.
</p>
</div>
<div class="text-center p-6 rounded-lg bg-gray-50 service-card">
<div class="icon-wrapper w-16 h-16 bg-red-50 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-users text-3xl text-red-700"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-4">Our Team</h3>
<p class="text-gray-700">
A dedicated team of technology experts committed to delivering innovative solutions
that empower businesses in the digital era with excellence and customer satisfaction.
</p>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="section-title text-4xl font-bold text-gray-900 mb-4">Our Services</h2>
<div class="w-24 h-1 bg-red-700 mx-auto mb-4"></div>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">
Comprehensive technology solutions tailored to meet your business needs
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Web Development -->
<div class="service-card bg-white p-8 rounded-lg shadow-md">
<div class="icon-wrapper w-16 h-16 bg-red-50 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-code text-3xl text-red-700"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-4">Web Development</h3>
<p class="text-gray-700 mb-4">
Create stunning, responsive websites that engage your audience and drive business growth with modern web technologies.
</p>
<ul class="text-gray-600 space-y-2">
<li><i class="fas fa-check text-red-700 mr-2"></i>Custom Website Design</li>
<li><i class="fas fa-check text-red-700 mr-2"></i>E-commerce Solutions</li>
<li><i class="fas fa-check text-red-700 mr-2"></i>CMS Development</li>
</ul>
</div>
<!-- Mobile App Development -->
<div class="service-card bg-white p-8 rounded-lg shadow-md">
<div class="icon-wrapper w-16 h-16 bg-red-50 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-mobile-alt text-3xl text-red-700"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-4">Mobile App Development</h3>
<p class="text-gray-700 mb-4">
Build powerful mobile applications for iOS and Android that deliver exceptional user experiences.
</p>
<ul class="text-gray-600 space-y-2">
<li><i class="fas fa-check text-red-700 mr-2"></i>Native App Development</li>
<li><i class="fas fa-check text-red-700 mr-2"></i>Cross-Platform Solutions</li>
<li><i class="fas fa-check text-red-700 mr-2"></i>App Maintenance</li>
</ul>
</div>
<!-- Cloud Computing -->
<div class="service-card bg-white p-8 rounded-lg shadow-md">
<div class="icon-wrapper w-16 h-16 bg-red-50 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-cloud text-3xl text-red-700"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-4">Cloud Computing</h3>
<p class="text-gray-700 mb-4">
Leverage the power of cloud technology to scale your infrastructure and optimize operations.
</p>
<ul class="text-gray-600 space-y-2">
<li><i class="fas fa-check text-red-700 mr-2"></i>Cloud Migration</li>
<li><i class="fas fa-check text-red-700 mr-2"></i>Infrastructure Management</li>
<li><i class="fas fa-check text-red-700 mr-2"></i>DevOps Services</li>
</ul>
</div>
<!-- Data Analytics -->
<div class="service-card bg-white p-8 rounded-lg shadow-md">
<div class="icon-wrapper w-16 h-16 bg-red-50 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-chart-line text-3xl text-red-700"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-4">Data Analytics</h3>
<p class="text-gray-700 mb-4">
Transform your data into actionable insights with advanced analytics and business intelligence solutions.
</p>
<ul class="text-gray-600 space-y-2">
<li><i class="fas fa-check text-red-700 mr-2"></i>Business Intelligence</li>
<li><i class="fas fa-check text-red-700 mr-2"></i>Data Visualization</li>
<li><i class="fas fa-check text-red-700 mr-2"></i>Predictive Analytics</li>
</ul>
</div>
<!-- IT Consulting -->
<div class="service-card bg-white p-8 rounded-lg shadow-md">
<div class="icon-wrapper w-16 h-16 bg-red-50 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-user-tie text-3xl text-red-700"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-4">IT Consulting</h3>
<p class="text-gray-700 mb-4">
Expert guidance and strategic planning to help you make informed technology decisions.
</p>
<ul class="text-gray-600 space-y-2">
<li><i class="fas fa-check text-red-700 mr-2"></i>Technology Strategy</li>
<li><i class="fas fa-check text-red-700 mr-2"></i>Digital Transformation</li>
<li><i class="fas fa-check text-red-700 mr-2"></i>Security Assessment</li>
</ul>
</div>
<!-- Additional Service -->
<div class="service-card bg-white p-8 rounded-lg shadow-md">
<div class="icon-wrapper w-16 h-16 bg-red-50 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-cogs text-3xl text-red-700"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-4">Custom Solutions</h3>
<p class="text-gray-700 mb-4">
Tailored technology solutions designed specifically for your unique business requirements.
</p>
<ul class="text-gray-600 space-y-2">
<li><i class="fas fa-check text-red-700 mr-2"></i>Software Development</li>
<li><i class="fas fa-check text-red-700 mr-2"></i>API Integration</li>
<li><i class="fas fa-check text-red-700 mr-2"></i>System Optimization</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="section-title text-4xl font-bold text-gray-900 mb-4">Contact Us</h2>
<div class="w-24 h-1 bg-red-700 mx-auto mb-4"></div>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">
Get in touch with us to discuss how we can help transform your business
</p>
</div>
<div class="grid md:grid-cols-2 gap-12">
<!-- Contact Information -->
<div>
<h3 class="text-2xl font-bold text-gray-900 mb-6">Get In Touch</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="w-12 h-12 bg-red-50 rounded-full flex items-center justify-center">
<i class="fas fa-map-marker-alt text-red-700"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-semibold text-gray-900">Address</h4>
<p class="text-gray-600">No. 39/2, Nungamuwa, Pallwela<br>Sri Lanka 11150</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="w-12 h-12 bg-red-50 rounded-full flex items-center justify-center">
<i class="fas fa-phone text-red-700"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-semibold text-gray-900">Phone</h4>
<p class="text-gray-600">
<a href="tel:+94784464128" class="hover:text-red-700">(078) 446-4128</a><br>
<a href="tel:+94113401721" class="hover:text-red-700">(011) 340-1721</a>
</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="w-12 h-12 bg-red-50 rounded-full flex items-center justify-center">
<i class="fas fa-envelope text-red-700"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-semibold text-gray-900">Email</h4>
<p class="text-gray-600">
<a href="mailto:info@falcon98.com" class="hover:text-red-700">info@falcon98.com</a>
</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="w-12 h-12 bg-red-50 rounded-full flex items-center justify-center">
<i class="fas fa-clock text-red-700"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-semibold text-gray-900">Business Hours</h4>
<p class="text-gray-600">
Monday - Friday: 9:00 AM - 6:00 PM<br>
Saturday: 10:00 AM - 4:00 PM
</p>
</div>
</div>
</div>
</div>
<!-- Contact Form -->
<div>
<h3 class="text-2xl font-bold text-gray-900 mb-6">Send Us a Message</h3>
<form id="contact-form" class="space-y-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-700 mb-2">Full Name *</label>
<input type="text" id="name" name="name" required
class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-red-700 focus:border-transparent"
placeholder="John Doe">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700 mb-2">Email Address *</label>
<input type="email" id="email" name="email" required
class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-red-700 focus:border-transparent"
placeholder="john@example.com">
</div>
<div>
<label for="phone" class="block text-sm font-medium text-gray-700 mb-2">Phone Number</label>
<input type="tel" id="phone" name="phone"
class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-red-700 focus:border-transparent"
placeholder="+94 78 446 4128">
</div>
<div>
<label for="service" class="block text-sm font-medium text-gray-700 mb-2">Service Interested In</label>
<select id="service" name="service"
class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-red-700 focus:border-transparent">
<option value="">Select a service</option>
<option value="web-development">Web Development</option>
<option value="mobile-app">Mobile App Development</option>
<option value="cloud-computing">Cloud Computing</option>
<option value="data-analytics">Data Analytics</option>
<option value="it-consulting">IT Consulting</option>
<option value="custom-solutions">Custom Solutions</option>
</select>
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-700 mb-2">Message *</label>
<textarea id="message" name="message" required rows="4"
class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-red-700 focus:border-transparent"
placeholder="Tell us about your project..."></textarea>
</div>
<button type="submit"
class="btn-primary w-full bg-red-700 text-white px-8 py-3 rounded-lg font-semibold hover:bg-red-800">
Send Message
</button>
</form>
<div id="form-message" class="mt-4 text-center hidden"></div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-4 gap-8">
<div class="col-span-2">
<div class="flex items-center mb-4">
<img src="https://res.cloudinary.com/dkj22lm1g/image/upload/v1763972046/Falcon_98-1_cx8xvv.png" alt="Falcon 98 Logo" class="h-12 w-12 mr-3">
<span class="font-bold text-2xl">Falcon 98</span>
</div>
<p class="text-gray-400 mb-4">
Your Trusted Technology Services Provider. Empowering businesses with innovative
technology solutions in the digital era.
</p>
<!-- Social links removed - will be added when accounts are active -->
</div>
<div>
<h3 class="font-bold text-lg mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-blue-500 transition">Home</a></li>
<li><a href="#about" class="text-gray-400 hover:text-blue-500 transition">About Us</a></li>
<li><a href="#services" class="text-gray-400 hover:text-blue-500 transition">Services</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-blue-500 transition">Contact</a></li>
</ul>
</div>
<div>
<h3 class="font-bold text-lg mb-4">Services</h3>
<ul class="space-y-2">
<li><a href="#services" class="text-gray-400 hover:text-blue-500 transition">Web Development</a></li>
<li><a href="#services" class="text-gray-400 hover:text-blue-500 transition">Mobile Apps</a></li>
<li><a href="#services" class="text-gray-400 hover:text-blue-500 transition">Cloud Computing</a></li>
<li><a href="#services" class="text-gray-400 hover:text-blue-500 transition">IT Consulting</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center">
<p class="text-gray-400">
© <span id="current-year"></span> Falcon 98. All rights reserved. |
<a href="#" class="hover:text-blue-500">Privacy Policy</a> |
<a href="#" class="hover:text-blue-500">Terms of Service</a>
</p>
</div>
</div>
</footer>
<!-- Scroll to Top Button -->
<button id="scroll-top" class="fixed bottom-8 right-8 bg-red-700 text-white w-12 h-12 rounded-full shadow-lg hover:bg-red-800 transition hidden" aria-label="Scroll to top">
<i class="fas fa-arrow-up" aria-hidden="true"></i>
</button>
<!-- JavaScript -->
<script>
// Animation constants
const ANIMATION_STAGGER_DELAY = 120; // milliseconds between each card animation
const RIPPLE_DURATION = 800; // milliseconds for ripple animation
const PARALLAX_SPEED = 0.5; // parallax scroll speed multiplier
// Optimized Particle Animation
function createParticles() {
const particlesContainer = document.getElementById('particles');
const particleCount = 30; // Reduced from 50 for better performance
for (let i = 0; i < particleCount; i++) {
const particle = document.createElement('div');
particle.className = 'particle';
// Random size between 2px and 5px (slightly smaller)
const size = Math.random() * 3 + 2;
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
// Random starting position
particle.style.left = `${Math.random() * 100}%`;
// Random animation duration between 18s and 25s (slightly faster)
const duration = Math.random() * 7 + 18;
particle.style.animationDuration = `${duration}s`;
// Random delay to stagger particles
const delay = Math.random() * 5;
particle.style.animationDelay = `${delay}s`;
particlesContainer.appendChild(particle);
}
}
// Initialize particles on page load
createParticles();
// Throttling flags for different scroll handlers
let progressTicking = false;
let navTicking = false;
let parallaxTicking = false;
// Simple Loading Animation
window.addEventListener('load', () => {
const loadingOverlay = document.getElementById('loading-overlay');
setTimeout(() => {
loadingOverlay.classList.add('hidden');
// Trigger scroll animations after load
triggerScrollAnimations();
}, 500);
});
// Consolidated Scroll Handler for Performance
let lastScrollY = window.pageYOffset;
window.addEventListener('scroll', () => {
const currentScrollY = window.pageYOffset;
// Progress Bar
if (!progressTicking) {
window.requestAnimationFrame(() => {
const progressBar = document.getElementById('progress-bar');
const windowHeight = document.documentElement.scrollHeight - document.documentElement.clientHeight;
const scrolled = (currentScrollY / windowHeight) * 100;
progressBar.style.width = scrolled + '%';
progressTicking = false;
});
progressTicking = true;
}
// Navbar Effects
if (!navTicking) {
window.requestAnimationFrame(() => {
const nav = document.querySelector('nav');
if (currentScrollY > 100) {
nav.classList.add('scrolled');
} else {
nav.classList.remove('scrolled');
}
navTicking = false;
});
navTicking = true;
}
// Scroll-to-Top Button
const scrollTopButton = document.getElementById('scroll-top');
if (currentScrollY > 300) {
scrollTopButton.classList.remove('hidden');
scrollTopButton.classList.add('flex', 'items-center', 'justify-center');
} else {
scrollTopButton.classList.add('hidden');
scrollTopButton.classList.remove('flex', 'items-center', 'justify-center');
}