-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
948 lines (884 loc) · 67.8 KB
/
services.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services</title>
<!-- bootstrap css -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- animation css -->
<link defer rel="stylesheet" href="animate-css/animate.css">
<!-- own animation css -->
<link defer rel="stylesheet" href="css/animat.css">
<!-- services css -->
<link rel="stylesheet" href="css/service.css">
<!-- font Awesome -->
<link rel="stylesheet" type="text/css" href="fontawesome/css/all.css">
<!-- Main css -->
<link rel="stylesheet" href="css/main.css">
<!-- js for sound -->
<script defer src="App.js"></script>
</head>
<body>
<!-- header -->
<header>
<audio defer id="sharp" src="../sounds/sharp.mp3"></audio>
<audio defer id="social" src="../sounds/social.mp3"></audio>
<!-- menu -->
<section class="container-fluid fixed-top" style="background-color: #212121 !important; opacity: 0.9;">
<nav class="navbar navbar-expand-lg navbar-dark" id="navbar" style=" color: white; background-color:#212121;">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo01" aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle-navigation">
<span class="navbar-toggler-icon"></span>
</button>
<i class="fa fa-heartbeat fa-2x nav-brand" style=" color: #F50057;" aria-hidden="true" onmouseover="playSound('sharp')"></i>
<a class="navbar-brand" id="navbra" href="#" style="margin-right:auto; margin-left: 0px; font-size: 18px !important;" onmouseover="playSound('sharp')">
Sumptous Solutions</a>
<div class="collapse navbar-collapse" id="navbarTogglerDemo01">
<ul class="navbar-nav mt-lg-0">
<li class="nav-item">
<a class="nav-link" href="index.html">Home<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="team.html"> Our Team</a>
</li>
<li class="nav-item">
<a class="nav-link active badge-pill btn-outline-primary font-weight-bold" href="services.html">Services</a>
</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="contact.html">Contact us</a>
</li>
<div class="idiv" style="margin-left:auto !important; margin-right: auto !important; ">
<a class="iconanchor" href="#"><i class="fab fa-facebook-f" style="color: white;"
onmouseover="playSound( 'social') "></i></a>
<a class="iconanchor " href="# "><i class="fab fa-linkedin-in" style="color: white;"
onmouseover="playSound( 'social') "></i></a>
<a class="iconanchor " href="# "><i class="fab fa-twitter" style="color: white;"
onmouseover="playSound( 'social') "></i></a>
<a class="iconanchor " href="# "><i class="fab fa-instagram" style="color: white;"
onmouseover="playSound( 'social') "></i></a>
<a class="iconanchor " href="# "><i class="fab fa-github" style="color: white;"
onmouseover="playSound( 'social') "></i></a>
</div>
</ul>
</div>
</nav>
</section>
</header>
<!-- body -->
<main>
<!-- banner -->
<section class="breadsec">
<div class="bread container-fluid">
<h3 class="container-fluid" align="center"> OUR SERVICES</h3>
<hr width="10%" style="height: 2px;">
</div>
</section>
<!-- services card -->
<section class="container-fluid servicescard pt-4 bg">
<!-- 1st row -->
<div class="row" >
<!-- graphic designing -->
<div class="col-sm-4">
<div class="card text-center">
<div class="card-body">
<img src="images/servicesicons/graphicdesigning.png" alt="photo" loading="lazy">
<h5 class="card-title">Graphic Designing</h5>
<p class="card-text">Graphic designing services in Pakistan,focuses on solving visual branding problems for all companies</p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal2">See More </button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal2" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel"> Graphic Designing</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span> </button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/graphicdesigning.png" alt="photo" loading="lazy">
</center>
<p class="pt-4 text-center"> Sumptous Solutions is a full service and faculties graphic designing services in Pakistan, focuses on solving visual branding problems for small and big companies because we set our passions into practice to make modern
websites and graphic design with full online Internet marketing tactics. </p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions
</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- website Designing -->
<div class="col-sm-4">
<div class="card text-center">
<div class="card-body">
<img src="images/servicesicons/webdesigning.png" alt="photo" loading="lazy">
<h5 class="card-title">Website Designing</h5>
<p class="card-text">Our website design, development, and conversion optimization facilities are focused on growing</p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal">See
More </button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel"> Website Designing</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/webdesigning.png" alt="photo" loading="lazy">
</center>
<p class="pt-4 text-center"> Our website design, development, and conversion optimization facilities are focused on growing the opportunities that a visitor who lands on your website will take a most wanted action, like making a purchase, download
a file, or fill-out a web form. We are a nonstop web agency, which means we think about user ways from start to finish.</p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions
</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- website Development -->
<div class="col-sm-4">
<div class="card text-center">
<div class="card-body">
<img src="images/servicesicons/websitedevelopment.png " alt="photo" loading="lazy">
<h5 class="card-title ">Website Development</h5>
<p class="card-text ">
Everyone knows a good web development company is one with open contact and thoughts to get job done.
</p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal3">See More </button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal3" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel"> Website Development</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span></button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/websitedevelopment.png" alt="photo" loading="lazy">
</center>
<p class="pt-4 text-center">Everyone knows a good web development company will be one with open contact and thoughts to get the job done. Sumptous Solutions, being a prominent web development company in Pakistan execute a web design and development
task, our team considers the illustration structure and organization of every step of the technique. We won’t end working until you have the website you desire.</p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions
</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 2nd row -->
<div class="row ">
<!-- website Maintainance -->
<div class="col-sm-4 ">
<div class="card text-center ">
<div class="card-body ">
<img src="images/servicesicons/webmaintainenace.png " alt="photo " loading="lazy">
<h5 class="card-title ">Website Maintainenance</h5>
<p class="card-text ">Maintenance is important for any website. Once the website is set up, it needs updating, monitoring. </p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal4">
See More</button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal4" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel"> Website Maintenance</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/webmaintainenace.png" alt="photo" loading="lazy">
</center>
<p class="pt-4 text-center">Maintenance is important for any website. Once the website is set up, it needs updating, monitoring, backups, and technical support.Sumptous Solutions offer professional and affordable website maintenance service with
experienced gentles and masters of Sumptous Solutions who makes time to the time change to your website when you needed. We allow you to keep your website up-to-date, secure and monitored at a fragment of the cost.
Sumptous Solutions is the best service provider for small businesses, entrepreneurs, freelancers, and organizations .</p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions
</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- mobile application Development -->
<div class="col-sm-4 ">
<div class="card text-center ">
<div class="card-body ">
<img src="images/servicesicons/webappdevelopment.png " alt="photo" loading="lazy">
<h5 class="card-title ">Mobile Application Development</h5>
<p class="card-text ">
Sumptous Solutions has a big team that is an expert in mobile app development.
</p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal5">
See More
</button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal5" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel">Mobile Application Development</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/webappdevelopment.png" alt="photo" loading="lazy">
</center>
<p class="pt-4 text-center">Sumptous Solutions has a big team that is an expert in mobile app development. Our mobile app developers exclusive thought to maximize our use of the Android and iPhone to make engaging, modish, and simple to use applications
that place out from the crowd and push borders where great. Sumptous SolutionS currently develops mobile applications in Pakistan for small to large organizations and also support some of the major digital agencies
in the worldwide who contract out their mobile apps development to our in-house panels.</p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions
</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- security Solutions -->
<div class="col-sm-4 ">
<div class="card text-center ">
<div class="card-body ">
<img src="images/servicesicons/securitysolutions.png " alt="photo " loading="lazy">
<h5 class="card-title ">Security Solutions</h5>
<p class="card-text ">
The Sumptous Solutions having its roots and acclaimed legacy in most sustainable technology implementations</p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal6">See More</button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal6" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel">Security Solutions</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span></button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/securitysolutions.png" alt="photo" loading="lazy">
</center>
<p class="pt-4 text-center">Sumptous Solutions having its roots and acclaimed legacy in most sustainable technology implementations has the exclusive, internationally recognized implementing and installing expertise, among the broad array of invaluable
security software and hardware products for the trusted 360 asset protection and powerful security coverage for your valuable and potentially to-be-compromised domestic, commercial and business entities. No matter
what, and how to advance security threats you’re about to experience or expecting soon..</p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions
</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 3rd row -->
<div class="row ">
<!-- content Management System -->
<div class="col-sm-4 ">
<div class="card text-center ">
<div class="card-body ">
<img src="images/servicesicons/cms.png " alt="photo " loading="lazy">
<h5 class="card-title ">Content Management System</h5>
<p class="card-text"> Content Management Systems, or CMS, is a great solution for setting up and maintaining dynamic websites. </p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal7">See More</button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal7" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel">Content Management System (CMS)</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span></button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/cms.png" alt="photo" loading="lazy"> </center>
<p class="pt-4 text-center"> Content Management Systems, or CMS, is a great solution for setting up and maintaining dynamic websites. Static sites are time-consuming and costly to update and don’t offer much in the way of flexibility. With today’s
internet environment being so highly focused on fresh, innovative content and sleek layouts, CMS packages are the perfect solution. There are plenty of CMS packages already available on the market. However, if you’ve
looked through the available options, you’ve probably noticed two things. One, they’re expensive. Two, they are difficult to truly customize to your site. Even with an array of modules and components, finding one
solution that offers everything you want for your website can be a challenge. Finding one that fits in your budget can be even harder. Fortunately, there’s a way to get both. Custom CMS packages from Sumptous Solutions
are tailor-made to your company’s needs. Whether you need a way to easily update information or an effective way to provide your visitors with a memorable experience, custom CMS solutions from Sumptous Solutions
make it possible to do exactly that. Contact Us for more information on E-Commerce Stores. </p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions
</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- domain & Web Hosting -->
<div class="col-sm-4 ">
<div class="card text-center ">
<div class="card-body ">
<img src="images/servicesicons/domain.png " alt="photo " loading="lazy">
<h5 class="card-title ">Domain & Web Hosting</h5>
<p class="card-text "> Sumptous Solutions is the domain registrar, providing domains & offers a place for your domains securely. </p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal8">See More</button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal8" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel">Domain & Web Hosting)</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span></button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/domain.png" alt="photo" loading="lazy"> </center>
<p class="pt-4 text-center"> Sumptous Solutions is the premier registrar of domain names, providing and domains as well as offers a single point interface to manage all your domains securely and effectively. Sumptous Solutions offers a full set
of domain services, as well as Sumptous Solutions, provide you FREE Control Panel, FREE Registrant Modification, FREE Domain Locking, FREE Privacy Protection, And FREE Domain Parking. You can check the availability
of your domains from this web site and order your domains online. We provide various secure online and offline payment options with the flexibility to pay in various currencies.</p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions
</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- accounting System -->
<div class="col-sm-4 ">
<div class="card text-center ">
<div class="card-body ">
<img src="images/servicesicons/accountingsystem.png " alt="photo " loading="lazy">
<h5 class="card-title ">Accounting System</h5>
<p class="card-text"> Choosing accounting software can be confusing. Eliminate the confusion with our customized accounting Solution</p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal9">See More</button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal9" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel">Accounting System</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span></button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/accountingsystem.png" alt="photo" loading="lazy">
</center>
<p class="pt-4 text-center"> Choosing accounting software can be confusing. Eliminate the confusion with our customized accounting software solution which can be customized as per your needs. You must have an accounting system that can keep track
of all your financial transactions. An accounting system that provides accurate and timely information can be the difference between success and failure in a business venture.</p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions
</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 4th row -->
<div class="row">
<!-- digital Marketing / Seo -->
<div class="col-sm-4 ">
<div class="card text-center">
<div class="card-body">
<img src="images/servicesicons/digitalmarketing.png" alt="photo " loading="lazy">
<h5 class="card-title">Digital Marketing SEO</h5>
<p class="card-text"> Search Engine do four things - Crawling, building an index,calculating relevancy & rankings.</p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal10">See More</button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal10" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel">Digital Marketing - SEO</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span></button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/digitalmarketing.png" alt="photo" loading="lazy">
</center>
<p class="pt-4 text-center"> Digital Marketing is Our Game : We are a digital marketing agency, helped businesses solve major problems and create a complete content strategy to reaching out to the right crowd. Search Engine Optimization (SEO) :
SEO=> Covert Your Traffic into Customers & Boost Your Sales : Sumptous Solutions offers a complete search engine optimization solution. We have an expert team of SEO who has a year of experience in search engine
optimization. Our expert analyzes your business website niche and creating an effective result-oriented SEO strategy for your business. We optimize your target audience, target your business and increase your visibility
in the search engine. SEO (Search Engine Optimization) is the best marketing solution for your business, this can help your website to gain a large amount of traffic automatically. We know the process of making
or improving a website position in search engine. We make sure your site content is relevant for search engines. it may help the website to gain traffic and the top position in search engines.</p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions
</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- Attendance Management System -->
<div class="col-sm-4">
<div class="card text-center">
<div class="card-body">
<img src="images/servicesicons/attendance.png" alt="photo" loading="lazy">
<h5 class="card-title">Attendance Management System</h5>
<p class="card-text"> Maintenance and the consistent up keeping of the employee's attendance management System.</p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal11">See More</button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal11" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel">Attendance Management System</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span></button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/attendance.png" alt="photo" loading="lazy">
</center>
<p class="pt-4 text-center">Maintenance and the consistent upkeep of the employee's attendance management system is a rigorous task which if handled manually in the organization with a large number of personal will invite rigid and difficult-to-be
detected discrepancies in the system. Why not go digital with Sumptous Solutions, when it is offering the smart software service aligned with active database management systems so that you never lose the record
of your employees and other staffs’ attendance. We also provide the advisory, installation and support services for the biometric and miniature-based tracking system for attendance management and identity recognition.
With a smooth functioning attendance management system, the MIS department of your company will be empowered to gauge and monitor the performance of employees and to plan their prospects in the company. We develop
and deliver the best custom system as per the requirement and the personnel volume of the organization with the widely acclaimed customer and technical support.You can rely on Sumptous Solutions as one such partner.
To understand your business problems and to provide solutions.</p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions
</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- GPS Tracking -->
<div class="col-sm-4">
<div class="card text-center">
<div class="card-body">
<img src="images/servicesicons/gps.png" alt="photo" loading="lazy">
<h5 class="card-title">GPS Tracking</h5>
<p class="card-text">
Sumptous Solutions Pakistan with the Successful record of implementing Security Based & IT Support.</p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal12">See More</button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal12" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel">GPS Tracking</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span></button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/gps.png" alt="photo" loading="lazy"> </center>
<p class="pt-4 text-center">with the successful record of implementing security-based and IT support systems now proudly introduces the Global Positioning System (GPS) based tracking system through the mobile application. Our powerful and dynamic
mobile application will utilize the local telecommunication and signal systems for maximum and active coverage. The application can be installed in the low to high-end smartphones that will respond to the monitoring
system with the required details of all connected cellular units. Mostly, the companies can make most out of it by furnishing this app in the smartphones of its employees to track their movements and their entrance
and exit schedule under effective check. If any employee has the ordinary standard phone then he can be coordinated through a traditional network-based monitoring system and the updates will be maintained with the
central monitoring system. By utilizing this multi-purpose tracking, the clients can check the movement of their workforce during working hours, will know the location of their fieldwork or outstation tasks to ensure
their security, will keep connected and update employees and the company for effective coordination and will be able to better manage the attendance system.
</p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions
</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 5th row -->
<div class="row">
<!-- offShore Development -->
<div class="col-sm-4">
<div class="card text-center">
<div class="card-body">
<img src="images/servicesicons/offshore.png" alt="photo" loading="lazy">
<h5 class="card-title">Offshore Development</h5>
<p class="card-text">
Outsourcing is a rapidly growing practice in this economy because of Companies...</p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal13">See More</button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal13" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel">OffShore Development</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span></button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/offshore.png" alt="photo" loading="lazy"> </center>
<p class="pt-4 text-center">Offshore Development : Guaranteed Quality And Timely Project Delivery: Outsourcing is a rapidly growing practice in this economy because companies are under pressure to meet the deadlines without compromising their
quality standards and internal resources.Outsourcing is most common for companies whose IT needs are well known in advance. IT outsourcing can also mean hiring someone to be your IT department. Such a partner must
have people who can work closely with your staff to understand your unique business problems so that you can deliver, implement, and service unique solutions. We specialize in the outsourcing of business processes
that create value for our clients. Utilizing differences in the time zones across the globe, we have developed an effective project management methodology that enables them to run their business processes round
the clock. We help our clients optimize business processes enhancing agility and flexibility of their operations at substantially lower cost structures/p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- print Media & Branding -->
<div class="col-sm-4 ">
<div class="card text-center ">
<div class="card-body ">
<img src="images/servicesicons/printingmedia.png " alt="photo " loading="lazy">
<h5 class="card-title ">Print Media & Branding</h5>
<p class="card-text ">
Sumptous Solutions is presenting great services of Print Media & Branding</p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal14">See More</button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal14" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel">Print Media & Branding</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span></button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/printingmedia.png" alt="photo" loading="lazy"> </center>
<p class="pt-4 text-center">Sumptous Solutions is presenting great services of Print Media & Branding. We provide our customers with the answers and the best solutions needed to exactly brand and advertise their company’s name on the web plus
in their group of people. Whether you need a full marketing and self campaign for an innovative business, or if you are standing by to take existing commerce to the next level, Relative Print Media & Branding is
sure to deliver results. : So, no issue the size of your commerce, we are ready and energized to assist you to grow and keep the growth of your commerce with personal awareness and world-class creativity. Our Web
Services, Print Design Services, Branding and Identity Services are the best services ever.Worldwide Site Plans, branding for the environmental plan, focuses on branding for small and large design companies. We
focus on designing winning websites; however, our victory is clear on whether your website or Print Media& Branding and content services make income for your company. </p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- sms marketing -->
<div class="col-sm-4 ">
<div class="card text-center ">
<div class="card-body ">
<img src="images/servicesicons/smsmarketing.png " alt="photo" loading="lazy">
<h5 class="card-title ">SMS Marketing</h5>
<p class="card-text ">The Product Marketing trends have been under huge transformation through last decades
</p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal15">See More</button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal15" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel">SMS Marketing</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span></button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/smsmarketing.png" alt="photo" loading="lazy"> </center>
<p class="pt-4 text-center"> SMS Marketing : Corporate/Business/Legit SMS Marketing : The product marketing trends have been under huge transformation through the last decades, but their exploited and exceeded usage by small advertisers and scammers
have compromised the viability and credibility of this critical channel in public opinion. Sumptous Solutions. Pakistan is determined to present the rightful and deserving version of this useful medium of advertising
by framing high-quality standards and codes with its Corporate SMS Marketing Service (CSMS). With Sumptous Solutions CSMS we’ll channelize your product/service prospects and exposure to your potential customers
with authenticated, original and clean SMS content which they will receive by your company’s name for lasting customer impact. With 100% scam free and without any data forgery scheme, we guarantee that the passive
SMS readers of your marketing content will become your company’s permanent advocate forever. For special data retrieval services and other functions, we also welcome subscriptions for special short-code services
for the customized and performance-oriented experience. </p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 6th row -->
<div class="row " >
<!-- software Development -->
<div class="col-sm-4 ">
<div class="card text-center ">
<div class="card-body ">
<img src="images/servicesicons/softwaredevelopment.png " loading="lazy" alt="photo ">
<h5 class="card-title ">Software Development</h5>
<p class="card-text ">
Applications are the glue that holds the organization together</p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal16">See More</button>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="myModal16" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel">Software Development</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span></button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/softwaredevelopment.png" alt="photo" loading="lazy"> </center>
<p class="pt-4 text-center"> Software Development : Business Automation & ERP Solutions : In many organizations, Enterprise Resource Planning (ERP) applications are the Glue that holds the organization together. Moreover, the applications need
to be available and performing optimally or the entire organization is brought to its knees. Sumptous Solutions Applications deliver automated, intelligent monitoring of applications specific parameters and produce
results and performance as per the needs of the organization and ensures smooth functioning. </p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- social media Marketing -->
<div class="col-sm-4 ">
<div class="card text-center ">
<div class="card-body ">
<img src="images/servicesicons/socialmediamarketing.png " loading="lazy" alt="photo ">
<h5 class="card-title ">Social Media Marketing</h5>
<p class="card-text ">
Social media marketing refers to the procedure of fast traffic awareness through social media
</p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal17">See More</button>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="myModal17" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel">Social Media Marketing</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span></button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/socialmediamarketing.png" alt="photo" loading="lazy"> </center>
<p class="pt-4 text-center">Social Media Marketing:Is your business social friendly? : Social media marketing refers to the procedure of fast traffic or awareness through social media sites. Social media itself is a collect-all term for sites
that may offer fundamentally different social actions. For example, Twitter is a social site planned to let people share short post or “updates” with other people. Facebook, in contrast, is a complete social networking
website that let for sharing updates, photograph, joining events and a selection of other activities : Sumptous Solution is a full service social media marketing company that focuses on data-driven genuine social
experiences. An initiate in this field, we’re a tiny, highly focused squad that has built a status on work that cuts through the mess and produces consequences. People constantly ask us, “What is the difference
between a big software company and working with Sumptous Solutions” Our answer is easy: we’re faster than others : We’re skilled in social media marketing and we’re more invested. Our traditions are passion and
exactness. Excitement drives the whole thing. Exactness ensures ending. Yes, it’s disruptive and it’s not relaxed but it’s the cost of great work. Our custom social tactic is to achieve the best return on asset.
Whether you are just getting ongoing or require better results from your battle, our experienced team can assist.
</p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- app store optimization -->
<div class="col-sm-4 ">
<div class="card text-center ">
<div class="card-body ">
<img src="images/servicesicons/appstore.png " alt="photo " loading="lazy">
<h5 class="card-title ">App Store Optimization</h5>
<p class="card-text ">
Sumptous Solutions is the best software company providing with successful AppStore Optimization </p>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal18">See More</button>
</div>
</div>
<!-- Modal -->
<div class="modal" id="myModal18" tabindex="-1" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel">App Store Optimization</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span></button>
</div>
<div class="modal-body bg-dark text-white">
<center> <img src="images/servicesicons/appstore.png" alt="photo" loading="lazy"> </center>
<p class="pt-4 text-center">APP STORE OPTIMIZATION (ASO) : APP STORE OPTIMIZATION SERVICES : Sumptous Solutions is the best software company providing successful App Store Optimization (ASO) Services. We provide the best App Store Optimization
Services to optimize Applications for Google Play Store, iOS, and other Application stores by constantly observing the rules of professional and ethical guidelines : That’s the purpose where ASO becomes so important
to be done completely to avail the chance of increasing customers.
</p>
</div>
<div class="modal-footer">
<center class="ml-auto mr-auto"> <i class=" fa fa-heartbeat fa-1x ml-5 mr-1" style=" color: #F50057;" aria-hidden=" true"></i> Sumptous Solutions</center>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- progress testimonials -->
<section class="container-fluid text-center progresstestimonials">
<div class="row">
<div class="col-md-3 card">
<div class="card-body">
<img src="images/servicesicons/test1.png " alt="test1 " loading="lazy">
<h1 class="pt-3 ">50</h1>
<h4> Project Done </h4>
</div>
</div>
<div class="col-md-3 card ">
<div class="card-body ">
<img src="images/servicesicons/test2.png " alt="test2 " loading="lazy">
<h1 class="pt-3 counter">100</h1>
<h4> Success Rate </h4>
</div>
</div>
<div class="col-md-3 card ">
<div class="card-body ">
<img src="images/servicesicons/test3.png " alt="test3" loading="lazy">
<h1 class="pt-3 counter">13</h1>
<h4>Awards</h4>
</div>
</div>
<div class="col-md-3 card ">
<div class="card-body ">
<img src="images/servicesicons/test4.png " alt="test4" loading="lazy">
<h1 class="pt-3 counter">55</h1>
<h4>Happy Clients</h4>
</div>
</div>
</div>
</section>
</main>
<!-- footer -->
<footer class="page-footer container-fluid f">
<div class="row container-fluid animate__animated fadeIn">
<div class="col-md-4 f1 animate__animated fadeInLeft">
<!-- inner f1 -->
<h3 >About us</h3>
<hr>
<i class=" fa fa-heartbeat fa-5x" style=" color: #F50057; " aria-hidden=" true " onmouseover=" playSound( 'sharp' ) "></i>
<br>
<span>
<p class="p-3">Sumptous Solutions is the Software Development Company in Pakistan having the
specialists
for
creating the compelling and highly interactive websites & Softwares. Using
our
powerful
strategies we have created
some amazing websites & Softwares for our customers and have helped them to
market
their
business properly.</p>
</span>
</div>
<div class="col-md-4 f2 animate__animated fadeInUp" >
<h3>Our Services</h3>
<hr>
<ul>
<li>
<p><i class=" fa fa-check "></i> Graphic Designing</p>
</li>
<li>
<p><i class=" fa fa-check "></i> Logo Designing </p>
</li>
<li>
<p><i class=" fa fa-check "></i> Content Writing </p>
</li>
<li>
<p><i class=" fa fa-check "></i> Website/Software Design</p>
</li>
<li>
<p><i class=" fa fa-check "></i> wordpress Web-Development </p>
</li>
<li>
<p><i class=" fa fa-check "></i> E-commerce Web-Development </p>
</li>
<li>
<p><i class=" fa fa-check "></i> Android/IoS App-Development </p>
</li>
<li>
<p><i class=" fa fa-check "></i> Website/Software Development </p>
</li>
</ul>
</div>
<div class=" col-md-4 f3 animate__animated fadeInRight">
<h3>Contact Details</h3>
<hr>
<p>
Office: A3 Kings Trade Center block-3 Karachi </p>
<p> <b>Timing :</b> Mon-Sat, 10:00am to 6:00pm</p>
<p><b>Email:</b> [email protected]
</p>
<p><b>Phone:</b> +92-335-3150795</p>
<div class="inner_f3_icon"><a href=" "><i class=" fab fa-facebook-f "></i></a>
<a href=" "><i class=" fab fa-linkedin-in " onmouseover=" playSound( 'social' ) "></i></a>
<a href=" "><i class=" fab fa-twitter " onmouseover=" playSound( 'social' ) "></i></a>
<a href=" "><i class=" fab fa-whatsapp " onmouseover=" playSound( 'social' ) "></i></a>
<a href=" "><i class=" fab fa-github " onmouseover=" playSound( 'social' ) "></i></a>
</div>
</div>
</div>
<div class="row">
<div class=" col-md-12 footer_credit animate__animated fadeIn ">
<strong> Copyright © 2020 Sumptous Solutions </strong>
</div>
</div>
</footer>
<!-- Jquery.js -->
<script defer src="css/jquery.slim.min.js"></script>
<!-- popper.js -->
<script defer src="node_modules/@popperjs/core/dist/umd/popper.js"></script>
<!-- bootstrap.js -->
<script defer src="css/bootstrap.min.js"></script>
</body>
</html>