-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInfra Managed Services.html
1011 lines (907 loc) Β· 48.7 KB
/
Infra Managed Services.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Infra Managed Services</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="Free HTML Templates" name="keywords">
<meta content="Free HTML Templates" name="description">
<!-- Favicon -->
<link href="img/Megamax Favicon.svg" rel="icon">
<!-- Google Web Fonts -->
<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=Nunito:wght@400;600;700;800&family=Rubik:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Spinner Start -->
<div id="spinner" class="show bg-white position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center">
<div class="spinner"></div>
</div>
<!-- Spinner End -->
<!-- Topbar Start -->
<div class="container-fluid bg-dark px-5 d-none d-lg-block">
<div class="row gx-0">
<div class="col-lg-8 text-center text-lg-start mb-2 mb-lg-0">
<div class="d-inline-flex align-items-center" style="height: 45px;">
<small class="me-3 text-light"><i class="fa fa-phone-alt me-2"></i>1800 257 1003</small>
<small class="text-light"><i class="fa fa-envelope-open me-2"></i>[email protected]</small>
</div>
</div>
<div class="col-lg-4 text-center text-lg-end">
<div class="d-inline-flex align-items-center" style="height: 45px;">
<a class="btn btn-sm btn-outline-light btn-sm-square rounded-circle me-2" href="https://www.facebook.com/megamaxservicespvtltd/"><i
class="fab fa-facebook-f fw-normal"></i></a>
<a class="btn btn-sm btn-outline-light btn-sm-square rounded-circle me-2" href="https://www.linkedin.com/company/megamax-services/"><i
class="fab fa-linkedin-in fw-normal"></i></a>
<a class="btn btn-sm btn-outline-light btn-sm-square rounded-circle me-2" href="https://www.instagram.com/megamaxservices/"><i
class="fab fa-instagram fw-normal"></i></a>
<a class="btn btn-sm btn-outline-light btn-sm-square rounded-circle me-2" href="https://twitter.com/MegamaxServices/"><i
class="fab fa-twitter fw-normal"></i></a>
<a class="btn btn-sm btn-outline-light btn-sm-square rounded-circle" href="https://www.youtube.com/channel/UCG2zNEVBVd8SI8J8KK5mboA"><i
class="fab fa-youtube fw-normal"></i></a>
</div>
</div>
</div>
</div>
<!-- Topbar End -->
<!-- Navbar Start -->
<!-- Navbar & Carousel Start -->
<div class="container-fluid position-relative p-0">
<nav class="navbar navbar-expand-lg navbar-dark px-5 py-3 py-lg-0">
<a href="index.php" class="navbar-brand p-0">
<h1 class="m-0"><img src="img/logo.png" alt=""></h1>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="fa fa-bars"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto py-0">
<a href="index.php" class="nav-item nav-link active">Home</a>
<div class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">About</a>
<div class="dropdown-menu m-0">
<a href="about.php" class="dropdown-item">About us</a>
<a href="leader.php" class="dropdown-item">Leadership</a>
<a href="team.php" class="dropdown-item">Our Partners</a>
<a href="testimonial.php" class="dropdown-item">Awards</a>
</div>
</div>
<div class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">Services</a>
<div class="dropdown-menu m-0">
<a href="service.php" class="dropdown-item">Offerings</a>
<a href="price.php" class="dropdown-item">Success Stories</a>
</div>
</div>
<div class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">Insight</a>
<div class="dropdown-menu m-0">
<a href="blog.html" class="dropdown-item">Blogs</a>
<a href="feature.html" class="dropdown-item">News</a>
</div>
</div>
<a href="Career.php" class="nav-item nav-link">Careers</a>
<a href="contact.php" class="nav-item nav-link">Contact</a>
</div>
<butaton type="button" class="btn text-primary ms-3" data-bs-toggle="modal" data-bs-target="#searchModal"></butaton>
<a href="quote.php" class="btn btn-primary py-2 px-4 ms-3">Get a quote</a>
</div>
</nav>
<style>
.custom-bg {
background-image: url('./img/Infra Managed.png');
background-size: cover;
background-position: center;
position: relative;
margin-bottom: 90px;
}
.overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
}
.content {
position: relative;
z-index: 1;
}
</style>
<div class="container-fluid bg-primary py-5 bg-header custom-bg">
<div class="overlay"></div>
<div class="row py-5 content">
<div class="col-12 pt-lg-5 mt-lg-5 text-center">
<h1 class="display-4 text-white animated zoomIn">Infra Managed Services</h1>
</div>
</div>
</div>
</div>
<!-- Navbar End -->
<!-- Full Screen Search Start -->
<div class="modal fade" id="searchModal" tabindex="-1">
<div class="modal-dialog modal-fullscreen">
<div class="modal-content" style="background: rgba(9, 30, 62, .7);">
<div class="modal-header border-0">
<button type="button" class="btn bg-white btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body d-flex align-items-center justify-content-center">
<div class="input-group" style="max-width: 600px;">
<input type="text" class="form-control bg-transparent border-primary p-3" placeholder="Type search keyword">
<button class="btn btn-primary px-4"><i class="bi bi-search"></i></button>
</div>
</div>
</div>
</div>
</div>
<!-- Full Screen Search End -->
<!-- Blog Start -->
<!--DIV's Start-->
<div class="container-fluid pb-5 wow fadeInUp" data-wow-delay="0.1s">
<div class="container pb-5">
<div class="text-center position-relative pb-3 mb-5 mx-auto" style="max-width: 500px;">
</div>
<div class="row g-5">
<div class="col-lg-4 col-md-6 wow zoomIn" data-wow-delay="0.3s">
<div class="nightfear service-item rounded d-flex flex-column align-items-center justify-content-center text-center">
<br>
<h3 class="mb-5">Server Management</h3>
<p class="m-0"> Our team of experienced professionals takes care of routine server maintenance tasks like patching, updates, and performance optimization.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 wow zoomIn" data-wow-delay="0.3s">
<div class="nightfear service-item rounded d-flex flex-column align-items-center justify-content-center text-center">
<h3 style="margin-bottom: 20px;">System Monitoring</h3>
<p class="m-0"> We continuously monitor your IBM i environment for potential issues and proactively alert you of any problems that arise.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 wow zoomIn" data-wow-delay="0.3s">
<div class="service-item nightfear rounded d-flex flex-column align-items-center justify-content-center text-center">
<br>
<h3 class="mb-5">Backup and Recovery</h3>
<p class="m-0"> We implement comprehensive backup and recovery solutions to ensure your data is always protected and readily available in the event of a disaster.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 wow zoomIn" data-wow-delay="0.3s">
<div class="service-item nightfear rounded d-flex flex-column align-items-center justify-content-center text-center">
<h3 style="margin-bottom: 20px;">Gig Control</h3>
<p class="m-0"> We analyze your IBM i infrastructure performance and identify bottlenecks to optimize resource utilization and application responsiveness.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 wow zoomIn" data-wow-delay="0.3s">
<div class="service-item nightfear rounded d-flex flex-column align-items-center justify-content-center text-center">
<br>
<h3 class="mb-5">Capacity Planning
</h3>
<p class="m-0">We help you plan for future growth by forecasting your infrastructure needs and recommending appropriate upgrades or expansions.
</p>
</div>
</div>
</div>
</div>
</div>
<style>
.nightfear {
background-color: white;
}
.nightfear:hover {
background-color: rgba(255,247,243,255);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
</style>
<!--DIV's End-->
<!--Business Challenges Start-->
<div class="container-fluid wow fadeInUp " data-wow-delay="0.1s">
<div class="container pb-5 ">
<div class="row g-5">
<div class="col-lg-7">
<div class="align-items-center justify-content-center ">
<div class="section-title position-relative pb-3 mb-5">
<h1 class="fw-bold text-primary text-uppercase">Business Challenges</h1>
<h1 class="fw-bold text-primary text-uppercase">We Solve:</h1>
</div>
<style>
.pro-drop {
display: flex;
justify-content: space-between;
}
</style>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Are you struggling with data backup & restore?</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse1" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse1">
<div class="card card-body">
We provide robust data backup and recovery solutions to ensure your critical information is always protected and readily available.
</div>
</div>
</div>
<hr>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Are you looking for system upgrades?</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse2" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse2">
<div class="card card-body">
Our team can help you navigate system upgrades, ensuring smooth transitions and maximizing the benefits of your new technology.
</div>
</div>
</div>
<hr>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Has your IBM i become monolithic,legacy and obsolete?</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse3" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse3">
<div class="card card-body">
We offer modernization strategies and tools to breathe new life into your legacy systems, improving performance, user experience, and security.
</div>
</div>
</div>
<hr>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Are your applications not able to "talk" to each other?</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse4" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse4">
<div class="card card-body">
We can help you integrate your existing applications with other platforms and systems, fostering seamless data flow and improved operational efficiency.
</div>
</div>
</div>
<hr>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Are you not able to optimize your AS400 applications'performance?</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse5" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse5">
<div class="card card-body">
Our experts can diagnose and address performance bottlenecks, ensuring your AS400 applications run smoothly and efficiently.
</div>
</div>
</div>
<hr>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Ensure Zero Downtime and Maximum End-User Satisfaction</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse6" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse6">
<div class="card card-body">
Our expert team keeps your IBM I-AS/400 and Mainframe systems running smoothly, minimizing disruptions and maximizing user productivity.
</div>
</div>
</div>
<hr>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Business Continuity</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse7" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse7">
<div class="card card-body">
We safeguard your critical business operations with robust disaster recovery plans and high availability solutions.
</div>
</div>
</div>
<hr>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Data Security at All Times</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse8" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse8">
<div class="card card-body">
We prioritize the security of your sensitive data with cutting-edge tools and industry-best practices.
</div>
</div>
</div>
<hr>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Reduce Technical Overload</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse9" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse9">
<div class="card card-body">
Focus on your core business while we handle the complexities of managing your IBM I-AS/400 and Mainframe infrastructure.
</div>
</div>
</div>
<hr>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Reduce Cost of Maintenance</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse10" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse10">
<div class="card card-body">
Extend the life and value of your existing systems with our cost-effective maintenance solutions.
</div>
</div>
</div>
<hr>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Enhance IT Efficiency</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse11" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse11">
<div class="card card-body">
Reduce the burden on your internal IT team with our comprehensive managed services.
</div>
</div>
</div>
<hr>
</div>
</div>
<div class="col-lg-5" style="min-height: 400px; ">
<div class="position-relative h-100">
<img class="position-absolute w-100 h-100 rounded wow zoomIn" data-wow-delay="0.9s" src="img/sidepic.png" style="width:200px;object-fit: cover;">
</div>
</div>
</div>
</div>
</div>
<!--Business Challenges End-->
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
.banner-container {
height: 50vh; /* Adjust this value as needed */
width: 100vw;
position: relative;
overflow: hidden; /* Ensures the content doesn't overflow */
margin: 0 auto;
}
.full-page-banner {
height: 100%;
width: 100%;
object-fit: cover; /* Ensures the image covers the whole area without distortion */
}
.position-absolute-content {
top: 20%; /* Adjusted for better placement */
right: 5%;
color: white;
}
.container-fluid {
padding: 0; /* Removes padding from the container */
}
</style>
<!--Customer Success Stories Start-->
<div class="container-fluid banner-container">
<img class="full-page-banner rounded wow zoomIn" data-wow-delay="0.1s" src="img/Logistic Banner.svg">
<div class="col-lg-5 container pb-3 mb-5 position-absolute position-absolute-content">
<div>
<h3 class="section-title my-4 pb-4 text-primary text-uppercase animated slideInDown zoomIn">Customer Success Stories:</h3>
<p class="mb-4 text-light animated zoomIn">Explore real-world examples of how we've helped businesses overcome challenges and achieve success with their IBM I-AS/400 and mainframe systems.</p>
</div>
<div class="d-flex">
<a href="price.php">
<button class="btn btn-primary py-md-2 px-md-3 me-1 animated slideInLeft zoomIn">View Case Studies</button>
</a>
<a href="CEVA Logistics.pdf">
<button class="btn btn-outline-light py-md-2 px-md-3 animated slideInRight zoomIn">Download Case Study
</button>
</a>
</div>
</div>
</div>
<br>
<br>
<br>
<!--Benefits Start-->
<div class="container-fluid pb-5 wow fadeInUp " data-wow-delay="0.1s">
<div class="container pb-5 ">
<div class="row g-5">
<div class="col-lg-5" style="min-height: 400px; ">
<div class="position-relative h-100">
<img class="position-absolute w-100 h-100 rounded wow zoomIn" data-wow-delay="0.9s" src="img/sidepic1.png" style="width:200px;object-fit: cover;">
</div>
</div>
<div class="col-lg-7">
<div class="align-items-center justify-content-center ">
<div class="section-title position-relative pb-3 mb-5">
<h1 class="fw-bold text-primary text-uppercase">Benefits:</h1>
</div>
<style>
.pro-drop {
display: flex;
justify-content: space-between;
}
</style>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Expert Management</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse12" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse12">
<div class="card card-body">
Free your IT team, we handle complexities.
</div>
</div>
</div>
<hr>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Cost-Effective Solutions</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse13" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse13">
<div class="card card-body">
Extend system life, optimize costs.
</div>
</div>
</div>
<hr>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Always-On Performance</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse14" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse14">
<div class="card card-body">
Minimize downtime, maximize productivity.
</div>
</div>
</div>
<hr>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Enhanced Security & Continuity</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse15" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse15">
<div class="card card-body">
Protect data, ensure business continuity.
</div>
</div>
</div>
<hr>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Modernization Expertise</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse16" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse16">
<div class="card card-body">
Breathe new life into legacy systems.
</div>
</div>
</div>
<hr>
<div>
<div class="dropdown mt-3 pro-drop">
<p>Deep Technical Skills</p>
<img src="img/pluss.png" class="btn" data-bs-toggle="collapse" href="#collapse17" role="button" aria-expanded="false" aria-controls="collapseExample" style="height: 30px; width: 40px;">
</div>
<div class="collapse pro-drop" id="collapse17">
<div class="card card-body">
RPG, Synon, Web Development & More.
</div>
</div>
</div>
<hr>
</div>
</div>
</div>
</div>
</div>
<style>
.containerr {
position: relative;
width: 100%;
/* min-height: 100vh; */
padding: 30px 10%;
}
.containerr .main-title {
/* max-width: 700px; */
margin: 0px auto;
text-align: center;
font-family: helvetica;
}
.containerr .main-title h1 {
position: relative;
font-size: 40px;
color: #242223;
margin-bottom: 30px;
display: inline-block;
}
.containerr .main-title h1::before {
content: '';
position: absolute;
width: 100%;
height: 1px;
/* top: 125%; */
left: 0;
background-color: #808080;
}
.containerr .main-title h1::after {
content: '';
position: absolute;
width: 50%;
height: 3px;
background-color: #d03645;
top: calc(125% - 1px);
left: 50%;
transform: translateX(-50%);
}
.main-title p {
color: #808080;
}
.containerr .row {
width: 100%;
display: flex;
justify-content: space-between;
/* margin-top: 70px; */
}
.row .col {
flex-basis: 46%;
}
.row .sub-title h2 {
position: relative;
color: #242223;
font-size: 22px;
font-family: helvetica;
display: inline-block;
margin-bottom: 30px;
}
.row .sub-title h2::before {
content: '';
position: absolute;
width: 50%;
height: 1px;
top: 125%;
left: 0;
background-color: #808080;
}
.row .sub-title h2::after {
content: '';
position: absolute;
width: 25%;
height: 3px;
top: calc(125% - 1px);
left: 0;
background-color: #d03645;
}
.subjectr {
font-size: 18px;
font-weight: thin;
color: #808080;
padding-bottom: 15px;
text-transform: uppercase;
}
.progress-barr {
position: relative;
width: 100%;
height: 5px;
background-color: #808080;
border-radius: 15px;
margin-bottom: 20px;
}
.progress-barr::after {
position: absolute;
content: attr(value);
top: -35px;
right: 0;
color: #808080;
font-size: 18px;
}
.progress-liner {
position: absolute;
width: 0%;
height: 7px;
background-color: #d03645;
border-radius: 15px;
top: -1px;
animation: animate 1.5s cubic-bezier(1, 0.2, 0.2, 1) forwards;
}
@keyframes animate {
100% {
width: 100%;
}
}
.progress-liner::after {
content: '';
position: absolute;
width: 13px;
height: 13px;
border-radius: 50%;
top: 50%;
left: 100%;
transform: translate(-50%, -50%);
background-color: #d03645;
}
@media(max-width: 768px) {
.containerr {
padding: 30px 8%;
}
}
@media(max-width: 568px) {
.containerr .row {
flex-direction: column;
}
.containerr .main-title h1 {
font-size: 36px;
}
.containerr .row {
margin-top: 30px;
}
.row .col:nth-child(2) {
margin-top: 20px;
}
}
</style>
<!--Benefits End-->
<!--Why Choose Us Start-->
<div class="container-fluid pb-5 wow fadeInUp" data-wow-delay="0.1s">
<div class="container pb-2">
<div class="section-title text-center position-relative pb-3 mb-5 mx-auto" style="max-width: 600px;">
<h1 class="fw-bold text-primary text-uppercase">Why Choose Us ?</h1>
</div>
<div class="row g-5">
<div class="col-lg-4">
<div class="row g-5">
<div class="col-12 wow zoomIn" data-wow-delay="0.2s">
<div class="rounded d-flex align-items-center justify-content-center mb-3" style="width: 60px; height: 60px;">
<i class="text-white">
<img src="img/Icons/Dev & Support.svg" alt="">
</i>
</div>
<h4>RPG Development and Support</h4>
<p class="mb-0">Our team possesses unparalleled expertise in RPG/400,SQl/400 and CL/400 languages for custom application development,maintenance and enhancements.</p>
</div>
<div class="col-12 wow zoomIn" data-wow-delay="0.6s">
<div class=" rounded d-flex align-items-center justify-content-center mb-3" style="width: 60px; height: 60px;">
<i class="text-white">
<img src="img/Icons/Change Mangt..svg" alt="">
</i>
</div>
<h4>Change Management and Enhancements</h4>
<p class="mb-0">We ensure smooth and efficient implementation of changes and enhancements to your existing applications.</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="row g-5">
<div class="col-12 wow zoomIn pb-4" data-wow-delay="0.6s">
<div class=" rounded d-flex align-items-center justify-content-center mb-3" style="width: 60px; height: 60px;">
<i class="text-white">
<img src="img/Icons/Dev.svg" alt="">
</i>
</div>
<h4>Synon COOL/2e Development</h4>
<p class="mb-0">We specialize in Developing and supporting applications using Synon COOL/2e, a powerful tool for IBM iSeries environments.</p>
</div>
<div class="col-12 wow zoomIn" data-wow-delay="0.6s">
<div class=" rounded d-flex align-items-center justify-content-center mb-3" style="width: 60px; height: 60px;">
<i class="text-white">
<img src="img/Icons/Web App.svg" alt="">
</i>
</div>
<h4>IMB iSeries Web Applications Development</h4>
<p class="mb-0">Modernize your user experience with the development of innovative web applications tailored for the IMB iSeries platform.</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="row g-5">
<div class="col-12 wow zoomIn" data-wow-delay="0.6s">
<div class=" rounded d-flex align-items-center justify-content-center mb-3" style="width: 60px; height: 60px;">
<i class="text-white">
<img src="img/Icons/Third party.svg" alt="">
</i>
</div>
<h4>Thirty-Party Application Management</h4>
<p class="mb-0">Leverage our knowledge and experience to seamlessly integrate and manage third-party applications on your IBM I-A/400 and Mainframe systems. </p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Why Choose Us End-->
<!--Certified Start-->
<!--Certified End-->
<style>
#full-page-banner {
height: 100vh;
width: 100vw;
object-fit: cover; /* Ensures the image covers the whole area without distortion */
margin: 0; /* Removes any default margin */
}
.container-fluid {
padding: 0; /* Removes padding from the container */
}
</style>
<!--Certified Start-->
<div class="container-fluid position-relative">
<img id="full-page-banner" class="w-100 h-100 rounded wow zoomIn" data-wow-delay="0.1s" src="img/IBM Banner.svg">
</div>
<br>
<br>
<!--Certified End-->
<!--Approach Start-->
<div class="container-fluid wow fadeInUp" data-wow-delay="0.1s">
<div class="container pt-2">
<div class="section-title text-center position-relative pb-3 mb-5 mx-auto" style="max-width: 600px;">
<h1 class="fw-bold text-primary text-uppercase">Approach</h1>
</div>
<div class="team-img position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/Approch.png" alt="">
</div>
</div>
</div>
<!--Approach End-->
<!--Contact Us Start-->
<div class="container-fluid mt-4 wow fadeInUp" data-wow-delay="0.1s">
<div class="container pt-5" style="background-color: rgba(255,244,238,255); border-radius: 5px;">
<div class="row g-5" >
<div class="wow slideInUp" data-wow-delay="0.1s" style="margin-top: 0%;">
<div class="d-flex rounded py-4 px-2">
<div class="col-lg-9 mt-4">
<h2 class="fw-bold text-primary text-uppercase">Ready To Get Started?</h2>
<p class="animated zoomIn" style="color: rgba(78,90,111,255);">Let us help you unlock the full potential of your IBM I-AS/400 and Mainframe infrastructure.</p>
</div>
<div class="col-lg-3 text-center mt-4">
<a href="contact.php" class="btn btn-primary py-md-3 px-md-5 me-4 animated slideInLeft">Contact Us Now</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Contact Us End-->
<!-- Blog End -->
<!-- Footer Start -->
<div class="container-fluid bg-dark text-light mt-5 wow fadeInUp" data-wow-delay="0.1s">
<div class="container">
<div class="row gx-5">
<div class="col-lg-4 col-md-6 footer-about">
<div
class="d-flex flex-column align-items-center justify-content-center text-center h-100 bg-primary p-4">
<a href="index.html" class="navbar-brand">
<h1 class="m-0 text-white"><img style="width:250px;" src="img/footerlogo.png" alt=""></h1>
</a>
<p class="mt-3 mb-4">Megamax is a next-generation
global IT Managed Services and
Technology company.</p>
<form action="">
<div class="input-group">
<input type="text" class="form-control border-white p-3" placeholder="Your Email">
<button class="btn btn-dark">Sign Up</button>
</div>
</form>
</div>
</div>
<div class="col-lg-8 col-md-6">
<div class="row gx-5">
<div class="col-lg-4 col-md-12 pt-5 mb-5">
<div class="section-title section-title-sm position-relative pb-3 mb-4">
<h3 class="text-light mb-0">Get In Touch</h3>
</div>
<div class="d-flex mb-2">
<i class="bi bi-geo-alt text-primary me-2"></i>
<p class="mb-0">Megamax House,
B-40, Sector 57, Noida (Uttar Pradesh), INDIA 201301</p>
</div>
<div class="d-flex mb-2">
<i class="bi bi-envelope-open text-primary me-2"></i>
<a class="text-light" href="//mail.google.com/mail/u/0/?view=cm&fs=1&tf=1&source=mailto&[email protected]" target="_blank"><i></i>[email protected]</a>
</div>
<div class="d-flex mb-2">
<i class="bi bi-telephone text-primary me-2"></i>
<p class="mb-0">1800 257 1003</p>
</div>
<div class="col-lg-4 text-center text-lg-end">
<div class="d-inline-flex align-items-center" style="height: 45px;">
<a class="btn btn-sm btn-outline-light btn-sm-square rounded-circle me-2" href="https://www.facebook.com/megamaxservicespvtltd/"><i
class="fab fa-facebook-f fw-normal"></i></a>
<a class="btn btn-sm btn-outline-light btn-sm-square rounded-circle me-2" href="https://www.linkedin.com/company/megamax-services/"><i
class="fab fa-linkedin-in fw-normal"></i></a>
<a class="btn btn-sm btn-outline-light btn-sm-square rounded-circle me-2" href="https://www.instagram.com/megamaxservices/"><i
class="fab fa-instagram fw-normal"></i></a>
<a class="btn btn-sm btn-outline-light btn-sm-square rounded-circle me-2" href="https://twitter.com/MegamaxServices/"><i
class="fab fa-twitter fw-normal"></i></a>
<a class="btn btn-sm btn-outline-light btn-sm-square rounded-circle" href="https://www.youtube.com/channel/UCG2zNEVBVd8SI8J8KK5mboA"><i
class="fab fa-youtube fw-normal"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 pt-0 pt-lg-5 mb-5">
<div class="section-title section-title-sm position-relative pb-3 mb-4">
<h3 class="text-light mb-0">Quick Links</h3>
</div>
<div class="link-animated d-flex flex-column justify-content-start">
<a class="text-light mb-2" href="index.php"><i
class="bi bi-arrow-right text-primary me-2"></i>Home</a>
<a class="text-light mb-2" href="about.php"><i
class="bi bi-arrow-right text-primary me-2"></i>About</a>
<a class="text-light mb-2" href="service.php"><i
class="bi bi-arrow-right text-primary me-2"></i>Services</a>
<a class="text-light mb-2" href="blog.html"><i
class="bi bi-arrow-right text-primary me-2"></i>Insight</a>
<a class="text-light mb-2" href="Career.php"><i
class="bi bi-arrow-right text-primary me-2"></i>Careers</a>
<a class="text-light" href="contact.php"><i
class="bi bi-arrow-right text-primary me-2"></i>Contact </a>
</div>
</div>
<div class="col-lg-4 col-md-12 pt-0 pt-lg-5 mb-5">
<div class="section-title section-title-sm position-relative pb-3 mb-4">
<h3 class="text-light mb-0">Offerings</h3>
</div>
<div class="link-animated d-flex flex-column justify-content-start">
<a class="text-light mb-2" href="Infra Managed Services.html"><i
class="bi bi-arrow-right text-primary me-2"></i>Infra Managed Services</a>
<a class="text-light mb-2" href="App Modernization.html"><i
class="bi bi-arrow-right text-primary me-2"></i>App Modernization</a>
<a class="text-light mb-2" href="cloud.html"><i
class="bi bi-arrow-right text-primary me-2"></i>Cloud Services</a>
<a class="text-light mb-2" href="devOps.html"><i
class="bi bi-arrow-right text-primary me-2"></i>DevOps</a>
<a class="text-light mb-2" href="cybersecurity.html"><i
class="bi bi-arrow-right text-primary me-2"></i>Cyber Security</a>
<a class="text-light" href="AppOps.html"><i
class="bi bi-arrow-right text-primary me-2"></i>AppOps</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid text-white" style="background: #061429;">
<div class="container text-center">
<div class="row justify-content-end">
<div class="col-lg-8 col-md-6">
<div class="d-flex align-items-center justify-content-center" style="height: 75px;">
<p class="mb-0">© <a class="text-white border-bottom" href="#"> Megamax Services Pvt. Ltd</a>. All
Rights Reserved.
<!-- Designed by <a class="text-white border-bottom"#">Anonymous</a> -->
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Footer End -->
<!-- Back to Top -->
<a href="index.html" class="btn btn-lg btn-primary btn-lg-square rounded back-to-top"><i class="bi bi-arrow-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/wow/wow.min.js"></script>