-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1202 lines (1114 loc) · 50.7 KB
/
Copy pathindex.html
File metadata and controls
1202 lines (1114 loc) · 50.7 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<title>Alphabyte LLC</title>
<!-- Fav Icon -->
<link rel="icon" href="assets/images/favicon.ico" type="image/x-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<!-- Stylesheets -->
<link href="assets/css/font-awesome-all.css" rel="stylesheet">
<link href="assets/css/flaticon.css" rel="stylesheet">
<link href="assets/css/owl.css" rel="stylesheet">
<link href="assets/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/jquery.fancybox.min.css" rel="stylesheet">
<link href="assets/css/animate.css" rel="stylesheet">
<link href="assets/css/nice-select.css" rel="stylesheet">
<link href="assets/css/color.css" rel="stylesheet">
<link href="assets/css/elpath.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/elements-css/banner.css" rel="stylesheet">
<link href="assets/css/elements-css/feature.css" rel="stylesheet">
<link href="assets/css/elements-css/about.css" rel="stylesheet">
<link href="assets/css/elements-css/service.css" rel="stylesheet">
<link href="assets/css/elements-css/chooseus.css" rel="stylesheet">
<link href="assets/css/elements-css/projects.css" rel="stylesheet">
<link href="assets/css/elements-css/testimonial.css" rel="stylesheet">
<link href="assets/css/elements-css/working-process.css" rel="stylesheet">
<link href="assets/css/elements-css/funfact.css" rel="stylesheet">
<link href="assets/css/elements-css/expertise.css" rel="stylesheet">
<link href="assets/css/elements-css/news.css" rel="stylesheet">
<link href="assets/css/responsive.css" rel="stylesheet">
<style>
.col-lg-1-7, .col-md-1-7, .col-sm-1-7 {
flex: 0 0 14.285%; /* 100% / 7 = 14.285% */
max-width: 14.285%;
}
</style>
</head>
<!-- page wrapper -->
<body>
<div class="boxed_wrapper">
<!-- preloader -->
<div class="loader-wrap">
<div class="preloader">
<div class="preloader-close">x</div>
<div id="handle-preloader" class="handle-preloader">
<div class="animation-preloader">
<div class="spinner"></div>
<div class="txt-loading">
<span data-text-preloader="a" class="letters-loading">
A
</span>
<span data-text-preloader="l" class="letters-loading">
l
</span>
<span data-text-preloader="p" class="letters-loading">
p
</span>
<span data-text-preloader="h" class="letters-loading">
h
</span>
<span data-text-preloader="a" class="letters-loading">
a
</span>
<span data-text-preloader="b" class="letters-loading">
b
</span>
<span data-text-preloader="y" class="letters-loading">
y
</span>
<span data-text-preloader="t" class="letters-loading">
t
</span>
<span data-text-preloader="e" class="letters-loading">
e
</span>
</div>
</div>
</div>
</div>
</div>
<!-- preloader end -->
<!-- main header -->
<header class="main-header">
<!-- header-top -->
<!-- <div class="header-top">
<div class="auto-container">
<div class="top-inner">
<div class="top-left">
<ul class="info clearfix">
<li><i class="icon-1"></i>Mon-Fri 8:00 am-6:00 pm</li>
<li>
<i class="icon-2"></i><a href="tel:+971 50 558 8524">+971 50 558 8524</a>
</li>
<li>
<i class="icon-2"></i><a href="tel:+971 50 552 2412">+971 50 552 2412</a>
</li>
<li>
<i class="icon-3"></i><a href="mailto:contact@alphabyte.ae">contact@alphabyte.ae</a>
</li>
</ul>
</div>
<div class="top-right">
<div class="login" style="padding: 8px">
<a href="index.html"><span style="display: none"></span></a>
</div>
<ul class="social-links clearfix">
<li><a href="https://www.linkedin.com/company/alphabyte-technology-llc/"><span
class="fab fa-linkedin-in"></span></a></li>
</ul>
</div>
</div>
</div>
</div> -->
<!-- header-lower -->
<div class="header-lower">
<div class="auto-container">
<div class="outer-box">
<div class="logo-box">
<figure class="logo">
<a href="index.html"><img src="assets/images/logo.png" alt="" /></a>
</figure>
</div>
<div class="menu-area clearfix">
<!--Mobile Navigation Toggler-->
<div class="mobile-nav-toggler">
<i class="icon-bar"></i>
<i class="icon-bar"></i>
<i class="icon-bar"></i>
</div>
<nav class="main-menu navbar-expand-md navbar-light">
<div class="collapse navbar-collapse show clearfix" id="navbarSupportedContent">
<ul class="navigation clearfix">
<li class="current"><a href="index.html">Home</a></li>
<!-- <li><a href="about.html">About Us</a></li> -->
<li class="dropdown">
<a href="services.html">Services</a>
<div class="megamenu">
<div class="row clearfix">
<div class="col-lg-4 column">
<ul>
<li>
<a href="IT-consulting.html">IT Consulting and Strategy</a>
</li>
<li>
<a href="Digital-Marketing.html">Digital Marketing</a>
</li>
<li>
<a href="Infrastructure-Services.html">Infrastructure Services</a>
</li>
<li>
<a href="Cybersecurity-Services.html">Cybersecurity Services</a>
</li>
<li>
<a href="Software-Development.html">Software Development</a>
</li>
</ul>
</div>
<div class="col-lg-4 column">
<ul>
<li>
<a href="Disaster-Recovery.html">Disaster Recovery and Business
Continuity</a>
</li>
<li>
<a href="Mobile-App-Developement.html">Mobile App Development</a>
</li>
<li>
<a href="CMS.html">CMS(Content Management Systems)</a>
</li>
<li>
<a href="Ecommerce-Website-Development.html">Ecommerce Website Development</a>
</li>
</ul>
</div>
<div class="col-lg-4 column">
<ul>
<li>
<a href="Cloud-Computing-Services.html">Cloud Computing Services</a>
</li>
<li>
<a href="Training-and-Development.html">Training and Development</a>
</li>
<li>
<a href="Iot.html">IoT (Internet of Things) Solutions</a>
</li>
<li>
<a href="AI-and-ML.html">AI and Machine Learning Solutions</a>
</li>
</ul>
</div>
</div>
</div>
</li>
<li><a href="career.html">Career</a></li>
<li><a href="clients.html">Our Clients</a></li>
<!--<li><a href="management.html">Management</a></li>-->
<!-- <li><a href="contact.html">Contact Us</a></li> -->
</ul>
</div>
</nav>
</div>
<!-- <ul class="menu-right-content">
<li class="btn-box">
<a href="contact.html">Free Consulting</a>
</li>
</ul> -->
</div>
</div>
</div>
<!--sticky Header-->
<div class="sticky-header">
<div class="auto-container">
<div class="outer-box">
<div class="logo-box">
<figure class="logo">
<a href="index.html"><img src="assets/images/logo.png" alt="" /></a>
</figure>
</div>
<div class="menu-area clearfix">
<nav class="main-menu clearfix">
<!--Keep This Empty / Menu will come through Javascript-->
</nav>
</div>
<!-- <ul class="menu-right-content">
<li class="btn-box">
<a href="contact.html">Free Consulting</a>
</li>
</ul> -->
</div>
</div>
</div>
</header>
<!-- main-header end -->
<!-- Mobile Menu -->
<div class="mobile-menu">
<div class="menu-backdrop"></div>
<div class="close-btn"><i class="fas fa-times"></i></div>
<nav class="menu-box">
<div class="nav-logo "><a href="index.html"><img src="assets/images/logopng.png" alt="" title=""></a>
</div>
<div class="menu-outer"><!--Here Menu Will Come Automatically Via Javascript / Same Menu as in Header-->
</div>
<div class="contact-info">
<h4>Contact Info</h4>
<ul>
<li>Dubai</li>
<!-- <li><a href="tel:+971 50 558 8524">+971 50 558 8524</a></li>
<li><a href="mailto:contact@alphabyte.ae">contact@alphabyte.ae</a></li> -->
<li><a href="tel:+971 50 463 7478">+971 50 463 7478</a></li>
<li><a href="mailto:cfo@alphabyte.ae">cfo@alphabyte.ae</a></li>
</ul>
</div>
<div class="social-links">
<ul class="clearfix">
<li><a href="https://www.linkedin.com/company/alphabyte-technology-llc/"><span
class="fab fa-linkedin-in"></span></a></li>
</ul>
</div>
</nav>
</div><!-- End Mobile Menu -->
<!-- banner-section -->
<section class="banner-section p_relative">
<div class="banner-carousel owl-theme owl-carousel owl-dots-none">
<div class="slide-item p_relative">
<div class="image-layer p_absolute" style="background-image:url(assets/images/banner/b1.png)">
</div>
<div class="starshine">
<div class="shine shine-1"></div>
<div class="shine shine-2"></div>
</div>
<div class="auto-container">
<div class="content-box">
<div class="content-inner">
<span>Elevate Your Business with</span>
<h2>Alphabyte Technology LLC </h2>
<p>At Alphabyte, we provide cutting-edge IT solutions to drive innovation and growth. Our expert team is
dedicated to helping you achieve your business goals through software development, IT consulting, and
more</p>
<a href="services.html" class="theme-btn-one">Explore Our Services</a>
<br>
<br>
<br>
<br>
</div>
</div>
</div>
</div>
<div class="slide-item p_relative">
<div class="image-layer p_absolute" style="background-image:url(assets/images/banner/b2.png)">
</div>
<div class="starshine">
<div class="shine shine-1"></div>
<div class="shine shine-2"></div>
</div>
<div class="auto-container">
<div class="content-box">
<div class="content-inner">
<span>Empower Your Future</span>
<h2>Transform and Elevate Your Business</h2>
<p>At Alphabyte, we provide cutting-edge IT solutions to drive innovation and growth.
Our expert team is dedicated to helping you achieve your business goals through
software development, IT consulting, and more.</p>
<a href="index.html" class="theme-btn-one">Learn More</a>
</div>
</div>
</div>
</div>
<div class="slide-item p_relative">
<div class="image-layer p_absolute" style="background-image:url(assets/images/banner/b3.png)">
</div>
<div class="starshine">
<div class="shine shine-1"></div>
<div class="shine shine-2"></div>
</div>
<div class="auto-container">
<div class="content-box">
<div class="content-inner">
<span>Transform Your Business</span>
<h2>Innovate and Succeed with Alphabyte</h2>
<p>Partner with us to leverage cutting-edge IT solutions and drive your business
forward. From software development to IT consulting, we offer expertise to fuel your
growth.</p>
<a href="index.html" class="theme-btn-one">Get Started</a>
</div>
<br>
</div>
</div>
</div>
</div>
</section>
<!-- banner-section end -->
<!-- feature-section -->
<section class="feature-section bg-color-1 sec-pad centred">
<div class="pattern-layer">
<div class="pattern-1" style="background-image: url(assets/images/shape/shape-2.png);"></div>
<div class="pattern-2" style="background-image: url(assets/images/shape/shape-3.png);"></div>
</div>
<div class="auto-container">
<div class="sec-title centred mb_60">
<span class="sub-title">About Alphabyte</span>
<h2>Dedicated And Professional <br />IT Services</h2>
</div>
<div class="row clearfix">
<div class="col-lg-6 col-md-12 col-sm-12 image-column">
<div class="image_block_two">
<div class="image-box mr_30">
<figure class="image"><img src="assets/images/resource/Img 3-01.png" alt=""></figure>
<!-- <div class="image-content">
<h2>20</h2>
<h3>Years of Great Experince</h3>
</div> -->
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 image-column">
<div class="content_block_five">
<div class="content-box ml_30">
<div class="text mb_30" style="text-align: justify;">
<p>Based in UAE and proudly Emirati-owned,
AlphaByte Technology is aligned with the
UAE’s vision of becoming a global leader in
innovation and digital transformation. Our
commitment to excellence is rooted in the
values of the Emirates, driving forward the
national agenda of building a knowledgebased
economy.
With our team of seasoned industry experts and
a deep understanding of various sectors, we
are dedicated to delivering the highest quality
IT infrastructure and digital transformation
services. Leveraging the latest advancements
in AI and machine learning, we help businesses
automate processes, gain valuable insights
from data, and drive innovation. Our solutions
are designed to increase profitability not only
within our company but also for our clients,
by optimizing operations, reducing costs, and
unlocking new revenue streams in the rapidly
evolving digital landscape.</p>
</div>
<div class="inner-box mb_30">
<div class="single-item">
<div class="icon-box"><i class="icon-11"></i></div>
<h3>OUR VISION</h3>
<p style="text-align: justify;">To be a MENA leader in IT and
digital transformation, empowering
businesses to reach new heights
through technology.</p>
</div>
<div class="single-item">
<div class="icon-box"><i class="icon-11"></i></div>
<h3 >OUR VISION</h3>
<p style="text-align: justify;">We are committed to providing
innovative IT solutions that drive
growth, increase productivity, and
ensure long-term success for our
clients.
</p>
</div>
<!-- <div class="single-item">
<div class="icon-box"><i class="icon-11"></i></div>
<h3>Cutting-Edge Technology
</h3>
<p>Utilizing the latest tech advancements to keep your business competitive and
high-performing.</p>
</div> -->
</div>
<!-- <figure class="signature"><img src="assets/images/icons/signature-1.png" alt="">
</figure> -->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- feature-section -->
<!-- service-section -->
<section class="service-section p_relative centred bg-color-1 sec-pad">
<div class="pattern-layer" style="background-image: url(assets/images/shape/shape-12.png);"></div>
<div class="auto-container">
<div class="sec-title mb_70">
<span class="sub-title">our services</span>
<h2>We offer a full suite of technology services to support businesses
at every stage of their digital journey:</h2>
</div>
<div class="row clearfix">
<div class="col-lg-4 col-md-6 col-sm-12 service-block">
<div class="service-block-one wow fadeInLeft animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="inner-box">
<div class="static-content">
<div class="shape" style="background-image: url(assets/images/shape/shape-4.png);">
</div>
<style>
.icon-box svg {
position: relative;
top: -7px;
/* Adjust the value as needed to move it up */
}
</style>
<div class="icon-box">
<i>
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="lucide lucide-target">
<circle cx="12" cy="12" r="10" />
<circle cx="12" cy="12" r="6" />
<circle cx="12" cy="12" r="2" />
</svg>
</i>
</div>
<h3><a href="IT-consulting.html">IT Consulting and Strategy</a></h3>
<p>Aligning technology with your business
goals for future-proof growth.</p>
</div>
<div class="overlay-content">
<div class="shape" style="background-image: url(assets/images/shape/shape-5.png);">
</div>
<h3><a href="IT-consulting.html">IT Consulting and Strategy</a></h3>
<p>Aligning technology with your business
goals for future-proof growth.</p>
<div class="btn-box">
<a href="IT-consulting.html" class="theme-btn-one">Read More</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 service-block">
<div class="service-block-one wow fadeInUp animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="inner-box">
<div class="static-content">
<div class="icon-box"><svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="lucide lucide-server">
<rect x="2" y="2" width="20" height="8" rx="2" ry="2" />
<rect x="2" y="14" width="20" height="8" rx="2" ry="2" />
<line x1="6" y1="6" x2="6.01" y2="6" />
<line x1="6" y1="18" x2="6.01" y2="18" />
</svg>
</div>
<h3><a href="Infrastructure-Services.html">Infrastructure Services</a></h3>
<p>Building robust, scalable IT environments
for optimized performance.
</p>
</div>
<div class="overlay-content">
<h3><a href="Infrastructure-Services.html">Infrastructure Services</a></h3>
<p>Building robust, scalable IT environments
for optimized performance.
</p>
<div class="btn-box">
<a href="Infrastructure-Services.html" class="theme-btn-one">Read More</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 service-block">
<div class="service-block-one wow fadeInRight animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="inner-box">
<div class="static-content">
<div class="shape" style="background-image: url(assets/images/shape/shape-6.png);">
</div>
<div class="icon-box"><svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="lucide lucide-shield">
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" />
</svg>
</div>
<h3><a href="Cybersecurity-Services.html">Cybersecurity Solutions
</a></h3>
<p>Securing your data and digital
assets with end-to-end security
strategies.
</p>
</div>
<div class="overlay-content">
<div class="shape" style="background-image: url(assets/images/shape/shape-7.png);">
</div>
<h3><a href="Cybersecurity-Services.html">Cybersecurity Solutions
</a></h3>
<p>Securing your data and digital
assets with end-to-end security
strategies.
</p>
<div class="btn-box">
<a href="Cybersecurity-Services.html" class="theme-btn-one">Read More</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 service-block">
<div class="service-block-one wow fadeInLeft animated" data-wow-delay="300ms" data-wow-duration="1500ms">
<div class="inner-box">
<div class="static-content">
<div class="shape" style="background-image: url(assets/images/shape/shape-8.png);">
</div>
<div class="icon-box"><svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="lucide lucide-code">
<polyline points="16 18 22 12 16 6" />
<polyline points="8 6 2 12 8 18" />
</svg>
</div>
<h3><a href="Software-Development.html">Software Development</a></h3>
<p>Custom software and applications
that solve your unique business
challenges.
</p>
</div>
<div class="overlay-content">
<div class="shape" style="background-image: url(assets/images/shape/shape-9.png);">
</div>
<h3><a href="Software-Development.html">Software Development</a></h3>
<p>Custom software and applications
that solve your unique business
challenges.
</p>
<div class="btn-box">
<a href="Software-Development.html" class="theme-btn-one">Read More</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 service-block">
<div class="service-block-one wow fadeInUp animated" data-wow-delay="300ms" data-wow-duration="1500ms">
<div class="inner-box">
<div class="static-content">
<div class="icon-box"><svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="lucide lucide-smartphone">
<rect x="5" y="2" width="14" height="20" rx="2" ry="2" />
<line x1="12" y1="18" x2="12" y2="18" />
</svg>
</i></div>
<h3><a href="Mobile-App-Developement.html">Mobile App Development
</a></h3>
<p>Creating intuitive apps that enhance
customer engagement and streamline
operations.</p>
</div>
<div class="overlay-content">
<h3><a href="Mobile-App-Developement.html">Mobile App Development
</a></h3>
<p>Creating intuitive apps that enhance
customer engagement and streamline
operations.</p>
<div class="btn-box">
<a href="Mobile-App-Developement.html" class="theme-btn-one">Read More</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 service-block">
<div class="service-block-one wow fadeInRight animated" data-wow-delay="300ms" data-wow-duration="1500ms">
<div class="inner-box">
<div class="static-content">
<div class="shape" style="background-image: url(assets/images/shape/shape-10.png);">
</div>
<div class="icon-box"><svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="lucide lucide-megaphone">
<path d="M3 11l18-5v12L3 14v7h1a2 2 0 002-2v-3" />
<path d="M12 15v9" />
</svg>
</div>
<h3><a href="Digital-Marketing.html">AI and Machine Learning
</a></h3>
<p>Leveraging data to automate
processes and provide actionable
insights.
</p>
</div>
<div class="overlay-content">
<div class="shape" style="background-image: url(assets/images/shape/shape-11.png);">
</div>
<h3><a href="Digital-Marketing.html">AI and Machine Learning
</a></h3>
<p>Leveraging data to automate
processes and provide actionable
insights.
</p>
<div class="btn-box">
<a href="Digital-Marketing.html" class="theme-btn-one">Read More</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="more-btn mt_60">
<a href="services.html" class="theme-btn-one">More Services</a>
</div>
</div>
</section>
<!-- service-section end -->
<!-- chooseus-section -->
<section class="chooseus-section p_relative bg-color-2">
<div class="pattern-layer" style="background-image: url(assets/images/shape/shape-13.png);"></div>
<div class="bg-layer" style="background-image: url(assets/images/resource/project-3.jpg);"></div>
<div class="auto-container">
<div class="row clearfix">
<div class="col-lg-5 col-md-12 col-sm-12 content-column">
<div class="content_block_two">
<div class="content-box p_relative">
<div class="sec-title light mb_45">
<span class="sub-title">Why Choose Alphabyte</span>
<h2>Reason For Choosing Our Services</h2>
<p>Alphabyte delivers tailored IT solutions with proven success, cutting-edge
technology, and dedicated support for impactful results.</p>
</div>
<div class="inner-box">
<div class="single-item">
<div class="icon-box"><i class="icon-11"></i></div>
<h3>Innovative Solutions</h3>
<p>We provide technology solutions tailored to
meet the specific needs of your business.
</p>
</div>
<div class="single-item">
<div class="icon-box"><i class="icon-11"></i></div>
<h3>Expert Team</h3>
<p>Our certified professionals bring extensive
experience in IT, cybersecurity, cloud
computing, and software development.
</p>
</div>
<div class="single-item">
<div class="icon-box"><i class="icon-11"></i></div>
<h3>Global Presence </h3>
<p>With our headquarters in Dubai and
partnership with reputed players, we combine
local expertise with global reach.</p>
</div>
<div class="single-item">
<div class="icon-box"><i class="icon-11"></i></div>
<h3>Client-Centric Approach </h3>
<p>Your success is our priority. We work closely
with our clients to deliver solutions that drive
real business value.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="outer-box">
<h2>Looking for the Best Solution For Your <br />Business?</h2>
<!-- <a href="contact.html" class="theme-btn-one">Let’s Connect</a> -->
</div>
</section>
<!-- chooseus-section end -->
<!-- working-process-section -->
<section class="working-process-section sec-pad centred">
<div class="auto-container">
<div class="sec-title mb_100">
<span class="sub-title">Working Process</span>
<h2>3 Easy Steps to Get<br /> IT Solutions</h2>
</div>
<div class="inner-container">
<div class="working-block-one">
<div class="inner-box">
<div class="shape" style="background-image: url(assets/images/shape/shape-17.png);"></div>
<div class="count-text">
<h3>01 <span>Step</span></h3>
</div>
<div class="text">
<div class="inner">
<h3>Describe Your Needs</h3>
<p>Share your IT requirements and challenges.
</p>
</div>
</div>
</div>
</div>
<div class="working-block-one">
<div class="inner-box">
<div class="shape" style="background-image: url(assets/images/shape/shape-17.png);"></div>
<div class="count-text">
<h3>02 <span>Step</span></h3>
</div>
<div class="text">
<div class="inner">
<h3>Consult <br /> with Our Experts</h3>
<p>Our consultants will analyze your information comprehensively. </p>
</div>
</div>
</div>
</div>
<div class="working-block-one">
<div class="inner-box">
<div class="count-text">
<h3>03 <span>Step</span></h3>
</div>
<div class="text">
<div class="inner">
<h3>Receive <br />Tailored Solutions</h3>
<p>Get personalized recommendations to effectively address your IT needs.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- working-process-section end -->
<!-- funfact-section -->
<section class="funfact-section centred">
<div class="auto-container">
<div class="inner-container">
<div class="shape">
<div class="shape-1" style="background-image: url(assets/images/shape/shape-18.png);"></div>
<div class="shape-2" style="background-image: url(assets/images/shape/shape-19.png);"></div>
</div>
<div class="row clearfix">
<div class="col-lg-3 col-md-6 col-sm-12 funfact-block">
<div class="funfact-block-one">
<div class="inner-box">
<div class="count-outer count-box">
<span class="count-text" data-speed="1500" data-stop="892">0</span><span>+</span>
</div>
<p>Satisfied Clients</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 funfact-block">
<div class="funfact-block-one">
<div class="inner-box">
<div class="count-outer count-box">
<span class="count-text" data-speed="1500" data-stop="72">0</span><span>+</span>
</div>
<p>Expert Members</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 funfact-block">
<div class="funfact-block-one">
<div class="inner-box">
<div class="count-outer count-box">
<span class="count-text" data-speed="1500" data-stop="67">0</span><span>+</span>
</div>
<p>Successful Projects</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 funfact-block">
<div class="funfact-block-one">
<div class="inner-box">
<div class="count-outer count-box">
<span class="count-text" data-speed="1500" data-stop="30">0</span><span>+</span>
</div>
<p>Award Winning</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- funfact-section end -->
<!-- expertise-section -->
<section class="expertise-section p_relative bg-color-1">
<div class="pattern-layer">
<div class="pattern-1" style="background-image: url(assets/images/shape/shape-2.png);"></div>
<div class="pattern-2" style="background-image: url(assets/images/shape/shape-3.png);"></div>
</div>
<div class="auto-container">
<div class="row clearfix">
<div class="col-lg-6 col-md-12 col-sm-12 content-column">
<div class="content_block_three">
<div class="content-box p_relative mr_30">
<div class="sec-title mb_30">
<span class="sub-title">Our Expertise</span>
<h2>Driving Remarkable Growth and Innovation!</h2>
<p>At Alphabyte, our expertise is at the heart of our incredible growth. Our
dedicated team excels in delivering cutting-edge IT solutions tailored to your
needs. Here’s a snapshot of our key areas:</p>
</div>
<div class="progress-inner">
<div class="progress-box mb_30">
<p>Development</p>
<div class="bar">
<div class="bar-inner count-bar" data-percent="85%">
<div class="count-text">85%</div>
</div>
</div>
</div>
<div class="progress-box mb_30">
<p>Digital Marketing</p>
<div class="bar">
<div class="bar-inner count-bar" data-percent="90%">
<div class="count-text">90%</div>
</div>
</div>
</div>
<div class="progress-box">
<p>Cyber security and IT</p>
<div class="bar">
<div class="bar-inner count-bar" data-percent="82%">
<div class="count-text">70%</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 content-column">
<div class="content_block_four">
<div class="content-box p_relative ml_30 mt_20 centred">
<h3>Request for Our Free <br />Consultation</h3>
<div class="form-inner">
<form class="default-form">
<div class="row clearfix">
<div class="col-lg-6 col-md-6 col-sm-12 form-group">
<input type="text" name="name" placeholder="Your name" required="">
</div>
<div class="col-lg-6 col-md-6 col-sm-12 form-group">
<input type="email" name="email" placeholder="Email address" required="">
</div>
<div class="col-lg-6 col-md-6 col-sm-12 form-group">
<input type="text" name="phone" placeholder="Phone number" required="">
</div>
<div class="col-lg-6 col-md-6 col-sm-12 form-group">
<div class="select-box">
<select class="selectmenu">
<option selected="selected">Software Development</option>
<option>IT Consulting</option>
<option>Digital Marketing</option>
<option>Cloud Solutions</option>
<option>Cybersecurity</option>
<option>Data Analytics</option>
<option>Network Management</option>
<option>Technical Support</option>
</select>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 form-group message-btn">
<button type="BUTTON" class="theme-btn-one">Send Request</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- expertise-section end -->
<!--industry solution-->
<section class="expertise-section p_relative bg-color-1" style="background-color:#241E2F" >
<div class="pattern-layer">
<div class="pattern-1" style="background-image: url(assets/images/shape/shape-29.png);"></div>
<div class="pattern-2" style="background-image: url(assets/images/shape/shape-26.png);"></div>
</div>
<div class="auto-container">
<div class="row clearfix">
<div class="sec-title mb_30 text-center " style="margin-top: -15%;">
<span class="sub-title"></span>
<h2 style="color: white;">industry solutions</h2>
<p style="color:white; padding-top: 2%;">We cater to a broad spectrum of industries, each with its
own specific challenges and needs.</p>
</div>
<div class="col-lg-5 col-md-10 col-sm-10 content-column " style=" margin-right: -10% !important;">
<div class="content_block_two">
<div class="content-box p_relative">
<div class="inner-box" >
<div class="single-item">
<div class="icon-box"><i class="icon-11"></i></div>
<h3>Education</h3>
<p>Advanced IT solutions to support
digital learning and institutional
efficiency.
</p>
</div>
<div class="single-item">
<div class="icon-box"><i class="icon-11"></i></div>
<h3>Healthcare </h3>
<p>Implementing secure, reliable
healthcare IT systems to improve
patient care & operational
management.</p>
</div>
<div class="single-item">
<div class="icon-box"><i class="icon-11"></i></div>
<h3>Finance</h3>
<p>Delivering secure, scalable solutions
for financial services, ensuring
compliance and data integrity.</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-5 col-md-10 col-sm-10 content-column" style=" margin-left: 25%; display: flex;">