-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
1807 lines (1628 loc) · 109 KB
/
index.php
File metadata and controls
1807 lines (1628 loc) · 109 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- ===============================================-->
<!-- Document Title-->
<!-- ===============================================-->
<title>Maestro Intelligence | Online Test</title>
<!-- ===============================================-->
<!-- Favicons-->
<!-- ===============================================-->
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicons/favicon-16x16.png">
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicons/favicon.ico">
<link rel="manifest" href="assets/img/favicons/manifest.json">
<meta name="msapplication-TileImage" content="assets/img/favicons/mstile-150x150.png">
<meta name="theme-color" content="#ffffff">
<!-- ===============================================-->
<!-- Stylesheets-->
<!-- ===============================================-->
<link href="assets/css/theme.css" rel="stylesheet" />
<link href="assets/css/imagesBackground.css" rel="stylesheet" />
<style>
.dropdown:hover ul.dropdown-menu{ display: block; }
</style>
</head>
<body>
<!-- ===============================================-->
<!-- Main Content-->
<!-- ===============================================-->
<main class="main" id="top">
<nav class="navbar navbar-expand-lg navbar-light fixed-top py-3 d-block" data-navbar-on-scroll="data-navbar-on-scroll">
<div class="container"><a class="navbar-brand" href="index.html">
<img src="assets/img/gallery/Mlogo.png" height="45" alt="logo" />
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"> </span></button>
<div class="collapse navbar-collapse border-top border-lg-0 mt-4 mt-lg-0" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto pt-2 pt-lg-0 font-base">
<li class="nav-item px-2"><a class="nav-link" aria-current="page" href="index.html">Home</a></li>
<li class="nav-item px-2"><a class="nav-link" href="#about">About us</a></li>
<li class="dropdown">
<a class="nav-link" id="industriesDropDown2" data-bs-toggle="dropdown" aria-expanded="true">
industries
</a>
<ul class="dropdown-menu" aria-labelledby="#ndustriesDropDown2">
<li><a class="dropdown-item" href="#ecommerce">E-Commerce</a></li>
<li><a class="dropdown-item" href="#fnb">Finance And Banking</a></li>
<li><a class="dropdown-item" href="#telecom">Telecom</a></li>
<li><a class="dropdown-item" href="#ent">Education And Training</a></li>
<li><a class="dropdown-item" href="#hc">Health Care</a></li>
<li><a class="dropdown-item" href="#tnt">Tours And Travels</a></li>
<li><a class="dropdown-item" href="#cs">Cyber Security</a></li>
<li><a class="dropdown-item" href="#ai">AI</a></li>
</ul>
</li>
<li class="dropdown">
<a class="nav-link" id="industriesDropDown3" data-bs-toggle="dropdown" aria-expanded="true">
Services
</a>
<ul class="dropdown-menu" aria-labelledby="#ndustriesDropDown3">
<li><a class="dropdown-item" href="#salesf">Salesforce</a></li>
<li><a class="dropdown-item" href="#magnto">Magento</a></li>
<li><a class="dropdown-item" href="#laravel">Laravel</a></li>
<li><a class="dropdown-item" href="#dm">Digital Marketing</a></li>
<li><a class="dropdown-item" href="#seo">SEO</a></li>
<li><a class="dropdown-item" href="#st">Software Testing</a></li>
</ul>
</li>
<li class="nav-item px-2"><a class="nav-link" href="#services">Our Services</a></li>
<li class="nav-item px-2"><a class="nav-link" href="#findUs">Find Us</a></li>
</ul>
<div class="dropdown d-none d-lg-block">
<button class="btn bg-soft-warning ms-2" id="dropdownMenuButton1" type="submit" data-bs-toggle="dropdown" aria-expanded="false"><i class="fas fa-search text-warning"></i></button>
<div class="dropdown-menu dropdown-menu-lg-end p-0 rounded" aria-labelledby="dropdownMenuButton1" style="top:55px">
<form>
<input class="form-control border-200" type="search" placeholder="Search" aria-label="Search" style="background:#FDF1DF;" />
</form>
</div>
</div><a class="btn btn-primary order-1 order-lg-0 ms-lg-3" href="#contact">Contact Us</a>
<form class="d-flex my-3 d-block d-lg-none">
<input class="form-control me-2 border-200 bg-light" type="search" placeholder="Search" aria-label="Search" />
<button class="btn btn-outline-primary" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<section class="py-xxl-10 pb-0" id="home">
<div class="bg-holder bg-size" style="background-image:url(assets/img/gallery/hero-header-bg.png);background-position:top center;background-size:cover;">
</div>
<!--/.bg-holder-->
<div class="container">
<div class="row align-items-center">
<div class="col-md-5 col-xl-6 col-xxl-7 order-0 order-md-1 text-end"><img class="pt-7 pt-md-0 w-100" src="assets/img/illustrations/hero.png" alt="hero-header" /></div>
<div class="col-md-75 col-xl-6 col-xxl-5 text-md-start text-center py-8">
<h1 class="fw-normal fs-6 fs-xxl-7">A trusted provider of </h1>
<h1 class="fw-bolder fs-6 fs-xxl-7 mb-2">courier services.</h1>
<p class="fs-1 mb-5">We deliver your products safely to <br />your home in a reasonable time. </p><a class="btn btn-primary me-2" href="#!" role="button">Get started<i class="fas fa-arrow-right ms-2"></i></a>
</div>
</div>
</div>
</section>
<!-- ============================================-->
<!-- <section> begin ============================-->
<section class="py-7" id="about" container-xl="container-xl">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-5 text-center mb-3">
<h5 class="text-danger">About us</h5>
<h3>Welcome to Maestro Intellect</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12 col-lg my-5">
<div class="text-center">
<!-- <img src="assets/img/icons/awards.png" alt="...">
<h1 class="text-primary mt-4">26+</h1> -->
<p class="fs-1 text-900">Maestro Intellect Private Limited is a leading software development company India . we are provides software development support for secure, high-performance, web-based and mobile applications. For start-up / small businesses, as a website development company , we help create web sites from scratch and help them maintain web presence. Our SEO ideas have propelled our clients' sites to top positions in major search engines.</p>
<p class="fs-1 text-900">We have built an enviable reputation in consumer goods, heavy industry, high-tech, manufacturing, medical, recreational vehicle, and transportation sectors.</p>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-9 col-lg-6 text-center mb-3">
<h5 class="text-danger">What We Do</h5>
<h3>Disruptive Design & Breaking The Mold</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-6 col-lg m-4">
<div class="text-center">
<img src="assets/img/gallery/video-bg.jpg" alt="..." style="width: 400px;height:400px">
</div>
</div>
<div class="col-6 col-lg m-4">
<div class="text-left">
<h3>Qualitative Design</h3>
<p class="fs-1 text-900">Disruptive design solutions mark our quest for building cognitive instruments to initiate a positive shift of perception by mining through loopholes, utilizing a unique cluster of ideation and drawing frameworks that work for long-term brand recognition.</p>
<h3>Solving Problems</h3>
<p class="fs-1 text-900">We aim to recognize digital /assets that would help us tackle the everyday challenges of doing business for our patrons. The problem handling task force involves the collaboration of advanced technology and intuitive innovation to drive solid results.</p>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-9 col-lg-6 text-center my-3">
<!-- <h5 class="text-danger">What We Do</h5> -->
<h2>Our Office</h2>
</div>
</div>
<div class="row h-100 justify-content-center">
<div class="col-md-4 pt-4 px-md-2 px-lg-3">
<div class="card h-100 px-lg-5 card-span">
<div class="card-body d-flex flex-column justify-content-around">
<div class="text-center pt-5"><img class="img-fluid" src="assets/img/gallery/nagpur.jpg" alt="..." />
<h5 class="my-4">Nagpur</h5>
</div>
<p>Maestro Intellect Pvt Ltd, Near Landra Park, Shraddha IT Park, 3rd Floor Nagpur, Maharashtra</p>
<div class="text-center my-5">
<div class="d-grid">
<button class="btn btn-outline-danger" type="submit">Get Direction..</button>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 pt-4 px-md-2 px-lg-3">
<div class="card h-100 px-lg-5 card-span">
<div class="card-body d-flex flex-column justify-content-around">
<div class="text-center pt-5"><img class="img-fluid" src="assets/img/gallery/pune.jpg" alt="..." />
<h5 class="my-4">Pune</h5>
</div>
<p>Maestro Intellect Pvt Ltd, Near karve nagar Bus Stop, Above Jijamata Mahila Bank, 3rd floor,karveNagar,pune</p>
<div class="text-center my-5">
<div class="d-grid">
<button class="btn btn-outline-danger" type="submit">Get Direction..</button>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 pt-4 px-md-2 px-lg-3">
<div class="card h-100 px-lg-5 card-span">
<div class="card-body d-flex flex-column justify-content-around">
<div class="text-center pt-5"><img class="img-fluid" src="assets/img/gallery/singapore.jpg" alt="..." />
<h5 class="my-4">Singapore</h5>
</div>
<p>Maestro Intellect Pvt Ltd, Near City Aquare Mall, 180 Kitchener Road, Singapore Contact : +(65) 90410184</p>
<div class="text-center my-5">
<div class="d-grid">
<button class="btn btn-outline-danger" type="submit">Get Direction..</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of .container-->
</section>
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin Ecommers============================-->
<section class="py-7" id="ecommerce" container-xl="container-xl">
<div class="eCommerce" >
<div class="text-center">
<h3 class="text-danger">Industries</h3>
<h5 style="color: #fff;">Industries / SalesForce</h5>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-5 text-center mt-4 mb-3">
<h3>E-Commerce</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12 col-lg my-5">
<div class="text-center">
<p class="fs-1 text-900">Whether your business is about Banking and finance, Insurance, Department Store, media and entertainment, our eCommerce website design team with expertise in latest technologies such as Open-cart, magento, zencart, virtualmart, wordpress, prestashop etc. can create for you custom eCommerce development solutions. Still, one may feel like they don't understand e-commerce at all. What is all the hype about? Why the huge valuations? If you have an e-commerce idea, how might you get started implementing it?</p>
<p class="fs-1 text-900">When it comes to ecommerce websites, or an ecommerce redesign, you need a partner that is focused and experienced in providing companies the best in professional e-Commerce web design solutions. Maestro Intellect understands these challenges of today’s fast paced e-commerce industry in great detail. We understand successful e-commerce today is not merely an orchestration of retailing products online but modelling and e-enabling of a very complex, liaison oriented and rapidly changing business solution, online.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-6 col-lg m-2">
<div class="text-left">
<h3>What We Offer</h3>
<p class="fs-1 text-900">For businesses looking for unparalleled expertise in Ecommerce CMS Development and management, we are one of magento development in bringing superlative know-how and experience on a variety of Ecommerce platforms.</p>
<ul class="list-unstyled">
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span> Website building
</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Secure shopping cart
</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span> Setting up product catalogues
</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Secure payment gateways </li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Marketing tools via Magento, OpenCart</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Building a store that is mobile optimized.</li>
</ul>
<div class="text-center my-5">
<div class="d-grid">
<button class="btn btn-outline-danger" type="submit">Know More</button>
</div>
</div>
</div>
</div>
<div class="col-6 col-lg m-2">
<div class="text-center">
<img src="assets/img/gallery/ecom-info.jpg" alt="..." style="width: 500px;height:500px">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of .container-->
</section>
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin fnb============================-->
<section class="py-7" id="fnb" container-xl="container-xl">
<div class="finance" >
<div class="text-center">
<h3 class="text-danger">Industries</h3>
<h5 style="color: #fff;">Industries / Finance And Banking</h5>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-5 text-center mt-4 mb-3">
<h3>Finance And Banking</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12 col-lg my-5">
<div class="text-center">
<p class="fs-1 text-900">After having seen the unique challenges of each financial industry segment from boardrooms to trenches, our professionals bring their rich experience to our dedicated Financial Services Practices with capital markets, car finance, payments and cards, invoices and insurance. We Develop all kinds of Finance Related software of small and medium size. You can leverage this deep domain expertise.</p>
<p class="fs-1 text-900">When you partner with Maestro Intellect for large, complex engagements, we are with you all the way — from conceptualization to road map creation, to execution to realization and sustenance.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-6 col-lg m-2">
<div class="text-center">
<img src="assets/img/gallery/finance-info.jpg" alt="..." style="width: 100%;height:500px">
</div>
</div>
<div class="col-6 col-lg m-2">
<div class="text-left">
<h3>What We Offer</h3>
<p class="fs-1 text-900">The financial services industry includes firms that are engaged in activities such as investing, lending, insurance, securities trading and securities issuance. This is not an exhaustive list, but these companies can be characterized as being in one or more of the following lines of business.</p>
<p class="fs-1 text-900">We offer softwares for following fields</p>
<ul class="list-unstyled">
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Banking</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Insurance</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Investment Banking and Management</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Securities Brokerage and Trading</li>
</ul>
<div class="text-center m-5 mx-5">
<div class="d-grid">
<button class="btn btn-outline-danger" type="submit">Know More</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of .container-->
</section>
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin telecom============================-->
<section class="py-7" id="telecom" container-xl="container-xl">
<div class="telcom" >
<div class="text-center">
<h3 class="text-danger">Industries</h3>
<h5 style="color: #fff;">Industries / Telecom</h5>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-5 text-center mt-4 mb-3">
<h3>Telecom</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12 col-lg my-5">
<div class="text-center">
<p class="fs-1 text-900">
Companies face a unique set of challenges that stem from technology trends and customer demands. The convergence of applications, networks or content in this new-age information superhighway has become the next path-breaking move in core mass-market technology providing single connectivity and integrated user experience.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-6 col-lg m-2">
<div class="text-left">
<h3>What We Offer</h3>
<p class="fs-1 text-900">In telecom sector there is a division called MVNO(mobile virtual network operator). MVNO is a wireless communications services provider that does not own the wireless network infrastructure over which the MVNO provides services to its customers. An MVNO enters into a business agreement with a mobile network operator to obtain bulk access to network services at wholesale rates, then sets retail prices independently. An MVNO may use its own customer service, billing support systems, marketing and sales personnel.
</p>
<p class="fs-1 text-900">We offer softwares for following industries
</p>
<ul class="list-unstyled">
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Application Development and Maintenance</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Cloud and Infrastructure Services</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Packaged Application Services</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Consulting and Systems integration</li>
</ul>
<div class="text-center m-5 mx-5">
<div class="d-grid">
<button class="btn btn-outline-danger" type="submit">Know More</button>
</div>
</div>
</div>
</div>
<div class="col-6 col-lg m-2">
<div class="text-center">
<img src="assets/img/gallery/tele-info.jpg" alt="..." style="width: 100%;height:500px">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of .container-->
</section>
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin bnf============================-->
<section class="py-7" id="ent" container-xl="container-xl">
<div class="edu" >
<div class="text-center m-auto">
<h3 class="text-danger">Industries</h3>
<h5 style="color: #fff;">Industries / Education And Training</h5>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-5 text-center mt-4 mb-3">
<h3>Education And Training</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12 col-lg my-5">
<div class="text-center">
<p class="fs-1 text-900">The education system recognises the role of education in instilling the values of secularism, egalitarianism, respect for democratic traditions and civil liberties and quest for justice.
</p>
<p class="fs-1 text-900">We are expert in developing all kinds of Educational Sites, Softwares and Mobile Applications.
</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-6 col-lg m-2">
<div class="text-center">
<img src="assets/img/gallery/edu-info.jpg" alt="..." style="width: 100%;height:500px">
</div>
</div>
<div class="col-6 col-lg m-2">
<div class="text-left">
<h3>What We Offer</h3>
<p class="fs-1 text-900">We use our own internal learning, as well as our experience in the business and technology of education to give clients differentiated solutions and services. In addition to delivering technology solutions to support their business, we help clients mitigate the risks of a changing learning environment.
</p>
<ul class="list-unstyled">
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Application Development and Maintenance</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Cloud and Infrastructure Services</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Packaged Application Services</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span> Consulting and Systems integration</li>
</ul>
<div class="text-center m-5 mx-5">
<div class="d-grid">
<button class="btn btn-outline-danger" type="submit">Know More</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of .container-->
</section>
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin hc============================-->
<section class="py-7" id="hc" container-xl="container-xl">
<div class="health" >
<div class="text-center">
<h3 class="text-danger">Industries</h3>
<h5 style="color: #fff;">Industries / Health Care</h5>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-5 text-center mt-4 mb-3">
<h3>Health Care</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12 col-lg my-5">
<div class="text-center">
<p class="fs-1 text-900">The HealthCare industry is undergoing a change with focus firmly on improving the quality of care delivered. There is an increased focus on an integrated healthcare ecosystem with collaboration between various stakeholders.
</p>
<p class="fs-1 text-900">We use our expertise and experience to develop and maintain HealthCare Related Websites, Software and Mobile Applications.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-6 col-lg m-2">
<div class="text-left">
<h3>What We Offer</h3>
<p class="fs-1 text-900">At Maestro Intellect Software, we have the experience, expertise and capabilities to help you innovate and transform your healthcare enterprise. Our full services offering comprise IT services, business process outsourcing, consulting and infrastructure services.
</p>
<p class="fs-1 text-900">We offer softwares for following industries
</p>
<ul class="list-unstyled">
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Legacy system modernization</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span> Remote health monitoring
</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span> Electronic health records and exchanges
</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Healthcare infrastructure management and hosting</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Healthcare analytics and business intelligence</li>
</ul>
<div class="text-center m-5 mx-5">
<div class="d-grid">
<button class="btn btn-outline-danger" type="submit">Know More</button>
</div>
</div>
</div>
</div>
<div class="col-6 col-lg m-2">
<div class="text-center">
<img src="assets/img/gallery/health-info.jpeg" alt="..." style="width: 100%;height:500px">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of .container-->
</section>
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin tnt============================-->
<section class="py-7" id="tnt" container-xl="container-xl">
<div class="tours" >
<div class="text-center m-auto">
<h3 class="text-danger">Industries</h3>
<h5 style="color: #fff;">Industries / Tours And Travels</h5>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-5 text-center mt-4 mb-3">
<h3>Tours And Travels</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12 col-lg my-5">
<div class="text-center">
<p class="fs-1 text-900">We understand the tough competition and challenges that the Hospitality industry players face today. Our exposure spans across entire Hotel operations, Guest management, In-room technology, Electronic distribution, Table management, Scheduling, and End-to-end application development and integrations in mobile, web, and enterprise applications.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-6 col-lg m-2">
<div class="text-center">
<img src="assets/img/gallery/tours-info.jpg" alt="..." style="width: 100%;height:500px">
</div>
</div>
<div class="col-6 col-lg m-2">
<div class="text-left">
<h3>What We Offer</h3>
<p class="fs-1 text-900">The travel industry, today, certainly qualifies as one of the most complex and fast-paced industry, driving many pioneering technology solutions. Perpetual in-depth expertise in the Travel domain helps you to address the end-to-end complex IT needs for OTA, TMCs, Resellers, Car Rentals, Rail, Airlines, and GDS/Switch technologies. We are focused on providing technology solutions with the highest level of usability and adaptation to change.</p>
<ul class="list-unstyled">
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Application Development and Maintenance</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span> Business Intelligence and Analytics
</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Revenue Management System</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Personal Ordering Systems</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Digital strategy</li>
</ul>
<div class="text-center m-5 mx-5">
<div class="d-grid">
<button class="btn btn-outline-danger" type="submit">Know More</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of .container-->
</section>
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin cs============================-->
<section class="py-7" id="cs" container-xl="container-xl">
<div class="cyber" >
<div class="text-center m-auto">
<h3 class="text-danger">Industries</h3>
<h5 style="color: #FFF;">Industries / Cyber Security</h5>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-5 text-center mt-4 mb-3">
<h3>Cyber Security</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12 col-lg my-5">
<div class="text-center">
<p class="fs-1 text-900">According to CISO ET sources, there has been a rise of 200 per cent in cyber related threats in India in the last few months. Government bodies has issued a warning against large-scale phishing attacks using COVID-19 as their base bait. India's cybersecurity Nodal agency, CERT-In has issued an advisory warning that the potential phishing attacks could impersonate government establishments, departments and government trade bodies that have been tasked to oversee disbursement of the fiscal aid.</p>
<p class="fs-1 text-900">In the current pandemic situation, Cyber Security has become a new rising threat for the organizations to not only protect their company's networks and data, but also their valuable customers’ data. The most popular cyber threats have been Data Breach, Ransomeware, Hacking, Phishing, DDoS</p>
<p class="fs-1 text-900">Due to these threats, the organisations have to bear heavy costs for retrieving the data breached and hacked. Many a times the Organisations loses their potential customer base and has a major impact on their reputation. Due to the current COVID-19 situation the company’s are already dealing with the ups and downs in the market, but if not prepared for the major Cyber Attacks, the business could conceive big losses financially and by loosing a major part of the targeted audience.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-6 col-lg m-2">
<div class="text-left">
<h3>What We Offer</h3>
<p class="fs-1 text-900">Our company has developed an application which is not only the parameter protection for hacking but also has Zero-day flaws in it with a strong sense and feel of premium infrastructure. In order to save your company from the cyber threats, below are the Cyber Security considerations that best fits your company’s needs to be safe at this time of terrible pandemic:</p>
<ul class="list-unstyled">
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Does any of your product caters sensitive data?</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Does your reputed company gather the customers data and provides service accordingly?</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Does your company uses high risk COTs/Third party software solutions?</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Would you prefer implementing SSDLC?</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Would you rather prefer to save money and the effort to hire an expensive cyber expert?</li>
</ul>
<div class="text-center m-5 mx-5">
<div class="d-grid">
<button class="btn btn-outline-danger" type="submit">Know More</button>
</div>
</div>
</div>
</div>
<div class="col-6 col-lg m-2">
<div class="text-center">
<img src="assets/img/gallery/cyber-info1.jpg" alt="..." style="width: 100%;height:500px">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of .container-->
</section>
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin bnf============================-->
<section class="py-7" id="ai" container-xl="container-xl">
<div class="ai" >
<div class="text-center m-auto">
<h3 class="text-danger">Industries</h3>
<h5 style="color: #fff;">Industries / Artificial Intelligence</h5>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-5 text-center mt-4 mb-3">
<h3>Artificial Intelligence</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12 col-lg my-5">
<div class="text-center">
<p class="fs-1 text-900">Our company offers Artificial Intelligence (AI) app development services by assisting startups and entrepreneurs to incorporate AI in their existing systems and earning more profits to their business. As a top Artificial Intelligence development company in pune, we offer AI services and solutions to a wide range of industries having many happy clients all over the world. Our expert AI app development team uses advanced tools and technologies like NumPy, PHP, Python, CNTK, spaCy, TensorFlow, Spark, etc. to integrate AI into your app.</p>
<p class="fs-1 text-900">We have a highly experienced team of technology consultants developing AI platforms that easily integrates with today’s technology to give competitive results in the future. Our services include Machine Learning, Predictive Analytics, RPA, etc. Being the best Artificial Intelligence development company in pune, we develop the tools, integrate all the services, and step-up systems to assist you in having a smarter business within less time.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-6 col-lg m-2">
<div class="text-center">
<img src="assets/img/gallery/ai-info.jpg" alt="..." style="width: 100%;height:750px">
</div>
</div>
<div class="col-6 col-lg m-2">
<div class="text-left">
<h3>What We Offer</h3>
<h4>AI Consulting Services</h4>
<p class="fs-1 text-900"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>As a top Artificial Intelligence app development company in pune, we ensure to offer high quality AI solutions using sophisticated technologies creating a competitive advantage.</p>
<h4>Machine Learning</h4>
<p class="fs-1 text-900"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Machine Learning Machine Learning technology functions similar to humans as it can learn without being programmed. We assist the software in identifying patterns from a large proportion of operational data through Machine Learning (ML). As a leading AI app development company in pune, we offer machine learning solutions to assist your information systems in predicting the result on its own with advanced learning algorithms.</p>
<h4>Deep Learning</h4>
<p class="fs-1 text-900"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Deep Learning technology follows certain patterns and functions of the human brain to give proper outcomes that are much more effective than the performance of humans. It offers Machine Learning (ML) algorithms to have a high level of features from the given inputs. By using Deep Learning, you can develop frameworks for cognitive business technology that think exactly similar to humans.</p>
<div class="text-center m-5 mx-5">
<div class="d-grid">
<button class="btn btn-outline-danger" type="submit">Know More</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of .container-->
</section>
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin salesf============================-->
<section class="py-7" id="salesf" container-xl="container-xl">
<div class="salseForce" >
<div class="text-center">
<h3 class="text-danger">Services</h3>
<h5 style="color: #fff;">Services / SalesForce</h5>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-5 text-center mt-4 mb-3">
<h3>SalesForce</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12 col-lg my-5">
<div class="text-center">
<p class="fs-1 text-900">Sales force® is a cloud-based enterprise platform by Salesforce.com, Inc., a global cloud computing company that provides easy to use Sales force business applications that help you create relevant customer experiences by staying connected with customers, prospects, partners, sales, and market services globally.</p>
<p class="fs-1 text-900">Sales force has multiple different cloud platforms - a service cloud, marketing cloud, health cloud, app cloud, community cloud, analytics cloud, IoTs cloud, Chatter cloud, commerce cloud, Heroku engagement cloud and more.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-6 col-lg m-2">
<div class="text-left">
<h3>What We Offer</h3>
<h4>Sales Cloud</h4>
<p class="fs-1 text-900">
<span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>
It is the cloud storage for all your data. Sales Cloud salesforce service helps to accommodate all the data in one place that is cloud so that user can access that data from anywhere and from any device.
</p>
<h4>Service Cloud</h4>
<p class="fs-1 text-900">
<span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>
This is a new way to provide support to your clients and provide service too. We can use this to provide case management to call center or even a self-service community; we can do this on social media also.</p>
<h4>Mobile Connectivity</h4>
<p class="fs-1 text-900">
<span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Salesforce provides you with a feature to connect your mobile phones with your other devices which mean a user can stay connected to his mobile phone too.</p>
<h4>Chatter</h4>
<p class="fs-1 text-900">
<span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>
Chatter creates by Salesforce which acts as a social media network. It is a place where collaborate instantly in context.</p>
<div class="text-center m-5 mx-5">
<div class="d-grid">
<button class="btn btn-outline-danger" type="submit">Know More</button>
</div>
</div>
</div>
</div>
<div class="col-6 col-lg m-2">
<div class="text-center">
<img src="assets/img/gallery/salesforce-info.jpg" alt="..." style="width: 100%;height:500px">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of .container-->
</section>
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin magnto============================-->
<section class="py-7" id="magnto" container-xl="container-xl">
<div class="magento" >
<div class="text-center m-auto">
<h3 class="text-black">Services</h3>
<h5 style="color: white;">Services / Magento</h5>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-5 text-center mt-4 mb-3">
<h3>Magento</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12 col-lg my-5">
<div class="text-center">
<p class="fs-1 text-900">Magento is a feature-rich, professional open-source eCommerce solution that offers merchants complete flexibility and control over the look, content, and functionality of their online store. Magento's intuitive administration interface contains powerful marketing, merchandising and content management tools to give merchants the power to create sites that are tailored to their unique business needs.</p>
<p class="fs-1 text-900">Completely scalable and backed by an extensive support network, Magento offers companies the ultimate eCommerce solution. Quad One has Certified Magento Developers working with Enterprise and Community editions of Magento, building world-class ecommerce websites doing hundreds of thousands of dollars of business.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-6 col-lg m-2">
<div class="text-center">
<img src="assets/img/gallery/laravel-info.jpg" alt="..." style="width: 100%;height:500px">
</div>
</div>
<div class="col-6 col-lg m-2">
<div class="text-left">
<h3>What We Offer</h3>
<ul class="list-unstyled">
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Magento Customization</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Magento Themes Design</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Magento Themes Development and Integration</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Magento Module Installation</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Custom Landing Page Design</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Online Store Development using Magento Open source platform</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Shopping Cart</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Payment Gateway Integration</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Magento eCommerce with Search Engine Optimization</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Magento Template Design and Integration</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Magento Extensions development</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Integrating Magento with Third party applications like SAP, POS, Navision, Netsuite etc.</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Hire Magento Developer/Hire Magento Programmer</li>
<li class="mb-2"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Magento speed optimization</li>
</ul>
<div class="text-center m-5 mx-5">
<div class="d-grid">
<button class="btn btn-outline-danger" type="submit">Know More</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of .container-->
</section>
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin laravel============================-->
<section class="py-7" id="laravel" container-xl="container-xl">
<div class="laravel" >
<div class="text-center m-auto">
<h3 class="text-black">Services</h3>
<h5 style="color:gray;">Services / Laravel</h5>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-5 text-center mt-4 mb-3">
<h3>Laravel</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12 col-lg my-5">
<div class="text-center">
<p class="fs-1 text-900">PHP, as a scripting language has been very popular due to its simplicity, speed and scalability. There are a number of PHP frameworks that help make this language easier to adopt and among the most popular of these is Laravel- widely adopted due to its simple and elegant syntax that eases the development process and simplifies routing, authentication, caching through built in templates, libraries and MVC architecture. Laravel is considered one of the best PHP-based web app development framework. It offers developers a powerful development environment and an MVC architectural pattern, making it unique among other platforms.</p>
<p class="fs-1 text-900">Laravel web and app development works well for creating high-quality websites and web applications. It has become the favorite tool for developers, thanks to its stress-free programming, customizable integration, and modular coding structure.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-6 col-lg m-2">
<div class="text-left">
<h3>What We Offer</h3>
<h4>Experienced Laravel Developers</h4>
<p class="fs-1 text-900"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>We have a team of skilled and experienced Laravel developers with vast knowledge about Laravel PHP framework development.</p>
<h4>Creative Development Approach</h4>
<p class="fs-1 text-900"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>We use a creative development approach for improving design that allows easy management and maintenance of apps.</p>
<h4>Competitive Pricing</h4>
<p class="fs-1 text-900"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>We offer one of the best quality development services at very competitive prices that helps meet the budgets of our clients.</p>
<h4>Delivery on Time</h4>
<p class="fs-1 text-900"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>We understand the importance of finishing and deploying projects on time and promise quick turnaround times.</p>
<h4>Customized Service</h4>
<p class="fs-1 text-900"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>Our web and app solutions are customized for each client according to their needs to ensure the best utilization of resources.</p>
<h4>3rd Party Integration</h4>
<p class="fs-1 text-900"><span class="me-2"><i class="fas fa-circle text-primary" style="font-size:.5rem"></i></span>We offer clean, simplified coding that allows the integration of 3 rd party applications with our client’s existing digital assets.</p>
<div class="text-center m-5 mx-5">
<div class="d-grid">
<button class="btn btn-outline-danger" type="submit">Know More</button>
</div>
</div>
</div>
</div>
<div class="col-6 col-lg m-2">
<div class="text-center">
<img src="assets/img/gallery/laravel-info.jpg" alt="..." style="width: 100%;height:500px">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of .container-->
</section>
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin dm============================-->
<section class="py-7" id="dm" container-xl="container-xl">
<div class="digitalMarketing" >
<div class="text-center m-auto">
<h3 class="text-danger">Services</h3>
<h5 style="color: gray;">Services / Digital Marketing</h5>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-5 text-center mt-4 mb-3">
<h3>Digital Marketing</h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12 col-lg my-5">
<div class="text-center">
<p class="fs-1 text-900">At a high level, digital marketing refers to advertising delivered through digital channels such as search engines, websites, social media, email, and mobile apps. Using these online media channels, digital marketing is the method by which companies endorse goods, services, and brands. Consumers heavily rely on digital means to research products. For example, Think with Google marketing insights found that 48% of consumers start their inquiries on search engines, while 33% look to brand websites and 26% search within mobile applications.</p>