-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
952 lines (896 loc) · 58.4 KB
/
index.html
File metadata and controls
952 lines (896 loc) · 58.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Augment Lab - Expert Next.js & Flutter Development</title>
<meta name="description" content="Expert software development team specializing in Next.js and Flutter, delivering cutting-edge solutions for companies worldwide.">
<meta name="theme-color" content="#1d4ed8">
<!-- Performance: preconnect to CDNs -->
<link rel="preconnect" href="https://cdnjs.cloudflare.com" crossorigin>
<link rel="preconnect" href="https://images.unsplash.com" crossorigin>
<link rel="dns-prefetch" href="//cdnjs.cloudflare.com">
<link rel="dns-prefetch" href="//images.unsplash.com">
<link rel="preconnect" href="https://images.pexels.com" crossorigin>
<link rel="dns-prefetch" href="//images.pexels.com">
<!-- Inline critical CSS for above-the-fold to avoid FOUC -->
<style>
/* Critical: base, header, hero, buttons */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;line-height:1.6;color:#374151}
.container{max-width:1280px;margin:0 auto;padding:0 1rem}
@media (min-width:640px){.container{padding:0 1.5rem}}
@media (min-width:1024px){.container{padding:0 2rem}}
#header{position:fixed;top:0;left:0;right:0;background:rgba(255,255,255,.95);backdrop-filter:blur(10px);box-shadow:0 1px 3px rgba(0,0,0,.1);z-index:1000;transition:all .3s ease}
.header-content{display:flex;justify-content:space-between;align-items:center;height:64px}
.logo a{font-size:1.5rem;font-weight:700;background:linear-gradient(to right,#1d4ed8,#1e3a8a);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;text-decoration:none;transition:opacity .3s ease}
.nav-desktop{display:none;align-items:center;gap:2rem}
@media (min-width:768px){.nav-desktop{display:flex}.desktop-only{display:inline-block}.mobile-menu-toggle{display:none}}
.btn{padding:.5rem 1.5rem;border:none;border-radius:.375rem;font-weight:600;cursor:pointer;transition:all .3s ease;display:inline-flex;align-items:center;gap:.5rem;text-decoration:none;font-size:1rem}
.btn-primary{background:#1d4ed8;color:#fff}
.btn-outline{border:2px solid #fff;color:#fff;background:transparent;backdrop-filter:blur(10px)}
.btn-lg{padding:.75rem 2rem;font-size:1.125rem}
.hero-section{position:relative;min-height:100vh;display:flex;align-items:center;padding-top:64px}
.hero-background{position:absolute;inset:0;z-index:0}
.hero-background img{width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(17,24,39,.95),rgba(17,24,39,.9),rgba(17,24,39,.8))}
.hero-content{position:relative;z-index:10;padding:5rem 0}
.hero-text{max-width:48rem}
.hero-badge{display:inline-block;padding:.5rem 1rem;background:rgba(37,99,235,.2);backdrop-filter:blur(10px);border-radius:9999px;border:1px solid rgba(96,165,250,.3);margin-bottom:1.5rem}
.hero-section h1{font-size:3rem;font-weight:700;color:#fff;margin-bottom:1.5rem;line-height:1.2}
.hero-section h2{font-size:1.5rem;color:#93c5fd;font-weight:600;margin-bottom:1.5rem}
.hero-description{font-size:1.25rem;color:#d1d5db;margin-bottom:2.5rem;line-height:1.75}
.hero-buttons{display:flex;flex-direction:column;gap:1rem;margin-bottom:4rem}
@media (min-width:640px){.hero-buttons{flex-direction:row}.hero-section h1{font-size:3.75rem}.hero-section h2{font-size:1.875rem}}
</style>
<!-- Load main stylesheet without blocking render -->
<link rel="preload" href="styles.css" as="style">
<link rel="stylesheet" href="styles.css" media="print" onload="this.media='all'">
<noscript><link rel="stylesheet" href="styles.css"></noscript>
<!-- Font Awesome (non-blocking) -->
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" as="style" crossorigin>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" media="print" onload="this.media='all'">
<noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"></noscript>
<link rel="manifest" href="manifest.json">
<!-- Preload hero image for faster LCP -->
<link rel="preload" as="image" href="https://images.unsplash.com/photo-1748256467077-c75ef01579aa?auto=format&fit=crop&w=1600&q=70&crop=entropy&cs=srgb&ixid=M3w3NDk1NzZ8MHwxfHNlYXJjaHw0fHxzb2Z0d2FyZSUyMGRldmVsb3BtZW50JTIwdGVhbXxlbnwwfHx8fDE3NjEzMjgyNzd8MA&ixlib=rb-4.1.0">
</head>
<body>
<!-- Header -->
<header id="header">
<div class="container">
<div class="header-content">
<div class="logo">
<a href="#hero">Augment Lab</a>
</div>
<nav class="nav-desktop">
<a href="#services">Services</a>
<a href="#portfolio">Portfolio</a>
<a href="#team">Team</a>
<a href="#testimonials">Testimonials</a>
<a href="#contact">Contact</a>
</nav>
<button class="btn btn-primary desktop-only" onclick="scrollToSection('contact')">Get Started</button>
<button class="mobile-menu-toggle" id="mobileMenuToggle">
<i class="fas fa-bars" id="menuIcon"></i>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div class="mobile-menu" id="mobileMenu">
<a href="#services" onclick="closeMobileMenu()">Services</a>
<a href="#portfolio" onclick="closeMobileMenu()">Portfolio</a>
<a href="#team" onclick="closeMobileMenu()">Team</a>
<a href="#testimonials" onclick="closeMobileMenu()">Testimonials</a>
<a href="#contact" onclick="closeMobileMenu()">Contact</a>
<button class="btn btn-primary" onclick="scrollToSection('contact'); closeMobileMenu();">Get Started</button>
</div>
</header>
<!-- Hero Section -->
<section id="hero" class="hero-section">
<div class="hero-background">
<img src="https://images.unsplash.com/photo-1748256467077-c75ef01579aa?auto=format&fit=crop&w=1600&q=70&crop=entropy&cs=srgb&ixid=M3w3NDk1NzZ8MHwxfHNlYXJjaHw0fHxzb2Z0d2FyZSUyMGRldmVsb3BtZW50JTIwdGVhbXxlbnwwfHx8fDE3NjEzMjgyNzd8MA&ixlib=rb-4.1.0"
srcset="https://images.unsplash.com/photo-1748256467077-c75ef01579aa?auto=format&fit=crop&w=800&q=65 800w,
https://images.unsplash.com/photo-1748256467077-c75ef01579aa?auto=format&fit=crop&w=1200&q=70 1200w,
https://images.unsplash.com/photo-1748256467077-c75ef01579aa?auto=format&fit=crop&w=1600&q=70 1600w"
sizes="100vw" fetchpriority="high" decoding="async" alt="Augment Lab Team">
<div class="hero-overlay"></div>
</div>
<div class="container hero-content">
<div class="hero-text">
<div class="hero-badge">
<p>Expert Next.js & Flutter Development</p>
</div>
<h1>Augment Lab</h1>
<h2>Building Exceptional Web & Mobile Applications</h2>
<p class="hero-description">Expert software development team specializing in Next.js and Flutter, delivering cutting-edge solutions for companies worldwide.</p>
<div class="hero-buttons">
<a href="https://calendly.com/augmentlab" target="_blank" rel="noopener noreferrer" class="btn btn-primary btn-lg">
<i class="far fa-calendar"></i>
Schedule a Call
<i class="fas fa-arrow-right"></i>
</a>
<button class="btn btn-outline btn-lg" onclick="scrollToSection('contact')">
Get a Quote
</button>
</div>
<div class="hero-stats">
<div class="stat">
<div class="stat-number">50+</div>
<div class="stat-label">Projects Delivered</div>
</div>
<div class="stat">
<div class="stat-number">100%</div>
<div class="stat-label">Client Satisfaction</div>
</div>
<div class="stat">
<div class="stat-number">10+</div>
<div class="stat-label">Years Experience</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="services-section">
<div class="container">
<div class="section-header">
<h2>Our Services</h2>
<p>Comprehensive software development solutions tailored to your business needs</p>
</div>
<div class="services-grid">
<div class="service-card">
<div class="service-image">
<img loading="lazy" decoding="async"
src="https://images.unsplash.com/photo-1579403124614-197f69d8187b?auto=format&fit=crop&w=800&q=70&crop=entropy&cs=srgb&ixid=M3w3NDk1Nzh8MHwxfHNlYXJjaHwxfHxzb2Z0d2FyZSUyMGRldmVsb3BtZW50fGVufDB8fHx8MTc2MTMyODM4Mnww&ixlib=rb-4.1.0"
srcset="https://images.unsplash.com/photo-1579403124614-197f69d8187b?auto=format&fit=crop&w=480&q=65 480w,
https://images.unsplash.com/photo-1579403124614-197f69d8187b?auto=format&fit=crop&w=800&q=70 800w,
https://images.unsplash.com/photo-1579403124614-197f69d8187b?auto=format&fit=crop&w=1200&q=70 1200w"
sizes="(max-width: 768px) 100vw, 50vw" alt="Web Application Development">
<div class="service-icon">
<i class="fas fa-code"></i>
</div>
</div>
<div class="service-content">
<h3>Web Application Development</h3>
<p>Custom web applications built with modern frameworks like Next.js, React, and Node.js. Scalable, performant, and user-friendly solutions tailored to your business needs.</p>
</div>
</div>
<div class="service-card">
<div class="service-image">
<img loading="lazy" decoding="async"
src="https://images.unsplash.com/photo-1623479322729-28b25c16b011?auto=format&fit=crop&w=800&q=70&crop=entropy&cs=srgb&ixid=M3w3NDk1Nzd8MHwxfHNlYXJjaHwxfHx0ZWNoJTIwc2VydmljZXN8ZW58MHx8fHwxNzYxMzI4MzkzfDA&ixlib=rb-4.1.0"
srcset="https://images.unsplash.com/photo-1623479322729-28b25c16b011?auto=format&fit=crop&w=480&q=65 480w,
https://images.unsplash.com/photo-1623479322729-28b25c16b011?auto=format&fit=crop&w=800&q=70 800w,
https://images.unsplash.com/photo-1623479322729-28b25c16b011?auto=format&fit=crop&w=1200&q=70 1200w"
sizes="(max-width: 768px) 100vw, 50vw" alt="Mobile App Development">
<div class="service-icon">
<i class="fas fa-mobile-alt"></i>
</div>
</div>
<div class="service-content">
<h3>Mobile App Development</h3>
<p>Native and cross-platform mobile applications using Flutter. Beautiful, fast, and reliable apps for iOS and Android that deliver exceptional user experiences.</p>
</div>
</div>
<div class="service-card">
<div class="service-image">
<img loading="lazy" decoding="async"
src="https://images.unsplash.com/photo-1618761714954-0b8cd0026356?auto=format&fit=crop&w=800&q=70&crop=entropy&cs=srgb&ixid=M3w3NTY2Nzd8MHwxfHNlYXJjaHwxfHxtb2JpbGUlMjBhcHAlMjBpbnRlcmZhY2V8ZW58MHx8fHwxNzYxMzI4MzQ2fDA&ixlib=rb-4.1.0"
srcset="https://images.unsplash.com/photo-1618761714954-0b8cd0026356?auto=format&fit=crop&w=480&q=65 480w,
https://images.unsplash.com/photo-1618761714954-0b8cd0026356?auto=format&fit=crop&w=800&q=70 800w,
https://images.unsplash.com/photo-1618761714954-0b8cd0026356?auto=format&fit=crop&w=1200&q=70 1200w"
sizes="(max-width: 768px) 100vw, 50vw" alt="UI/UX Design">
<div class="service-icon">
<i class="fas fa-palette"></i>
</div>
</div>
<div class="service-content">
<h3>UI/UX Design</h3>
<p>User-centered design solutions that combine aesthetics with functionality. We create intuitive interfaces that engage users and drive conversions.</p>
</div>
</div>
<div class="service-card">
<div class="service-image">
<img loading="lazy" decoding="async"
src="https://images.unsplash.com/photo-1711397505947-648fc2909627?auto=format&fit=crop&w=800&q=70&crop=entropy&cs=srgb&ixid=M3w3NDk1Nzd8MHwxfHNlYXJjaHwzfHx0ZWNoJTIwc2VydmljZXN8ZW58MHx8fHwxNzYxMzI4MzkzfDA&ixlib=rb-4.1.0"
srcset="https://images.unsplash.com/photo-1711397505947-648fc2909627?auto=format&fit=crop&w=480&q=65 480w,
https://images.unsplash.com/photo-1711397505947-648fc2909627?auto=format&fit=crop&w=800&q=70 800w,
https://images.unsplash.com/photo-1711397505947-648fc2909627?auto=format&fit=crop&w=1200&q=70 1200w"
sizes="(max-width: 768px) 100vw, 50vw" alt="Technical Consulting">
<div class="service-icon">
<i class="fas fa-users"></i>
</div>
</div>
<div class="service-content">
<h3>Technical Consulting</h3>
<p>Expert guidance on technology strategy, architecture decisions, and implementation best practices to help your business succeed in the digital landscape.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="portfolio-section">
<div class="container">
<div class="section-header">
<h2>Our Portfolio</h2>
<p>Showcasing successful projects that demonstrate our expertise and commitment to excellence</p>
</div>
<div class="portfolio-grid">
<div class="portfolio-card">
<div class="portfolio-image">
<img loading="lazy" decoding="async"
src="https://images.unsplash.com/photo-1554098415-788601c80aef?auto=format&fit=crop&w=900&q=70&crop=entropy&cs=srgb&ixid=M3w3NDk1Nzd8MHwxfHNlYXJjaHwxfHx3ZWIlMjBkYXNoYm9hcmR8ZW58MHx8fHwxNzYxMzI4MzM5fDA&ixlib=rb-4.1.0"
srcset="https://images.unsplash.com/photo-1554098415-788601c80aef?auto=format&fit=crop&w=600&q=65 600w,
https://images.unsplash.com/photo-1554098415-788601c80aef?auto=format&fit=crop&w=900&q=70 900w,
https://images.unsplash.com/photo-1554098415-788601c80aef?auto=format&fit=crop&w=1200&q=70 1200w"
sizes="(max-width: 768px) 100vw, 50vw" alt="Enterprise Dashboard Platform">
<span class="portfolio-badge">Web Application</span>
</div>
<div class="portfolio-content">
<h3>Enterprise Dashboard Platform</h3>
<p>Comprehensive analytics and management platform built with Next.js for a Fortune 500 client.</p>
<div class="tech-tags">
<span class="tag">Next.js</span>
<span class="tag">React</span>
<span class="tag">Node.js</span>
<span class="tag">PostgreSQL</span>
</div>
</div>
</div>
<div class="portfolio-card">
<div class="portfolio-image">
<img loading="lazy" decoding="async"
src="https://images.unsplash.com/photo-1658953229625-aad99d7603b4?auto=format&fit=crop&w=900&q=70&crop=entropy&cs=srgb&ixid=M3w3NTY2Nzd8MHwxfHNlYXJjaHwyfHxtb2JpbGUlMjBhcHAlMjBpbnRlcmZhY2V8ZW58MHx8fHwxNzYxMzI4MzQ2fDA&ixlib=rb-4.1.0"
srcset="https://images.unsplash.com/photo-1658953229625-aad99d7603b4?auto=format&fit=crop&w=600&q=65 600w,
https://images.unsplash.com/photo-1658953229625-aad99d7603b4?auto=format&fit=crop&w=900&q=70 900w,
https://images.unsplash.com/photo-1658953229625-aad99d7603b4?auto=format&fit=crop&w=1200&q=70 1200w"
sizes="(max-width: 768px) 100vw, 50vw" alt="E-Commerce Mobile App">
<span class="portfolio-badge">Mobile Application</span>
</div>
<div class="portfolio-content">
<h3>E-Commerce Mobile App</h3>
<p>Full-featured shopping app with real-time inventory and seamless checkout experience using Flutter.</p>
<div class="tech-tags">
<span class="tag">Flutter</span>
<span class="tag">Firebase</span>
<span class="tag">Stripe</span>
</div>
</div>
</div>
<div class="portfolio-card">
<div class="portfolio-image">
<img loading="lazy" decoding="async"
src="https://images.unsplash.com/photo-1758770478125-4850521fd941?auto=format&fit=crop&w=900&q=70&crop=entropy&cs=srgb&ixid=M3w3NTY2Nzd8MHwxfHNlYXJjaHwzfHxtb2JpbGUlMjBhcHAlMjBpbnRlcmZhY2V8ZW58MHx8fHwxNzYxMzI4MzQ2fDA&ixlib=rb-4.1.0"
srcset="https://images.unsplash.com/photo-1758770478125-4850521fd941?auto=format&fit=crop&w=600&q=65 600w,
https://images.unsplash.com/photo-1758770478125-4850521fd941?auto=format&fit=crop&w=900&q=70 900w,
https://images.unsplash.com/photo-1758770478125-4850521fd941?auto=format&fit=crop&w=1200&q=70 1200w"
sizes="(max-width: 768px) 100vw, 50vw" alt="Healthcare Management System">
<span class="portfolio-badge">Web Application</span>
</div>
<div class="portfolio-content">
<h3>Healthcare Management System</h3>
<p>HIPAA-compliant patient management and telemedicine platform serving 10,000+ users.</p>
<div class="tech-tags">
<span class="tag">Next.js</span>
<span class="tag">TypeScript</span>
<span class="tag">MongoDB</span>
</div>
</div>
</div>
<div class="portfolio-card">
<div class="portfolio-image">
<img loading="lazy" decoding="async"
src="https://images.unsplash.com/photo-1618761714954-0b8cd0026356?auto=format&fit=crop&w=900&q=70&crop=entropy&cs=srgb&ixid=M3w3NTY2Nzd8MHwxfHNlYXJjaHwxfHxtb2JpbGUlMjBhcHAlMjBpbnRlcmZhY2V8ZW58MHx8fHwxNzYxMzI4MzQ2fDA&ixlib=rb-4.1.0"
srcset="https://images.unsplash.com/photo-1618761714954-0b8cd0026356?auto=format&fit=crop&w=600&q=65 600w,
https://images.unsplash.com/photo-1618761714954-0b8cd0026356?auto=format&fit=crop&w=900&q=70 900w,
https://images.unsplash.com/photo-1618761714954-0b8cd0026356?auto=format&fit=crop&w=1200&q=70 1200w"
sizes="(max-width: 768px) 100vw, 50vw" alt="Fintech Banking App">
<span class="portfolio-badge">Mobile Application</span>
</div>
<div class="portfolio-content">
<h3>Fintech Banking App</h3>
<p>Secure mobile banking solution with advanced fraud detection and real-time transactions.</p>
<div class="tech-tags">
<span class="tag">Flutter</span>
<span class="tag">AWS</span>
<span class="tag">Microservices</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<!--
<section id="team" class="team-section">
<div class="container">
<div class="section-header">
<h2>Meet Our Team</h2>
<p>Talented professionals dedicated to delivering exceptional results</p>
</div>
<div class="team-grid">
<div class="team-card">
<div class="team-avatar">
<img loading="lazy" decoding="async" width="128" height="128"
src="https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=256&q=70&crop=entropy&cs=srgb&ixid=M3w3NTY2NzR8MHwxfHNlYXJjaHwxfHxwcm9mZXNzaW9uYWwlMjBoZWFkc2hvdHN8ZW58MHx8fHwxNzYxMjU2Nzg0fDA&ixlib=rb-4.1.0"
alt="Michael Chen">
</div>
<h3>Michael Chen</h3>
<p class="team-role">CEO & Lead Architect</p>
<p class="team-bio">15+ years of experience in software architecture and team leadership. Specializes in scalable system design.</p>
<div class="team-social">
<a href="#" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin"></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class="fab fa-twitter"></i></a>
</div>
</div>
<div class="team-card">
<div class="team-avatar">
<img loading="lazy" decoding="async" width="128" height="128"
src="https://images.unsplash.com/photo-1657128344786-360c3f8e57e5?auto=format&fit=crop&w=256&q=70&crop=entropy&cs=srgb&ixid=M3w3NTY2NzR8MHwxfHNlYXJjaHwzfHxwcm9mZXNzaW9uYWwlMjBoZWFkc2hvdHN8ZW58MHx8fHwxNzYxMjU2Nzg0fDA&ixlib=rb-4.1.0"
alt="Sarah Johnson">
</div>
<h3>Sarah Johnson</h3>
<p class="team-role">CTO</p>
<p class="team-bio">Expert in Next.js and modern web technologies. Led development teams at major tech companies.</p>
<div class="team-social">
<a href="#" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin"></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class="fab fa-twitter"></i></a>
</div>
</div>
<div class="team-card">
<div class="team-avatar">
<img loading="lazy" decoding="async" width="128" height="128"
src="https://images.unsplash.com/photo-1629425733761-caae3b5f2e50?auto=format&fit=crop&w=256&q=70&crop=entropy&cs=srgb&ixid=M3w3NTY2NzR8MHwxfHNlYXJjaHwyfHxwcm9mZXNzaW9uYWwlMjBoZWFkc2hvdHN8ZW58MHx8fHwxNzYxMjU2Nzg0fDA&ixlib=rb-4.1.0"
alt="David Martinez">
</div>
<h3>David Martinez</h3>
<p class="team-role">Senior Flutter Developer</p>
<p class="team-bio">Mobile development specialist with 50+ published apps. Passionate about creating beautiful user experiences.</p>
<div class="team-social">
<a href="#" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin"></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class="fab fa-twitter"></i></a>
</div>
</div>
<div class="team-card">
<div class="team-avatar">
<img loading="lazy" decoding="async" width="128" height="128"
src="https://images.pexels.com/photos/30004320/pexels-photo-30004320.jpeg?auto=compress&cs=tinysrgb&w=256"
alt="Emily Rodriguez">
</div>
<h3>Emily Rodriguez</h3>
<p class="team-role">Lead UI/UX Designer</p>
<p class="team-bio">Award-winning designer focused on user-centered design. Creates interfaces that users love.</p>
<div class="team-social">
<a href="#" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin"></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class="fab fa-twitter"></i></a>
</div>
</div>
<div class="team-card">
<div class="team-avatar">
<img loading="lazy" decoding="async" width="128" height="128"
src="https://images.unsplash.com/photo-1652471943570-f3590a4e52ed?auto=format&fit=crop&w=256&q=70&crop=entropy&cs=srgb&ixid=M3w3NTY2NzR8MHwxfHNlYXJjaHw0fHxwcm9mZXNzaW9uYWwlMjBoZWFkc2hvdHN8ZW58MHx8fHwxNzYxMjU2Nzg0fDA&ixlib=rb-4.1.0"
alt="James Wilson">
</div>
<h3>James Wilson</h3>
<p class="team-role">Full Stack Developer</p>
<p class="team-bio">Full-stack expert proficient in Next.js, Node.js, and cloud technologies. Delivers robust solutions.</p>
<div class="team-social">
<a href="#" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin"></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class="fab fa-twitter"></i></a>
</div>
</div>
<div class="team-card">
<div class="team-avatar">
<img loading="lazy" decoding="async" width="128" height="128"
src="https://images.pexels.com/photos/30004322/pexels-photo-30004322.jpeg?auto=compress&cs=tinysrgb&w=256"
alt="Lisa Anderson">
</div>
<h3>Lisa Anderson</h3>
<p class="team-role">Project Manager</p>
<p class="team-bio">Certified Scrum Master with expertise in agile methodologies. Ensures projects deliver on time and budget.</p>
<div class="team-social">
<a href="#" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin"></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
</div>
</section>
-->
<!-- Testimonials Section -->
<section id="testimonials" class="testimonials-section">
<div class="container">
<div class="section-header">
<h2>Client Testimonials</h2>
<p>Hear what our clients have to say about working with us</p>
</div>
<div class="testimonials-grid">
<div class="testimonial-card">
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<blockquote>
"Augment Lab transformed our vision into reality. Their expertise in Next.js helped us launch our platform 2 months ahead of schedule. The quality of their work is exceptional."
</blockquote>
<div class="testimonial-author">
<div class="author-avatar">RT</div>
<div class="author-info">
<div class="author-name">Robert Thompson</div>
<div class="author-role">VP of Engineering at TechCorp Solutions</div>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<blockquote>
"Working with Augment Lab was a game-changer for our mobile strategy. Their Flutter development team delivered a beautiful, performant app that our customers love."
</blockquote>
<div class="testimonial-author">
<div class="author-avatar">JL</div>
<div class="author-info">
<div class="author-name">Jennifer Lee</div>
<div class="author-role">Chief Technology Officer at Global Finance Inc.</div>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<blockquote>
"Professional, reliable, and incredibly skilled. Augment Lab handled our complex healthcare platform with expertise and delivered beyond expectations. Highly recommended!"
</blockquote>
<div class="testimonial-author">
<div class="author-avatar">MW</div>
<div class="author-info">
<div class="author-name">Marcus Williams</div>
<div class="author-role">CEO at HealthFirst Systems</div>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<blockquote>
"The team at Augment Lab is outstanding. They understood our requirements perfectly and created a scalable solution that has grown with our business. True partners in success."
</blockquote>
<div class="testimonial-author">
<div class="author-avatar">AS</div>
<div class="author-info">
<div class="author-name">Anna Schmidt</div>
<div class="author-role">Director of Digital at E-Commerce Partners</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact-section">
<div class="container">
<div class="section-header">
<h2>Get In Touch</h2>
<p>Ready to start your next project? Contact us today for a free consultation</p>
</div>
<div class="contact-grid">
<div class="contact-form-wrapper">
<form id="contactForm" class="contact-form" action="https://api.web3forms.com/submit" method="POST">
<input type="hidden" name="access_key" value="bfedffa9-4a96-4b72-9a2a-c4a818293f90">
<div class="form-group">
<label for="name">Full Name *</label>
<input type="text" id="name" name="name" required placeholder="John Doe">
</div>
<div class="form-group">
<label for="email">Email Address *</label>
<input type="email" id="email" name="email" required placeholder="john@company.com">
</div>
<div class="form-group">
<label for="company">Company</label>
<input type="text" id="company" name="company" placeholder="Your Company Name">
</div>
<div class="form-group">
<label for="country">Country</label>
<select class="form-select" autocomplete="country" id="country" name="country">
<option value="">select country</option>
<option value="AF">Afghanistan</option>
<option value="AX">Åland Islands</option>
<option value="AL">Albania</option>
<option value="DZ">Algeria</option>
<option value="AS">American Samoa</option>
<option value="AD">Andorra</option>
<option value="AO">Angola</option>
<option value="AI">Anguilla</option>
<option value="AQ">Antarctica</option>
<option value="AG">Antigua and Barbuda</option>
<option value="AR">Argentina</option>
<option value="AM">Armenia</option>
<option value="AW">Aruba</option>
<option value="AU">Australia</option>
<option value="AT">Austria</option>
<option value="AZ">Azerbaijan</option>
<option value="BS">Bahamas</option>
<option value="BH">Bahrain</option>
<option value="BD">Bangladesh</option>
<option value="BB">Barbados</option>
<option value="BY">Belarus</option>
<option value="BE">Belgium</option>
<option value="BZ">Belize</option>
<option value="BJ">Benin</option>
<option value="BM">Bermuda</option>
<option value="BT">Bhutan</option>
<option value="BO">Bolivia (Plurinational State of)</option>
<option value="BA">Bosnia and Herzegovina</option>
<option value="BW">Botswana</option>
<option value="BV">Bouvet Island</option>
<option value="BR">Brazil</option>
<option value="IO">British Indian Ocean Territory</option>
<option value="BN">Brunei Darussalam</option>
<option value="BG">Bulgaria</option>
<option value="BF">Burkina Faso</option>
<option value="BI">Burundi</option>
<option value="CV">Cabo Verde</option>
<option value="KH">Cambodia</option>
<option value="CM">Cameroon</option>
<option value="CA">Canada</option>
<option value="BQ">Caribbean Netherlands</option>
<option value="KY">Cayman Islands</option>
<option value="CF">Central African Republic</option>
<option value="TD">Chad</option>
<option value="CL">Chile</option>
<option value="CN">China</option>
<option value="CX">Christmas Island</option>
<option value="CC">Cocos (Keeling) Islands</option>
<option value="CO">Colombia</option>
<option value="KM">Comoros</option>
<option value="CG">Congo</option>
<option value="CD">Congo, Democratic Republic of the</option>
<option value="CK">Cook Islands</option>
<option value="CR">Costa Rica</option>
<option value="HR">Croatia</option>
<option value="CU">Cuba</option>
<option value="CW">Curaçao</option>
<option value="CY">Cyprus</option>
<option value="CZ">Czech Republic</option>
<option value="CI">Côte d'Ivoire</option>
<option value="DK">Denmark</option>
<option value="DJ">Djibouti</option>
<option value="DM">Dominica</option>
<option value="DO">Dominican Republic</option>
<option value="EC">Ecuador</option>
<option value="EG">Egypt</option>
<option value="SV">El Salvador</option>
<option value="GQ">Equatorial Guinea</option>
<option value="ER">Eritrea</option>
<option value="EE">Estonia</option>
<option value="SZ">Eswatini (Swaziland)</option>
<option value="ET">Ethiopia</option>
<option value="FK">Falkland Islands (Malvinas)</option>
<option value="FO">Faroe Islands</option>
<option value="FJ">Fiji</option>
<option value="FI">Finland</option>
<option value="FR">France</option>
<option value="GF">French Guiana</option>
<option value="PF">French Polynesia</option>
<option value="TF">French Southern Territories</option>
<option value="GA">Gabon</option>
<option value="GM">Gambia</option>
<option value="GE">Georgia</option>
<option value="DE">Germany</option>
<option value="GH">Ghana</option>
<option value="GI">Gibraltar</option>
<option value="GR">Greece</option>
<option value="GL">Greenland</option>
<option value="GD">Grenada</option>
<option value="GP">Guadeloupe</option>
<option value="GU">Guam</option>
<option value="GT">Guatemala</option>
<option value="GG">Guernsey</option>
<option value="GN">Guinea</option>
<option value="GW">Guinea-Bissau</option>
<option value="GY">Guyana</option>
<option value="HT">Haiti</option>
<option value="HM">Heard Island and Mcdonald Islands</option>
<option value="HN">Honduras</option>
<option value="HK">Hong Kong</option>
<option value="HU">Hungary</option>
<option value="IS">Iceland</option>
<option value="IN">India</option>
<option value="ID">Indonesia</option>
<option value="IR">Iran</option>
<option value="IQ">Iraq</option>
<option value="IE">Ireland</option>
<option value="IM">Isle of Man</option>
<option value="IL">Israel</option>
<option value="IT">Italy</option>
<option value="JM">Jamaica</option>
<option value="JP">Japan</option>
<option value="JE">Jersey</option>
<option value="JO">Jordan</option>
<option value="KZ">Kazakhstan</option>
<option value="KE">Kenya</option>
<option value="KI">Kiribati</option>
<option value="KP">Korea, North</option>
<option value="KR">Korea, South</option>
<option value="XK">Kosovo</option>
<option value="KW">Kuwait</option>
<option value="KG">Kyrgyzstan</option>
<option value="LA">Lao People's Democratic Republic</option>
<option value="LV">Latvia</option>
<option value="LB">Lebanon</option>
<option value="LS">Lesotho</option>
<option value="LR">Liberia</option>
<option value="LY">Libya</option>
<option value="LI">Liechtenstein</option>
<option value="LT">Lithuania</option>
<option value="LU">Luxembourg</option>
<option value="MO">Macao</option>
<option value="MK">Macedonia North</option>
<option value="MG">Madagascar</option>
<option value="MW">Malawi</option>
<option value="MY">Malaysia</option>
<option value="MV">Maldives</option>
<option value="ML">Mali</option>
<option value="MT">Malta</option>
<option value="MH">Marshall Islands</option>
<option value="MQ">Martinique</option>
<option value="MR">Mauritania</option>
<option value="MU">Mauritius</option>
<option value="YT">Mayotte</option>
<option value="MX">Mexico</option>
<option value="FM">Micronesia</option>
<option value="MD">Moldova</option>
<option value="MC">Monaco</option>
<option value="MN">Mongolia</option>
<option value="ME">Montenegro</option>
<option value="MS">Montserrat</option>
<option value="MA">Morocco</option>
<option value="MZ">Mozambique</option>
<option value="MM">Myanmar (Burma)</option>
<option value="NA">Namibia</option>
<option value="NR">Nauru</option>
<option value="NP">Nepal</option>
<option value="NL">Netherlands</option>
<option value="AN">Netherlands Antilles</option>
<option value="NC">New Caledonia</option>
<option value="NZ">New Zealand</option>
<option value="NI">Nicaragua</option>
<option value="NE">Niger</option>
<option value="NG">Nigeria</option>
<option value="NU">Niue</option>
<option value="NF">Norfolk Island</option>
<option value="MP">Northern Mariana Islands</option>
<option value="NO">Norway</option>
<option value="OM">Oman</option>
<option value="PK">Pakistan</option>
<option value="PW">Palau</option>
<option value="PS">Palestine</option>
<option value="PA">Panama</option>
<option value="PG">Papua New Guinea</option>
<option value="PY">Paraguay</option>
<option value="PE">Peru</option>
<option value="PH">Philippines</option>
<option value="PN">Pitcairn Islands</option>
<option value="PL">Poland</option>
<option value="PT">Portugal</option>
<option value="PR">Puerto Rico</option>
<option value="QA">Qatar</option>
<option value="RE">Reunion</option>
<option value="RO">Romania</option>
<option value="RU">Russian Federation</option>
<option value="RW">Rwanda</option>
<option value="BL">Saint Barthelemy</option>
<option value="SH">Saint Helena</option>
<option value="KN">Saint Kitts and Nevis</option>
<option value="LC">Saint Lucia</option>
<option value="MF">Saint Martin</option>
<option value="PM">Saint Pierre and Miquelon</option>
<option value="VC">Saint Vincent and the Grenadines</option>
<option value="WS">Samoa</option>
<option value="SM">San Marino</option>
<option value="ST">Sao Tome and Principe</option>
<option value="SA">Saudi Arabia</option>
<option value="SN">Senegal</option>
<option value="RS">Serbia</option>
<option value="CS">Serbia and Montenegro</option>
<option value="SC">Seychelles</option>
<option value="SL">Sierra Leone</option>
<option value="SG">Singapore</option>
<option value="SX">Sint Maarten</option>
<option value="SK">Slovakia</option>
<option value="SI">Slovenia</option>
<option value="SB">Solomon Islands</option>
<option value="SO">Somalia</option>
<option value="ZA">South Africa</option>
<option value="GS">South Georgia and the South Sandwich Islands</option>
<option value="SS">South Sudan</option>
<option value="ES">Spain</option>
<option value="LK">Sri Lanka</option>
<option value="SD">Sudan</option>
<option value="SR">Suriname</option>
<option value="SJ">Svalbard and Jan Mayen</option>
<option value="SE">Sweden</option>
<option value="CH">Switzerland</option>
<option value="SY">Syria</option>
<option value="TW">Taiwan</option>
<option value="TJ">Tajikistan</option>
<option value="TZ">Tanzania</option>
<option value="TH">Thailand</option>
<option value="TL">Timor-Leste</option>
<option value="TG">Togo</option>
<option value="TK">Tokelau</option>
<option value="TO">Tonga</option>
<option value="TT">Trinidad and Tobago</option>
<option value="TN">Tunisia</option>
<option value="TR">Turkey (Türkiye)</option>
<option value="TM">Turkmenistan</option>
<option value="TC">Turks and Caicos Islands</option>
<option value="TV">Tuvalu</option>
<option value="UM">U.S. Outlying Islands</option>
<option value="UG">Uganda</option>
<option value="UA">Ukraine</option>
<option value="AE">United Arab Emirates</option>
<option value="GB">United Kingdom</option>
<option value="US">United States</option>
<option value="UY">Uruguay</option>
<option value="UZ">Uzbekistan</option>
<option value="VU">Vanuatu</option>
<option value="VA">Vatican City Holy See</option>
<option value="VE">Venezuela</option>
<option value="VN">Vietnam</option>
<option value="VG">Virgin Islands, British</option>
<option value="VI">Virgin Islands, U.S</option>
<option value="WF">Wallis and Futuna</option>
<option value="EH">Western Sahara</option>
<option value="YE">Yemen</option>
<option value="ZM">Zambia</option>
<option value="ZW">Zimbabwe</option>
</select>
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" name="phone" placeholder="+XXX XXX XXX XXXX">
</div>
<div class="form-group">
<label for="message">Message *</label>
<textarea id="message" name="message" required rows="5" placeholder="Tell us about your project..."></textarea>
</div>
<button type="submit" class="btn btn-primary btn-block">
<i class="fas fa-paper-plane"></i>
Send Message
</button>
</form>
</div>
<div class="contact-info-wrapper">
<div class="contact-info-intro">
<h3>Contact Information</h3>
<p>Have a question or want to work together? We'd love to hear from you. Fill out the form or reach out directly using the contact details below.</p>
</div>
<div class="contact-info-card">
<div class="info-item">
<div class="info-icon">
<i class="fas fa-envelope"></i>
</div>
<div class="info-content">
<h4>Email</h4>
<a href="mailto:augmentlab.io@gmail.com">augmentlab.io@gmail.com</a>
</div>
</div>
<div class="info-item">
<div class="info-icon">
<i class="fab fa-linkedin"></i>
</div>
<div class="info-content">
<h4>LinkedIn</h4>
<a href="https://www.linkedin.com/company/augmentlab/" target="_blank" rel="noopener noreferrer">augmentlab</a>
</div>
</div>
<div class="info-item">
<div class="info-icon">
<i class="fab fa-github"></i>
</div>
<div class="info-content">
<h4>GitHub</h4>
<a href="https://github.com/augmentlab/" target="_blank" rel="noopener noreferrer">augmentlab</a>
</div>
</div>
<div class="info-item">
<div class="info-icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="info-content">
<h4>Address</h4>
<p>Dhaka, Bangladesh</p>
</div>
</div>
</div>
<div class="cta-card">
<h4>Schedule a Call</h4>
<p>Prefer to speak directly? Book a 30-minute consultation call with our team.</p>
<a href="https://calendly.com/augmentlab" target="_blank" rel="noopener noreferrer" class="btn btn-white">
<i class="far fa-calendar"></i>
Book a Meeting
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-grid">
<div class="footer-about">
<h3>Augment Lab</h3>
<p>Expert software development team specializing in Next.js and Flutter, delivering cutting-edge solutions for companies worldwide.</p>
<div class="footer-social">
<a href="https://www.linkedin.com/company/augmentlab/" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/augmentlab/" target="_blank" rel="noopener noreferrer"><i class="fab fa-github"></i></a>
<a href="https://medium.com/@augmentlab" target="_blank" rel="noopener noreferrer"><i class="fab fa-medium"></i></a>
<a href="http://reddit.com/r/augmentlab" target="_blank" rel="noopener noreferrer"><i class="fab fa-reddit"></i></a>
<a href="https://www.youtube.com/@AugmentLab" target="_blank" rel="noopener noreferrer"><i class="fab fa-youtube"></i></a>
<a href="https://dev.to/augmentlab" target="_blank" rel="noopener noreferrer"><i class="fab fa-dev"></i></a>
</div>
</div>
<div class="footer-links">
<h4>Quick Links</h4>
<ul>
<li><a href="#services">Services</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#testimonials">Testimonials</a></li>
</ul>
</div>
<div class="footer-contact">
<h4>Contact</h4>
<ul>
<li>
<i class="fas fa-envelope"></i>
<a href="mailto:augmentlab.io@gmail.com">augmentlab.io@gmail.com</a>
</li>
<li>
<i class="fas fa-map-marker-alt"></i>
<span>Dhaka, Bangladesh</span>
</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Augment Lab. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Toast Notification -->
<div id="toast" class="toast"></div>
<script defer src="script.js"></script>
<script>
// Register Service Worker for caching
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/sw.js').catch(() => {});
});
}
</script>
</body>
</html>