-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1744 lines (1672 loc) · 67.2 KB
/
index.html
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 content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Protechwebs - Home</title>
<meta content="" name="description" />
<meta content="" name="keywords" />
<!-- Favicons -->
<link href="assets/favicon_io/favicon.ico" rel="icon" />
<link
href="assets/favicon_io/apple-touch-icon.png"
rel="apple-touch-icon"
/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet" />
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet"
/>
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet" />
<link
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet" />
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
<!-- =======================================================
* Template Name: Anyar - v4.10.0
* Template URL: https://bootstrapmade.com/anyar-free-multipurpose-one-page-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Top Bar ======= -->
<div id="topbar" class="fixed-top d-flex align-items-center">
<div
class="container d-flex align-items-center justify-content-center justify-content-md-between"
>
<div class="contact-info d-flex align-items-center">
<i class="bi bi-envelope-fill"></i
><a href="mailto:[email protected]">[email protected]</a>
<i class="bi bi-phone-fill phone-icon"></i> +1 5589 55488 55
</div>
<div class="cta d-none d-md-block">
<a href="#about" class="scrollto">Get Started</a>
</div>
</div>
</div>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top d-flex align-items-center">
<div class="container d-flex align-items-center justify-content-between">
<h1 class="logo"><a href="index.html">Protechwebs</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href=index.html" class="logo"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#why-us">Why us</a></li>
<li><a class="nav-link scrollto" href="#services">Services</a></li>
<li><a class="nav-link scrollto" href="#faq">FAQ's</a></li>
<!-- <li>
<a class="nav-link scrollto" href="#portfolio">Portfolio</a>
</li> -->
<!-- <li><a class="nav-link scrollto" href="#team">Team</a></li> -->
<!-- <li><a class="nav-link scrollto" href="#pricing">Pricing</a></li> -->
<!-- <li><a href="blog.html">Blog</a></li> -->
<!-- <li class="dropdown">
<a href="#"
><span>Drop Down</span> <i class="bi bi-chevron-down"></i
></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown">
<a href="#"
><span>Deep Drop Down</span>
<i class="bi bi-chevron-right"></i
></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 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li> -->
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
</div>
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex justify-cntent-center align-items-center">
<div
id="heroCarousel"
data-bs-interval="5000"
class="container carousel carousel-fade"
data-bs-ride="carousel"
>
<!-- Slide 1 -->
<div class="carousel-item active">
<div class="carousel-container">
<h2 class="animate__animated animate__fadeInDown">
Welcome to <span>Protechwebs</span>
</h2>
<p class="animate__animated animate__fadeInUp">
Welcome to Protechwebs, where collaboration is key to success. Our
experts deliver innovative software solutions for businesses that
thrive in a rapidly evolving digital landscape. We understand
every business has unique challenges and work closely with clients
to develop custom solutions. Let's work together to achieve your
business goals.
</p>
<a
href="#about"
class="btn-get-started animate__animated animate__fadeInUp scrollto"
>Read More</a
>
</div>
</div>
<!-- Slide 2 -->
<div class="carousel-item">
<div class="carousel-container">
<h2 class="animate__animated animate__fadeInDown">Thank You!</h2>
<p class="animate__animated animate__fadeInUp">
Thank you for considering Protechwebs for your software
development needs. Our team of experts has the knowledge, skills,
and experience to deliver exceptional results. We are committed to
providing the highest level of customer service and support
through open communication and collaboration. Let's work together
to help you achieve your business objectives.
</p>
<a
href="#about"
class="btn-get-started animate__animated animate__fadeInUp scrollto"
>Read More</a
>
</div>
</div>
<div class="carousel-item">
<div class="carousel-container">
<h2 class="animate__animated animate__fadeInDown">Thank You!</h2>
<p class="animate__animated animate__fadeInUp">
Thank you for considering Protechwebs for your software
development needs. Our team of experts has the knowledge, skills,
and experience to deliver exceptional results. We are committed to
providing the highest level of customer service and support
through open communication and collaboration. Let's work together
to help you achieve your business objectives.
</p>
<a
href="#about"
class="btn-get-started animate__animated animate__fadeInUp scrollto"
>Read More</a
>
</div>
</div>
<!-- Slide 3 -->
<!-- <div class="carousel-item">
<div class="carousel-container">
<h2 class="animate__animated animate__fadeInDown">
Sequi ea ut et est quaerat
</h2>
<p class="animate__animated animate__fadeInUp">
Ut velit est quam dolor ad a aliquid qui aliquid. Sequi ea ut et
est quaerat sequi nihil ut aliquam. Occaecati alias dolorem
mollitia ut. Similique ea voluptatem. Esse doloremque accusamus
repellendus deleniti vel. Minus et tempore modi architecto.
</p>
<a
href="#about"
class="btn-get-started animate__animated animate__fadeInUp scrollto"
>Read More</a
>
</div>
</div> -->
<a
class="carousel-control-prev"
href="#heroCarousel"
role="button"
data-bs-slide="prev"
>
<span
class="carousel-control-prev-icon bx bx-chevron-left"
aria-hidden="true"
></span>
</a>
<a
class="carousel-control-next"
href="#heroCarousel"
role="button"
data-bs-slide="next"
>
<span
class="carousel-control-next-icon bx bx-chevron-right"
aria-hidden="true"
></span>
</a>
</div>
</section>
<!-- End Hero -->
<main id="main">
<!-- ======= Icon Boxes Section ======= -->
<section id="icon-boxes" class="icon-boxes">
<div class="container">
<div class="row">
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
data-aos="fade-up"
>
<div class="icon-box">
<div class="icon"><i class="bx bx-code-block"></i></div>
<h4 class="title"><a href="">Web Development</a></h4>
<p class="description">
The fusion of the latest technologies with creative web
solutions lays the foundation for pioneering businesses.
</p>
</div>
</div>
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="icon-box">
<div class="icon"><i class="bx bxs-devices"></i></div>
<h4 class="title"><a href="">Mobile Development</a></h4>
<p class="description">
Utilising the latest technologies, our team of specialists is
committed to constructing custom mobile app solutions that
tackle distinctive business issues.
</p>
</div>
</div>
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="icon-box">
<div class="icon"><i class="bx bxs-badge-check"></i></div>
<h4 class="title"><a href="">Quality assurance</a></h4>
<p class="description">
We ensure precise perfection for your online platform by
subjecting your projects to rigorous testing procedures as
part of our quality assurance solutions.
</p>
</div>
</div>
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="icon-box">
<div class="icon"><i class="bx bx-cog"></i></div>
<h4 class="title"><a href="">Enterprise solution</a></h4>
<p class="description">
Significant knowledge and experience in ERP development and
custom software development is possessed by our team.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Icon Boxes Section -->
<!-- ======= About Us Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>About Us</h2>
<p>
Welcome to <b>Protechwebs</b>! We are a dedicated team of experts
who believe in collaboration to deliver innovative software
solutions that drive business success.
</p>
</div>
<div class="row content">
<div class="col-lg-6">
<p>
<b>Protechwebs</b> is a leading software company that
specializes in developing cutting-edge software solutions using
a range of technologies including Rails, PHP, and ReactJS. Our
mission is to deliver innovative and tailored software solutions
that help businesses achieve their goals.
</p>
<!-- <ul>
<li>
<i class="ri-check-double-line"></i> Ullamco laboris nisi ut
aliquip ex ea commodo consequat
</li>
<li>
<i class="ri-check-double-line"></i> Duis aute irure dolor in
reprehenderit in voluptate velit
</li>
<li>
<i class="ri-check-double-line"></i> Ullamco laboris nisi ut
aliquip ex ea commodo consequat
</li>
</ul> -->
<p>
At <b>Protechwebs</b>, we believe in providing exceptional
customer service and building strong, long-lasting relationships
with our clients. We take the time to understand our clients'
unique business needs and work collaboratively to develop
solutions that meet their objectives.
</p>
</div>
<div class="col-lg-6 pt-4 pt-lg-0">
<p>
Our team of experts has extensive experience in software
development, quality assurance, and project management. We pride
ourselves on our ability to stay at the forefront of the latest
technologies and trends to deliver the best possible solutions
to our clients. If you're looking for a reliable and innovative
software development partner, look no further than
<b>Protechwebs</b>. Contact us today to learn more about how we
can help your business succeed.
</p>
<a class="btn-learn-more">Learn More</a>
</div>
</div>
</div>
</section>
<!-- End About Us Section -->
<!-- ======= Clients Section ======= -->
<!-- <section id="clients" class="clients">
<div class="container" data-aos="zoom-in">
<div class="clients-slider swiper">
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide">
<img
src="assets/img/clients/client-1.png"
class="img-fluid"
alt=""
/>
</div>
<div class="swiper-slide">
<img
src="assets/img/clients/client-2.png"
class="img-fluid"
alt=""
/>
</div>
<div class="swiper-slide">
<img
src="assets/img/clients/client-3.png"
class="img-fluid"
alt=""
/>
</div>
<div class="swiper-slide">
<img
src="assets/img/clients/client-4.png"
class="img-fluid"
alt=""
/>
</div>
<div class="swiper-slide">
<img
src="assets/img/clients/client-5.png"
class="img-fluid"
alt=""
/>
</div>
<div class="swiper-slide">
<img
src="assets/img/clients/client-6.png"
class="img-fluid"
alt=""
/>
</div>
<div class="swiper-slide">
<img
src="assets/img/clients/client-7.png"
class="img-fluid"
alt=""
/>
</div>
<div class="swiper-slide">
<img
src="assets/img/clients/client-8.png"
class="img-fluid"
alt=""
/>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section> -->
<!-- End Clients Section -->
<!-- ======= Why Us Section ======= -->
<section id="why-us" class="why-us">
<div class="container-fluid">
<div class="row">
<div
class="col-lg-5 align-items-stretch position-relative video-box"
style="background-image: url('assets/img/why-us.jpg')"
data-aos="fade-right"
>
<a
href="https://www.youtube.com/watch?v=LXb3EKWsInQ"
class="glightbox play-btn mb-4"
></a>
</div>
<div
class="col-lg-7 d-flex flex-column justify-content-center align-items-stretch"
data-aos="fade-left"
>
<div class="content">
<h3>
<strong>Why would you choose us</strong>
</h3>
<p>
Discover what sets us apart from the rest. From our expertise
in diverse technologies to our commitment to exceptional
customer service, we deliver custom software solutions that
drive business growth.
</p>
</div>
<div class="accordion-list">
<ul>
<li data-aos="fade-up" data-aos-delay="100">
<a
data-bs-toggle="collapse"
class="collapse"
data-bs-target="#accordion-list-1"
>
<span>01</span> Custom Solutions
<i class="bx bx-chevron-down icon-show"></i
><i class="bx bx-chevron-up icon-close"></i>
</a>
<div
id="accordion-list-1"
class="collapse show"
data-bs-parent=".accordion-list"
>
<p>
We offer custom software solutions that are tailored to
your specific business needs, delivering exceptional
results and a competitive edge.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200">
<a
data-bs-toggle="collapse"
data-bs-target="#accordion-list-2"
class="collapsed"
><span>02</span> Technology Expertise
<i class="bx bx-chevron-down icon-show"></i
><i class="bx bx-chevron-up icon-close"></i
></a>
<div
id="accordion-list-2"
class="collapse"
data-bs-parent=".accordion-list"
>
<p>
Our team of experts has extensive knowledge and
experience in the latest technologies and best
practices, ensuring high-quality solutions.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300">
<a
data-bs-toggle="collapse"
data-bs-target="#accordion-list-3"
class="collapsed"
><span>03</span> Collaborative Approach
<i class="bx bx-chevron-down icon-show"></i
><i class="bx bx-chevron-up icon-close"></i
></a>
<div
id="accordion-list-3"
class="collapse"
data-bs-parent=".accordion-list"
>
<p>
We believe in building strong relationships with our
clients through open communication and collaboration,
resulting in successful long-term partnerships.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="400">
<a
data-bs-toggle="collapse"
data-bs-target="#accordion-list-4"
class="collapsed"
><span>04</span> Customer Satisfaction
<i class="bx bx-chevron-down icon-show"></i
><i class="bx bx-chevron-up icon-close"></i
></a>
<div
id="accordion-list-4"
class="collapse"
data-bs-parent=".accordion-list"
>
<p>
We are committed to delivering exceptional customer
service and support, working closely with our clients to
ensure their satisfaction throughout the entire project
lifecycle.
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- End Why Us Section -->
<!-- ======= Services Section redesigned ======= -->
<section id="services" class="services">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Services</h2>
<p>
Our software company specializes in ERP development, custom
software development, and mobile app solutions. We provide
innovative solutions tailored to your business needs and offer
quality assurance to ensure precise perfection. Contact us to
learn more.
</p>
</div>
<div class="row">
<div
id="ror"
class="col-md-6"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="icon-box d-flex gap-2 align-items-start">
<div class="services-pic w-25">
<img src="assets/img/services/ror.png" class="img-fluid" />
</div>
<div class="services-description w-75">
<h4><a href="">Ruby on Rails</a></h4>
<p>
Our Rails development services offer high-performance,
scalable, and secure web applications that can help you
achieve your business objectives.
</p>
<div class="references">
<a><i class="ri-links-fill"></i></a>
<a><i class="ri-links-fill"></i></a>
<a><i class="ri-links-fill"></i></a>
</div>
</div>
</div>
</div>
<div
id="react-native"
class="col-md-6"
data-aos="fade-up"
data-aos-delay="400"
>
<div class="icon-box d-flex gap-2 align-items-start">
<div class="services-pic w-25">
<img
src="assets/img/services/react-native.png"
class="img-fluid"
/>
</div>
<div class="services-description w-75">
<h4><a href="">React Native</a></h4>
<p>
Our React Native development services help you create fast
and reliable mobile apps that work seamlessly across
different platforms.
</p>
<div class="references">
<a><i class="ri-links-fill"></i></a>
<a><i class="ri-links-fill"></i></a>
<a><i class="ri-links-fill"></i></a>
</div>
</div>
</div>
</div>
<div
id="react"
class="col-md-6"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="icon-box d-flex gap-2 align-items-start">
<div class="services-pic w-25">
<img src="assets/img/services/react.png" class="img-fluid" />
</div>
<div class="services-description w-75">
<h4><a href="">React.js</a></h4>
<p>
Our ReactJS development services enable you to create
dynamic, interactive user interfaces and deliver exceptional
user experiences across a range of platforms.
</p>
<div class="references">
<a><i class="ri-links-fill"></i></a>
<a><i class="ri-links-fill"></i></a>
<a><i class="ri-links-fill"></i></a>
</div>
</div>
</div>
</div>
<div
id="php"
class="col-md-6"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="icon-box d-flex gap-2 align-items-start">
<div class="services-pic w-25">
<img src="assets/img/services/php.png" class="img-fluid" />
</div>
<div class="services-description w-75">
<h4><a href="">PHP</a></h4>
<p>
Our PHP development services provide custom web solutions
that are reliable, scalable, and tailored to your specific
requirements. We leverage the latest technologies to create
exceptional web experiences for your customers.
</p>
<div class="references">
<a><i class="ri-links-fill"></i></a>
<a><i class="ri-links-fill"></i></a>
<a><i class="ri-links-fill"></i></a>
</div>
</div>
</div>
</div>
<div
id="qa"
class="col-md-6"
data-aos="fade-up"
data-aos-delay="400"
>
<div class="icon-box d-flex gap-2 align-items-start">
<div class="services-pic w-25">
<img
src="assets/img/services/quality_assurance.jpeg"
class="img-fluid"
/>
</div>
<div class="services-description w-75">
<h4><a href="">Quality Assurance</a></h4>
<p>
Our Quality Assurance services ensure that your software
meets the highest standards of quality and delivers an
exceptional user experience.
</p>
<div class="references">
<a><i class="ri-links-fill"></i></a>
<a><i class="ri-links-fill"></i></a>
<a><i class="ri-links-fill"></i></a>
</div>
</div>
</div>
</div>
<div
id="wordpress"
class="col-md-6"
data-aos="fade-up"
data-aos-delay="400"
>
<div class="icon-box d-flex gap-2 align-items-start">
<div class="services-pic w-25">
<img
src="assets/img/services/wordpress.png"
class="img-fluid"
/>
</div>
<div class="services-description w-75">
<h4><a href="">WordPress</a></h4>
<p>
Our WordPress development services offer custom solutions
that provide exceptional web experiences for your customers.
</p>
<div class="references">
<a><i class="ri-links-fill"></i></a>
<a><i class="ri-links-fill"></i></a>
<a><i class="ri-links-fill"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Services Section -->
<!-- ======= Services Section ======= -->
<!-- <section id="services" class="services">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Services</h2>
<p>
Magnam dolores commodi suscipit. Necessitatibus eius consequatur
ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam
quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea.
Quia fugiat sit in iste officiis commodi quidem hic quas.
</p>
</div>
<div class="row">
<div
class="col-md-6 d-flex align-items-stretch"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="icon-box">
<i class="bi bi-card-checklist"></i>
<h4><a href="#">Lorem Ipsum</a></h4>
<p>
Voluptatum deleniti atque corrupti quos dolores et quas
molestias excepturi sint occaecati cupiditate non provident
</p>
</div>
</div>
<div
class="col-md-6 d-flex align-items-stretch mt-4 mt-md-0"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="icon-box">
<i class="bi bi-bar-chart"></i>
<h4><a href="#">Dolor Sitema</a></h4>
<p>
Minim veniam, quis nostrud exercitation ullamco laboris nisi
ut aliquip ex ea commodo consequat tarad limino ata
</p>
</div>
</div>
<div
class="col-md-6 d-flex align-items-stretch mt-4 mt-md-0"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="icon-box">
<i class="bi bi-binoculars"></i>
<h4><a href="#">Sed ut perspiciatis</a></h4>
<p>
Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur
</p>
</div>
</div>
<div
class="col-md-6 d-flex align-items-stretch mt-4 mt-md-0"
data-aos="fade-up"
data-aos-delay="400"
>
<div class="icon-box">
<i class="bi bi-brightness-high"></i>
<h4><a href="#">Nemo Enim</a></h4>
<p>
Excepteur sint occaecat cupidatat non proident, sunt in culpa
qui officia deserunt mollit anim id est laborum
</p>
</div>
</div>
<div
class="col-md-6 d-flex align-items-stretch mt-4 mt-md-0"
data-aos="fade-up"
data-aos-delay="500"
>
<div class="icon-box">
<i class="bi bi-calendar4-week"></i>
<h4><a href="#">Magni Dolore</a></h4>
<p>
At vero eos et accusamus et iusto odio dignissimos ducimus qui
blanditiis praesentium voluptatum deleniti atque
</p>
</div>
</div>
<div
class="col-md-6 d-flex align-items-stretch mt-4 mt-md-0"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="icon-box">
<i class="bi bi-briefcase"></i>
<h4><a href="#">Eiusmod Tempor</a></h4>
<p>
Et harum quidem rerum facilis est et expedita distinctio. Nam
libero tempore, cum soluta nobis est eligendi
</p>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Services Section -->
<!-- ======= Cta Section ======= -->
<!-- <section id="cta" class="cta">
<div class="container">
<div class="row" data-aos="zoom-in">
<div class="col-lg-9 text-center text-lg-start">
<h3>Call To Action</h3>
<p>
Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.
</p>
</div>
<div class="col-lg-3 cta-btn-container text-center">
<a class="cta-btn align-middle">Call To Action</a>
</div>
</div>
</div>
</section> -->
<!-- End Cta Section -->
<!-- ======= Portfoio Section ======= -->
<!-- <section id="portfolio" class="portfoio">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Portfoio</h2>
<p>
Magnam dolores commodi suscipit. Necessitatibus eius consequatur
ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam
quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea.
Quia fugiat sit in iste officiis commodi quidem hic quas.
</p>
</div>
<div class="row">
<div class="col-lg-12 d-flex justify-content-center">
<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">
<img
src="assets/img/portfolio/portfolio-1.jpg"
class="img-fluid"
alt=""
/>
<div class="portfolio-info">
<h4>App 1</h4>
<p>App</p>
<a
href="assets/img/portfolio/portfolio-1.jpg"
data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"
title="App 1"
><i class="bx bx-plus"></i
></a>
<a
href="portfolio-details.html"
class="details-link"
title="More Details"
><i class="bx bx-link"></i
></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<img
src="assets/img/portfolio/portfolio-2.jpg"
class="img-fluid"
alt=""
/>
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
<a
href="assets/img/portfolio/portfolio-2.jpg"
data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"
title="Web 3"
><i class="bx bx-plus"></i
></a>
<a
href="portfolio-details.html"
class="details-link"
title="More Details"
><i class="bx bx-link"></i
></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<img
src="assets/img/portfolio/portfolio-3.jpg"
class="img-fluid"
alt=""
/>
<div class="portfolio-info">
<h4>App 2</h4>
<p>App</p>
<a
href="assets/img/portfolio/portfolio-3.jpg"
data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"
title="App 2"
><i class="bx bx-plus"></i
></a>
<a
href="portfolio-details.html"
class="details-link"
title="More Details"
><i class="bx bx-link"></i
></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<img
src="assets/img/portfolio/portfolio-4.jpg"
class="img-fluid"
alt=""
/>
<div class="portfolio-info">
<h4>Card 2</h4>
<p>Card</p>
<a
href="assets/img/portfolio/portfolio-4.jpg"
data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"
title="Card 2"
><i class="bx bx-plus"></i
></a>
<a
href="portfolio-details.html"
class="details-link"
title="More Details"
><i class="bx bx-link"></i
></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<img
src="assets/img/portfolio/portfolio-5.jpg"
class="img-fluid"
alt=""
/>