-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
930 lines (805 loc) · 53.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
<!DOCTYPE html>
<html lang="en">
<!-- Test message-->
<head>
<meta charset="UTF-8" />
<meta content="width=device-width,initial-scale=1.0,maximum-scale=1.0" name="viewport">
<!-- Open Graph -->
<meta property="og:title" content="MAQ Software | Microsoft Fabric Featured Partner" />
<meta property="og:type" content="website" />
<meta property="og:image" content="/images/expertise/ai-main" />
<meta property="og:description"
content="With expertise in Microsoft Fabric, data science, data management, cloud migration, and business apps, MAQ Software accelerates business intelligence and analytics initiatives for large enterprises." />
<!-- Twitter Theme -->
<meta name="twitter:widgets:theme" content="light">
<!-- Title & Favicon -->
<title>MAQ Software | Microsoft Fabric Featured Partner</title>
<link rel="shortcut icon" type="image/x-icon" href="/images/logos/MAQ-Software-URL.png">
<!-- Font -->
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700%7CHind+Madurai:400,500&subset=latin-ext"
rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<!-- Css -->
<link rel="stylesheet" href="https://unpkg.com/@fluentui/font-icons-mdl2@1.0.2/dist/fluentui-icons-mdl2.css">
<link rel="stylesheet"
href="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-core/11.0.0/css/fabric.min.css" />
<link rel="stylesheet" href="css/core.min.css" />
<link rel="stylesheet" href="css/skin.css" />
<link rel="stylesheet" href="css/commonstyle.css" />
<!-- <link rel="stylesheet" href="css/reset.css" /> -->
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--[if lt IE 9]>
<script type="text/javascript" src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-S0W302CGQG"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-S0W302CGQG');
</script>
<!--Microsoft Clarity -->
<script type="text/javascript">
(function (c, l, a, r, i, t, y) {
c[a] = c[a] || function () { (c[a].q = c[a].q || []).push(arguments) };
t = l.createElement(r); t.async = 1; t.src = "https://www.clarity.ms/tag/" + i;
y = l.getElementsByTagName(r)[0]; y.parentNode.insertBefore(t, y);
})(window, document, "clarity", "script", "oekduyvjws");
</script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="js\home.js"></script>
<meta name="description"
content="With expertise in Power BI, data science, data management, cloud migration, and business apps, MAQ Software accelerates business intelligence and analytics initiatives for large enterprises.">
<meta name="keywords"
content="Power BI, Power BI experts, Power BI Partner of the Year, Power BI Partner of the Year 2021, Microsoft Partner, Microsoft Partner Seattle, Microsoft Partner Redmond, Power BI Partner, Microsoft Gold Partner, Power BI solutions, Power BI optimization, Power BI report optimization, data science, Data Science solutions, data management, Data management solutions, cloud migration, Azure migration, cloud solutions, cloud migration solutions, business apps, app development, business apps solutions, Inc. 5000 companies in Seattle, Inc. 5000 companies in Redmond, Microsoft Power Platform workshops, Microsoft solutions, Microsoft platform solutions">
</head>
<body>
<!-- Header -->
<header id="header" class="header header-absolute header-fixed-on-mobile header-transparent" data-bkg-threshold="100"
data-sticky-threshold="0"></header>
<!-- Header End -->
<div class="wrapper reveal-side-navigation">
<div class="wrapper-inner">
<!-- Top Nav -->
<!-- <nav class="navbar">
<a href="index.html">
<img src="images/logos/MAQ-Software-Logo.svg" alt="Logo" class="logo-image">
</a>
<ul class="navbar-inner">
<li class="body-text no-dropdown"><a href="/services/data-management.html">Services</a></li>
<li class="body-text no-dropdown"><a href="#link2">Products</a></li>
<li class="body-text no-dropdown"><a href="case-studies.html">Case Studies</a></li>
<li class="body-text dropdown">
<a href="#link4">About Us
</a>
<ul class="dropdown-content">
<li><a href="#">Who We Are</a></li>
<li><a href="#">News</a></li>
<li><a href="#">Social Impact</a></li>
<li><a href="#">Sustainability</a></li>
</ul>
</li>
<li class="body-text no-dropdown"><a href="careers.html">Careers</a></li>
<li class="body-text no-dropdown"><a href="contact.html">Contact</a></li>
</ul>
</nav> -->
<!-- Top Nav end -->
<!-- Hero section -->
<div class="section-block-padding-sm hero-section centered-section lg-section-block-padding-hero">
<div class="flex-col-2 max-section-size">
<div class="hero-item-1">
<h1 class="display-large">
Simplify your data journey and accelerate delivery
</h1>
<p class="card-title-normal">
Unlock the full potential of your data with our Microsoft Fabric solutions.
</p>
</div>
<div class="hero-item-2 mb-accordion-img">
<!-- <a href="\contact.html"
class="btn-primary btn-text">Contact us
</a> -->
</div>
</div>
</div>
<!-- Hero section end -->
<!-- Services We Provide section -->
<div class="section-block-padding-sm services-section centered-section">
<div class="section-heading-container max-section-size">
<h1 class="display-medium">Services we provide</h1>
</div>
<div class="services-flex-grid max-section-size mb-grid-service">
<a class="card-link" href="/services/artificial-intelligence-and-machine-learning.html">
<div class="card-item mb-service-card">
<div class="icon-container-card">
<span class="fluent--brain-circuit-24-regular service-icon-size"></span>
</div>
<!-- <img src="images-new/Icons/services-icon-2.png" alt="Logo" class="icon-container-card"> -->
<p class="card-title">Gen AI & machine learning</p>
<p class="body-text">Harness the power of artificial intelligence and machine learning to automate processes
and uncover hidden patterns.</p>
<a href="/services/artificial-intelligence-and-machine-learning.html"
class="learn-more-link body-bold">Learn more <span class="chevron">></span></a>
</div>
</a>
<a class="card-link" href="/services/data-and-analytics.html">
<div class="card-item mb-service-card">
<div class="icon-container-card">
<span class="fluent--data-histogram-24-regular service-icon-size"></span>
</div>
<!-- <img src="images-new/Icons/services-icon-1.png" alt="Logo" class="icon-container-card"> -->
<p class="card-title">Data & analytics</p>
<p class="body-text">Drive growth through data-driven insights and powerful analytics.</p>
<a href="/services/data-and-analytics.html" class="learn-more-link body-bold">Learn more <span
class="chevron">></span></a>
</div>
</a>
<a class="card-link" href="/services/reporting-and-visualization.html">
<div class="card-item mb-service-card">
<div class="icon-container-card">
<span class="fluent--data-usage-edit-24-regular service-icon-size"></span>
</div>
<!-- <img src="images-new/Icons/services-icon-5.png" alt="Logo" class="icon-container-card"> -->
<p class="card-title">Reporting & visualization</p>
<p class="body-text">Visualize your data with intuitive reports and dashboards that provide clarity and
insight at a glance.</p>
<a href="/services/reporting-and-visualization.html" class="learn-more-link body-bold">Learn more <span
class="chevron">></span></a>
</div>
</a>
<a class="card-link" href="/services/application-modernization.html">
<div class="card-item mb-service-card">
<div class="icon-container-card">
<span class="fluent--window-arrow-up-24-regular service-icon-size"></span>
</div>
<!-- <img src="images-new/Icons/services-icon-6.png" alt="Logo" class="icon-container-card"> -->
<p class="card-title">Application modernization</p>
<p class="body-text">Update legacy systems with modern, scalable applications that enhance performance and
user experience.</p>
<a href="/services/application-modernization.html" class="learn-more-link body-bold">Learn more <span
class="chevron">></span></a>
</div>
</a>
<a class="card-link" href="/services/cloud.html">
<div class="card-item mb-service-card">
<div class="icon-container-card">
<span class="fluent--cloud-database-20-regular service-icon-size"></span>
</div>
<!-- <img src="images-new/Icons/services-icon-4.png" alt="Logo" class="icon-container-card"> -->
<p class="card-title">Cloud optimization</p>
<p class="body-text">Adopt technologies for flexible, scalable, and cost-effective IT solutions that grow
with your business.</p>
<a href="/services/cloud.html" class="learn-more-link body-bold">Learn more <span
class="chevron">></span></a>
</div>
</a>
<a class="card-link" href="services/security.html">
<div class="card-item mb-service-card">
<div class="icon-container-card">
<span class="fluent--lock-shield-24-regular service-icon-size"></span>
</div>
<!-- <img src="images-new/Icons/services-icon-3.png" alt="Logo" class="icon-container-card"> -->
<p class="card-title">Security</p>
<p class="body-text">Fortify your business with advanced security solutions that protect data, systems, and
users from evolving threats.</p>
<a href="services/security.html" class="learn-more-link body-bold">Learn more <span
class="chevron">></span></a>
</div>
</a>
</div>
</div>
<!-- Services We Provide end-->
<!-- Explore Our Products section -->
<div class="section-block-padding-sm explore-our-products-section centered-section">
<div class="section-heading-container max-section-size">
<h1 class="display-medium">Explore our products</h1>
<p class="section-subheading">Solutions designed to improve and streamline your operations</p>
</div>
<div class="products-flex-grid max-section-size mb-grid-product">
<a class="card-link" href="embedFAST.html">
<div class="card-item mb-product-card">
<div class="icon-container-card">
<span class="fluent--clipboard-code-24-regular service-icon-size"></span>
</div>
<!-- <img src="images-new\Icons\products-icon-1.png" alt="Logo" class="icon-container-card"> -->
<p class="card-title">EmbedFAST</p>
<p class="body-text">Effortlessly embed Power BI into your apps without the complexity of writing your own
code.</p>
<a href="embedFAST.html" class="learn-more-link body-bold">Learn more <span class="chevron">></span></a>
</div>
</a>
<a class="card-link" href="certyFAST.html">
<div class="card-item mb-product-card">
<div class="icon-container-card">
<span class="fluent--document-table-checkmark-24-regular service-icon-size"></span>
</div>
<!-- <img src="images-new\Icons\products-icon-3.png" alt="Logo" class="icon-container-card"> -->
<p class="card-title">CertyFAST</p>
<p class="body-text">Streamline Power BI model development with automated error detection, documentation,
and DAX measure formatting. </p>
<a href="certyFAST.html" class="learn-more-link body-bold">Learn more <span class="chevron">></span></a>
</div>
</a>
<a class="card-link" href="loadFAST.html">
<div class="card-item mb-product-card">
<div class="icon-container-card">
<span class="fluent--clock-arrow-download-24-regular service-icon-size"></span>
</div>
<!-- <img src="images-new\Icons\products-icon-2.png" alt="Logo" class="icon-container-card"> -->
<p class="card-title">LoadFAST</p>
<p class="body-text">Identify performance bottlenecks in your Power BI reports and optimize the capacity
setup for your infrastructure. </p>
<a href="loadFAST.html" class="learn-more-link body-bold">Learn more <span class="chevron">></span></a>
</div>
</a>
<div class="card-item mb-product-card">
<div class="icon-container-card">
<span class="fluent--database-search-24-regular service-icon-size"></span>
</div>
<!-- <img src="images-new\Icons\products-icon-1.png" alt="Logo" class="icon-container-card"> -->
<p class="card-title">AI-Data Lens</p>
<p class="body-text">Unlock data-driven insights with AI-powered conversational analytics.</p>
<p class="learn-more-link-inactive body-bold">Coming soon</p>
</div>
<!-- <div class="card-item">
<div class="icon-container-card">
<span class="fluent--arrow-trending-lines-24-regular service-icon-size"></span>
</div>
<p class="card-title">MigrateFAST</p>
<p class="body-text">Transition to Power BI effortlessly with our AI-powered toolkit, automating migration tasks for accuracy and speed. </p>
<a href="#" class="learn-more-link body-bold">Page coming soon<span class="chevron">></span></a>
</div> -->
</div>
</div>
<!-- Explore Our Products section end -->
<!-- Mobile Customer Stories-->
<div class="section-block-padding-sm centered-section hidden-section mb-show">
<div class="section-heading-container max-section-size">
<h1 class="display-medium">Case Studies</h1>
<p class="section-subheading">Learn how we’ve helped our clients achieve their goals</p>
</div>
<div class="products-flex-grid max-section-size mb-grid-case-study">
<a class="card-link" href="https://blog.maqsoftware.com/2024/05/enabling-real-time-visibility-how.html">
<div class="card-item mb-case-study-card">
<div class="img-container">
<img src="../images-new/case-studies/application-modernization/CS076-banner.jpg"
alt="Image of a computer and a coffee mug" class="services-case-study-img">
</div>
<p class="card-title-small">Enabling real-time visibility: How a retail leader transformed Direct Store
Delivery with Microsoft Fabric</p>
<a href="https://blog.maqsoftware.com/2024/05/enabling-real-time-visibility-how.html"
class="learn-more-link body-bold large-link">Learn more <span class="chevron">></span></a>
</div>
</a>
<a class="card-link" href="https://blog.maqsoftware.com/2024/03/maximizing-power-of-dynamics-365-user.html">
<div class="card-item mb-case-study-card">
<div class="img-container">
<img src="../images-new/case-studies/application-modernization/CS075-banner.jpg"
alt="Image of a closeup of a woman shopping for groceries" class="services-case-study-img">
</div>
<p class="card-title-small">Maximizing the power of Dynamics 365: User interface & user experience
redesigned</p>
<a href="https://blog.maqsoftware.com/2024/03/maximizing-power-of-dynamics-365-user.html"
class="learn-more-link body-bold large-link">Learn more <span class="chevron">></span></a>
</div>
</a>
<a class="card-link" href="https://blog.maqsoftware.com/2020/10/dynamic-checklist-dynamics-365.html">
<div class="card-item mb-case-study-card">
<div class="img-container">
<img src="../images-new/case-studies/application-modernization/CS034-MainRev2.jpg"
alt="Image of a man pointing to a laptop screen depicting a chart" class="services-case-study-img">
</div>
<p class="card-title-small">Complete Tasks Faster with a Custom Dynamic Checklist in Dynamics 365</p>
<a href="https://blog.maqsoftware.com/2020/10/dynamic-checklist-dynamics-365.html"
class="learn-more-link body-bold large-link">Learn more <span class="chevron">></span></a>
</div>
</a>
<a class="card-link" href="https://blog.maqsoftware.com/2019/06/case-study-data-validation-framework.html">
<div class="card-item mb-case-study-card">
<div class="img-container">
<img src="../images-new/case-studies/application-modernization/Data Validation Framework main.jpg"
alt="Image of a person pointing to a tablet screen showing a chart" class="services-case-study-img">
</div>
<p class="card-title-small">Data Validation Framework Reduces Support Tickets</p>
<a href="https://blog.maqsoftware.com/2019/06/case-study-data-validation-framework.html"
class="learn-more-link body-bold large-link">Learn more <span class="chevron">></span></a>
</div>
</a>
</div>
</div>
<!-- Customer Stories -->
<div class="section-block-padding-sm home-case-studies centered-section mb-hide-img">
<div class="max-section-size-carousel">
<div class="section-heading-container max-section-size">
<h1 class="display-medium">Case Studies</h1>
<p class="section-subheading">Learn how we’ve helped our clients achieve their goals</p>
</div>
<div class="customer-stories-carousel-container max-accordion-size">
<div class="customer-stories-carousel" id="customer-stories-carousel">
<!-- Card 1 -->
<a class="card-link" href="https://blog.maqsoftware.com/2024/02/improving-lead-management-and-campaign.html">
<div class="customer-stories-card">
<div class="card-item-front" id="card1" onmouseover="showText('text1')" onmouseout="hideText('text1')">
<div class="img-container">
<img src="images-new\case-studies\customer-stories-1.png" alt="Image of a computer and a coffee mug"
class="services-case-study-img">
</div>
<p class="card-title-small">Improving lead management and campaign optimization with Microsoft
technologies</p>
<a href="https://blog.maqsoftware.com/2024/02/improving-lead-management-and-campaign.html"
class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
<!--
<div class="overlay">
<div class="overlay-text" id="text1">
<p class="card-title-small">Improving lead management and campaign optimization with Microsoft technologies</p>
<p class="body-text">Preview description of the case study lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="#" class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
</div> -->
</div>
</a>
<!-- Card 2 -->
<a class="card-link" href="https://blog.maqsoftware.com/2022/06/real-time-reporting-for-organic.html">
<div class="customer-stories-card">
<div class="card-item-front" id="card2" onmouseover="showText('text2')" onmouseout="hideText('text2')">
<div class="img-container">
<img src="images-new\case-studies\customer-stories-2.png" alt="Image of a computer and a coffee mug"
class="services-case-study-img">
</div>
<p class="card-title-small">Real-time reporting for an organic supermarket chain</p>
<a href="https://blog.maqsoftware.com/2022/06/real-time-reporting-for-organic.html"
class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
<!-- <div class="overlay">
<div class="overlay-text" id="text2">
<p class="card-title-small">Real-time reporting for an organic supermarket chain</p>
<p class="body-text">Preview description of the case study lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="#" class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
</div> -->
</div>
</a>
<!-- Card 3 -->
<a class="card-link" href="https://blog.maqsoftware.com/2022/07/improving-insights-and-reducing-costs.html">
<div class="customer-stories-card">
<div class="card-item-front" id="card3" onmouseover="showText('text3')" onmouseout="hideText('text3')">
<div class="img-container">
<img src="images-new\case-studies\customer-stories-3.png" alt="Image of a computer and a coffee mug"
class="services-case-study-img">
</div>
<p class="card-title-small">Improving insights and reducing costs through unified reporting</p>
<a href="https://blog.maqsoftware.com/2022/07/improving-insights-and-reducing-costs.html"
class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
<!--
<div class="overlay">
<div class="overlay-text" id="text3">
<p class="card-title-small">Improving insights and reducing costs through unified reporting</p>
<p class="body-text">Preview description of the case study lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="#" class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
</div> -->
</div>
</a>
<!-- Card 4 -->
<a class="card-link" href="https://blog.maqsoftware.com/2022/06/enhancing-fintech-analytics-to-provide.html">
<div class="customer-stories-card">
<div class="card-item-front" id="card4" onmouseover="showText('text4')" onmouseout="hideText('text4')">
<div class="img-container">
<img src="images-new\case-studies\customer-stories-4.png" alt="Image of a computer and a coffee mug"
class="services-case-study-img">
</div>
<p class="card-title-small">Enhancing fintech analytics to provide millions of borrowers with better
loan options</p>
<a href="https://blog.maqsoftware.com/2022/06/enhancing-fintech-analytics-to-provide.html"
class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
<!-- <div class="overlay">
<div class="overlay-text" id="text4">
<p class="card-title-small">Enhancing fintech analytics to provide millions of borrowers with better loan options</p>
<p class="body-text">Preview description of the case study lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="#" class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
</div> -->
</div>
</a>
<!-- Card 5 -->
<a class="card-link" href="https://blog.maqsoftware.com/2024/08/modernizing-reporting-platforms-through.html">
<div class="customer-stories-card">
<div class="card-item-front" id="card5" onmouseover="showText('text5')" onmouseout="hideText('text5')">
<div class="img-container">
<img src="images-new\case-studies\CS083-banner.jpg" alt="Image of a computer and a coffee mug"
class="services-case-study-img">
</div>
<p class="card-title-small">Modernizing reporting platforms through AI-driven SQL Migration</p>
<a href="https://blog.maqsoftware.com/2024/08/modernizing-reporting-platforms-through.html"
class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
<!-- <div class="overlay">
<div class="overlay-text" id="text5">
<p class="card-title-small">Heading 5</p>
<p class="body-text">Preview description of the case study lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="#" class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
</div> -->
</div>
</a>
<!-- Card 6 -->
<a class="card-link" href="https://blog.maqsoftware.com/2024/08/unifying-data-management-with.html">
<div class="customer-stories-card">
<div class="card-item-front" id="card6" onmouseover="showText('text6')" onmouseout="hideText('text6')">
<div class="img-container">
<img src="images-new\case-studies\CS082-banner.png" alt="Image of a computer and a coffee mug"
class="services-case-study-img">
</div>
<p class="card-title-small">Unifying data management with a centralized framework</p>
<a href="https://blog.maqsoftware.com/2024/08/unifying-data-management-with.html"
class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
<!-- <div class="overlay">
<div class="overlay-text" id="text6">
<p class="card-title-small">Heading 6</p>
<p class="body-text">Preview description of the case study lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="#" class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
</div> -->
</div>
</a>
<!-- Card 7 -->
<a class="card-link" href="https://blog.maqsoftware.com/2024/08/streamlining-event-information-access.html">
<div class="customer-stories-card">
<div class="card-item-front" id="card7" onmouseover="showText('text7')" onmouseout="hideText('text7')">
<div class="img-container">
<img src="images-new\case-studies\CS081-banner.jpg" alt="Image of a computer and a coffee mug"
class="services-case-study-img">
</div>
<p class="card-title-small">Enhancing event information access with Copilot technology</p>
<a href="https://blog.maqsoftware.com/2024/08/streamlining-event-information-access.html"
class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
<!-- <div class="overlay">
<div class="overlay-text" id="text7">
<p class="card-title-small">Heading 7</p>
<p class="body-text">Preview description of the case study lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="#" class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
</div> -->
</div>
</a>
<!-- Card 8 -->
<a class="card-link" href="https://blog.maqsoftware.com/2024/07/streamlining-information-retrieval-with.html">
<div class="customer-stories-card">
<div class="card-item-front" id="card8" onmouseover="showText('text8')" onmouseout="hideText('text8')">
<div class="img-container">
<img src="images-new\case-studies\CS080-banner.jpg" alt="Image of a computer and a coffee mug"
class="services-case-study-img">
</div>
<p class="card-title-small">Streamlining information retrieval with AI copilots</p>
<a href="https://blog.maqsoftware.com/2024/07/streamlining-information-retrieval-with.html"
class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
<!-- <div class="overlay">
<div class="overlay-text" id="text8">
<p class="card-title-small">Heading 8</p>
<p class="body-text">Preview description of the case study lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="#" class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
</div> -->
</div>
</a>
<!-- Card 9 -->
<a class="card-link" href="https://blog.maqsoftware.com/2024/07/increasing-efficiency-by-switching-from.html">
<div class="customer-stories-card">
<div class="card-item-front" id="card9" onmouseover="showText('text9')" onmouseout="hideText('text9')">
<div class="img-container">
<img src="images-new/case-studies/CS079-banner.jpg" alt="Image of a computer and a coffee mug"
class="services-case-study-img">
</div>
<p class="card-title-small">Increasing efficiency by switching from batch processing to real-time
streaming</p>
<a href="https://blog.maqsoftware.com/2024/07/increasing-efficiency-by-switching-from.html"
class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
<!-- <div class="overlay">
<div class="overlay-text" id="text9">
<p class="card-title-small">Heading 9</p>
<p class="body-text">Preview description of the case study lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="#" class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
</div> -->
</div>
</a>
<!-- Card 10 -->
<a class="card-link" href="https://blog.maqsoftware.com/2024/07/harnessing-generative-ai-for-tailored.html">
<div class="customer-stories-card">
<div class="card-item-front" id="card10" onmouseover="showText('text10')"
onmouseout="hideText('text10')">
<div class="img-container">
<img src="images-new\case-studies\CS078-banner-V2.jpg" alt="Image of a computer and a coffee mug"
class="services-case-study-img">
</div>
<p class="card-title-small">Harnessing generative AI for tailored marketing: Personalized content
clusters for every account</p>
<a href="https://blog.maqsoftware.com/2024/07/harnessing-generative-ai-for-tailored.html"
class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
<!-- <div class="overlay">
<div class="overlay-text" id="text10">
<p class="card-title-small">Heading 10</p>
<p class="body-text">Preview description of the case study lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="#" class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
</div> -->
</div>
</a>
<!-- Card 11 -->
<a class="card-link" href="https://blog.maqsoftware.com/2024/06/optimizing-task-management-with-smart.html">
<div class="customer-stories-card">
<div class="card-item-front" id="card11" onmouseover="showText('text11')"
onmouseout="hideText('text11')">
<div class="img-container">
<img src="images-new\case-studies\CS077-banner.jpg" alt="Image of a computer and a coffee mug"
class="services-case-study-img">
</div>
<p class="card-title-small">Optimizing task management with smart recommendations</p>
<a href="https://blog.maqsoftware.com/2024/06/optimizing-task-management-with-smart.html"
class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
<!-- <div class="overlay">
<div class="overlay-text" id="text10">
<p class="card-title-small">Heading 10</p>
<p class="body-text">Preview description of the case study lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="#" class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
</div> -->
</div>
</a>
<!-- Card 12 -->
<a class="card-link" href="https://blog.maqsoftware.com/2023/02/transforming-customer-support-with.html">
<div class="customer-stories-card">
<div class="card-item-front" id="card12" onmouseover="showText('text12')"
onmouseout="hideText('text12')">
<div class="img-container">
<img src="images-new\case-studies\CS070-banner.jpg" alt="Image of a computer and a coffee mug"
class="services-case-study-img">
</div>
<p class="card-title-small">Transforming customer support with AIOps-driven Power BI Embedding</p>
<a href="https://blog.maqsoftware.com/2023/02/transforming-customer-support-with.html"
class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
<!-- <div class="overlay">
<div class="overlay-text" id="text10">
<p class="card-title-small">Heading 10</p>
<p class="body-text">Preview description of the case study lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="#" class="learn-more-link body-bold">Read more <span class="chevron">></span></a>
</div>
</div> -->
</div>
</a>
</div>
<div style="height: 60px;"></div>
<div class="carousel-controls">
<span class="carousel-chevron" onclick="prevSlide()">❮</span>
<div class="carousel-dots" id="carousel-dots">
<span class="carousel-dot" onclick="currentSlide(1)"></span>
<span class="carousel-dot" onclick="currentSlide(2)"></span>
<span class="carousel-dot" onclick="currentSlide(3)"></span>
<!-- <span class="carousel-dot" onclick="currentSlide(4)"></span>
<span class="carousel-dot" onclick="currentSlide(5)"></span>
<span class="carousel-dot" onclick="currentSlide(6)"></span>
<span class="carousel-dot" onclick="currentSlide(7)"></span>
<span class="carousel-dot" onclick="currentSlide(8)"></span>
<span class="carousel-dot" onclick="currentSlide(9)"></span>
<span class="carousel-dot" onclick="currentSlide(10)"></span> -->
</div>
<span class="carousel-chevron" onclick="nextSlide()">❯</span>
</div>
</div>
</div>
</div>
<!-- Customer Stories end -->
<!-- Testimonials section -->
<!-- <div class="section-block-padding-sm testimonials-section">
<div class="max-section-size-carousel">
<h1 class="normal">Customer Testimonials</h1>
<div class="testimonials-carousel-container">
<div class="testimonials-carousel" id="testimonials-carousel">
<div class="testimonials-card">
<div class="flex-row">
<img class="testimonials-img" src="https://blogs.microsoft.com/wp-content/uploads/2012/08/8867.Microsoft_5F00_Logo_2D00_for_2D00_screen.jpg" alt="bootstrap testimonial carousel slider 2">
<div class="flex-column">
</div>
</div>
<p class="body-text">"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. "</p>
<br>
<p class="card-title testimonials-author">- Mary Jones</p>
<p class="body-text">Senior Manager Marketing & Insights, Microsoft</p>
</div>
<div class="testimonials-card">
<div class="flex-row">
<img class="testimonials-img" src="https://blogs.microsoft.com/wp-content/uploads/2012/08/8867.Microsoft_5F00_Logo_2D00_for_2D00_screen.jpg" alt="bootstrap testimonial carousel slider 2">
<div class="flex-column">
</div>
</div>
<p class="body-text">"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. "</p>
<br>
<p class="card-title testimonials-author">- Mary Jones</p>
<p class="body-text">Senior Manager Marketing & Insights, Microsoft</p>
</div>
<div class="testimonials-card">
<div class="flex-row">
<img class="testimonials-img" src="https://blogs.microsoft.com/wp-content/uploads/2012/08/8867.Microsoft_5F00_Logo_2D00_for_2D00_screen.jpg" alt="bootstrap testimonial carousel slider 2">
<div class="flex-column">
</div>
</div>
<p class="body-text">"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. "</p>
<br>
<p class="card-title testimonials-author">- Mary Jones</p>
<p class="body-text">Senior Manager Marketing & Insights, Microsoft</p>
</div>
<div class="testimonials-card">
<div class="flex-row">
<img class="testimonials-img" src="https://blogs.microsoft.com/wp-content/uploads/2012/08/8867.Microsoft_5F00_Logo_2D00_for_2D00_screen.jpg" alt="bootstrap testimonial carousel slider 2">
<div class="flex-column">
</div>
</div>
<p class="body-text">"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. "</p>
<br>
<p class="card-title testimonials-author">- Mary Jones</p>
<p class="body-text">Senior Manager Marketing & Insights, Microsoft</p>
</div>
<div class="testimonials-card">
<div class="flex-row">
<img class="testimonials-img" src="https://blogs.microsoft.com/wp-content/uploads/2012/08/8867.Microsoft_5F00_Logo_2D00_for_2D00_screen.jpg" alt="bootstrap testimonial carousel slider 2">
<div class="flex-column">
</div>
</div>
<p class="body-text">"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. "</p>
<br>
<p class="card-title testimonials-author">- Mary Jones</p>
<p class="body-text">Senior Manager Marketing & Insights, Microsoft</p>
</div>
<div class="testimonials-card">
<div class="flex-row">
<img class="testimonials-img" src="https://blogs.microsoft.com/wp-content/uploads/2012/08/8867.Microsoft_5F00_Logo_2D00_for_2D00_screen.jpg" alt="bootstrap testimonial carousel slider 2">
<div class="flex-column">
</div>
</div>
<p class="body-text">"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. "</p>
<br>
<p class="card-title testimonials-author">- Mary Jones</p>
<p class="body-text">Senior Manager Marketing & Insights, Microsoft</p>
</div>
</div>
<div style="height: 60px;"></div>
<div class="testimonials-carousel-controls">
<span class="testimonials-carousel-chevron" onclick="prevTestimonial()">❮</span>
<div class="testimonials-carousel-dots" id="testimonials-carousel-dots">
<span class="testimonials-carousel-dot" onclick="currentTestimonial(1)"></span>
<span class="testimonials-carousel-dot" onclick="currentTestimonial(2)"></span>
<span class="testimonials-carousel-dot" onclick="currentTestimonial(3)"></span>
</div>
<span class="testimonials-carousel-chevron" onclick="nextTestimonial()">❯</span>
</div>
</div>
</div>
</div> -->
<!-- Testimonials section end -->
<!-- Community section -->
<div class="section-block-padding-sm community-section centered-section">
<div class="section-heading-container max-section-size">
<h1 class="display-medium">Become a part of our community</h1>
<p class="section-subheading">Register for our upcoming webinars and view our newsletters</p>
</div>
<div class="community-flex-grid max-section-size mb-grid-community">
<!-- Card 1 -->
<a class="card-link" href="Marketplace-Offers\Power-BI-custom-visuals.html">
<div class="community-card">
<div class="img-container-insights">
<img src="images-new\isv\PBI-Custom-Visuals.png" alt="Image of a computer and a coffee mug"
class="customer-stories-img">
</div>
<p class="card-title-small">Power BI visual guides</p>
<p class="body-text">Explore our Power BI custom visuals, designed to elevate your data storytelling and
decision-making.</p>
<a href="Marketplace-Offers\Power-BI-custom-visuals.html" class="learn-more-link body-bold">View our visual
guides<span class="chevron">></span></a>
</div>
</a>
<!-- Card 2 -->
<a class="card-link" href="https://events.microsoft.com/en-us/allevents/?view=list&search=MAQ%20Software&clientTimeZone=1&format=Digital">
<div class="community-card">
<div class="img-container-insights">
<img src="images-new\case-studies\community-image-2.png" alt="Image of a computer and a coffee mug"
class="customer-stories-img">
</div>
<p class="card-title-small">Webinars</p>
<p class="body-text">Join our experts for in-depth sessions on the latest innovations in data and analytics.
</p>
<a href="https://events.microsoft.com/en-us/allevents/?view=list&search=MAQ%20Software&clientTimeZone=1&format=Digital"
class="learn-more-link body-bold" target="_blank" rel="noopener noreferrer">Register here<span
class="chevron">></span></a>
</div>
</a>
<!-- Card 3 -->
<a class="card-link" href="/community/best-practices.html">
<div class="community-card">
<div class="img-container-insights">
<img src="images-new\case-studies\power-bi-performance-and-security.jpg" alt="Image of a computer and a coffee mug" class="customer-stories-img">
</div>
<p class="card-title-small">Best practice guides</p>
<p class="body-text">Learn about the latest in the industry with our best practice guide blogs.</p>
<a href="/community/best-practices.html" class="learn-more-link body-bold">Read our best practice guides <span class="chevron">></span></a>
</div>
</a>
</div>
</div>
<!-- Community section end -->
<!-- Contact -->
<!-- <div class="section-block-padding-sm contact-section">
<div class="flex-col-2">
<div class="hero-item-1">
<h3 class="big">
Make the move to Fabric
</h3>
<span class="email-link-black">Contact Us: </span><a href="mailto:example@example.com?subject=Contact%20Us&body=Hello,%20I%20would%20like%20to%20get%20in%20touch%20with%20you." class="email-link">Sales@MAQSoftware.com</a>
</div>
<div class="hero-item-2">
<p class="contact-us-section-subheading">Let’s accelerate your delivery and optimize your operations.</p>
<br>
</div>
</div>
</div> -->
<!-- Contact section end -->
<!-- Contact Section new-->
<div class="section-block-padding-sm centered-section">
<div class="flex-col-2 max-section-size">
<div class="hero-item-1">
<h1 class="contact-us-section-heading margin-sm">
Make the move to Fabric
</h1>
<p class="card-title-normal">
Let’s accelerate your delivery and optimize your operations.
</p>
<div class="one-rem-div"></div>
<a href="mailto:Sales@MAQSoftware.com?subject=Contact%20Us&body=Hello,%20I%20would%20like%20to%20get%20in%20touch%20with%20you."
class="email-link email-link-container">
<span class="tabler--mail"></span>
<p class="email-link">Sales@MAQSoftware.com</p>
</a>
</div>
<div class="hero-item-2">
<!-- <p class="">
Contact us at:
</p> -->
<!-- <a href="mailto:example@example.com?subject=Contact%20Us&body=Hello,%20I%20would%20like%20to%20get%20in%20touch%20with%20you." class="email-link">Sales@MAQSoftware.com</a> -->
<!-- <a href="mailto:example@example.com?subject=Contact%20Us&body=Hello,%20I%20would%20like%20to%20get%20in%20touch%20with%20you."
class="btn-primary btn-text">Sales@MAQSoftware.com
</a> -->
</div>
</div>
</div>
<!-- Contact section end -->
<!-- Footer -->
<footer id="footer" class="footer bkg-grey-dark"></footer>
<!-- Footer End -->
<!-- Js -->
<!-- <script src="js/jquery-3.2.1.min.js"></script> -->
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> -->
<script src="js/timber.master.min.js"></script>
<script>
// $("#header").load("/header");
// $("#footer").load("/footer");
$("#header").load("/header.html");
$("#footer").load("/footer.html");
</script>
<script src="js/common.js"></script>
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</body>
</html>