-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautomation-service.html
1240 lines (1176 loc) · 63.7 KB
/
automation-service.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>
<!--
// WEBSITE: https://themefisher.com
// TWITTER: https://twitter.com/themefisher
// FACEBOOK: https://www.facebook.com/themefisher
// GITHUB: https://github.com/themefisher/
-->
<!--
// WEBSITE: https://themefisher.com
// TWITTER: https://twitter.com/themefisher
// FACEBOOK: https://www.facebook.com/themefisher
// GITHUB: https://github.com/themefisher/
-->
<html lang="en">
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Seed Innovation Technologies</title>
<!-- Mobile Specific Metas
================================================== -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Corporate Html5 Template">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0">
<meta name="author" content="Themefisher">
<meta name="generator" content="Themefisher Rappo HTML Template v1.0">
<!-- theme meta -->
<meta name="theme-name" content="rappo" />
<!-- bootstrap -->
<link rel="stylesheet" href="plugins/bootstrap/bootstrap.min.css">
<script src="/plugins/bootstrap/bootstrap.min.js" defer></script>
<!-- Animate -->
<link rel="stylesheet" href="plugins/animate-css/animate.css">
<!-- Icon Font css -->
<link rel="stylesheet" href="plugins/fontawesome/css/all.css">
<link rel="stylesheet" href="plugins/fonts/Pe-icon-7-stroke.css">
<!-- Themify icon Css -->
<link rel="stylesheet" href="plugins/themify/css/themify-icons.css">
<!-- Slick Carousel CSS -->
<link rel="stylesheet" href="plugins/slick-carousel/slick/slick.css">
<link rel="stylesheet" href="plugins/slick-carousel/slick/slick-theme.css">
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Main Stylesheet -->
<link rel="stylesheet" href="css/style.css">
<!--Favicon-->
<link rel="icon" href="images/favicon.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Socials -->
<!-- Primary Meta Tags -->
<title>Seed Inov</title>
<meta name="title" content="Seed Inov" />
<meta name="description"
content="SeedInov harnesses cutting-edge technology to craft transformative solutions. Through a fusion of creativity and expertise, SeedInov paves the way for advancements that shape the future." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://seedinov.com/" />
<meta property="og:title" content="Seed Inov" />
<meta property="og:description"
content="SeedInov harnesses cutting-edge technology to craft transformative solutions. Through a fusion of creativity and expertise, SeedInov paves the way for advancements that shape the future." />
<meta property="og:image" content="https://seedinov.com/images/icon/logo.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://seedinov.com/" />
<meta property="twitter:title" content="Seed Inov" />
<meta property="twitter:description"
content="SeedInov harnesses cutting-edge technology to craft transformative solutions. Through a fusion of creativity and expertise, SeedInov paves the way for advancements that shape the future." />
<meta property="twitter:image" content="https://seedinov.com/images/icon/logo.png" />
<!-- Meta Tags Generated with https://metatags.io -->
<script>
document.addEventListener('DOMContentLoaded', function () {
var tooltipElements = document.querySelectorAll('[data-toggle="tooltip"]');
tooltipElements.forEach(function (element) {
new bootstrap.Tooltip(element);
});
});
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-0VCSYBHKJC"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-0VCSYBHKJC');
</script>
</head>
<body id="top-header">
<!-- LOADER TEMPLATE -->
<div id="page-loader">
<div class="loader-icon fa fa-spin colored-border"></div>
</div>
<!-- /LOADER TEMPLATE -->
<!-- NAVBAR
================================================= -->
<nav class="navbar navbar-expand-lg navbar-dark trans-navigation fixed-top navbar-togglable position-md-sticky">
<div class="seed-container">
<div class="d-flex justify-content-between">
<div class="brand">
<a class="d-block" href="index.html">
<img class="logo" style="height: 3rem" src="../../images/icon/logo.png" alt="seedinov logo" />
</a>
</div>
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="fa fa-bars"></span>
</button>
<!-- Collapse -->
<!-- / .navbar-collapse -->
<div class="d-none d-lg-block">
<div class="collapse navbar-collapse has-dropdown" id="navbarCollapse">
<!-- Links -->
<ul class="navbar-nav ml-auto d-flex align-items-center">
<li class="nav-item">
<a href="project.html" class="nav-link js-scroll-trigger">
Portfolio
</a>
</li>
<li class="primary-btn">
<a href="contact.html" class="nav-link js-scroll-trigger">
Contact Us
</a>
</li>
<!-- <li class="nav-item ">
<a href="contact.html" class="nav-link">
Contact
</a>
</li> -->
</ul>
</div>
</div>
</div>
<div class="d-block d-lg-none">
<div class="collapse navbar-collapse has-dropdown" id="navbarCollapse">
<!-- Links -->
<ul class="navbar-nav ml-auto d-flex align-items-center">
<li class="nav-item">
<a href="project.html" class="nav-link js-scroll-trigger">
Portfolio
</a>
</li>
<li class="primary-btn">
<a href="contact.html" class="nav-link js-scroll-trigger">
Contact Us
</a>
</li>
<!-- <li class="nav-item ">
<a href="contact.html" class="nav-link">
Contact
</a>
</li> -->
</ul>
</div>
</div>
</div>
<!-- / .container -->
</nav>
<section class="service-banner"
style="background: url('/images/services-page/ai-services/banner-bg.png'); background-position: right; background-repeat: no-repeat;">
<div class="container-fluid">
<div class="row align-items-center justify-content-center">
<div class="col-lg-12">
<div class="path d-flex gap-3">
<div class="text-white">
<p>Home</p>
</div>
<div>
<p>
<img width="50px" src="/images/services-page/ai-services/banner-arrow.svg" />
</p>
</div>
<div class="text-white">
<p>Services</p>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="service-banner-content d-flex justify-content-between align-items-center">
<div class="left-container">
<h1 class="text-center text-lg-left"><span>Automation</span> Services </h1>
<p class="text-white d-block d-lg-none text-center">
Seedinov's Automation Services are your key to simplifying processes and supercharging
efficiency. Our solutions are designed to make tasks faster and better, freeing up your
time to concentrate on the core aspects of your business.
</p>
<link
href="https://assets.calendly.com/assets/external/widget.css"
rel="stylesheet"
/>
<script
src="https://assets.calendly.com/assets/external/widget.js"
type="text/javascript"
async
></script>
<button
onclick="Calendly.initPopupWidget({url: 'https://calendly.com/ehtisham-wruh/30min'});return false;"
class="primary-btn border-0 m-auto m-lg-none d-block d-lg-inline">Schedule a
Call</button>
</div>
<div class="right-container d-none d-lg-block">
<p class="text-white">
Seedinov's Automation Services are your key to simplifying processes and supercharging
efficiency. Our solutions are designed to make tasks faster and better, freeing up your
time to concentrate on the core aspects of your business.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="seed-section what-we-offer">
<div class="container">
<div class="row justify-content-between align-items-center">
<div class="col-lg-6 col-xl-6">
<div class="left-container">
<h2 class="mb-3" id="service-heading">What we <span>Offer</span></h2>
<p class="default-text-black">We deliver streamlined automation services engineered to tackle
your unique business challenges. By leveraging our robust implementation methods, we design
custom automation solutions that perfectly synchronize with your existing operations. This
ensures a powerful and efficient automation strategy, tailored to your specific needs.
pen_spark
</p>
</div>
</div>
<div class="col-lg-6 col-xl-6">
<div id="accordion">
<div class="card">
<div class="card-header" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link collapsed accordion-btn" data-toggle="collapse"
data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Task Optimization
</button>
</h5>
</div>
<div id="collapseOne" class="collapse" aria-labelledby="headingOne"
data-parent="#accordion">
<div class="card-body">
<p class="default-text-black mb-0">
Our automation solutions streamline and optimize routine tasks, making them
faster and more efficient.
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed accordion-btn" data-toggle="collapse"
data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Enhanced Productivity
</button>
</h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo"
data-parent="#accordion">
<div class="card-body">
<p class="default-text-black mb-0">
Focus on what matters most as our services handle repetitive tasks, boosting
overall productivity.
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed accordion-btn" data-toggle="collapse"
data-target="#collapseThree" aria-expanded="false"
aria-controls="collapseThree">
Business Core Empowerment
</button>
</h5>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree"
data-parent="#accordion">
<div class="card-body">
<p class="default-text-black mb-0">
Let automation take care of the details, allowing you to direct your energy
towards the core aspects of your business.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="//cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/ScrollMagic.min.js"></script>
<section class="seed-section process-steps">
<div class="scroll-content">
<div class="container mb-5">
<div class="row">
<div class="col-12">
<p class="alumni-description text-center m-auto mx-100">
Our <span>Process</span>
</p>
</div>
</div>
</div>
<div class="section--vertical desktop" id="second">
<div class="block-list" style="padding: 0 50px">
<div class="block-list__item">
<div class="block-list__item-inner">
<div class="card-content">
<img src="../../images/services-page/ai-services/evaluation1.svg" width="60px"
height="60px" class="mb-3" />
<h4 class="mb-2">Process Simplification</h4>
<p>
We identify and simplify complex processes to make them more efficient.
</p>
</div>
</div>
</div>
<div class="block-list__item">
<div class="block-list__item-inner">
<div class="card-content">
<img src="../../images/services-page/ai-services/web-development1.svg" width="60px"
height="60px" class="mb-3" />
<h4 class="mb-2">Task Automation</h4>
<p>
Our solutions automate repetitive tasks, reducing manual effort and the risk of
errors.
</p>
</div>
</div>
</div>
<div class="block-list__item">
<div class="block-list__item-inner">
<div class="card-content">
<img src="../../images/services-page/ai-services/analysis1.svg" width="60px"
height="60px" class="mb-3" />
<h4 class="mb-2">Productivity Enhancement</h4>
<p>
By automating time-consuming processes, we enhance overall productivity and
operational efficiency.
</p>
</div>
</div>
</div>
<div class="block-list__item">
<div class="block-list__item-inner">
<div class="card-content">
<img src="../../images/services-page/ai-services/gear1.svg" width="60px" height="60px"
class="mb-3" />
<h4 class="mb-2">Strategic Focus</h4>
<p>
With routine tasks automated, you can redirect your focus to strategic and core
business activities.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="mobile">
<div class="container">
<div class="row">
<div class="col-sm-6 col-12">
<div class="block-list__item-inner">
<div class="card-content">
<img src="../../images/services-page/ai-services/evaluation1.svg" width="60px"
height="60px" class="mb-3" />
<h4 class="mb-2">Process Simplification</h4>
<p>
We identify and simplify complex processes to make them more efficient.
</p>
</div>
</div>
</div>
<div class="col-sm-6 col-12">
<div class="block-list__item-inner">
<div class="card-content">
<img src="../../images/services-page/ai-services/evaluation1.svg" width="60px"
height="60px" class="mb-3" />
<h4 class="mb-2">Task Automation</h4>
<p>
Our solutions automate repetitive tasks, reducing manual effort and the risk of
errors.
</p>
</div>
</div>
</div>
<div class="col-sm-6 col-12">
<div class="block-list__item-inner">
<div class="card-content">
<img src="../../images/services-page/ai-services/evaluation1.svg" width="60px"
height="60px" class="mb-3" />
<h4 class="mb-2">Productivity Enhancement</h4>
<p>
By automating time-consuming processes, we enhance overall productivity and
operational efficiency.
</p>
</div>
</div>
</div>
<div class="col-sm-6 col-12">
<div class="block-list__item-inner">
<div class="card-content">
<img src="../../images/services-page/ai-services/evaluation1.svg" width="60px"
height="60px" class="mb-3" />
<h4 class="mb-2">Strategic Focus</h4>
<p>
With routine tasks automated, you can redirect your focus to strategic and core
business activities.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="https://unpkg.com/[email protected]/scrollmagic/uncompressed/ScrollMagic.js"></script>
<script src="https://unpkg.com/[email protected]/scrollmagic/uncompressed/plugins/animation.gsap.js"></script>
<script src="https://unpkg.com/[email protected]/scrollmagic/uncompressed/plugins/debug.addIndicators.js"></script>
<script src="https://unpkg.com/[email protected]/dist/gsap.js"></script>
<script>
window.addEventListener("load", function () {
var blockList = document.querySelector(".block-list");
var blockItems = document.querySelectorAll(".block-list__item");
var blockItemWidth = blockItems[0].offsetWidth;
var totalWidth = blockItemWidth * blockItems.length;
var travelDistance = totalWidth - 200;
var controller = new ScrollMagic.Controller();
var horizontalScroll = gsap.to(blockList, {
x: -travelDistance,
ease: "none",
});
var scene = new ScrollMagic.Scene({
triggerElement: "#second",
duration: totalWidth, // Adjust duration based on your requirement
triggerHook: 0.3,
})
.setPin(".block-list")
.setTween(horizontalScroll)
.addTo(controller);
});
</script>
<!-- <section class="seed-section technology-stack">
<div class="container">
<div class="row">
<div class="col-lg-12 d-flex justify-content-center">
<div>
<p class="alumni-description text-center m-auto mx-100">
We Engage with an Extensive Spectrum of <span>Technologies</span>
</p>
</div>
</div>
<div class="col-lg-12 d-flex justify-content-end technology-arrow">
<div>
<button class="technology-prev slider-prev">
<img src="../../images/arrow.png" width="40px" height="20px" />
</button>
<button class="technology-next slider-next">
<img src="../../images/arrow.png" width="40px" height="20px" />
</button>
</div>
</div>
<div class="col-lg-12">
<div class="technology-slider">
<div class="element element-1">
<div class="technology-slide">
<div
class="technology-box d-flex flex-column justify-content-center align-items-center gap-3">
<img src="../../images/technology/js.png" alt="js" width="60px" height="60px" />
<p class="alumni-description">JavaScript</p>
</div>
</div>
</div>
<div class="element element-2">
<div class="technology-slide">
<div
class="technology-box d-flex flex-column justify-content-center align-items-center gap-3">
<img src="../../images/technology/ts.png" alt="js" width="60px" height="60px" />
<p class="alumni-description">TypeScript</p>
</div>
</div>
</div>
<div class="element element-3">
<div class="technology-slide">
<div
class="technology-box d-flex flex-column justify-content-center align-items-center gap-3">
<img src="../../images/technology/py.png" alt="js" width="60px" height="60px" />
<p class="alumni-description">Python</p>
</div>
</div>
</div>
<div class="element element-4">
<div class="technology-slide">
<div
class="technology-box d-flex flex-column justify-content-center align-items-center gap-3">
<img src="../../images/technology/tf.png" alt="js" width="60px" height="60px" />
<p class="alumni-description">TensorFLow</p>
</div>
</div>
</div>
<div class="element element-5">
<div class="technology-slide">
<div
class="technology-box d-flex flex-column justify-content-center align-items-center gap-3">
<img src="../../images/technology/figma.png" alt="js" width="60px" height="60px" />
<p class="alumni-description">Figma</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<div class="seed-section">
<section id="work-wrap">
<div class="container">
<div class="section-heading mb-5">
<!-- Subheading -->
<p class="col-md-11 col-lg-11 alumni-description" style="margin: 0 auto;">
Showcasing Our Latest <span>Software</span> Creations
</p>
</div>
</section>
<section id="work">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 p-0 mb-4">
<a href="https://www.fiverr.com/users/ahtionpc/portfolio">
<div class="work-block m-1">
<img src="images/projects/podcut.png" alt="work-img" width="auto" height="auto"
class="img-fluid">
</div>
<div class="card-content">
<h4>Podcut.Ai</h4>
<p>Our team's expertise was instrumental in evolving Podcut.ai's user interface into an
advanced
web application.
</p>
<a href="podcut-project.html" class="link">Read Case Study <img
src="../../images/icon/right-arrow.svg" alt="" srcset=""></a>
</div>
</a>
</div>
<div class="col-lg-4 col-md-6 p-0 mb-4">
<a href="https://www.fiverr.com/users/ahtionpc/portfolio">
<div class="work-block m-1">
<img src="images/projects/sfl.png" alt="work-img" width="auto" height="auto"
class="img-fluid">
</div>
<div class="card-content">
<h4>School For Life NGO Portal</h4>
<p>A platform for resource management in your organizations and tracking the wellbeing
of your workforce
</p>
<a href="sfl-project.html" class="link">Read Case Study <img
src="../../images/icon/right-arrow.svg" alt="" srcset=""></a>
</div>
</div>
<div class="col-lg-4 col-md-6 p-0 mb-4">
<a href="https://www.fiverr.com/users/ahtionpc/portfolio">
<div class="work-block m-1">
<img src="images/projects/tribify3.svg" alt="work-img" width="auto" height="auto"
class="img-fluid">
</div>
<div class="card-content">
<h4>Tribify - Happiness Hub</h4>
<p>a platform for resource management in your organizations and tracking the wellbeing
of your workforce
</p>
<a href="tribify-project.html" class="link">Read Case Study <img
src="../../images/icon/right-arrow.svg" alt="" srcset=""></a>
</div>
</a>
</div>
<div class="col-lg-4 col-md-6 p-0 mb-4">
<a href="https://www.fiverr.com/users/ahtionpc/portfolio">
<div class="work-block m-1">
<img src="images/projects/projectS.jpg" alt="work-img" width="auto" height="auto"
class="img-fluid">
</div>
<div class="card-content">
<h4>Project-S</h4>
<p>a platform for resource management in your organizations and tracking the wellbeing
of your workforce
</p>
<a href="projects-project.html" class="link">Read Case Study <img
src="../../images/icon/right-arrow.svg" alt="" srcset=""></a>
</div>
</a>
</div>
<div class="col-lg-4 col-md-6 p-0 mb-4">
<a href="https://www.fiverr.com/users/ahtionpc/portfolio">
<div class="work-block m-1">
<img src="images/projects/refussion.jpg" alt="work-img" width="auto" height="auto"
class="img-fluid">
</div>
<div class="card-content">
<h4>Refusion AI</h4>
<p>An all AI anything AI platform along with a marketplace, where users can browse for
AI/ML models and
solutions and integrate them to their projects.</p>
<a href="refussion-project.html" class="link">Read Case Study <img
src="../../images/icon/right-arrow.svg" alt="" srcset=""></a>
</div>
</a>
</div>
<div class="col-lg-4 col-md-6 p-0 mb-4">
<a href="https://www.fiverr.com/users/ahtionpc/portfolio">
<div class="work-block m-1">
<img src="images/projects/tribify3.svg" alt="work-img" width="auto" height="auto"
class="img-fluid">
</div>
<div class="card-content">
<h4>BrainBee</h4>
<p>A no code AI builder platform where you can make and deploy AI solutions which cater
to your needs
</p>
<a href="brainbee-project.html" class="link">Read Case Study <img
src="../../images/icon/right-arrow.svg" alt="" srcset=""></a>
</div>
</a>
</div>
<div class="col-lg-4 col-md-6 p-0 mb-4">
<a href="https://www.fiverr.com/users/ahtionpc/portfolio">
<div class="work-block m-1">
<img src="images/projects/HousingXpert.jpg" alt="work-img" width="auto" height="auto"
class="img-fluid">
</div>
<div class="card-content">
<h4>HousingXpert</h4>
<p>HousingXpert is an innovative and comprehensive real estate platform which offers a
streamlined and
intuitive experience for property buyers. From the moment buyers interact with the
platform,
HousingXpert aims to simplify the property exploration process, guiding buyers
towards their dream
properties with ease.</p>
<a href="tribify-project.html" class="link">Read Case Study <img
src="../../images/icon/right-arrow.svg" alt="" srcset=""></a>
</div>
</a>
</div>
<div class="col-lg-4 col-md-6 p-0 mb-4">
<a href="https://www.fiverr.com/users/ahtionpc/portfolio">
<div class="work-block m-1">
<img src="images/projects/esperwise.jpg" alt="work-img" width="auto" height="auto"
class="img-fluid">
</div>
<div class="card-content">
<h4>EsperWise</h4>
<p>our medical chatbot platform</p>
<a href="tribify-project.html" class="link">Read Case Study <img
src="../../images/icon/right-arrow.svg" alt="" srcset=""></a>
</div>
</a>
</div>
</div>
</div>
</section>
</div>
<section class="section" id="section-testimonial">
<div class="container">
<div class="testimonial-container">
<div class="d-flex justify-content-center align-items-center flex-column"
style="max-width: 600px; margin: 0 auto">
<!-- Heading -->
<h2 class="section-title mb-2 text-white text-center" id="service-heading">
Raving Reviews: Client <span>Testimonials</span>
</h2>
<!-- Subheading -->
<p class="text-white text-center" id="service-subheading">
We place a strong emphasis on ensuring client satisfaction, and we are
proud to share testimonials from our valued clients
</p>
</div>
<div class="row align-items-center">
<div class="col-lg-12 d-flex justify-content-end technology-arrow">
<div>
<button class="testimonial-prev slider-prev">
<img src="../../images/arrow.png" width="40px" height="20px" />
</button>
<button class="testimonial-next slider-next">
<img src="../../images/arrow.png" width="40px" height="20px" />
</button>
</div>
</div>
<div class="col-lg-12 col-sm-12 col-md-12">
<div class="testimonals-slider">
<div class="element element-1">
<div class="test-inner mx-3">
An excellent start to our project! Highly recommended for their
great communication skills, on-time delivery, and flexibility.
<div style="
display: inline-flex;
align-items: flex-start;
gap: 4px;
margin-bottom: 10px;
">
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
</div>
<div class="test-author-thumb d-flex">
<img src="images/client/cameron.jpg" alt="Testimonial author" width="auto"
height="auto" class="img-fluid" />
<div class="test-author-info">
<h4>Cameron D’Arcy</h4>
<h6>
CEO of Brightworks - TVC and Video Content Production
</h6>
</div>
</div>
</div>
</div>
<div class="element element-2">
<div class="test-inner mx-3">
I had a fruitful collaboration with seedinov. Eager to continue
working together for at least 10 years. Highly recommend for
project starters.
<div style="
display: inline-flex;
align-items: flex-start;
gap: 4px;
margin-bottom: 10px;
">
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
</div>
<div class="test-author-thumb d-flex">
<img src="https://fiverr-res.cloudinary.com/image/upload/f_auto,q_auto,t_profile_small/v1/attachments/profile/photo/7d9a4e8f9dfb5a84f5c969de453e1b7a-1590644561119/160db798-63d5-4d81-978b-24babf593dae.jpg"
alt="Testimonial author" class="img-fluid" width="auto" height="auto" />
<div class="test-author-info">
<h4>leonaslt</h4>
<h6>Entrepreneur</h6>
</div>
</div>
</div>
</div>
<div class="element element-3">
<div class="test-inner mx-3">
An incredible seller! Exceeded my expectations and delivered
within time frame. Looking forward to working together again.
<div style="
display: inline-flex;
align-items: flex-start;
gap: 4px;
margin-bottom: 10px;
">
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
</div>
<div class="test-author-thumb d-flex">
<img src="images/client/shahbbir.png" alt="Testimonial author" class="img-fluid"
width="auto" height="auto" />
<div class="test-author-info">
<h4>Muhammad Shabbir</h4>
<h6>Founder @mrwebgcc</h6>
</div>
</div>
</div>
</div>
<div class="element element-1">
<div class="test-inner mx-3">
An excellent start to our project! Highly recommended for their
great communication skills, on-time delivery, and flexibility.
<div style="
display: inline-flex;
align-items: flex-start;
gap: 4px;
margin-bottom: 10px;
">
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
</div>
<div class="test-author-thumb d-flex">
<img src="images/client/cameron.jpg" alt="Testimonial author" width="auto"
height="auto" class="img-fluid" />
<div class="test-author-info">
<h4>Cameron D’Arcy</h4>
<h6>
CEO of Brightworks - TVC and Video Content Production
</h6>
</div>
</div>
</div>
</div>
<div class="element element-2">
<div class="test-inner mx-3">
I had a fruitful collaboration with seedinov. Eager to continue
working together for at least 10 years. Highly recommend for
project starters.
<div style="
display: inline-flex;
align-items: flex-start;
gap: 4px;
margin-bottom: 10px;
">
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
</div>
<div class="test-author-thumb d-flex">
<img src="https://fiverr-res.cloudinary.com/image/upload/f_auto,q_auto,t_profile_small/v1/attachments/profile/photo/7d9a4e8f9dfb5a84f5c969de453e1b7a-1590644561119/160db798-63d5-4d81-978b-24babf593dae.jpg"
alt="Testimonial author" class="img-fluid" width="auto" height="auto" />
<div class="test-author-info">
<h4>leonaslt</h4>
<h6>Entrepreneur</h6>
</div>
</div>
</div>
</div>
<div class="element element-3">
<div class="test-inner mx-3">
An incredible seller! Exceeded my expectations and delivered
within time frame. Looking forward to working together again.
<div style="
display: inline-flex;
align-items: flex-start;
gap: 4px;
margin-bottom: 10px;
">
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
<img src="../../images/icon/star.svg" width="auto" height="auto" alt="star" />
</div>
<div class="test-author-thumb d-flex">
<img src="images/client/shahbbir.png" alt="Testimonial author" class="img-fluid"
width="auto" height="auto" />
<div class="test-author-info">
<h4>Muhammad Shabbir</h4>
<h6>Founder @mrwebgcc</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="seed-section" id="blog">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-6 text-center">
<div class="section-heading mb-4">
<!-- Subheading -->
<p class="col-md-11 col-lg-11 alumni-description">
Sharing Our Journey, <br />
Enriching Your <span>Experience</span>
</p>
</div>
</div>
<!-- / .row -->
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6 p-0">
<div class="blog-box m-2">
<div class="blog-img-box">
<img src="images/blog/html-video-thumbnail.jpg" alt="" class="img-fluid blog-img" />
</div>
<div class="single-blog">
<div class="blog-content">
<h6>7 Feb 2021</h6>
<a href="#!">
<h3 class="card-title">
Complete HTML Course Beginners to Advanced
</h3>
</a>
<p>
Learn HTML with a step-by-step process, including projects and
sources provided in the lectures. Each topic will begin with a
brief introduction to the previous lecture.
</p>
<a target="_blank" style="margin-top: auto"
href="https://www.youtube.com/watch?v=-p9X4tOQsSs&t=26s&ab_channel=ehtishamdot"
class="link d-flex align-items-center">Read More <img
src="../../images/icon/right-arrow.svg" alt="arrow" /></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 p-0">
<div class="blog-box m-2">
<div class="blog-img-box">
<img src="images/blog/programming-career.jpg" alt="" class="img-fluid blog-img" />
</div>
<div class="single-blog">
<div class="blog-content">
<h6>14 Jan 2021</h6>
<a href="#!">
<h3 class="card-title">
"The only way to learn programming..." by George Hotz
</h3>
</a>
<p>
"The only way to learn programming is by immersing yourself in
hands-on projects," stated George Hotz.
</p>
<a target="_blank" style="margin-top: auto"
href="https://www.youtube.com/watch?v=kL2Q2ctCJys&ab_channel=ehtishamdot"
class="link d-flex align-items-center">Read More <img
src="../../images/icon/right-arrow.svg" alt="arrow" /></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 p-0">
<div class="blog-box m-2">
<div class="blog-img-box">
<img src="images/blog/visual-studio-faster.jpg" alt="" class="img-fluid blog-img" />
</div>
<div class="single-blog">
<div class="blog-content">
<h6>6 DEC 2020</h6>
<a href="#!">
<h3 class="card-title">MAKE VISUAL STUDIO FASTER</h3>
</a>
<p>
Improve Visual Studio's performance with these optimization
tips. For a detailed description, explore the techniques to
boost its speed and efficiency.
</p>
<a target="_blank" style="margin-top: auto"
href="https://www.youtube.com/watch?v=D2_haCjrarE&ab_channel=ehtishamdot"
class="link d-flex align-items-center">Read More <img
src="../../images/icon/right-arrow.svg" alt="arrow" /></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="section" id="footer">
<div class="overlay footer-overlay"></div>