-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1078 lines (954 loc) · 44.5 KB
/
index.html
File metadata and controls
1078 lines (954 loc) · 44.5 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">
<title>ByteSynergy Labs | Innovative Tech Solutions</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="ByteSynergy Labs, tech solutions, software development, AI, machine learning, innovative technology"
name="keywords">
<meta
content="ByteSynergy Labs provides innovative tech solutions including software development services to help businesses thrive in the digital age."
name="description">
<meta name="robots" content="index, follow">
<meta name="google-site-verification" content="7N-0S4fLKv5qYxSOgrMCU-yqyWumlIP7XfdT87dJs4s" />
<!-- Favicons -->
<link href="img/complogo.ico" rel="icon">
<link href="img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,500,600,700,700i|Montserrat:300,400,500,600,700"
rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<!-- Structured Data for SEO -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "ByteSynergy Labs",
"url": "https://www.bytesynergylabs.com",
"logo": "https://www.bytesynergylabs.com/img/logo.png",
"sameAs": [
"https://www.facebook.com/bytesynergylabs",
"https://www.twitter.com/bytesynergylabs",
"https://www.linkedin.com/company/bytesynergy-labs"
],
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+1-800-123-4567",
"contactType": "Customer Service"
}
}
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ELGHFB5QTT"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-ELGHFB5QTT');
</script>
</head>
<body>
<!--==========================
Header
============================-->
<header id="header">
<div id="topbar">
<div class="container">
<div class="social-links">
<a href="#" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a>
<a href="#" class="instagram"><i class="fa fa-instagram"></i></a>
</div>
</div>
</div>
<div class="container">
<div class="logo float-left">
<!-- Uncomment below if you prefer to use an image logo -->
<h1 class="text-light"><a href="#intro" class="scrollto"><span style="font-size:x-large">ByteSynergy
Labs</span></a></h1>
<!-- <a href="#header" class="scrollto"><img src="img/logo.png" alt="" class="img-fluid"></a> -->
</div>
<nav class="main-nav float-right d-none d-lg-block">
<ul>
<li class="active"><a href="#intro">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#team">Team</a></li>
<!-- <li class="drop-down"><a href="">Drop Down</a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="drop-down"><a href="#">Drop Down 2</a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
<li><a href="#">Drop Down 5</a></li>
</ul>
</li>
<li><a href="#footer">Contact Us</a></li> -->
</ul>
</nav><!-- .main-nav -->
</div>
</header><!-- #header -->
<!--==========================
Intro Section
============================-->
<section id="intro" class="clearfix">
<div class="container d-flex h-100">
<div class="row justify-content-center align-self-center">
<div class="col-md-6 intro-info order-md-first order-last">
<h2>ByteSynergyLabs Solutions<br>for Your <span>Business!</span></h2>
<div>
<a href="#about" class="btn-get-started scrollto">Get Started</a>
</div>
</div>
<div class="col-md-6 intro-img order-md-last order-first">
<img src="img/intro-img.svg" alt="intro-svg" class="img-fluid">
</div>
</div>
</div>
</section><!-- #intro -->
<main id="main">
<!--==========================
About Us Section
============================-->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-5 col-md-6">
<div class="about-img">
<img src="img/about-img.jpg" alt="ByteSynergyLabs Team">
</div>
</div>
<div class="col-lg-7 col-md-6">
<div class="about-content">
<h2>About Us</h2>
<h3>Innovating Solutions for a Digital World</h3>
<p>At ByteSynergyLabs, we are passionate about leveraging technology to drive transformation and growth.
Our team of experts specializes in creating cutting-edge software solutions that cater to a diverse
range of industries.</p>
<p>With a commitment to excellence and a focus on innovation, we work closely with our clients to
understand their unique challenges and deliver tailored solutions that meet their specific needs. Our
mission is to empower businesses through technology, ensuring they stay ahead in a ByteSynergyLabsly
evolving digital landscape.</p>
<ul>
<li><i class="ion-android-checkmark-circle"></i> Dedicated to delivering top-quality software solutions.
</li>
<li><i class="ion-android-checkmark-circle"></i> Committed to client satisfaction and long-term
partnerships.</li>
<li><i class="ion-android-checkmark-circle"></i> Leveraging the latest technologies to ensure robust and
scalable solutions.</li>
</ul>
<p>Connect with us on <a href="https://github.com/ByteSynergyLabs" target="_blank">GitHub</a> and <a
href="https://www.linkedin.com/company/bytesynergy-labs" target="_blank">LinkedIn</a> to learn more
about our work and join our community.</p>
</div>
</div>
</div>
</div>
</section>
</section><!-- #about -->
<!--==========================
Services Section
============================-->
<section id="services" class="section-bg">
<div class="container">
<header class="section-header">
<h3>Our Services</h3>
<p>At ByteSynergyLabs, we offer a wide range of services to meet your technological needs. Our expertise spans
multiple domains, ensuring comprehensive solutions for your business.</p>
</header>
<div class="row">
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="icon" style="background: #fceef3;"><i class="ion-ios-analytics-outline"
style="color: #ff689b;"></i></div>
<h4 class="title"><a href="">Data Analytics</a></h4>
<p class="description">Transform your data into actionable insights with our advanced analytics solutions,
helping you make informed decisions.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="icon" style="background: #fff0da;"><i class="ion-ios-bookmarks-outline"
style="color: #e98e06;"></i></div>
<h4 class="title"><a href="">Custom Software Development</a></h4>
<p class="description">Get tailor-made software solutions designed to meet your specific business
requirements and enhance operational efficiency.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-delay="0.1s" data-wow-duration="1.4s">
<div class="box">
<div class="icon" style="background: #e6fdfc;"><i class="ion-ios-paper-outline"
style="color: #3fcdc7;"></i></div>
<h4 class="title"><a href="">IT Consulting</a></h4>
<p class="description">Leverage our expertise to navigate complex IT challenges and implement solutions
that drive growth and innovation.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-delay="0.1s" data-wow-duration="1.4s">
<div class="box">
<div class="icon" style="background: #eafde7;"><i class="ion-ios-speedometer-outline"
style="color:#41cf2e;"></i></div>
<h4 class="title"><a href="">Performance Optimization</a></h4>
<p class="description">Optimize the performance of your existing systems to ensure maximum efficiency and
minimal downtime.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-delay="0.2s" data-wow-duration="1.4s">
<div class="box">
<div class="icon" style="background: #e1eeff;"><i class="ion-ios-world-outline"
style="color: #2282ff;"></i></div>
<h4 class="title"><a href="">Web Development</a></h4>
<p class="description">Build robust and scalable web applications with our expertise in the latest web
technologies and frameworks.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-delay="0.2s" data-wow-duration="1.4s">
<div class="box">
<div class="icon" style="background: #ecebff;"><i class="ion-ios-clock-outline"
style="color: #8660fe;"></i></div>
<h4 class="title"><a href="">Mobile App Development</a></h4>
<p class="description">Create seamless and intuitive mobile experiences with our custom app development
services for iOS and Android platforms.</p>
</div>
</div>
</div>
</div>
</section><!-- #services -->
<!-- #services -->
<!--==========================
Why Us Section
============================-->
<section id="why-us" class="wow fadeIn">
<div class="container-fluid">
<header class="section-header">
<h3>Why Choose Us?</h3>
<p>Discover what sets ByteSynergyLabs apart from the competition. Our commitment to excellence and innovation
drives us to deliver the best solutions for your business.</p>
</header>
<div class="row">
<div class="col-lg-6">
<div class="why-us-img">
<img src="img/why-us.jpg" alt="Why ByteSynergyLabs" class="img-fluid">
</div>
</div>
<div class="col-lg-6">
<div class="why-us-content">
<p>At ByteSynergyLabs, we understand that every business has unique needs. Our tailored approach ensures
that we provide solutions that fit perfectly with your objectives, driving growth and efficiency.</p>
<p>
Our team is composed of industry experts who bring a wealth of experience and a passion for technology.
We are dedicated to staying at the forefront of technological advancements, ensuring that our clients
benefit from the latest innovations.
</p>
<div class="features wow bounceInUp clearfix">
<i class="fa fa-diamond" style="color: #f058dc;"></i>
<h4>Exceptional Quality</h4>
<p>We are committed to delivering top-quality solutions that exceed expectations. Our meticulous
attention to detail ensures that every project is completed to the highest standards.</p>
</div>
<div class="features wow bounceInUp clearfix">
<i class="fa fa-object-group" style="color: #ffb774;"></i>
<h4>Innovative Solutions</h4>
<p>Our innovative approach allows us to solve complex problems with creative solutions. We embrace
challenges and turn them into opportunities for growth and success.</p>
</div>
<div class="features wow bounceInUp clearfix">
<i class="fa fa-language" style="color: #589af1;"></i>
<h4>Expert Support</h4>
<p>Our team provides comprehensive support throughout the project lifecycle. We are here to ensure your
success, from initial consultation to ongoing maintenance and beyond.</p>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="container">
<div class="row counters">
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">274</span>
<p>Clients</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">421</span>
<p>Projects</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">1,364</span>
<p>Hours of Support</p>
</div>
<div class="col-lg-3 col-6 text-center">
<span data-toggle="counter-up">18</span>
<p>Team Members</p>
</div>
</div>
</div> -->
</section>
<!--==========================
Call To Action Section
============================-->
<section id="call-to-action" class="wow fadeInUp">
<div class="container">
<div class="row">
<div class="col-lg-9 text-center text-lg-left">
<h3 class="cta-title">Get Started with ByteSynergyLabs</h3>
<p class="cta-text">Ready to transform your business with cutting-edge software solutions? Contact us today
to learn how ByteSynergyLabs can help you achieve your goals and stay ahead of the competition.</p>
</div>
<div class="col-lg-3 cta-btn-container text-center">
<a class="cta-btn align-middle" href="#">Contact Us</a>
</div>
</div>
</div>
</section>
<!-- #call-to-action -->
<!--==========================
Features Section
============================-->
<section id="features">
<div class="container">
<div class="row feature-item">
<div class="col-lg-6 wow fadeInUp">
<img src="img/features-1.svg" class="img-fluid" alt="Innovative Solutions">
</div>
<div class="col-lg-6 wow fadeInUp pt-5 pt-lg-0">
<h4>Innovative Solutions Tailored to Your Needs</h4>
<p>
At ByteSynergyLabs, we specialize in developing innovative solutions that are tailored to meet your
specific business needs. Our team uses the latest technologies to create software that drives efficiency
and growth.
</p>
<p>
Whether you're looking to streamline your operations or enhance your digital presence, our solutions are
designed to provide maximum impact and value. We work closely with you to ensure that our products align
perfectly with your goals.
</p>
</div>
</div>
<div class="row feature-item mt-5 pt-5">
<div class="col-lg-6 wow fadeInUp order-1 order-lg-2">
<img src="img/features-2.svg" class="img-fluid" alt="Cutting-Edge Technology">
</div>
<div class="col-lg-6 wow fadeInUp pt-4 pt-lg-0 order-2 order-lg-1">
<h4>Cutting-Edge Technology for Business Excellence</h4>
<p>
Our team is dedicated to staying ahead of the curve with cutting-edge technology. We provide solutions
that not only meet current industry standards but also set new benchmarks for excellence.
</p>
<p>
From advanced data analytics to AI-driven applications, our services encompass a wide range of
technologies designed to give you a competitive edge. Our commitment to innovation ensures that your
business is always equipped with the best tools available.
</p>
<p>
Partner with ByteSynergyLabs to leverage technology that transforms your business processes and delivers
exceptional results. We are here to support you at every step, from ideation to implementation and beyond.
</p>
</div>
</div>
</div>
</section>
<!-- #about -->
<!--==========================
Portfolio Section
============================-->
<section id="portfolio" class="section-bg">
<div class="container">
<header class="section-header">
<h3 class="section-title">Our Portfolio</h3>
</header>
<div class="row">
<div class="col-lg-12">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">App</li>
<li data-filter=".filter-card">Card</li>
<li data-filter=".filter-web">Web</li>
</ul>
</div>
</div>
<div class="row portfolio-container">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="img/portfolio/app1.jpg" class="img-fluid" alt="App 1">
<div class="portfolio-info">
<h4><a href="#">Mobile Banking App</a></h4>
<p>App</p>
<div>
<a href="img/portfolio/app1.jpg" data-lightbox="portfolio" data-title="Mobile Banking App"
class="link-preview" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web" data-wow-delay="0.1s">
<div class="portfolio-wrap">
<img src="img/portfolio/web3.jpg" class="img-fluid" alt="E-commerce Website">
<div class="portfolio-info">
<h4><a href="#">E-commerce Platform</a></h4>
<p>Web</p>
<div>
<a href="img/portfolio/web3.jpg" class="link-preview" data-lightbox="portfolio"
data-title="E-commerce Platform" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app" data-wow-delay="0.2s">
<div class="portfolio-wrap">
<img src="img/portfolio/app2.jpg" class="img-fluid" alt="Healthcare App">
<div class="portfolio-info">
<h4><a href="#">Healthcare Management App</a></h4>
<p>App</p>
<div>
<a href="img/portfolio/app2.jpg" class="link-preview" data-lightbox="portfolio"
data-title="Healthcare Management App" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="img/portfolio/card2.jpg" class="img-fluid" alt="Business Card Design">
<div class="portfolio-info">
<h4><a href="#">Corporate Business Card</a></h4>
<p>Card</p>
<div>
<a href="img/portfolio/card2.jpg" class="link-preview" data-lightbox="portfolio"
data-title="Corporate Business Card" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web" data-wow-delay="0.1s">
<div class="portfolio-wrap">
<img src="img/portfolio/web2.jpg" class="img-fluid" alt="Portfolio Website">
<div class="portfolio-info">
<h4><a href="#">Personal Portfolio Website</a></h4>
<p>Web</p>
<div>
<a href="img/portfolio/web2.jpg" class="link-preview" data-lightbox="portfolio"
data-title="Personal Portfolio Website" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app" data-wow-delay="0.2s">
<div class="portfolio-wrap">
<img src="img/portfolio/app3.jpg" class="img-fluid" alt="Fitness App">
<div class="portfolio-info">
<h4><a href="#">Fitness Tracking App</a></h4>
<p>App</p>
<div>
<a href="img/portfolio/app3.jpg" class="link-preview" data-lightbox="portfolio"
data-title="Fitness Tracking App" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="img/portfolio/card1.jpg" class="img-fluid" alt="Event Invitation Card">
<div class="portfolio-info">
<h4><a href="#">Event Invitation Card</a></h4>
<p>Card</p>
<div>
<a href="img/portfolio/card1.jpg" class="link-preview" data-lightbox="portfolio"
data-title="Event Invitation Card" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card" data-wow-delay="0.1s">
<div class="portfolio-wrap">
<img src="img/portfolio/card3.jpg" class="img-fluid" alt="Holiday Greeting Card">
<div class="portfolio-info">
<h4><a href="#">Holiday Greeting Card</a></h4>
<p>Card</p>
<div>
<a href="img/portfolio/card3.jpg" class="link-preview" data-lightbox="portfolio"
data-title="Holiday Greeting Card" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web" data-wow-delay="0.2s">
<div class="portfolio-wrap">
<img src="img/portfolio/web1.jpg" class="img-fluid" alt="Corporate Website">
<div class="portfolio-info">
<h4><a href="#">Corporate Website</a></h4>
<p>Web</p>
<div>
<a href="img/portfolio/web1.jpg" class="link-preview" data-lightbox="portfolio"
data-title="Corporate Website" title="Preview"><i class="ion ion-eye"></i></a>
<a href="#" class="link-details" title="More Details"><i class="ion ion-android-open"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- #portfolio -->
<!--==========================
Clients Section
============================-->
<section id="testimonials">
<div class="container">
<header class="section-header">
<h3>Testimonials</h3>
</header>
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="owl-carousel testimonials-carousel wow fadeInUp">
<div class="testimonial-item">
<img src="img/testimonial-1.jpg" class="testimonial-img" alt="Saul Goodman">
<h3>Saul Goodman</h3>
<h4>CEO & Founder, GlobalTech Solutions</h4>
<p>
"Partnering with ByteSynergyLabs revolutionized our software development process. Their expertise in
cutting-edge technology enabled us to reduce project timelines by 30%, delivering higher-quality
products to our clients faster. A truly invaluable partnership."
</p>
</div>
<div class="testimonial-item">
<img src="img/testimonial-2.jpg" class="testimonial-img" alt="Sara Wilsson">
<h3>Sara Wilsson</h3>
<h4>Creative Director, InnoDesign Studios</h4>
<p>
"ByteSynergyLabs brought our creative vision to life with a seamless blend of innovation and technical
brilliance. Their ability to translate complex designs into functional solutions allowed us to launch
a new product line ahead of schedule and exceed client expectations."
</p>
</div>
<div class="testimonial-item">
<img src="img/testimonial-3.jpg" class="testimonial-img" alt="Jena Karlis">
<h3>Jena Karlis</h3>
<h4>Owner, BrightMarket</h4>
<p>
"With ByteSynergyLabs, we increased our online sales by 50% within three months. Their strategic
eCommerce solutions, combined with deep insights into user behavior, gave us the edge we needed in a
highly competitive market. Their team went above and beyond to deliver results."
</p>
</div>
<div class="testimonial-item">
<img src="img/testimonial-4.jpg" class="testimonial-img" alt="Matt Brandon">
<h3>Matt Brandon</h3>
<h4>Freelancer, Digital Consultant</h4>
<p>
"The ByteSynergyLabs team provided me with more than just technical support—they helped me scale my
freelance business through customized digital tools that streamlined client onboarding and project
management. Their solutions saved me hours of work each week, boosting my productivity."
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- #testimonials -->
<!--==========================
Team Section
============================-->
<section id="team" class="section-bg">
<div class="container">
<div class="section-header">
<h3>Our Team</h3>
<p>Meet the talented individuals behind ByteSynergyLabs</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 wow fadeInUp">
<div class="member">
<img src="img/team-1.jpg" class="img-fluid" alt="Walter White">
<div class="member-info">
<div class="member-info-content">
<h4>Dulaj Thiwanka</h4>
<!-- <span>Chief Executive Officer</span> -->
<div class="social">
<a href="https://twitter.com/walter_white"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/walter_white"><i class="fa fa-facebook"></i></a>
<a href="mailto:walter@example.com"><i class="fa fa-envelope"></i></a>
<a href="https://www.linkedin.com/in/walterwhite"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="member">
<img src="img/team-2.jpg" class="img-fluid" alt="Sarah Jhonson">
<div class="member-info">
<div class="member-info-content">
<h4>Kavisha Silva</h4>
<!-- <span>Product Manager</span> -->
<div class="social">
<a href="https://twitter.com/sarah_johnson"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/sarah.johnson"><i class="fa fa-facebook"></i></a>
<a href="mailto:sarah@example.com"><i class="fa fa-envelope"></i></a>
<a href="https://www.linkedin.com/in/sarahjohnson"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.2s">
<div class="member">
<img src="img/team-3.jpg" class="img-fluid" alt="William Anderson">
<div class="member-info">
<div class="member-info-content">
<h4>Thisitha Manaram</h4>
<!-- <span>Chief Technology Officer</span> -->
<div class="social">
<a href="https://twitter.com/william_anderson"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/william.anderson"><i class="fa fa-facebook"></i></a>
<a href="mailto:william@example.com"><i class="fa fa-envelope"></i></a>
<a href="https://www.linkedin.com/in/williamanderson"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="member">
<img src="img/team-4.jpg" class="img-fluid" alt="Amanda Jepson">
<div class="member-info">
<div class="member-info-content">
<h4>Denura Mudalige</h4>
<!-- <span>Accountant</span> -->
<div class="social">
<a href="https://twitter.com/amanda_jepson"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/amanda.jepson"><i class="fa fa-facebook"></i></a>
<a href="mailto:amanda@example.com"><i class="fa fa-envelope"></i></a>
<a href="https://www.linkedin.com/in/amandajepson"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- #team -->
<!--==========================
Clients Section
============================-->
<!-- <section id="clients" class="wow fadeInUp">
<div class="container">
<header class="section-header">
<h3>Our Clients</h3>
</header>
<div class="owl-carousel clients-carousel">
<img src="img/clients/client-1.png" alt="client-img">
<img src="img/clients/client-2.png" alt="client-img">
<img src="img/clients/client-3.png" alt="client-img">
<img src="img/clients/client-4.png" alt="client-img">
<img src="img/clients/client-5.png" alt="client-img">
<img src="img/clients/client-6.png" alt="client-img">
<img src="img/clients/client-7.png" alt="client-img">
<img src="img/clients/client-8.png" alt="client-img">
</div>
</div>
</section>#clients -->
<!--==========================
Pricing Section
============================-->
<!--
<section id="pricing" class="wow fadeInUp section-bg">
<div class="container">
<header class="section-header">
<h3>Our Pricing Plans</h3>
<p>Choose the plan that best fits your needs</p>
</header>
<div class="row flex-items-xs-middle flex-items-xs-center">
#Basic Plan
<div class="col-xs-12 col-lg-4">
<div class="card">
<div class="card-header">
<h3><span class="currency">$</span>19<span class="period">/month</span></h3>
</div>
<div class="card-block">
<h4 class="card-title">
Basic Plan
</h4>
<ul class="list-group">
<li class="list-group-item">Access to basic features</li>
<li class="list-group-item">Limited support</li>
<li class="list-group-item">Single user access</li>
<li class="list-group-item">Basic data storage</li>
</ul>
<a href="#" class="btn">Choose Plan</a>
</div>
</div>
</div>
#Regular Plan
<div class="col-xs-12 col-lg-4">
<div class="card">
<div class="card-header">
<h3><span class="currency">$</span>29<span class="period">/month</span></h3>
</div>
<div class="card-block">
<h4 class="card-title">
Regular Plan
</h4>
<ul class="list-group">
<li class="list-group-item">Access to standard features</li>
<li class="list-group-item">Priority support</li>
<li class="list-group-item">Multi-user access</li>
<li class="list-group-item">Medium data storage</li>
</ul>
<a href="#" class="btn">Choose Plan</a>
</div>
</div>
</div>
#Premium Plan
<div class="col-xs-12 col-lg-4">
<div class="card">
<div class="card-header">
<h3><span class="currency">$</span>39<span class="period">/month</span></h3>
</div>
<div class="card-block">
<h4 class="card-title">
Premium Plan
</h4>
<ul class="list-group">
<li class="list-group-item">Access to premium features</li>
<li class="list-group-item">Dedicated support</li>
<li class="list-group-item">Unlimited user access</li>
<li class="list-group-item">Large data storage</li>
</ul>
<a href="#" class="btn">Choose Plan</a>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<!-- #pricing -->
<!--==========================
Frequently Asked Questions Section
============================-->
<section id="faq">
<div class="container">
<header class="section-header">
<h3>Frequently Asked Questions</h3>
<p>Here are some common questions about our services.</p>
</header>
<ul id="faq-list" class="wow fadeInUp">
<li>
<a data-toggle="collapse" class="collapsed" href="#faq1">What services do you offer? <i
class="ion-android-remove"></i></a>
<div id="faq1" class="collapse" data-parent="#faq-list">
<p>
We offer a range of services including web design, mobile app development, digital marketing, and
consulting.
</p>
</div>
</li>
<!-- New Question and Answer -->
<li>
<a data-toggle="collapse" href="#faq2" class="collapsed">How can I request a quote? <i
class="ion-android-remove"></i></a>
<div id="faq2" class="collapse" data-parent="#faq-list">
<p>
You can request a quote by filling out the contact form on our website or by contacting our sales team
directly.
</p>
</div>
</li>
<!-- New Question and Answer -->
<li>
<a data-toggle="collapse" href="#faq3" class="collapsed">What are your payment methods? <i
class="ion-android-remove"></i></a>
<div id="faq3" class="collapse" data-parent="#faq-list">
<p>
We accept payments via credit card, PayPal, and bank transfer. You can choose the method that is most
convenient for you.
</p>
</div>
</li>
<!-- New Question and Answer -->
<li>
<a data-toggle="collapse" href="#faq4" class="collapsed">Do you provide ongoing support? <i
class="ion-android-remove"></i></a>
<div id="faq4" class="collapse" data-parent="#faq-list">
<p>
Yes, we offer ongoing support for all our services. Our support team is available to assist you with any
issues or questions you may have.
</p>
</div>
</li>
<!-- New Question and Answer -->
<li>
<a data-toggle="collapse" href="#faq5" class="collapsed">Can I see examples of your work? <i
class="ion-android-remove"></i></a>
<div id="faq5" class="collapse" data-parent="#faq-list">
<p>
Yes, you can view examples of our work in our portfolio section on our website.
</p>
</div>
</li>
<!-- New Question and Answer -->
<li>
<a data-toggle="collapse" href="#faq6" class="collapsed">How long does it take to complete a project? <i
class="ion-android-remove"></i></a>
<div id="faq6" class="collapse" data-parent="#faq-list">
<p>
The time it takes to complete a project depends on the scope and complexity of the project. We will
provide you with a timeline before starting work.
</p>
</div>
</li>
</ul>
</div>
</section>
<!-- #faq -->
</main>
<!--==========================
Footer
============================-->
<footer id="footer" class="section-bg">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="row">
<div class="col-sm-6">
<div class="footer-info">
<h3>About Us</h3>
<p>Discover how ByteSynergyLabs can help you accelerate your projects with innovative solutions and
dedicated support.</p>
</div>
<div class="footer-newsletter">
<h4>Subscribe to Our Newsletter</h4>
<p>Stay updated with the latest news, updates, and offers by subscribing to our newsletter.</p>
<form action="" method="post">
<input style="width: fit-content;" type="email" name="email" placeholder="Enter your email"
required>
<input style="margin-top: 10px;border-radius: 5px;" type="submit" value="Subscribe">
</form>
</div>
</div>
<div class="col-sm-6">
<div class="footer-links">
<h4>Explore</h4>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
<div class="footer-contact">
<h4>Contact Us</h4>
<p>
A108 Adam Street <br>
New York, NY 535022<br>
United States <br>
<strong>Phone:</strong> +1 5589 55488 55<br>
<strong>Email:</strong> ByteSynergyLabs@proton.me<br>
</p>
</div>
<div class="social-links">
<a href="#" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="facebook"><i class="fa fa-facebook"></i></a>