-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1272 lines (1250 loc) · 62.8 KB
/
index.html
File metadata and controls
1272 lines (1250 loc) · 62.8 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=5.0, minimum-scale=1.0, user-scalable=yes" />
<title>Netwise - IT Solutions & Technology Figma Template</title>
<link rel="shortcut icon" type="image/x-icon" href="assets/images/fevicon.png" />
<!-- Place favicon.ico in the root directory -->
<!-- CSS here -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/fontawsome/css/fontawesome.css" />
<link rel="stylesheet" href="assets/css/odometer.css" />
<link rel="stylesheet" href="assets/css/slick.css" />
<link rel="stylesheet" href="assets/css/animate.min.css" />
<link rel="stylesheet" href="assets/css/magnific-popup.css" />
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<!-- Preloader start -->
<div id="preloader">
<div class="loading-container">
<div class="loading"></div>
<div id="loading-icon">
<img width="65" src="assets/images/logo/logo-sm.svg" alt="logo-sm">
</div>
</div>
</div>
<!-- Preloader end -->
<!-- Header section start -->
<header class="header-section" id="sticky-header">
<nav class="navbar navbar-expand-xl d-none d-xl-flex">
<div class="container navbar-main">
<a class="navbar-brand" href="index.html">
<img src="./assets/images/logo/logo.png" alt="logo" />
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mx-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home <i class="fa-solid fa-angle-down"></i></a>
<ul class="sub-menu list-unstyled">
<li><a href="./index.html">Home One</a></li>
<li><a href="./home-two.html">Home Two</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Services<i class="fa-solid fa-angle-down"></i></a>
<ul class="sub-menu list-unstyled">
<li><a href="./services.html">Service Single</a></li>
<li><a href="./service-details.html">Service Details</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Projects<i class="fa-solid fa-angle-down"></i></a>
<ul class="sub-menu list-unstyled">
<li><a href="./porjects.html">Projects Single</a></li>
<li><a href="./project-details.html">Projects Details</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Blog<i class="fa-solid fa-angle-down"></i></a>
<ul class="sub-menu list-unstyled">
<li><a href="./blog.html">Blog Single</a></li>
<li><a href="./blog-details.html">Blog Details</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.html">Contact</a>
</li>
</ul>
<a href="tel:(+1)652-3698" class="call-to-action d-flex align-items-center">
<div class="icon rounded-pill">
<i class="fa-solid fa-phone"></i>
</div>
<div class="info">
<p>Need Help?</p>
<h6>+123 652-3698</h6>
</div>
</a>
</div>
</div>
</nav>
<!-- mobile navbar part start -->
<div class="mobile-menu-area d-block d-xl-none">
<div class="container">
<!-- mobile topbar -->
<div class="mobile-topbar">
<div class="d-flex justify-content-between align-items-center">
<div class="logo">
<a href="index.html">
<img src="assets/images/logo/logo.png" alt="logo" /></a>
</div>
<div class="bars">
<i class="fas fa-bars"></i>
</div>
</div>
</div>
</div>
<!-- mobile menu -->
<div class="mobile-menu-overlay"></div>
<div class="mobile-menu-main">
<div class="logo">
<a href="./index.html">
<img src="assets/images/logo/logo.png" alt="logo" /></a>
</div>
<div class="close-mobile-menu"><i class="fas fa-times"></i></div>
<div class="menu-body">
<div class="menu-list">
<ul class="list-unstyled">
<li class="sub-mobile-menu">
<a href="#">Home <i class="fas fa-chevron-down float-end"></i></a>
<ul class="list-unstyled">
<li><a href="index.html">Home One</a></li>
<li><a href="home-two.html">Home Two</a></li>
</ul>
</li>
<li class="sub-mobile-menu">
<a href="about.html">About Us</a>
</li>
<li class="sub-mobile-menu">
<a href="#">Services <i class="fas fa-chevron-down float-end"></i></a>
<ul class="list-unstyled">
<li>
<a href="services.html">Service Single</a>
</li>
<li>
<a href="service-details.html">Service Details</a>
</li>
</ul>
</li>
<li class="sub-mobile-menu">
<a href="#">Projects <i class="fas fa-chevron-down float-end"></i></a>
<ul class="list-unstyled">
<li>
<a href="projects.html">Project Single</a>
</li>
<li>
<a href="project-details.html">Project Details</a>
</li>
</ul>
</li>
<li class="sub-mobile-menu">
<a href="#">Blog <i class="fas fa-chevron-down float-end"></i></a>
<ul class="list-unstyled">
<li>
<a href="blog.html">Blog Single</a>
</li>
<li>
<a href="blog-details.html">Blog Details</a>
</li>
</ul>
</li>
<li class="sub-mobile-menu">
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
<div class="call-us p-4">
<a href="tel:(+1)652-3698" class="call-to-action d-flex align-items-center">
<div class="icon d-flex justify-content-center align-items-center rounded-pill">
<i class="fa-solid fa-phone"></i>
</div>
<div class="info">
<p class="help">Need help?</p>
<h5 class="number">(+1) 652-3698</h5>
</div>
</a>
</div>
</div>
</div>
<!-- mobile navbar part end -->
</header>
<!-- Header section end -->
<!-- Main area Start -->
<main>
<!-- Banner Section Start -->
<section class="banner-section position-relative z-1 overflow-hidden">
<div class="banner-shape">
<img src="./assets/images/shapes/banner-shape-one.png" alt="banner-shape-one.png"
class="position-absolute translate-middle-y z-n1 top-50 start-0" />
</div>
<div class="container">
<div class="row g-4">
<div class="col-lg-5 align-self-center">
<div class="banner-content">
<h1 class="banner-title position-relative">
<span class="split-text right"> Technology That Powers the Future</span>
<img src="./assets/images/shapes/banner-title-shape.svg" alt="banner-title-shape.svg"
class="position-absolute title-shape" />
</h1>
<p class="banner-info">
lorem ipsum dolor sit amet consectetur. Facilisi cursus
vulputate vestibulum etiam rhoncus
</p>
<div class="banner-btn d-flex flex-wrap align-items-center">
<a href="#" class="theme-btn theme-btn-primary">Read More
<span class="btn-arrow">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_4443_62)">
<path
d="M13.4317 12.5381C13.4967 12.4215 13.535 12.2898 13.5367 12.1506L13.5733 7.95396C13.5758 7.60896 13.2992 7.32646 12.9483 7.32312C12.6058 7.32312 12.3258 7.59896 12.3233 7.94229L12.2975 10.8665L7.48917 6.05813C7.245 5.81396 6.84917 5.81396 6.605 6.05813C6.36083 6.30229 6.36083 6.69812 6.605 6.94229L11.4158 11.7531L8.59083 11.7831C8.245 11.7873 7.96833 12.0698 7.9725 12.4148C7.97583 12.7581 8.255 13.0331 8.60417 13.0331C8.60417 13.0331 12.6783 12.989 12.685 12.989C12.9967 12.9856 13.2842 12.8023 13.4325 12.539L13.4317 12.5381Z"
fill="currentColor" class="btn-arrow-fill"></path>
<path
d="M9.99984 19.2219C9.29484 19.2219 8.59818 19.2094 7.91151 19.1853C4.06734 19.0503 0.949844 15.9328 0.81401 12.0869C0.789844 11.3994 0.777344 10.7036 0.777344 9.99859C0.777344 9.29359 0.789844 8.59776 0.81401 7.91026C0.949844 4.06609 4.06734 0.948594 7.91151 0.813594C9.28651 0.76526 10.7148 0.76526 12.0882 0.813594C15.9323 0.948594 19.0498 4.06609 19.1857 7.91193C19.2098 8.59859 19.2223 9.29526 19.2223 10.0003C19.2223 10.7053 19.2098 11.4011 19.1857 12.0886C19.0498 15.9336 15.9323 19.0511 12.0882 19.1869C11.4015 19.2111 10.7048 19.2236 9.99984 19.2236V19.2219ZM9.99984 2.02609C9.31068 2.02609 8.62818 2.03859 7.95568 2.06276C4.76401 2.17443 2.17568 4.76276 2.06318 7.95443C2.03984 8.62776 2.02734 9.30859 2.02734 9.99859C2.02734 10.6886 2.03984 11.3703 2.06318 12.0428C2.17568 15.2344 4.76401 17.8236 7.95568 17.9344C9.30151 17.9836 10.699 17.9836 12.044 17.9344C15.2365 17.8228 17.8248 15.2344 17.9365 12.0428C17.9598 11.3694 17.9723 10.6886 17.9723 9.99859C17.9723 9.30859 17.9598 8.62693 17.9365 7.95443C17.824 4.76276 15.2357 2.17359 12.044 2.06276C11.3707 2.03859 10.689 2.02609 9.99984 2.02609Z"
fill="currentColor" class="btn-arrow-fill"></path>
</g>
</svg>
</span>
</a>
<a href="https://www.youtube.com/watch?v=aoO7FmObgyM"
class="popup-youtube play-btn d-flex align-items-center">
<span class="icon rounded-pill"><i class="fa-solid fa-play"></i></span>
Play Now</a>
</div>
</div>
</div>
<div class="col-lg-7 align-self-center">
<div class="banner-img">
<img src="./assets/images/banner/banner-img.png" class="img-fluid w-100" alt="banner-img.png" />
</div>
</div>
</div>
</div>
<span class="custom-shadow position-absolute rounded-pill"></span>
</section>
<!-- Banner section end -->
<!-- Feature section start -->
<section class="feature-section py-120 section-bg">
<div class="container">
<div class="row g-4">
<div class="col-lg-6">
<div class="feature-img position-relative">
<div class="img-main rounded-20 position-relative reveal left">
<img src="./assets/images/feature/feature-img-1.jpg" class="w-100 img-fluid rounded-20"
alt="feature-img-1" />
</div>
<div class="img-child rounded-20 position-absolute">
<img src="./assets/images/feature/feature-img-2.jpg" class="w-100 img-fluid rounded-20"
alt="feature-img-2" />
</div>
</div>
</div>
<div class="col-lg-6 mt-5 pt-sm-5 pt-md-0 mt-lg-0">
<div class="feature-content">
<div class="section-title">
<h5 class="sub-title text-uppercase">Our Features</h5>
<h3 class="title split-text right">
Connecting the dots of innovation
</h3>
</div>
<ul class="feature-list list-unstyled">
<li class="d-flex align-items-center">
<div class="box-icon rounded-20 flex-shrink-0 d-flex align-items-center justify-content-center">
<img src="./assets/images/icon/Feature-icon-1.svg" alt="Feature-icon-1" />
</div>
<div class="feature-info">
<h4 class="feature-title">Tech Vista Solutions</h4>
<p class="desc">
Our mission is there are many variations of passages
Lorem Ipsum available
</p>
</div>
</li>
<li class="d-flex align-items-center">
<div
class="box-icon primary rounded-20 flex-shrink-0 d-flex align-items-center justify-content-center">
<img src="./assets/images/icon/Feature-icon-2.svg" alt="Feature-icon-2" />
</div>
<div class="feature-info">
<h4 class="feature-title">Pro Guard IT Services</h4>
<p class="desc">
Our mission is there are many variations of passages
Lorem Ipsum available
</p>
</div>
</li>
<li class="d-flex align-items-center">
<div
class="box-icon secondary rounded-20 flex-shrink-0 d-flex align-items-center justify-content-center">
<img src="./assets/images/icon/Feature-icon-3.svg" alt="Feature-icon-3" />
</div>
<div class="feature-info">
<h4 class="feature-title">Cyber Shield Experts</h4>
<p class="desc">
Our mission is there are many variations of passages
Lorem Ipsum available
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Feature section end -->
<!-- Service section start -->
<section class="service-section py-120 bg-white" data-background="assets/images/service/service-bg.png">
<div class="container">
<div class="section-title">
<h5 class="sub-title text-uppercase">Our Services</h5>
<h3 class="title split-text right">
Smart Solutions for a Digital World
</h3>
</div>
<div class="row services-slider">
<div class="col-lg-4">
<div class="service-card">
<div class="box-icon rounded-20 flex-shrink-0 d-flex align-items-center justify-content-center">
<img src="./assets/images/icon/Service-icon-1.svg" alt="service-icon-1">
</div>
<h4 class="service-title">Quantum IT Solutions</h4>
<p class="service-details">As technology continues to evolve, the importance of IT in shaping future</p>
</div>
</div>
<div class="col-lg-4">
<div class="service-card">
<div class="box-icon primary rounded-20 flex-shrink-0 d-flex align-items-center justify-content-center">
<img src="./assets/images/icon/Service-icon-2.svg" alt="service-icon-2">
</div>
<h4 class="service-title">Smart Net IT Services</h4>
<p class="service-details">As technology continues to evolve, the importance of IT in shaping future</p>
</div>
</div>
<div class="col-lg-4">
<div class="service-card">
<div class="box-icon rounded-20 secondary flex-shrink-0 d-flex align-items-center justify-content-center">
<img src="./assets/images/icon/Service-icon-3.svg" alt="service-icon-3">
</div>
<h4 class="service-title">Secure Link Technologies </h4>
<p class="service-details">As technology continues to evolve, the importance of IT in shaping future</p>
</div>
</div>
<div class="col-lg-4">
<div class="service-card">
<div class="box-icon rounded-20 flex-shrink-0 d-flex align-items-center justify-content-center">
<img src="./assets/images/icon/Service-icon-1.svg" alt="service-icon-1">
</div>
<h4 class="service-title">Quantum IT Solutions</h4>
<p class="service-details">As technology continues to evolve, the importance of IT in shaping future</p>
</div>
</div>
</div>
</div>
</section>
<!-- Service section end -->
<!-- Counter section start -->
<section class="counter-section pt-120 section-bg">
<div class="container">
<div class="section-title">
<h3 class="title split-text right">
Connecting the Dots of Digital Innovation Worldwide!
</h3>
</div>
<div class="row g-4">
<div class="col-lg-6">
<div class="counter-area">
<p class="counter-desc">
The IT industry offers diverse career opportunities, from network administration to software
development. As technology continues to evolve, the importance of IT in shaping the future of businesses
</p>
<div class="row g-4 counter-part">
<div class="col-6">
<div class="counter-item">
<h2 class="counter-number"><span class="odometer" data-count="30"></span>+</h2>
<p class="counter-title">Winning Award</p>
</div>
</div>
<div class="col-6">
<div class="counter-item">
<h2 class="counter-number"><span class="odometer" data-count="180"></span>+</h2>
<p class="counter-title">Active Members</p>
</div>
</div>
<div class="col-6">
<div class="counter-item">
<h2 class="counter-number"><span class="odometer" data-count="500"></span>+</h2>
<p class="counter-title">Satishfied Client</p>
</div>
</div>
<div class="col-6">
<div class="counter-item">
<h2 class="counter-number"><span class="odometer" data-count="250"></span>+</h2>
<p class="counter-title">Clients Comment</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="img-area reveal right">
<img src="./assets/images/counter/counter-img.jpg" alt="counter-img" class="img-fluid rounded-20 w-100">
</div>
</div>
</div>
</div>
</section>
<!-- Counter section end -->
<!-- Team section start -->
<section class="team-section py-120 section-bg">
<div class="container">
<div class="row g-4">
<div class="col-lg-7 mx-auto">
<div class="section-title text-center">
<h5 class="sub-title text-uppercase">Creative Team</h5>
<h3 class="title split-text right">
Technology that Moves You Forward
</h3>
</div>
</div>
</div>
<div class="team-items">
<div class="team-card position-relative rounded-20">
<div class="row">
<div class="col-lg-4 col-md-6 align-self-center">
<div class="info">
<h4>Divine Russel</h4>
<p>lorem ipsum delor</p>
</div>
</div>
<div class="col-lg-4 col-md-5 align-self-center my-4 my-md-0">
<div class="social-icons d-flex align-items-center justify-content-center">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fa-brands fa-pinterest-p"></i></a>
<a href="#"><i class="fa-brands fa-linkedin-in"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-1 align-self-center">
<div class="hover-img position-absolute overflow-hidden rounded-20">
<div class="member-img">
<img src="./assets/images/team/team-img-1.png" alt="member-img">
</div>
</div>
</div>
</div>
</div>
<div class="team-card active-team position-relative rounded-20">
<div class="row">
<div class="col-lg-4 col-md-6 align-self-center">
<div class="info">
<h4>Floyd Miles</h4>
<p>lorem ipsum delor</p>
</div>
</div>
<div class="col-lg-4 col-md-5 align-self-center my-4 my-md-0">
<div class="social-icons d-flex align-items-center justify-content-center">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fa-brands fa-pinterest-p"></i></a>
<a href="#"><i class="fa-brands fa-linkedin-in"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-1 align-self-center">
<div class="hover-img position-absolute overflow-hidden rounded-20">
<div class="member-img">
<img src="./assets/images/team/team-img-2.png" alt="member-img">
</div>
</div>
</div>
</div>
</div>
<div class="team-card position-relative rounded-20">
<div class="row">
<div class="col-lg-4 col-md-6 align-self-center">
<div class="info">
<h4>Kathryn Murphy</h4>
<p>lorem ipsum delor</p>
</div>
</div>
<div class="col-lg-4 col-md-5 align-self-center my-4 my-md-0">
<div class="social-icons d-flex align-items-center justify-content-center">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fa-brands fa-pinterest-p"></i></a>
<a href="#"><i class="fa-brands fa-linkedin-in"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-1 align-self-center">
<div class="hover-img position-absolute overflow-hidden rounded-20">
<div class="member-img">
<img src="./assets/images/team/team-img-3.png" alt="member-img">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="team-btn text-center">
<a href="#" class="theme-btn theme-btn-border">All Members
<span class="btn-arrow">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_4443_62)">
<path
d="M13.4317 12.5381C13.4967 12.4215 13.535 12.2898 13.5367 12.1506L13.5733 7.95396C13.5758 7.60896 13.2992 7.32646 12.9483 7.32312C12.6058 7.32312 12.3258 7.59896 12.3233 7.94229L12.2975 10.8665L7.48917 6.05813C7.245 5.81396 6.84917 5.81396 6.605 6.05813C6.36083 6.30229 6.36083 6.69812 6.605 6.94229L11.4158 11.7531L8.59083 11.7831C8.245 11.7873 7.96833 12.0698 7.9725 12.4148C7.97583 12.7581 8.255 13.0331 8.60417 13.0331C8.60417 13.0331 12.6783 12.989 12.685 12.989C12.9967 12.9856 13.2842 12.8023 13.4325 12.539L13.4317 12.5381Z"
fill="currentColor" class="btn-arrow-fill"></path>
<path
d="M9.99984 19.2219C9.29484 19.2219 8.59818 19.2094 7.91151 19.1853C4.06734 19.0503 0.949844 15.9328 0.81401 12.0869C0.789844 11.3994 0.777344 10.7036 0.777344 9.99859C0.777344 9.29359 0.789844 8.59776 0.81401 7.91026C0.949844 4.06609 4.06734 0.948594 7.91151 0.813594C9.28651 0.76526 10.7148 0.76526 12.0882 0.813594C15.9323 0.948594 19.0498 4.06609 19.1857 7.91193C19.2098 8.59859 19.2223 9.29526 19.2223 10.0003C19.2223 10.7053 19.2098 11.4011 19.1857 12.0886C19.0498 15.9336 15.9323 19.0511 12.0882 19.1869C11.4015 19.2111 10.7048 19.2236 9.99984 19.2236V19.2219ZM9.99984 2.02609C9.31068 2.02609 8.62818 2.03859 7.95568 2.06276C4.76401 2.17443 2.17568 4.76276 2.06318 7.95443C2.03984 8.62776 2.02734 9.30859 2.02734 9.99859C2.02734 10.6886 2.03984 11.3703 2.06318 12.0428C2.17568 15.2344 4.76401 17.8236 7.95568 17.9344C9.30151 17.9836 10.699 17.9836 12.044 17.9344C15.2365 17.8228 17.8248 15.2344 17.9365 12.0428C17.9598 11.3694 17.9723 10.6886 17.9723 9.99859C17.9723 9.30859 17.9598 8.62693 17.9365 7.95443C17.824 4.76276 15.2357 2.17359 12.044 2.06276C11.3707 2.03859 10.689 2.02609 9.99984 2.02609Z"
fill="currentColor" class="btn-arrow-fill"></path>
</g>
</svg>
</span>
</a>
</div>
</div>
</section>
<!-- team section end -->
<!-- Message section start -->
<section class="message-section pt-120 position-relative section-bg">
<div class="container">
<div class="row g-4">
<div class="col-lg-6">
<div class="message-text">
<div class="section-title mb-40 text-start ">
<h5 class="sub-title">Talk to us</h5>
<h3 class="title split-text right z-5">Shaping the Future
with Technology</h3>
</div>
<form action="#" class="message-form">
<div class="row g-3">
<div class="col-lg-6">
<div class="input-group">
<label class="form-label">Your Name</label>
<input type="text" class="form-control form-field shadow-none" placeholder="Adnan Walker">
</div>
</div>
<div class="col-lg-6">
<div class="input-group">
<label class="form-label">Your Email</label>
<input type="text" class="form-control form-field shadow-none"
placeholder="info.example@gmail.com">
</div>
</div>
<div class="col-lg-6">
<div class="input-group">
<label class="form-label">Your Number</label>
<input type="text" class="form-control form-field shadow-none" placeholder="+088123456789">
</div>
</div>
<div class="col-lg-6">
<div class="input-group">
<label class="form-label">Your Area</label>
<select class="form-select form-field shadow-none" aria-label="Default select example">
<option>New York City</option>
<option>Los Angeles</option>
<option>Chicago</option>
<option>Houston</option>
</select>
</div>
</div>
<div class="col-lg-12">
<div class="input-group">
<label class="form-label">Message</label>
<textarea class="form-field textarea-control" placeholder="Message here.."></textarea>
</div>
</div>
<div class="col-lg-12">
<button type="submit" class="theme-btn theme-btn-primary">Send Now</button>
</div>
</div>
</form>
</div>
</div>
<div class="col-lg-6">
<div class="message-image overflow-hidden position-absolute bottom-0 end-0">
<img src="assets/images/messsage/message-img.png" alt="message-image" class="img-fluid w-100">
</div>
</div>
</div>
</div>
</section>
<!-- Message section end -->
<!-- Newsletter section start -->
<section class="newsletter-section" data-background="assets/images/shapes/newsletter-bg.svg">
<div class="container">
<div class="row g-4">
<div class="col-lg-6 align-self-center">
<div class="news-text d-flex align-items-center gap-4">
<div class="icon">
<img src="assets/images/icon/mail-icon.svg" alt="mail-icon">
</div>
<h3 class="info">Subscribe Our Newsletter</h3>
</div>
</div>
<div class="col-lg-6 align-self-center">
<div class="news-form">
<form action="#">
<div class="d-sm-flex gap-3 align-items-center">
<div class="input-group position-relative">
<input type="text" class="form-control form-field shadow-none" placeholder="Enter Your Email">
<span class="mail-icon position-absolute top-50 translate-middle-y"><i
class="fas fa-envelope"></i></span>
</div>
<button class="theme-btn mt-3 mt-sm-0 theme-btn-primary position-relative flex-shrink-0">Subscribe
Now</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter section end -->
<!-- Testimonial section start -->
<section class="testimonial-section py-120 section-bg">
<div class="container">
<div class="row g-4">
<div class="col-lg-6">
<div class="testimonial-info">
<div class="section-title text-start">
<h5 class="sub-title">clients testimonials
</h5>
<h3 class="title split-text right">Elevating Business with IT Excellence</h3>
</div>
<div class="short-info">
<p>Maintenance, ensuring that systems run smoothly and efficiently of computer Information
Technology
is a field that man encompasses the use development Information Technology</p>
</div>
<div class="call-us">
<a href="tel:(704)555-0127" class="call-to-action style2 d-flex align-items-center gap-3">
<span class="icon d-flex justify-content-center
align-items-center rounded-pill">
<i class="fa-solid fa-phone"></i>
</span>
<div class="info">
<p class="help text-uppercase">CALL US ANYTIME</p>
<h4 class="number">(704) 555-0127</h4>
</div>
</a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="testimonial-area testimonial-slider rounded-30 bg-white">
<div class="testimonial-item d-flex flex-column">
<div class="rating">
<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 no-rate"></i>
</div>
<div class="details">
<p>Cybersecurity is a crucial aspect of IT, protecting sensitive information from threats and
breaches. IT services also include technical support</p>
</div>
<div class="user-info d-flex align-items-center justify-content-between gap-4">
<div class="user d-flex align-items-center">
<div class="img overflow-hidden rounded-pill flex-shrink-0">
<img src="assets/images/testimonial/testimonial-img-1.png" alt="testimonial-img"
class="w-100 h-100 object-fit-cover">
</div>
<div class="text">
<h4 class="name">Michael Ramirez</h4>
<p class="designation">Marketing Manager</p>
</div>
</div>
<div class="quote">
<img src="assets/images/icon/quote-icon.svg" alt="quote-icon">
</div>
</div>
</div>
<div class="testimonial-item d-flex flex-column">
<div class="rating">
<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 no-rate"></i>
</div>
<div class="details">
<p>Cybersecurity is a crucial aspect of IT, protecting sensitive information from threats and
breaches. IT services also include technical support</p>
</div>
<div class="user-info d-flex align-items-center justify-content-between gap-4">
<div class="user d-flex align-items-center">
<div class="img overflow-hidden rounded-pill flex-shrink-0">
<img src="assets/images/testimonial/testimonial-img-1.png" alt="testimonial-img"
class="w-100 h-100 object-fit-cover">
</div>
<div class="text">
<h4 class="name">Michael Ramirez</h4>
<p class="designation">Marketing Manager</p>
</div>
</div>
<div class="quote">
<img src="assets/images/icon/quote-icon.svg" alt="quote-icon">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonial section end -->
<!-- Project section start -->
<section class="project-section section-bg">
<div class="container">
<div class="row">
<div class="col-lg-6 mx-auto">
<div class="section-title text-center mb-60">
<h6 class="sub-title position-relative d-inline-block text-uppercase">latest projects
</h6>
<h2 class="title split-text right">Tech Solutions for a Connected World</h2>
</div>
</div>
</div>
<div class="row g-4">
<div class="col-lg-6">
<div class="project-item position-relative">
<div class="img reveal zoom-out overflow-hidden rounded-20">
<a href="project-details.html" class="d-block w-100">
<img src="assets/images/projects/project-img1.jpg" alt="project-img" class="img-fluid w-100">
</a>
</div>
<div class="overlay position-absolute">
<div class="text">
<p>Digital Revolution</p>
<h4 class="title">
<a href="project-details.html">
Connected World
</a>
</h4>
</div>
</div>
</div>
<div class="project-item position-relative">
<div class="img reveal zoom-out overflow-hidden rounded-20">
<a href="project-details.html" class="d-block w-100">
<img src="assets/images/projects/project-img3.jpg" alt="project-img" class="img-fluid w-100">
</a>
</div>
<div class="overlay position-absolute">
<div class="text">
<p>Smart Strategies</p>
<h4 class="title">
<a href="project-details.html">
Innovative Solutions
</a>
</h4>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="project-item position-relative">
<div class="img reveal zoom-out overflow-hidden rounded-20">
<a href="project-details.html" class="d-block w-100">
<img src="assets/images/projects/project-img2.jpg" alt="project-img" class="img-fluid w-100">
</a>
</div>
<div class="overlay position-absolute">
<div class="text">
<p>Tech Horizons</p>
<h4 class="title">
<a href="project-details.html">
Creative Insights
</a>
</h4>
</div>
</div>
</div>
<div class="project-item position-relative">
<div class="img reveal zoom-out overflow-hidden rounded-20">
<a href="project-details.html" class="d-block w-100">
<img src="assets/images/projects/project-img4.jpg" alt="project-img" class="img-fluid w-100">
</a>
</div>
<div class="overlay position-absolute">
<div class="text">
<p>Future Innovators</p>
<h4 class="title">
<a href="project-details.html">
Global Nexus
</a>
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Project section end -->
<!-- Text-Slider section start -->
<section class="text-slider-section section-bg py-120 overflow-hidden">
<div class="slider-main d-flex align-items-center">
<div class="slider-item d-flex align-items-center">
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Digital Wizards
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Byte Guard
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Inno Secure
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Cloud Guard
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Technologies
</h2>
</div>
<div class="slider-item d-flex align-items-center">
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Digital Wizards
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Byte Guard
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Inno Secure
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Cloud Guard
</h2>
<h2 class="title">
<img src="assets/images/icon/globe-icon.svg" alt="globe-icon">
Technologies
</h2>
</div>
</div>
</section>
<!-- Text-Slider part end -->
<!-- Faq section start -->
<section class="faq-section section-bg">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="section-title mb-30 text-start">
<h6 class="sub-title">Ask Question
</h6>
<h2 class="title split-text right">Empowering Progress Through Technology</h2>
</div>
<div class="faq-body">
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<div class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
1. What IT services do you offer?
</button>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<p>We offer a range of IT ser including network setup and management, cybersecurity
solutions, clo computing, data backup and recovery, software development, and technical
support</p>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
2. How can you help improve our cybersecurity?
</button>
</div>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<p>We offer a range of IT ser including network setup and management, cybersecurity solutions,
clo computing, data backup and recovery, software development, and technical support</p>
</div>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
3. How do you handle data backup and recovery?
</button>
</div>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<p>We offer a range of IT ser including network setup and management, cybersecurity solutions,
clo computing, data backup and recovery, software development, and technical support</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="faq-images">
<div class="row g-4">
<div class="col-lg-12">
<div class="single-img reveal left rounded-20 overflow-hidden">
<img src="assets/images/faq/faq-img-1.png" alt="faq-img" class="img-fluid w-100">
</div>
</div>
<div class="col-lg-6 col-sm-6">
<div class="single-img reveal right rounded-20 overflow-hidden">
<img src="assets/images/faq/faq-img-2.png" alt="faq-img" class="img-fluid w-100">
</div>
</div>
<div class="col-lg-6 col-sm-6">
<div
class="clients rounded-20 text-center d-flex align-items-center justify-content-center flex-column">
<img src="assets/images/icon/group-person-icon.svg" alt="group-person-icon">
<div class="client-number d-flex align-items-center justify-content-center">
<div class="odometer" data-count="7"></div> k+
</div>
<h5 class="trust">Trusted Clients</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Faq section end -->
<!-- Blog section start -->
<section class="blog-section py-120 section-bg">
<div class="container">
<div class="row">
<div class="col-lg-7 mx-auto">
<div class="section-title text-center mb-60">
<h6 class="sub-title">blog & News</h6>
<h2 class="title split-text right">Transforming Challenges into Opportunities</h2>
</div>
</div>
</div>
<div class="row g-4">
<div class="col-lg-4 col-md-6">
<div class="blog-item rounded-20">
<div class="img overflow-hidden">
<a href="blog-details.html" class="d-block w-100">
<img src="assets/images/blog/blog-img-1.png" alt="blog-img" class="img-fluid w-100">
</a>
</div>
<div class="text">
<div class="blog-meta d-flex align-items-center justify-content-between gap-2">
<a href="#" class="d-flex align-items-center">
<i class="fas fa-user"></i>
Br Simmons
</a>
<a href="#" class="d-flex align-items-center">
<i class="fas fa-calendar-alt"></i>
26 Jan, 2023
</a>
</div>
<h4 class="blog-title">
<a href="blog-details.html">Future-Proofing Your Business</a>
</h4>
<p>Information Technology the backbone of modern businesses, enabling them to operate efficiently
and effectively</p>
<a href="blog-details.html"
class="theme-btn theme-btn-border position-relative d-inline-flex align-items-center">
Read More
<span class="btn-arrow">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_4443_62)">
<path
d="M13.4317 12.5381C13.4967 12.4215 13.535 12.2898 13.5367 12.1506L13.5733 7.95396C13.5758 7.60896 13.2992 7.32646 12.9483 7.32312C12.6058 7.32312 12.3258 7.59896 12.3233 7.94229L12.2975 10.8665L7.48917 6.05813C7.245 5.81396 6.84917 5.81396 6.605 6.05813C6.36083 6.30229 6.36083 6.69812 6.605 6.94229L11.4158 11.7531L8.59083 11.7831C8.245 11.7873 7.96833 12.0698 7.9725 12.4148C7.97583 12.7581 8.255 13.0331 8.60417 13.0331C8.60417 13.0331 12.6783 12.989 12.685 12.989C12.9967 12.9856 13.2842 12.8023 13.4325 12.539L13.4317 12.5381Z"
fill="currentColor" class="btn-arrow-fill"></path>