-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2027 lines (1995 loc) · 87.4 KB
/
Copy pathindex.html
File metadata and controls
2027 lines (1995 loc) · 87.4 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">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
/>
<title>United Elite Engineering Services</title>
<!-- Fav Icon -->
<link rel="icon" href="assets/images/favicon3.png" type="image/x-icon" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<!-- Stylesheets -->
<link href="assets/css/font-awesome-all.css" rel="stylesheet" />
<link href="assets/css/flaticon.css" rel="stylesheet" />
<link href="assets/css/owl.css" rel="stylesheet" />
<link href="assets/css/bootstrap.css" rel="stylesheet" />
<link href="assets/css/jquery.fancybox.min.css" rel="stylesheet" />
<link href="assets/css/animate.css" rel="stylesheet" />
<link href="assets/css/color.css" rel="stylesheet" />
<link href="assets/css/elpath.css" rel="stylesheet" />
<link href="assets/css/jquery-ui.css" rel="stylesheet" />
<link href="assets/css/style.css" rel="stylesheet" />
<link href="assets/css/responsive.css" rel="stylesheet" />
</head>
<!-- page wrapper -->
<body>
<div class="boxed_wrapper">
<!-- preloader -->
<div class="loader-wrap">
<div class="preloader">
<div class="preloader-close">x</div>
<div id="handle-preloader" class="handle-preloader">
<div class="animation-preloader">
<div class="spinner"></div>
<div class="txt-loading">
<span data-text-preloader="U" class="letters-loading"> U </span>
<span data-text-preloader="E" class="letters-loading"> E </span>
<span data-text-preloader="E" class="letters-loading"> E </span>
<span data-text-preloader="S" class="letters-loading"> S </span>
<span data-text-preloader="" class="letters-loading"> </span>
<span data-text-preloader="(" class="letters-loading"> ( </span>
<span data-text-preloader="P" class="letters-loading"> P </span>
<span data-text-preloader="V" class="letters-loading"> V </span>
<span data-text-preloader="T" class="letters-loading"> T </span>
<span data-text-preloader="-" class="letters-loading"> - </span>
<span data-text-preloader="L" class="letters-loading"> L </span>
<span data-text-preloader="T" class="letters-loading"> T </span>
<span data-text-preloader="D" class="letters-loading"> D </span>
<span data-text-preloader=")" class="letters-loading"> ) </span>
</div>
</div>
</div>
</div>
</div>
<!-- preloader end -->
<!--Search Popup-->
<div id="search-popup" class="search-popup">
<div class="popup-inner">
<div class="upper-box clearfix">
<figure class="logo-box pull-left">
<a href="index.html"
><img src="assets/images/logo-4.png" alt=""
/></a>
</figure>
<div class="close-search pull-right">
<span class="far fa-times"></span>
</div>
</div>
<div class="overlay-layer"></div>
<div class="auto-container">
<div class="search-form">
<form method="post" action="index.html">
<div class="form-group">
<fieldset>
<input
type="search"
class="form-control"
name="search-input"
value=""
placeholder="Type your keyword and hit"
required
/>
<button type="submit"><i class="far fa-search"></i></button>
</fieldset>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- main header -->
<header class="main-header">
<!-- header-top -->
<div class="header-top">
<div class="top-inner">
<div class="left-column">
<ul class="info clearfix">
<li><i class="icon-1"></i>Mon-Sat 09:00AM-06:00PM</li>
<li>
<i class="icon-2"></i>Near Masjid Al Ghaffar, MPS Road, Multan
</li>
<li>
<i class="icon-3"></i
><a href="mailto:unitedgroupofcompanies4@gmail.com"
>unitedgroupofcompanies4@gmail.com</a
>
</li>
</ul>
</div>
<div class="right-column">
<ul class="social-links clearfix">
<li>
<a
href="https://www.facebook.com/rana.sarmad.906?mibextid=ZbWKw"
><i class="fab fa-facebook-f"></i
></a>
</li>
<li>
<a
href="https://twitter.com/ranasarmad88?t=NbtvZ82OxxvOgZ2ndKZV9w&s=09"
><i class="fab fa-twitter"></i
></a>
</li>
<li>
<a
href="https://www.linkedin.com/in/engr-rana-sarmad-mahmood-0b87721a5"
><i class="fab fa-linkedin-in"></i
></a>
</li>
<li>
<a
href="https://instagram.com/shb_rana?igshid=NGExMmI2YTkyZg=="
><i class="fab fa-instagram"></i
></a>
</li>
</ul>
</div>
</div>
</div>
<!-- header-lower -->
<div class="header-lower">
<div class="outer-box">
<div class="menu-area clearfix">
<div class="logo-box">
<figure class="logo">
<a href="index.html"
><img src="assets/images/logo-4.png" alt=""
/></a>
</figure>
</div>
<!--Mobile Navigation Toggler-->
<div class="mobile-nav-toggler">
<i class="icon-bar"></i>
<i class="icon-bar"></i>
<i class="icon-bar"></i>
</div>
<nav class="main-menu navbar-expand-md navbar-light">
<div
class="collapse navbar-collapse show clearfix"
id="navbarSupportedContent"
>
<ul class="navigation clearfix">
<li class="current dropdown">
<a href="index.html">Home</a>
<ul>
<li>
<a href="index.html"
>United Elite Engineering Services</a
>
</li>
<li>
<a href="https://unitedelitegroups.com/"
>United Elite Group Of Companies</a
>
</li>
<li>
<a
href="https://engineers-enterprises.unitedelitegroups.com/"
>Elite Engineers Enterprises</a
>
</li>
<li>
<a href="">United Elite Smart Energy</a>
</li>
</ul>
</li>
<li><a href="about.html">About</a></li>
<li class="">
<a href="service.html">Services</a>
</li>
<li class="">
<a href="team.html">Team</a>
</li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
</div>
<div class="nav-right">
<div class="support-box">
<h6>
<i class="icon-4"></i>Call:
<a href="contact.html"
>+92-300-1304030 <br />
+92-313-2497777 <br />
+92-322-8782745</a
>
</h6>
</div>
<div class="search-box-outer search-toggler">
<i class="icon-5"></i>
</div>
<div class="btn-box">
<a href="contact.html" class="theme-btn btn-one">Appointment</a>
</div>
</div>
</div>
</div>
<!--sticky Header-->
<div class="sticky-header">
<div class="outer-box">
<div class="menu-area clearfix">
<div class="logo-box">
<figure class="logo">
<a href="index.html"
><img src="assets/images/logo-4.png" alt=""
/></a>
</figure>
</div>
<nav class="main-menu clearfix">
<!--Keep This Empty / Menu will come through Javascript-->
</nav>
</div>
<div class="nav-right">
<div class="support-box">
<h6>
<i class="icon-4"></i>Call:
<a href="contact.html"
>+92-300-1304030 <br />
+92-313-2497777 <br />
+92-322-8782745</a
>
</h6>
</div>
<div class="search-box-outer search-toggler">
<i class="icon-5"></i>
</div>
<div class="btn-box">
<a href="contact.html" class="theme-btn btn-one">Appointment</a>
</div>
</div>
</div>
</div>
</header>
<!-- main-header end -->
<!-- Mobile Menu -->
<div class="mobile-menu">
<div class="menu-backdrop"></div>
<div class="close-btn"><i class="fas fa-times"></i></div>
<nav class="menu-box">
<div class="nav-logo">
<a href="index.html"
><img src="assets/images/logo-44.png" alt="" title=""
/></a>
</div>
<div class="menu-outer">
<!--Here Menu Will Come Automatically Via Javascript / Same Menu as in Header-->
</div>
<div class="contact-info">
<h4>Contact Info</h4>
<ul>
<li>Near Masjid Al Ghaffar, MPS Road, Multan</li>
<li>
<a href="contact.html"
>+92-300-1304030 <br />
+92-313-2497777 <br />
+92-322-8782745</a
>
</li>
<li>
<a href="mailto:unitedgroupofcompanies4@gmail.com"
>unitedgroupofcompanies4<br />@gmail.com</a
>
</li>
</ul>
</div>
<div class="social-links">
<ul class="clearfix">
<li>
<a
href="https://twitter.com/ranasarmad88?t=NbtvZ82OxxvOgZ2ndKZV9w&s=09"
><span class="fab fa-twitter"></span
></a>
</li>
<li>
<a
href="https://www.facebook.com/rana.sarmad.906?mibextid=ZbWKw"
><span class="fab fa-facebook-square"></span
></a>
</li>
<li>
<a
href="https://www.linkedin.com/in/engr-rana-sarmad-mahmood-0b87721a5"
><span class="fab fa-linkedin-in"></span
></a>
</li>
<li>
<a href="https://instagram.com/shb_rana?igshid=NGExMmI2YTkyZg=="
><span class="fab fa-instagram"></span
></a>
</li>
</ul>
</div>
</nav>
</div>
<!-- End Mobile Menu -->
<!-- banner-section -->
<section class="banner-section banner-style-one p_relative">
<div class="shape">
<div class="shape-1 p_absolute l_0 b_0 z_2"></div>
<div class="shape-2 p_absolute l_0 t_0 z_2"></div>
<div class="shape-3 p_absolute l_0 t_0 z_2"></div>
</div>
<div class="banner-carousel owl-theme owl-carousel owl-dots-none">
<div class="slide-item p_relative pt_180">
<div
class="image-layer p_absolute"
style="background-image: url(assets/images/banner/banner1.jpg)"
></div>
<div class="auto-container">
<div class="content-box p_relative d_block z_5">
<h2 class="p_relative d_block fs_60 lh_70 fw_bold mb_18">
Best <span>Electrical</span> Engineering Services
</h2>
<p class="p_relative d_block fs_18" style="text-align: justify">
Electrical Engineering Services refer to a comprehensive range
of professional activities and expertise focused on the
design, development, implementation, maintenance, and
optimization of electrical systems and components.
</p>
</div>
</div>
</div>
<div class="slide-item p_relative pt_180">
<div
class="image-layer p_absolute"
style="background-image: url(assets/images/banner/banner2.jpg)"
></div>
<div class="auto-container">
<div class="content-box p_relative d_block z_5">
<h2 class="p_relative d_block fs_60 lh_70 fw_bold mb_18">
Best <span>Electrical</span> Engineering Services
</h2>
<p class="p_relative d_block fs_18" style="text-align: justify">
Electrical Engineering Services refer to a comprehensive range
of professional activities and expertise focused on the
design, development, implementation, maintenance, and
optimization of electrical systems and components.
</p>
</div>
</div>
</div>
<div class="slide-item p_relative pt_180">
<div
class="image-layer p_absolute"
style="background-image: url(assets/images/banner/banner3.jpg)"
></div>
<div class="auto-container">
<div class="content-box p_relative d_block z_5">
<h2 class="p_relative d_block fs_60 lh_70 fw_bold mb_18">
Best <span>Electrical</span> Engineering Services
</h2>
<p class="p_relative d_block fs_18" style="text-align: justify">
Electrical Engineering Services refer to a comprehensive range
of professional activities and expertise focused on the
design, development, implementation, maintenance, and
optimization of electrical systems and components.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- banner-section end -->
<!-- search-field -->
<section class="search-field">
<div class="auto-container">
<div class="outer-container">
<div class="title-text centred p_relative d_block">
<h6>Request Service Today</h6>
</div>
<div class="search-area">
<form action="index.html" method="post">
<div class="row clearfix">
<div class="col-lg-3 col-md-6 col-sm-12 form-group">
<input
type="text"
name="name"
placeholder="Your name"
required
/>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 form-group">
<input
type="email"
name="email"
placeholder="Your email"
required
/>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 form-group">
<input
type="text"
name="phone"
placeholder="Phone"
required
/>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 form-group">
<div class="icon"><i class="icon-8"></i></div>
<input
type="text"
name="date"
placeholder="Date"
id="datepicker"
/>
</div>
</div>
<div class="btn-box">
<button
type="submit"
disabled
class="theme-btn btn-one"
style="cursor: not-allowed"
>
Get Services
</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- search-field end -->
<!-- about-section -->
<section class="about-section sec-pad">
<div
class="pattern-layer"
style="background-image: url(assets/images/shape/shape-2.png)"
></div>
<div class="auto-container">
<div class="row clearfix">
<div class="col-lg-6 col-md-12 col-sm-12 image-column">
<div class="image_block_one">
<div
data-animation-box
class="image-box p_relative d_block pl_120 pb_100 mr_30"
>
<div class="shape-box">
<div
class="shape-1 p_absolute l_70 t_40 w_130 h_130"
style="
background-image: url(assets/images/shape/shape-1.png);
"
></div>
<div
class="shape-2 p_absolute b_45 r_40 w_130 h_130"
style="
background-image: url(assets/images/shape/shape-1.png);
"
></div>
</div>
<figure
data-animation-text
class="overlay-anim-black-bg image p_relative d_block"
data-animation="overlay-animation"
>
<img src="assets/images/resource/about1.jpg" alt="" />
</figure>
<div class="icon p_absolute l_25 float-bob-y">
<img src="assets/images/icons/icon-1.png" alt="" />
</div>
<div class="text-box centred p_absolute l_0 b_0 z_2">
<div class="light-icon p_absolute">
<img src="assets/images/icons/icon-2.png" alt="" />
</div>
<h2 class="d_block fs_40 lh_40 fw_bold mb_18">09</h2>
<h3 class="d_block fw_medium">
Years Experience of This Field
</h3>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 content-column">
<div class="content_block_one">
<div class="content-box p_relative d_block ml_30">
<div class="sec-title p_relative mb_25">
<h5 class="d_block fs_17 lh_25 fw_medium mb_9">About Us</h5>
<h2 class="d_block fs_40 lh_50 fw_bold">
Residential & Commercial Electrical Services
</h2>
</div>
<div
class="text p_relative d_block mb_30"
style="text-align: justify"
>
<p>
All of our services are backed by our 100% satisfaction
guarantee. Our electricians can install anything from new
security lighting for outdoors to a whole home generator
that will keep your appliances working during a power
outage.
</p>
</div>
<div class="inner p_relative d_block mb_40">
<div class="row clearfix">
<div class="col-lg-6 col-md-6 col-sm-12 single-column">
<div class="single-item">
<div class="icon-box"><i class="icon-9"></i></div>
<h4>Emergency Repairs</h4>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 single-column">
<div class="single-item">
<div class="icon-box"><i class="icon-10"></i></div>
<h4>Rewiring and Check-up</h4>
</div>
</div>
</div>
</div>
<ul class="list-style-one clearfix">
<li>Emergency power solutions (generators)</li>
<li>Wiring and installation/upgrades</li>
<li>Full-service electrical layout, design</li>
</ul>
<div class="btn-box">
<button type="submit" class="theme-btn btn-one">
<a href="assets/UEES_compressed.pdf" style="color: #fff"
>Download PDF</a
>
</button>
</div>
<!-- <figure class="signature">
<img src="assets/images/icons/signature-1.png" alt="" />
</figure> -->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- about-section end -->
<!-- feature-section -->
<section class="feature-section">
<div class="outer-container p_relative pl_30 pr_30">
<div class="row clearfix">
<div class="col-lg-4 col-md-6 col-sm-12 feature-block">
<div
class="feature-block-one wow fadeInLeft"
data-wow-duration="1500ms"
>
<div class="inner-box p_relative d_block clearfix">
<figure class="image-box p_relative d_block">
<img src="assets/images/resource/feature1.jpg" alt="" />
</figure>
<div class="content-box p_relative d_block">
<div class="icon-box p_relative d_block fs_50 lh_50">
<i class="icon-12"></i>
</div>
<h3><a href="service.html">LT & HT Panels</a></h3>
<p style="text-align: justify; hyphens: auto">
<strong>LT Panels</strong>, also known as Low Tension
Panels or Low Voltage Panels, are used to control and
distribute electrical power at low voltage levels. <br />
<strong>HT Panels</strong>, also known as High Tension
Panels or High Voltage Panels, are used to control and
distribute electrical power at higher voltage levels.
</p>
<div class="link">
<a href="service.html"
><span>Read more</span><i class="icon-7"></i
></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 feature-block">
<div
class="feature-block-one wow fadeInLeft"
data-wow-duration="1500ms"
>
<div class="inner-box p_relative d_block clearfix">
<figure class="image-box p_relative d_block">
<img src="assets/images/resource/feature2.jpg" alt="" />
</figure>
<div class="content-box p_relative d_block">
<div class="icon-box p_relative d_block fs_50 lh_50">
<i class="icon-13"></i>
</div>
<h3><a href="service.html">Switchgear</a></h3>
<p style="text-align: justify; hyphens: auto">
Switchgear refers to a collection of electrical devices
used to control, protect, and isolate electrical equipment
and circuits in power distribution systems.
</p>
<div class="link">
<a href="service.html"
><span>Read more</span><i class="icon-7"></i
></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 feature-block">
<div
class="feature-block-one wow fadeInLeft"
data-wow-duration="1500ms"
>
<div class="inner-box p_relative d_block clearfix">
<figure class="image-box p_relative d_block">
<img src="assets/images/resource/feature3.jpg" alt="" />
</figure>
<div class="content-box p_relative d_block">
<div class="icon-box p_relative d_block fs_50 lh_50">
<i class="icon-14"></i>
</div>
<h3><a href="service.html">Electrification Work</a></h3>
<p style="text-align: justify; hyphens: auto">
Electrification work refers to the process of installing
and implementing electrical systems, equipment, and
infrastructure in a specific location or facility to
provide power for various purposes.
</p>
<div class="link">
<a href="service.html"
><span>Read more</span><i class="icon-7"></i
></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- feature-section end -->
<!-- service-section -->
<section class="service-section">
<div class="pattern-layer">
<div
class="pattern-1"
style="background-image: url(assets/images/shape/shape-3.png)"
></div>
<div
class="pattern-2"
style="background-image: url(assets/images/shape/shape-4.png)"
></div>
</div>
<div class="auto-container">
<div class="sec-title p_relative mb_50 centred">
<h5 class="d_block fs_17 lh_25 fw_medium mb_9">Our Services</h5>
<h2 class="d_block fs_40 lh_50 fw_bold">
We are a Full Service Electrical <br />Contractor
</h2>
</div>
<div class="tabs-box">
<div class="tab-btn-box p_relative d_block mb_60 centred">
<ul class="tab-btns tab-buttons clearfix">
<li class="tab-btn" data-tab="#tab-1">Domestic Services</li>
<li class="tab-btn active-btn" data-tab="#tab-2">
Industrial Services
</li>
<li class="tab-btn" data-tab="#tab-3">Commercial Services</li>
</ul>
</div>
<div class="tabs-content">
<div class="tab" id="tab-1">
<div class="inner-box">
<div class="row clearfix">
<div class="col-lg-8 col-md-12 col-sm-12 content-column">
<div class="content_block_two">
<div class="content-box p_relative d_block mr_70">
<div class="text p_relative d_block">
<h3>Domestic Service</h3>
<p style="text-align: justify; hyphens: auto">
A Domestic Electrical Service refers to the
electrical infrastructure and services provided
within a residential property, such as a house or
apartment. It encompasses all the electrical
components, wiring, outlets, fixtures, and devices
that facilitate the distribution of electricity
for various purposes, including lighting,
appliances, heating, cooling, and entertainment.
</p>
<!-- <p>
Excepteur sint occaecat cupidatat non proident,
sunt in culpa qui officia deserunt mollit anim id
est laborum.
</p> -->
</div>
<div class="row clearfix">
<div
class="col-lg-6 col-md-6 col-sm-12 single-column"
>
<div class="single-item p_relative d_block">
<div class="icon-box">
<i class="icon-15"></i>
</div>
<h4>
<a href="service.html">Air Conditioning</a>
</h4>
<p style="text-align: justify; hyphens: auto">
Air conditioning service refers to the
maintenance, repair, and optimization of air
conditioning systems in residential,
commercial, and industrial settings.
</p>
</div>
</div>
<div
class="col-lg-6 col-md-6 col-sm-12 single-column"
>
<div class="single-item p_relative d_block">
<div class="icon-box">
<i class="icon-16"></i>
</div>
<h4>
<a href="service.html">Heating Service</a>
</h4>
<p style="text-align: justify; hyphens: auto">
Heating Service refers to a range of
professional maintenance, repair, and
installation activities related to heating
systems in residential, commercial, and
industrial settings.
</p>
</div>
</div>
<div
class="col-lg-6 col-md-6 col-sm-12 single-column"
>
<div class="single-item p_relative d_block">
<div class="icon-box">
<i class="icon-17"></i>
</div>
<h4>
<a href="service.html">Indoor Lighting</a>
</h4>
<p style="text-align: justify; hyphens: auto">
Indoor Lighting Service refers to a
comprehensive set of offerings provided by
professionals or companies in the field of
interior lighting design, installation,
maintenance, and optimization.
</p>
</div>
</div>
<div
class="col-lg-6 col-md-6 col-sm-12 single-column"
>
<div class="single-item p_relative d_block">
<div class="icon-box">
<i class="icon-18"></i>
</div>
<h4>
<a href="service.html">Security System</a>
</h4>
<p style="text-align: justify; hyphens: auto">
CCTV, or Closed-Circuit Television, refers to
a system of video surveillance where cameras
are used to transmit signals to a specific set
of monitors or recording devices, limited to a
closed and private network.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 col-sm-12 image-column">
<div class="image_block_two">
<div class="image-box p_relative d_block mt_8">
<figure class="image p_relative d_block">
<img
src="assets/images/service/service1.jpg"
alt=""
/>
</figure>
<div class="icon-box"><i class="icon-45"></i></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab active-tab" id="tab-2">
<div class="inner-box">
<div class="content_block_two">
<div class="content-box p_relative d_block">
<div class="row clearfix">
<div class="col-lg-4 col-md-12 col-sm-12 text-column">
<div class="text p_relative d_block">
<h3>Industrial Service</h3>
<p style="text-align: justify; hyphens: auto">
Industrial services refer to a wide range of
specialized activities and support offered to
businesses operating within the industrial sector.
These services are designed to enhance the
efficiency, productivity, safety, and overall
functioning of industrial operations. They can
encompass various aspects of industrial processes,
machinery, equipment, maintenance, and management.
Industrial services often involve skilled
professionals, advanced technology, and
specialized tools to address the unique needs of
industrial businesses
</p>
<!-- <p>
Excepteur sint occaecat cupidatat non proid ent,
sunt in culpa qui officia deserunt mollit anim id
est laborum.
</p> -->
</div>
</div>
<div class="col-lg-8 col-md-12 col-sm-12 inner-column">
<div class="inner-content">
<div class="row clearfix">
<div
class="col-lg-6 col-md-6 col-sm-12 single-column"
>
<div class="single-item p_relative d_block">
<div class="icon-box">
<i class="icon-15"></i>
</div>
<h4>
<a href="service.html">Air Conditioning</a>
</h4>
<p style="text-align: justify; hyphens: auto">
Air conditioning service refers to the
maintenance, repair, and optimization of air
conditioning systems in residential,
commercial, and industrial settings.
</p>
</div>
</div>
<div
class="col-lg-6 col-md-6 col-sm-12 single-column"
>
<div class="single-item p_relative d_block">
<div class="icon-box">
<i class="icon-16"></i>
</div>
<h4>
<a href="service.html">Heating Service</a>
</h4>
<p style="text-align: justify; hyphens: auto">
Heating Service refers to a range of
professional maintenance, repair, and
installation activities related to heating
systems in residential, commercial, and
industrial settings.
</p>
</div>
</div>
<div
class="col-lg-6 col-md-6 col-sm-12 single-column"
>
<div class="single-item p_relative d_block">
<div class="icon-box">
<i class="icon-17"></i>
</div>
<h4>
<a href="service.html">Indoor Lighting</a>
</h4>
<p style="text-align: justify; hyphens: auto">
Indoor Lighting Service refers to a
comprehensive set of offerings provided by
professionals or companies in the field of
interior lighting design, installation,
maintenance, and optimization.
</p>
</div>
</div>
<div
class="col-lg-6 col-md-6 col-sm-12 single-column"
>
<div class="single-item p_relative d_block">
<div class="icon-box">
<i class="icon-18"></i>
</div>
<h4>
<a href="service.html">Security System</a>
</h4>
<p style="text-align: justify; hyphens: auto">
CCTV, or Closed-Circuit Television, refers
to a system of video surveillance where
cameras are used to transmit signals to a
specific set of monitors or recording
devices, limited to a closed and private
network.
</p>
</div>
</div>
<div
class="col-lg-6 col-md-6 col-sm-12 single-column"
>
<div class="single-item p_relative d_block">
<div class="icon-box">
<i class="icon-19"></i>
</div>
<h4>
<a href="service.html">Power Outlets</a>
</h4>
<p style="text-align: justify; hyphens: auto">
A power outlet, also commonly referred to as
an electrical socket, wall socket, or
receptacle, is a device that provides a
connection point for electrical devices to
access electricity from a power source.
</p>
</div>
</div>
<div
class="col-lg-6 col-md-6 col-sm-12 single-column"
>
<div class="single-item p_relative d_block">
<div class="icon-box">
<i class="icon-20"></i>
</div>
<h4>
<a href="service.html">Electrical Panels</a>
</h4>
<p style="text-align: justify; hyphens: auto">
An electrical panel, also known as a breaker
panel or distribution board, is a crucial
component of an electrical system in a
building or facility. Its main purpose is to
control and distribute electrical power to
various circuits throughout the structure.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab" id="tab-3">
<div class="inner-box">
<div class="row clearfix">
<div class="col-lg-4 col-md-12 col-sm-12 image-column">
<div class="image_block_three">
<div class="image-box p_relative d_block">
<figure class="image p_relative d_block">
<img
src="assets/images/service/service2.jpg"
alt=""
/>
</figure>
<div class="text">
<h5>
<i class="icon-45"></i>Best of Electrical Services
</h5>
</div>
</div>
</div>
</div>
<div class="col-lg-8 col-md-12 col-sm-12 content-column">
<div class="content_block_three">
<div class="content-box">
<div class="text">
<h3>Commercial Service</h3>