-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathj7-global.html
1268 lines (1251 loc) · 62.4 KB
/
j7-global.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" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="images/logo.webp" />
<meta name="description" content="" />
<meta name="keywords" content="bootstrap, bootstrap5" />
<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=Work+Sans:wght@400;500;600;700&display=swap"
rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Beau+Rivage&family=Cinzel+Decorative:wght@400;700;900&family=Rubik: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" />
<link rel="stylesheet" href="fonts/icomoon/style.css" />
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css" />
<link rel="stylesheet" href="css/tiny-slider.css" />
<link rel="stylesheet" href="css/aos.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/custom.css" />
<link rel="stylesheet" href="css/float-icons.css" />
<title>- j7 Global</title>
</head>
<body>
<!--====Floating WhatsApp====-->
<div class="wa-float" target="_blank">
<a href="https://wa.me/923177779844">
<svg
xmlns="http://www.w3.org/2000/svg"
width="45"
height="45"
viewBox="0 0 256 258">
<defs>
<linearGradient
id="logosWhatsappIcon0"
x1="50%"
x2="50%"
y1="100%"
y2="0%">
<stop offset="0%" stop-color="#1FAF38" />
<stop offset="100%" stop-color="#60D669" />
</linearGradient>
<linearGradient
id="logosWhatsappIcon1"
x1="50%"
x2="50%"
y1="100%"
y2="0%">
<stop offset="0%" stop-color="#F9F9F9" />
<stop offset="100%" stop-color="#FFF" />
</linearGradient>
</defs>
<path
fill="url(#logosWhatsappIcon0)"
d="M5.463 127.456c-.006 21.677 5.658 42.843 16.428 61.499L4.433 252.697l65.232-17.104a122.994 122.994 0 0 0 58.8 14.97h.054c67.815 0 123.018-55.183 123.047-123.01c.013-32.867-12.775-63.773-36.009-87.025c-23.23-23.25-54.125-36.061-87.043-36.076c-67.823 0-123.022 55.18-123.05 123.004" />
<path
fill="url(#logosWhatsappIcon1)"
d="M1.07 127.416c-.007 22.457 5.86 44.38 17.014 63.704L0 257.147l67.571-17.717c18.618 10.151 39.58 15.503 60.91 15.511h.055c70.248 0 127.434-57.168 127.464-127.423c.012-34.048-13.236-66.065-37.3-90.15C194.633 13.286 162.633.014 128.536 0C58.276 0 1.099 57.16 1.071 127.416Zm40.24 60.376l-2.523-4.005c-10.606-16.864-16.204-36.352-16.196-56.363C22.614 69.029 70.138 21.52 128.576 21.52c28.3.012 54.896 11.044 74.9 31.06c20.003 20.018 31.01 46.628 31.003 74.93c-.026 58.395-47.551 105.91-105.943 105.91h-.042c-19.013-.01-37.66-5.116-53.922-14.765l-3.87-2.295l-40.098 10.513l10.706-39.082Z" />
<path
fill="#FFF"
d="M96.678 74.148c-2.386-5.303-4.897-5.41-7.166-5.503c-1.858-.08-3.982-.074-6.104-.074c-2.124 0-5.575.799-8.492 3.984c-2.92 3.188-11.148 10.892-11.148 26.561c0 15.67 11.413 30.813 13.004 32.94c1.593 2.123 22.033 35.307 54.405 48.073c26.904 10.609 32.379 8.499 38.218 7.967c5.84-.53 18.844-7.702 21.497-15.139c2.655-7.436 2.655-13.81 1.859-15.142c-.796-1.327-2.92-2.124-6.105-3.716c-3.186-1.593-18.844-9.298-21.763-10.361c-2.92-1.062-5.043-1.592-7.167 1.597c-2.124 3.184-8.223 10.356-10.082 12.48c-1.857 2.129-3.716 2.394-6.9.801c-3.187-1.598-13.444-4.957-25.613-15.806c-9.468-8.442-15.86-18.867-17.718-22.056c-1.858-3.184-.199-4.91 1.398-6.497c1.431-1.427 3.186-3.719 4.78-5.578c1.588-1.86 2.118-3.187 3.18-5.311c1.063-2.126.531-3.986-.264-5.579c-.798-1.593-6.987-17.343-9.819-23.64" />
</svg>
</a>
</div>
<!--===Floating WhatsApp End====-->
<!---------------------------- Floating Icons --------------------------->
<div class="float-icons">
<ul>
<a
class="my-3"
href="https://www.facebook.com/gloriousrealestates.pk"
target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 256 256">
<path
fill="#1877F2"
d="M256 128C256 57.308 198.692 0 128 0C57.308 0 0 57.307 0 128c0 63.888 46.808 116.843 108 126.445V165H75.5v-37H108V99.8c0-32.08 19.11-49.8 48.347-49.8C170.352 50 185 52.5 185 52.5V84h-16.14C152.958 84 148 93.867 148 103.99V128h35.5l-5.675 37H148v89.445c61.192-9.602 108-62.556 108-126.445" />
<path
fill="#FFF"
d="m177.825 165l5.675-37H148v-24.01C148 93.866 152.959 84 168.86 84H185V52.5S170.352 50 156.347 50C127.11 50 108 67.72 108 99.8V128H75.5v37H108v89.445A128.959 128.959 0 0 0 128 256a128.9 128.9 0 0 0 20-1.555V165h29.825" />
</svg>
</a>
<a
class="my-3"
href="https://www.instagram.com/gloriousrealestates.pk/"
target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 256 256">
<g fill="none">
<rect
width="256"
height="256"
fill="url(#skillIconsInstagram0)"
rx="60" />
<rect
width="256"
height="256"
fill="url(#skillIconsInstagram1)"
rx="60" />
<path
fill="#fff"
d="M128.009 28c-27.158 0-30.567.119-41.233.604c-10.646.488-17.913 2.173-24.271 4.646c-6.578 2.554-12.157 5.971-17.715 11.531c-5.563 5.559-8.98 11.138-11.542 17.713c-2.48 6.36-4.167 13.63-4.646 24.271c-.477 10.667-.602 14.077-.602 41.236s.12 30.557.604 41.223c.49 10.646 2.175 17.913 4.646 24.271c2.556 6.578 5.973 12.157 11.533 17.715c5.557 5.563 11.136 8.988 17.709 11.542c6.363 2.473 13.631 4.158 24.275 4.646c10.667.485 14.073.604 41.23.604c27.161 0 30.559-.119 41.225-.604c10.646-.488 17.921-2.173 24.284-4.646c6.575-2.554 12.146-5.979 17.702-11.542c5.563-5.558 8.979-11.137 11.542-17.712c2.458-6.361 4.146-13.63 4.646-24.272c.479-10.666.604-14.066.604-41.225s-.125-30.567-.604-41.234c-.5-10.646-2.188-17.912-4.646-24.27c-2.563-6.578-5.979-12.157-11.542-17.716c-5.562-5.562-11.125-8.979-17.708-11.53c-6.375-2.474-13.646-4.16-24.292-4.647c-10.667-.485-14.063-.604-41.23-.604h.031Zm-8.971 18.021c2.663-.004 5.634 0 8.971 0c26.701 0 29.865.096 40.409.575c9.75.446 15.042 2.075 18.567 3.444c4.667 1.812 7.994 3.979 11.492 7.48c3.5 3.5 5.666 6.833 7.483 11.5c1.369 3.52 3 8.812 3.444 18.562c.479 10.542.583 13.708.583 40.396c0 26.688-.104 29.855-.583 40.396c-.446 9.75-2.075 15.042-3.444 18.563c-1.812 4.667-3.983 7.99-7.483 11.488c-3.5 3.5-6.823 5.666-11.492 7.479c-3.521 1.375-8.817 3-18.567 3.446c-10.542.479-13.708.583-40.409.583c-26.702 0-29.867-.104-40.408-.583c-9.75-.45-15.042-2.079-18.57-3.448c-4.666-1.813-8-3.979-11.5-7.479s-5.666-6.825-7.483-11.494c-1.369-3.521-3-8.813-3.444-18.563c-.479-10.542-.575-13.708-.575-40.413c0-26.704.096-29.854.575-40.396c.446-9.75 2.075-15.042 3.444-18.567c1.813-4.667 3.983-8 7.484-11.5c3.5-3.5 6.833-5.667 11.5-7.483c3.525-1.375 8.819-3 18.569-3.448c9.225-.417 12.8-.542 31.437-.563v.025Zm62.351 16.604c-6.625 0-12 5.37-12 11.996c0 6.625 5.375 12 12 12s12-5.375 12-12s-5.375-12-12-12v.004Zm-53.38 14.021c-28.36 0-51.354 22.994-51.354 51.355c0 28.361 22.994 51.344 51.354 51.344c28.361 0 51.347-22.983 51.347-51.344c0-28.36-22.988-51.355-51.349-51.355h.002Zm0 18.021c18.409 0 33.334 14.923 33.334 33.334c0 18.409-14.925 33.334-33.334 33.334c-18.41 0-33.333-14.925-33.333-33.334c0-18.411 14.923-33.334 33.333-33.334Z" />
<defs>
<radialGradient
id="skillIconsInstagram0"
cx="0"
cy="0"
r="1"
gradientTransform="matrix(0 -253.715 235.975 0 68 275.717)"
gradientUnits="userSpaceOnUse">
<stop stop-color="#FD5" />
<stop offset=".1" stop-color="#FD5" />
<stop offset=".5" stop-color="#FF543E" />
<stop offset="1" stop-color="#C837AB" />
</radialGradient>
<radialGradient
id="skillIconsInstagram1"
cx="0"
cy="0"
r="1"
gradientTransform="matrix(22.25952 111.2061 -458.39518 91.75449 -42.881 18.441)"
gradientUnits="userSpaceOnUse">
<stop stop-color="#3771C8" />
<stop offset=".128" stop-color="#3771C8" />
<stop offset="1" stop-color="#60F" stop-opacity="0" />
</radialGradient>
</defs>
</g>
</svg>
</a>
<a class="my-3" href="#" target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 24 24">
<path
fill="currentColor"
d="M8 2H1l8.26 11.014L1.45 22H4.1l6.388-7.349L16 22h7l-8.608-11.478L21.8 2h-2.65l-5.986 6.886L8 2Zm9 18L5 4h2l12 16h-2Z" />
</svg>
</a>
<a class="my-3" href="#" target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 256 256">
<g fill="none">
<rect width="256" height="256" fill="#fff" rx="60" />
<rect width="256" height="256" fill="#0A66C2" rx="60" />
<path
fill="#fff"
d="M184.715 217.685h29.27a4 4 0 0 0 4-3.999l.015-61.842c0-32.323-6.965-57.168-44.738-57.168c-14.359-.534-27.9 6.868-35.207 19.228a.32.32 0 0 1-.595-.161V101.66a4 4 0 0 0-4-4h-27.777a4 4 0 0 0-4 4v112.02a4 4 0 0 0 4 4h29.268a4 4 0 0 0 4-4v-55.373c0-15.657 2.97-30.82 22.381-30.82c19.135 0 19.383 17.916 19.383 31.834v54.364a4 4 0 0 0 4 4ZM38 59.627c0 11.865 9.767 21.627 21.632 21.627c11.862-.001 21.623-9.769 21.623-21.631C81.253 47.761 71.491 38 59.628 38C47.762 38 38 47.763 38 59.627Zm6.959 158.058h29.307a4 4 0 0 0 4-4V101.66a4 4 0 0 0-4-4H44.959a4 4 0 0 0-4 4v112.025a4 4 0 0 0 4 4Z" />
</g>
</svg>
</a>
</ul>
</div>
<!-- ------------------------- Floating Icons End ------------------- -->
<!---------------------------- Floating Icons --------------------------->
<div class="float-icons">
<ul>
<a
class="my-3"
href="https://www.facebook.com/gloriousrealestates.pk"
target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 256 256">
<path
fill="#1877F2"
d="M256 128C256 57.308 198.692 0 128 0C57.308 0 0 57.307 0 128c0 63.888 46.808 116.843 108 126.445V165H75.5v-37H108V99.8c0-32.08 19.11-49.8 48.347-49.8C170.352 50 185 52.5 185 52.5V84h-16.14C152.958 84 148 93.867 148 103.99V128h35.5l-5.675 37H148v89.445c61.192-9.602 108-62.556 108-126.445" />
<path
fill="#FFF"
d="m177.825 165l5.675-37H148v-24.01C148 93.866 152.959 84 168.86 84H185V52.5S170.352 50 156.347 50C127.11 50 108 67.72 108 99.8V128H75.5v37H108v89.445A128.959 128.959 0 0 0 128 256a128.9 128.9 0 0 0 20-1.555V165h29.825" />
</svg>
</a>
<a
class="my-3"
href="https://www.instagram.com/gloriousrealestates.pk/"
target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 256 256">
<g fill="none">
<rect
width="256"
height="256"
fill="url(#skillIconsInstagram0)"
rx="60" />
<rect
width="256"
height="256"
fill="url(#skillIconsInstagram1)"
rx="60" />
<path
fill="#fff"
d="M128.009 28c-27.158 0-30.567.119-41.233.604c-10.646.488-17.913 2.173-24.271 4.646c-6.578 2.554-12.157 5.971-17.715 11.531c-5.563 5.559-8.98 11.138-11.542 17.713c-2.48 6.36-4.167 13.63-4.646 24.271c-.477 10.667-.602 14.077-.602 41.236s.12 30.557.604 41.223c.49 10.646 2.175 17.913 4.646 24.271c2.556 6.578 5.973 12.157 11.533 17.715c5.557 5.563 11.136 8.988 17.709 11.542c6.363 2.473 13.631 4.158 24.275 4.646c10.667.485 14.073.604 41.23.604c27.161 0 30.559-.119 41.225-.604c10.646-.488 17.921-2.173 24.284-4.646c6.575-2.554 12.146-5.979 17.702-11.542c5.563-5.558 8.979-11.137 11.542-17.712c2.458-6.361 4.146-13.63 4.646-24.272c.479-10.666.604-14.066.604-41.225s-.125-30.567-.604-41.234c-.5-10.646-2.188-17.912-4.646-24.27c-2.563-6.578-5.979-12.157-11.542-17.716c-5.562-5.562-11.125-8.979-17.708-11.53c-6.375-2.474-13.646-4.16-24.292-4.647c-10.667-.485-14.063-.604-41.23-.604h.031Zm-8.971 18.021c2.663-.004 5.634 0 8.971 0c26.701 0 29.865.096 40.409.575c9.75.446 15.042 2.075 18.567 3.444c4.667 1.812 7.994 3.979 11.492 7.48c3.5 3.5 5.666 6.833 7.483 11.5c1.369 3.52 3 8.812 3.444 18.562c.479 10.542.583 13.708.583 40.396c0 26.688-.104 29.855-.583 40.396c-.446 9.75-2.075 15.042-3.444 18.563c-1.812 4.667-3.983 7.99-7.483 11.488c-3.5 3.5-6.823 5.666-11.492 7.479c-3.521 1.375-8.817 3-18.567 3.446c-10.542.479-13.708.583-40.409.583c-26.702 0-29.867-.104-40.408-.583c-9.75-.45-15.042-2.079-18.57-3.448c-4.666-1.813-8-3.979-11.5-7.479s-5.666-6.825-7.483-11.494c-1.369-3.521-3-8.813-3.444-18.563c-.479-10.542-.575-13.708-.575-40.413c0-26.704.096-29.854.575-40.396c.446-9.75 2.075-15.042 3.444-18.567c1.813-4.667 3.983-8 7.484-11.5c3.5-3.5 6.833-5.667 11.5-7.483c3.525-1.375 8.819-3 18.569-3.448c9.225-.417 12.8-.542 31.437-.563v.025Zm62.351 16.604c-6.625 0-12 5.37-12 11.996c0 6.625 5.375 12 12 12s12-5.375 12-12s-5.375-12-12-12v.004Zm-53.38 14.021c-28.36 0-51.354 22.994-51.354 51.355c0 28.361 22.994 51.344 51.354 51.344c28.361 0 51.347-22.983 51.347-51.344c0-28.36-22.988-51.355-51.349-51.355h.002Zm0 18.021c18.409 0 33.334 14.923 33.334 33.334c0 18.409-14.925 33.334-33.334 33.334c-18.41 0-33.333-14.925-33.333-33.334c0-18.411 14.923-33.334 33.333-33.334Z" />
<defs>
<radialGradient
id="skillIconsInstagram0"
cx="0"
cy="0"
r="1"
gradientTransform="matrix(0 -253.715 235.975 0 68 275.717)"
gradientUnits="userSpaceOnUse">
<stop stop-color="#FD5" />
<stop offset=".1" stop-color="#FD5" />
<stop offset=".5" stop-color="#FF543E" />
<stop offset="1" stop-color="#C837AB" />
</radialGradient>
<radialGradient
id="skillIconsInstagram1"
cx="0"
cy="0"
r="1"
gradientTransform="matrix(22.25952 111.2061 -458.39518 91.75449 -42.881 18.441)"
gradientUnits="userSpaceOnUse">
<stop stop-color="#3771C8" />
<stop offset=".128" stop-color="#3771C8" />
<stop offset="1" stop-color="#60F" stop-opacity="0" />
</radialGradient>
</defs>
</g>
</svg>
</a>
<a class="my-3" href="#" target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 24 24">
<path
fill="currentColor"
d="M8 2H1l8.26 11.014L1.45 22H4.1l6.388-7.349L16 22h7l-8.608-11.478L21.8 2h-2.65l-5.986 6.886L8 2Zm9 18L5 4h2l12 16h-2Z" />
</svg>
</a>
<a class="my-3" href="#" target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 256 256">
<g fill="none">
<rect width="256" height="256" fill="#fff" rx="60" />
<rect width="256" height="256" fill="#0A66C2" rx="60" />
<path
fill="#fff"
d="M184.715 217.685h29.27a4 4 0 0 0 4-3.999l.015-61.842c0-32.323-6.965-57.168-44.738-57.168c-14.359-.534-27.9 6.868-35.207 19.228a.32.32 0 0 1-.595-.161V101.66a4 4 0 0 0-4-4h-27.777a4 4 0 0 0-4 4v112.02a4 4 0 0 0 4 4h29.268a4 4 0 0 0 4-4v-55.373c0-15.657 2.97-30.82 22.381-30.82c19.135 0 19.383 17.916 19.383 31.834v54.364a4 4 0 0 0 4 4ZM38 59.627c0 11.865 9.767 21.627 21.632 21.627c11.862-.001 21.623-9.769 21.623-21.631C81.253 47.761 71.491 38 59.628 38C47.762 38 38 47.763 38 59.627Zm6.959 158.058h29.307a4 4 0 0 0 4-4V101.66a4 4 0 0 0-4-4H44.959a4 4 0 0 0-4 4v112.025a4 4 0 0 0 4 4Z" />
</g>
</svg>
</a>
</ul>
</div>
<!-- ------------------------- Floating Icons End ------------------- -->
<!---------------------------- Floating Icons --------------------------->
<div class="float-icons">
<ul>
<a
class="my-3"
href="https://www.facebook.com/gloriousrealestates.pk"
target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 256 256">
<path
fill="#1877F2"
d="M256 128C256 57.308 198.692 0 128 0C57.308 0 0 57.307 0 128c0 63.888 46.808 116.843 108 126.445V165H75.5v-37H108V99.8c0-32.08 19.11-49.8 48.347-49.8C170.352 50 185 52.5 185 52.5V84h-16.14C152.958 84 148 93.867 148 103.99V128h35.5l-5.675 37H148v89.445c61.192-9.602 108-62.556 108-126.445" />
<path
fill="#FFF"
d="m177.825 165l5.675-37H148v-24.01C148 93.866 152.959 84 168.86 84H185V52.5S170.352 50 156.347 50C127.11 50 108 67.72 108 99.8V128H75.5v37H108v89.445A128.959 128.959 0 0 0 128 256a128.9 128.9 0 0 0 20-1.555V165h29.825" />
</svg>
</a>
<a
class="my-3"
href="https://www.instagram.com/gloriousrealestates.pk/"
target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 256 256">
<g fill="none">
<rect
width="256"
height="256"
fill="url(#skillIconsInstagram0)"
rx="60" />
<rect
width="256"
height="256"
fill="url(#skillIconsInstagram1)"
rx="60" />
<path
fill="#fff"
d="M128.009 28c-27.158 0-30.567.119-41.233.604c-10.646.488-17.913 2.173-24.271 4.646c-6.578 2.554-12.157 5.971-17.715 11.531c-5.563 5.559-8.98 11.138-11.542 17.713c-2.48 6.36-4.167 13.63-4.646 24.271c-.477 10.667-.602 14.077-.602 41.236s.12 30.557.604 41.223c.49 10.646 2.175 17.913 4.646 24.271c2.556 6.578 5.973 12.157 11.533 17.715c5.557 5.563 11.136 8.988 17.709 11.542c6.363 2.473 13.631 4.158 24.275 4.646c10.667.485 14.073.604 41.23.604c27.161 0 30.559-.119 41.225-.604c10.646-.488 17.921-2.173 24.284-4.646c6.575-2.554 12.146-5.979 17.702-11.542c5.563-5.558 8.979-11.137 11.542-17.712c2.458-6.361 4.146-13.63 4.646-24.272c.479-10.666.604-14.066.604-41.225s-.125-30.567-.604-41.234c-.5-10.646-2.188-17.912-4.646-24.27c-2.563-6.578-5.979-12.157-11.542-17.716c-5.562-5.562-11.125-8.979-17.708-11.53c-6.375-2.474-13.646-4.16-24.292-4.647c-10.667-.485-14.063-.604-41.23-.604h.031Zm-8.971 18.021c2.663-.004 5.634 0 8.971 0c26.701 0 29.865.096 40.409.575c9.75.446 15.042 2.075 18.567 3.444c4.667 1.812 7.994 3.979 11.492 7.48c3.5 3.5 5.666 6.833 7.483 11.5c1.369 3.52 3 8.812 3.444 18.562c.479 10.542.583 13.708.583 40.396c0 26.688-.104 29.855-.583 40.396c-.446 9.75-2.075 15.042-3.444 18.563c-1.812 4.667-3.983 7.99-7.483 11.488c-3.5 3.5-6.823 5.666-11.492 7.479c-3.521 1.375-8.817 3-18.567 3.446c-10.542.479-13.708.583-40.409.583c-26.702 0-29.867-.104-40.408-.583c-9.75-.45-15.042-2.079-18.57-3.448c-4.666-1.813-8-3.979-11.5-7.479s-5.666-6.825-7.483-11.494c-1.369-3.521-3-8.813-3.444-18.563c-.479-10.542-.575-13.708-.575-40.413c0-26.704.096-29.854.575-40.396c.446-9.75 2.075-15.042 3.444-18.567c1.813-4.667 3.983-8 7.484-11.5c3.5-3.5 6.833-5.667 11.5-7.483c3.525-1.375 8.819-3 18.569-3.448c9.225-.417 12.8-.542 31.437-.563v.025Zm62.351 16.604c-6.625 0-12 5.37-12 11.996c0 6.625 5.375 12 12 12s12-5.375 12-12s-5.375-12-12-12v.004Zm-53.38 14.021c-28.36 0-51.354 22.994-51.354 51.355c0 28.361 22.994 51.344 51.354 51.344c28.361 0 51.347-22.983 51.347-51.344c0-28.36-22.988-51.355-51.349-51.355h.002Zm0 18.021c18.409 0 33.334 14.923 33.334 33.334c0 18.409-14.925 33.334-33.334 33.334c-18.41 0-33.333-14.925-33.333-33.334c0-18.411 14.923-33.334 33.333-33.334Z" />
<defs>
<radialGradient
id="skillIconsInstagram0"
cx="0"
cy="0"
r="1"
gradientTransform="matrix(0 -253.715 235.975 0 68 275.717)"
gradientUnits="userSpaceOnUse">
<stop stop-color="#FD5" />
<stop offset=".1" stop-color="#FD5" />
<stop offset=".5" stop-color="#FF543E" />
<stop offset="1" stop-color="#C837AB" />
</radialGradient>
<radialGradient
id="skillIconsInstagram1"
cx="0"
cy="0"
r="1"
gradientTransform="matrix(22.25952 111.2061 -458.39518 91.75449 -42.881 18.441)"
gradientUnits="userSpaceOnUse">
<stop stop-color="#3771C8" />
<stop offset=".128" stop-color="#3771C8" />
<stop offset="1" stop-color="#60F" stop-opacity="0" />
</radialGradient>
</defs>
</g>
</svg>
</a>
<a class="my-3" href="#" target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 24 24">
<path
fill="currentColor"
d="M8 2H1l8.26 11.014L1.45 22H4.1l6.388-7.349L16 22h7l-8.608-11.478L21.8 2h-2.65l-5.986 6.886L8 2Zm9 18L5 4h2l12 16h-2Z" />
</svg>
</a>
<a class="my-3" href="#" target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 256 256">
<g fill="none">
<rect width="256" height="256" fill="#fff" rx="60" />
<rect width="256" height="256" fill="#0A66C2" rx="60" />
<path
fill="#fff"
d="M184.715 217.685h29.27a4 4 0 0 0 4-3.999l.015-61.842c0-32.323-6.965-57.168-44.738-57.168c-14.359-.534-27.9 6.868-35.207 19.228a.32.32 0 0 1-.595-.161V101.66a4 4 0 0 0-4-4h-27.777a4 4 0 0 0-4 4v112.02a4 4 0 0 0 4 4h29.268a4 4 0 0 0 4-4v-55.373c0-15.657 2.97-30.82 22.381-30.82c19.135 0 19.383 17.916 19.383 31.834v54.364a4 4 0 0 0 4 4ZM38 59.627c0 11.865 9.767 21.627 21.632 21.627c11.862-.001 21.623-9.769 21.623-21.631C81.253 47.761 71.491 38 59.628 38C47.762 38 38 47.763 38 59.627Zm6.959 158.058h29.307a4 4 0 0 0 4-4V101.66a4 4 0 0 0-4-4H44.959a4 4 0 0 0-4 4v112.025a4 4 0 0 0 4 4Z" />
</g>
</svg>
</a>
</ul>
</div>
<!-- ------------------------- Floating Icons End ------------------- -->
<!---------------------------- Floating Icons --------------------------->
<div class="float-icons">
<ul>
<a
class="my-3"
href="https://www.facebook.com/gloriousrealestates.pk"
target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 256 256">
<path
fill="#1877F2"
d="M256 128C256 57.308 198.692 0 128 0C57.308 0 0 57.307 0 128c0 63.888 46.808 116.843 108 126.445V165H75.5v-37H108V99.8c0-32.08 19.11-49.8 48.347-49.8C170.352 50 185 52.5 185 52.5V84h-16.14C152.958 84 148 93.867 148 103.99V128h35.5l-5.675 37H148v89.445c61.192-9.602 108-62.556 108-126.445" />
<path
fill="#FFF"
d="m177.825 165l5.675-37H148v-24.01C148 93.866 152.959 84 168.86 84H185V52.5S170.352 50 156.347 50C127.11 50 108 67.72 108 99.8V128H75.5v37H108v89.445A128.959 128.959 0 0 0 128 256a128.9 128.9 0 0 0 20-1.555V165h29.825" />
</svg>
</a>
<a
class="my-3"
href="https://www.instagram.com/gloriousrealestates.pk/"
target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 256 256">
<g fill="none">
<rect
width="256"
height="256"
fill="url(#skillIconsInstagram0)"
rx="60" />
<rect
width="256"
height="256"
fill="url(#skillIconsInstagram1)"
rx="60" />
<path
fill="#fff"
d="M128.009 28c-27.158 0-30.567.119-41.233.604c-10.646.488-17.913 2.173-24.271 4.646c-6.578 2.554-12.157 5.971-17.715 11.531c-5.563 5.559-8.98 11.138-11.542 17.713c-2.48 6.36-4.167 13.63-4.646 24.271c-.477 10.667-.602 14.077-.602 41.236s.12 30.557.604 41.223c.49 10.646 2.175 17.913 4.646 24.271c2.556 6.578 5.973 12.157 11.533 17.715c5.557 5.563 11.136 8.988 17.709 11.542c6.363 2.473 13.631 4.158 24.275 4.646c10.667.485 14.073.604 41.23.604c27.161 0 30.559-.119 41.225-.604c10.646-.488 17.921-2.173 24.284-4.646c6.575-2.554 12.146-5.979 17.702-11.542c5.563-5.558 8.979-11.137 11.542-17.712c2.458-6.361 4.146-13.63 4.646-24.272c.479-10.666.604-14.066.604-41.225s-.125-30.567-.604-41.234c-.5-10.646-2.188-17.912-4.646-24.27c-2.563-6.578-5.979-12.157-11.542-17.716c-5.562-5.562-11.125-8.979-17.708-11.53c-6.375-2.474-13.646-4.16-24.292-4.647c-10.667-.485-14.063-.604-41.23-.604h.031Zm-8.971 18.021c2.663-.004 5.634 0 8.971 0c26.701 0 29.865.096 40.409.575c9.75.446 15.042 2.075 18.567 3.444c4.667 1.812 7.994 3.979 11.492 7.48c3.5 3.5 5.666 6.833 7.483 11.5c1.369 3.52 3 8.812 3.444 18.562c.479 10.542.583 13.708.583 40.396c0 26.688-.104 29.855-.583 40.396c-.446 9.75-2.075 15.042-3.444 18.563c-1.812 4.667-3.983 7.99-7.483 11.488c-3.5 3.5-6.823 5.666-11.492 7.479c-3.521 1.375-8.817 3-18.567 3.446c-10.542.479-13.708.583-40.409.583c-26.702 0-29.867-.104-40.408-.583c-9.75-.45-15.042-2.079-18.57-3.448c-4.666-1.813-8-3.979-11.5-7.479s-5.666-6.825-7.483-11.494c-1.369-3.521-3-8.813-3.444-18.563c-.479-10.542-.575-13.708-.575-40.413c0-26.704.096-29.854.575-40.396c.446-9.75 2.075-15.042 3.444-18.567c1.813-4.667 3.983-8 7.484-11.5c3.5-3.5 6.833-5.667 11.5-7.483c3.525-1.375 8.819-3 18.569-3.448c9.225-.417 12.8-.542 31.437-.563v.025Zm62.351 16.604c-6.625 0-12 5.37-12 11.996c0 6.625 5.375 12 12 12s12-5.375 12-12s-5.375-12-12-12v.004Zm-53.38 14.021c-28.36 0-51.354 22.994-51.354 51.355c0 28.361 22.994 51.344 51.354 51.344c28.361 0 51.347-22.983 51.347-51.344c0-28.36-22.988-51.355-51.349-51.355h.002Zm0 18.021c18.409 0 33.334 14.923 33.334 33.334c0 18.409-14.925 33.334-33.334 33.334c-18.41 0-33.333-14.925-33.333-33.334c0-18.411 14.923-33.334 33.333-33.334Z" />
<defs>
<radialGradient
id="skillIconsInstagram0"
cx="0"
cy="0"
r="1"
gradientTransform="matrix(0 -253.715 235.975 0 68 275.717)"
gradientUnits="userSpaceOnUse">
<stop stop-color="#FD5" />
<stop offset=".1" stop-color="#FD5" />
<stop offset=".5" stop-color="#FF543E" />
<stop offset="1" stop-color="#C837AB" />
</radialGradient>
<radialGradient
id="skillIconsInstagram1"
cx="0"
cy="0"
r="1"
gradientTransform="matrix(22.25952 111.2061 -458.39518 91.75449 -42.881 18.441)"
gradientUnits="userSpaceOnUse">
<stop stop-color="#3771C8" />
<stop offset=".128" stop-color="#3771C8" />
<stop offset="1" stop-color="#60F" stop-opacity="0" />
</radialGradient>
</defs>
</g>
</svg>
</a>
<a class="my-3" href="#" target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 24 24">
<path
fill="currentColor"
d="M8 2H1l8.26 11.014L1.45 22H4.1l6.388-7.349L16 22h7l-8.608-11.478L21.8 2h-2.65l-5.986 6.886L8 2Zm9 18L5 4h2l12 16h-2Z" />
</svg>
</a>
<a class="my-3" href="#" target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 256 256">
<g fill="none">
<rect width="256" height="256" fill="#fff" rx="60" />
<rect width="256" height="256" fill="#0A66C2" rx="60" />
<path
fill="#fff"
d="M184.715 217.685h29.27a4 4 0 0 0 4-3.999l.015-61.842c0-32.323-6.965-57.168-44.738-57.168c-14.359-.534-27.9 6.868-35.207 19.228a.32.32 0 0 1-.595-.161V101.66a4 4 0 0 0-4-4h-27.777a4 4 0 0 0-4 4v112.02a4 4 0 0 0 4 4h29.268a4 4 0 0 0 4-4v-55.373c0-15.657 2.97-30.82 22.381-30.82c19.135 0 19.383 17.916 19.383 31.834v54.364a4 4 0 0 0 4 4ZM38 59.627c0 11.865 9.767 21.627 21.632 21.627c11.862-.001 21.623-9.769 21.623-21.631C81.253 47.761 71.491 38 59.628 38C47.762 38 38 47.763 38 59.627Zm6.959 158.058h29.307a4 4 0 0 0 4-4V101.66a4 4 0 0 0-4-4H44.959a4 4 0 0 0-4 4v112.025a4 4 0 0 0 4 4Z" />
</g>
</svg>
</a>
</ul>
</div>
<!-- ------------------------- Floating Icons End ------------------- -->
<!---------------------------- Floating Icons --------------------------->
<div class="float-icons">
<ul>
<a
class="my-3"
href="https://www.facebook.com/gloriousrealestates.pk"
target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 256 256">
<path
fill="#1877F2"
d="M256 128C256 57.308 198.692 0 128 0C57.308 0 0 57.307 0 128c0 63.888 46.808 116.843 108 126.445V165H75.5v-37H108V99.8c0-32.08 19.11-49.8 48.347-49.8C170.352 50 185 52.5 185 52.5V84h-16.14C152.958 84 148 93.867 148 103.99V128h35.5l-5.675 37H148v89.445c61.192-9.602 108-62.556 108-126.445" />
<path
fill="#FFF"
d="m177.825 165l5.675-37H148v-24.01C148 93.866 152.959 84 168.86 84H185V52.5S170.352 50 156.347 50C127.11 50 108 67.72 108 99.8V128H75.5v37H108v89.445A128.959 128.959 0 0 0 128 256a128.9 128.9 0 0 0 20-1.555V165h29.825" />
</svg>
</a>
<a
class="my-3"
href="https://www.instagram.com/gloriousrealestates.pk/"
target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 256 256">
<g fill="none">
<rect
width="256"
height="256"
fill="url(#skillIconsInstagram0)"
rx="60" />
<rect
width="256"
height="256"
fill="url(#skillIconsInstagram1)"
rx="60" />
<path
fill="#fff"
d="M128.009 28c-27.158 0-30.567.119-41.233.604c-10.646.488-17.913 2.173-24.271 4.646c-6.578 2.554-12.157 5.971-17.715 11.531c-5.563 5.559-8.98 11.138-11.542 17.713c-2.48 6.36-4.167 13.63-4.646 24.271c-.477 10.667-.602 14.077-.602 41.236s.12 30.557.604 41.223c.49 10.646 2.175 17.913 4.646 24.271c2.556 6.578 5.973 12.157 11.533 17.715c5.557 5.563 11.136 8.988 17.709 11.542c6.363 2.473 13.631 4.158 24.275 4.646c10.667.485 14.073.604 41.23.604c27.161 0 30.559-.119 41.225-.604c10.646-.488 17.921-2.173 24.284-4.646c6.575-2.554 12.146-5.979 17.702-11.542c5.563-5.558 8.979-11.137 11.542-17.712c2.458-6.361 4.146-13.63 4.646-24.272c.479-10.666.604-14.066.604-41.225s-.125-30.567-.604-41.234c-.5-10.646-2.188-17.912-4.646-24.27c-2.563-6.578-5.979-12.157-11.542-17.716c-5.562-5.562-11.125-8.979-17.708-11.53c-6.375-2.474-13.646-4.16-24.292-4.647c-10.667-.485-14.063-.604-41.23-.604h.031Zm-8.971 18.021c2.663-.004 5.634 0 8.971 0c26.701 0 29.865.096 40.409.575c9.75.446 15.042 2.075 18.567 3.444c4.667 1.812 7.994 3.979 11.492 7.48c3.5 3.5 5.666 6.833 7.483 11.5c1.369 3.52 3 8.812 3.444 18.562c.479 10.542.583 13.708.583 40.396c0 26.688-.104 29.855-.583 40.396c-.446 9.75-2.075 15.042-3.444 18.563c-1.812 4.667-3.983 7.99-7.483 11.488c-3.5 3.5-6.823 5.666-11.492 7.479c-3.521 1.375-8.817 3-18.567 3.446c-10.542.479-13.708.583-40.409.583c-26.702 0-29.867-.104-40.408-.583c-9.75-.45-15.042-2.079-18.57-3.448c-4.666-1.813-8-3.979-11.5-7.479s-5.666-6.825-7.483-11.494c-1.369-3.521-3-8.813-3.444-18.563c-.479-10.542-.575-13.708-.575-40.413c0-26.704.096-29.854.575-40.396c.446-9.75 2.075-15.042 3.444-18.567c1.813-4.667 3.983-8 7.484-11.5c3.5-3.5 6.833-5.667 11.5-7.483c3.525-1.375 8.819-3 18.569-3.448c9.225-.417 12.8-.542 31.437-.563v.025Zm62.351 16.604c-6.625 0-12 5.37-12 11.996c0 6.625 5.375 12 12 12s12-5.375 12-12s-5.375-12-12-12v.004Zm-53.38 14.021c-28.36 0-51.354 22.994-51.354 51.355c0 28.361 22.994 51.344 51.354 51.344c28.361 0 51.347-22.983 51.347-51.344c0-28.36-22.988-51.355-51.349-51.355h.002Zm0 18.021c18.409 0 33.334 14.923 33.334 33.334c0 18.409-14.925 33.334-33.334 33.334c-18.41 0-33.333-14.925-33.333-33.334c0-18.411 14.923-33.334 33.333-33.334Z" />
<defs>
<radialGradient
id="skillIconsInstagram0"
cx="0"
cy="0"
r="1"
gradientTransform="matrix(0 -253.715 235.975 0 68 275.717)"
gradientUnits="userSpaceOnUse">
<stop stop-color="#FD5" />
<stop offset=".1" stop-color="#FD5" />
<stop offset=".5" stop-color="#FF543E" />
<stop offset="1" stop-color="#C837AB" />
</radialGradient>
<radialGradient
id="skillIconsInstagram1"
cx="0"
cy="0"
r="1"
gradientTransform="matrix(22.25952 111.2061 -458.39518 91.75449 -42.881 18.441)"
gradientUnits="userSpaceOnUse">
<stop stop-color="#3771C8" />
<stop offset=".128" stop-color="#3771C8" />
<stop offset="1" stop-color="#60F" stop-opacity="0" />
</radialGradient>
</defs>
</g>
</svg>
</a>
<a class="my-3" href="#" target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 24 24">
<path
fill="currentColor"
d="M8 2H1l8.26 11.014L1.45 22H4.1l6.388-7.349L16 22h7l-8.608-11.478L21.8 2h-2.65l-5.986 6.886L8 2Zm9 18L5 4h2l12 16h-2Z" />
</svg>
</a>
<a class="my-3" href="#" target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
viewBox="0 0 256 256">
<g fill="none">
<rect width="256" height="256" fill="#fff" rx="60" />
<rect width="256" height="256" fill="#0A66C2" rx="60" />
<path
fill="#fff"
d="M184.715 217.685h29.27a4 4 0 0 0 4-3.999l.015-61.842c0-32.323-6.965-57.168-44.738-57.168c-14.359-.534-27.9 6.868-35.207 19.228a.32.32 0 0 1-.595-.161V101.66a4 4 0 0 0-4-4h-27.777a4 4 0 0 0-4 4v112.02a4 4 0 0 0 4 4h29.268a4 4 0 0 0 4-4v-55.373c0-15.657 2.97-30.82 22.381-30.82c19.135 0 19.383 17.916 19.383 31.834v54.364a4 4 0 0 0 4 4ZM38 59.627c0 11.865 9.767 21.627 21.632 21.627c11.862-.001 21.623-9.769 21.623-21.631C81.253 47.761 71.491 38 59.628 38C47.762 38 38 47.763 38 59.627Zm6.959 158.058h29.307a4 4 0 0 0 4-4V101.66a4 4 0 0 0-4-4H44.959a4 4 0 0 0-4 4v112.025a4 4 0 0 0 4 4Z" />
</g>
</svg>
</a>
</ul>
</div>
<!-- ------------------------- Floating Icons End ------------------- -->
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API = Tawk_API || {},
Tawk_LoadStart = new Date();
(function () {
var s1 = document.createElement("script"),
s0 = document.getElementsByTagName("script")[0];
s1.async = true;
s1.src = "https://embed.tawk.to/64d1f59ccc26a871b02df4fd/1h7a2erne";
s1.charset = "UTF-8";
s1.setAttribute("crossorigin", "*");
s0.parentNode.insertBefore(s1, s0);
})();
</script>
<!--End of Tawk.to Script-->
<!--====NavBar====-->
<div class="site-mobile-menu site-navbar-target">
<div class="site-mobile-menu-header">
<div class="site-mobile-menu-close">
<span class="icofont-close js-menu-toggle"></span>
</div>
</div>
<div class="site-mobile-menu-body"></div>
</div>
<nav class="site-nav">
<div class="container">
<div class="menu-bg-wrap">
<div class="site-navigation">
<a href="index.html">
<img
src="images/logo.webp"
href="index.html"
alt="Logo"
class="logo float-start"
/></a>
<ul
class="js-clone-nav d-none d-lg-inline-block text-start site-menu float-end">
<li>
<a href="index.html">Home</a>
</li>
<li class="has-children">
<a href="#">Societies</a>
<ul class="dropdown">
<li>
<a href="faisal-town.html">Faisal Town-I & II</a>
</li>
<li>
<a href="faisal-hills.html">Faisal Hills</a>
</li>
<li>
<a href="capital-smart-city.html">Capital Smart City</a>
</li>
<li>
<a href="lahore-smart-city.html">Lahore Smart City</a>
</li>
<li>
<a href="mpchs.html">MPCHS</a>
</li>
<li>
<a href="park-view-city.html">Park View City Islamabad</a>
</li>
<li>
<a href="new-metro-city-gujjar-khan.html"
>New Metro City Gujjar Khan</a
>
</li>
<li>
<a href="nova-city.html">Nova City Islamabad</a>
</li>
<li>
<a href="taj-residencia.html">Taj Residencia</a>
</li>
<li>
<a href="blue-world-city-islamabad.html"
>Blue World City Islamabad</a
>
</li>
<li>
<a href="bahria-town-peshawar.html">Bahria Town Peshawar</a>
</li>
</ul>
</li>
<li class="has-children active">
<a href="#">High Rise</a>
<ul class="dropdown">
<li>
<a href="j7-global.html"
>J-7 Global (Radisson Blu) Islamabad</a
>
</li>
<li>
<a href="j7-icon.html">J7 Icon (Royal Swiss Islamabad)</a>
</li>
<li>
<a href="zarkoon-heights-islamabad.html"
>Zarkon Heights Islamabad</a
>
</li>
</ul>
</li>
<li class="">
<a href="updates.html">Updates</a>
</li>
<li><a href="gallery.html">Gallery</a></li>
<!-- <li><a href="listings.html">Listings</a></li> -->
<li><a href="blogs.html">Blogs</a></li>
<li><a href="career.html">Career</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<a
href="#"
class="burger light me-auto float-end mt-1 site-menu-toggle js-menu-toggle d-inline-block d-lg-none"
data-toggle="collapse"
data-target="#main-navbar">
<span></span>
</a>
</div>
</div>
</div>
</nav>
<!--====NavBar End====-->
<!--====Hero Image====-->
<div
class="hero page-inner overlay"
style="background-image: url('images/j7-global/j7-hero.webp')"></div>
<!--===About===-->
<div class="section">
<div class="container">
<div class="row text-left mb-5">
<div class="col-12">
<h2 class="font-weight-bold heading text-primary mb-4">
J7 Global
</h2>
</div>
<div class="col-lg-6">
<p class="text-black-50">
Welcome to Radisson Blu, where our brand is synonymous with
excellence in every aspect. We take pride in offering unparalleled
service, comfort, and style, ensuring that each stay becomes a
meaningful and unforgettable experience. Whether you're a seasoned
investor or new to the hotel industry, we provide a hassle-free
investment opportunity in this thriving market. Investing in
hotels brings peace of mind and the promise of hassle-free
returns. With a stable and growing market, hotel investments offer
a unique chance to experience unparalleled luxury while enjoying
financial security. Come and unlock limitless possibilities with
Radisson Blu.
</p>
</div>
<div class="col-lg-6">
<p class="text-black-50">
Discover the difference at Radisson Blu, where we curate
memorable, stylish, and purposeful experiences in inspiring
surroundings. Every stay with us is designed to be unforgettable,
leaving you with cherished memories. Welcome to Radisson Blu Hotel
& Residencies Islamabad, the leading provider of luxury extended
stay accommodations. Our suites boast elegance and space,
providing all the comforts of home while offering the exceptional
service of a first-class hotel.
</p>
</div>
</div>
</div>
</div>
<!-- === News === -->
<div class="container mb-4">
<div class="row d-flex justify-content-center text-center">
<h4 class="my-4">News</h4>
<div class="col-4">
<img
src="images/j7-global/J 7 Icon A4 LS 2.webp"
width="350px"
alt="" />
</div>
<div class="col-4">
<img
src="images/j7-global/J 7 Icon A4 LS 3.webp"
width="350px"
alt="" />
</div>
<div class="col-4">
<img
src="images/j7-global//J 7 Icon A4 LS 4.webp"
width="350px"
alt="" />
</div>
</div>
</div>
<!-- === New End === -->
<div class="section pt-0">
<div class="container">
<div class="row justify-content-between mb-5">
<div class="col-lg-7 mb-5 mb-lg-0 order-lg-2">
<div class="img-about dots">
<img
src="images/j7-global/radission-hotel.webp"
alt="Image"
class="img-fluid" />
</div>
</div>
<div class="col-lg-4">
<div class="d-flex feature-h">
<div class="feature-text">
<h2 class="heading">Developer & Owner:</h2>
<p class="text-black-50">
J7 Global Mal Islamabad is owned and led by Mr. Aleem Malik,
who serves as the Owner & CEO. J7 Group, the company behind
the project, specializes in offering high-quality real estate
development projects. Their portfolio includes modern shopping
malls and top-notch commercial buildings located in the twin
cities. The developers at J7 Group strongly believe in
combining traditional elements with innovative ideas. They
strive to create projects that not only showcase artistic
excellence but also provide practical solutions. Putting the
client at the center, their primary objective is to reflect
the client's values and unique identity through their designs.
</p>
<h4 class="heading">J7 Group projects:</h4>
<ul>
<li>J7 Global (Mumtaz City)</li>
<li>J7 Emporium (B-17 Islamabad)</li>
<li>Solitaire Hotel (Golden Tulip - Top City)</li>
<li>J7 Icon (Royal Swiss)</li>
<li>Infinity</li>
<li>J7 Mall (D-17)</li>
<li>J7 One Mall (D-17)</li>
<li>Signature Resorts</li>
<li>Signature Hotels(Top City)</li>
<li>J7 Mall Chakwal</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section pt-0">
<div class="container">
<div class="row justify-content-between mb-5">
<div class="col-lg-7 mb-5 mb-lg-0">
<div class="img-about dots">
<img
src="images/j7-global/j7-investment.webp"
alt="Image"
class="img-fluid" />
</div>
</div>
<div class="col-lg-4">
<div class="d-flex feature-h">
<div class="feature-text">
<h3 class="heading">
Why invest in J7 Global and mall apartments?
</h3>
<p class="text-black-50">
If you're considering investing in J7 Global, here's why it
might be a great opportunity for you. J7 Global mall and
apartment complex is situated in a prime location in
Islamabad, offering numerous advantages in terms of potential
future returns and commercial amenities. It enjoys a highly
convenient location, merely 2km away from Islamabad
International Airport on Kashmir Highway in Mumtaz City. This
means it's just a quick 5-minute drive from the airport.
Additionally, the mall is constructed with an
earthquake-resistant structure, ensuring safety and stability.
</p>
<p class="text-black-50">
Investing in J7 Global can provide you with a rental yield of
around 12% annually (ROI From 22% - 30% in Hotel Suits / 19% -
25% in Luxury Branded Shops) making it an attractive prospect
for all investors. Moreover, the real estate prices in the
surrounding area are expected to rise significantly by
approximately 30-40% within the next 2-3 years. This projected
growth further enhances the investment potential of J7 Global,
making it an appealing opportunity for anyone looking to
invest in real estate.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section pt-0">
<div class="container">
<div class="row justify-content-between mb-5">
<div class="col-lg-7 mb-5 mb-lg-0 order-lg-2">
<div class="img-about dots">
<img
src="images/j7-global/Globle Hotel Proximity.webp"
alt="Location"
class="img-fluid" />
</div>
</div>
<div class="col-lg-4">
<div class="d-flex feature-h">
<div class="feature-text">
<h2 class="heading">Location</h2>
<p class="text-black-50">
J7 Global is situated in Mumtaz City, Islamabad, providing
convenient access to the New Islamabad International Airport,
which is just a 5-minute drive away.
</p>
<h4 class="heading">
J7 Global is easily accessible in the following ways:
</h4>
<ul>
<li>04 km from CPEC Root</li>
<li>04 km from the New Islamabad Airport</li>
<li>21 Km from Fatah Jang city</li>
<li>34 Km from Rawalpindi city</li>
<li>38 Km from zero point Islamabad</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section pt-0">
<div class="container">
<div class="row justify-content-between mb-5">
<div class="col-lg-7 mb-5 mb-lg-0">
<div class="img-about dots">
<img
src="images/j7-global/Raddison General Price List.webp
"
alt="Payment Plan"
class="img-fluid" />
</div>
<div id="wrap">
<a
href="pdf/J7-global-payment-plan.pdf"
target="_blank"
class="btn-slide2">
<span class="circle2"><i class="icon-download"></i></span>
<span class="title2">View All</span>
<span class="title-hover2">PDF</span>
</a>
</div>
</div>
<div class="col-lg-4">
<div class="d-flex feature-h">
<div class="feature-text">
<h3 class="heading">Payment Plan</h3>
<p class="text-black-50">
J7 Global Mall Islamabad presents a highly affordable payment
plan for investors interested in purchasing flats and shops.
The development offers a range of apartments and shops at
budget-friendly prices, making it an attractive option for
potential buyers.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section pt-0">
<div class="container">
<div class="d-flex justify-content-center">
<img
src="images//j7-global/Radisson Blu J 7 Group Amenities.webp"
alt="Features"
width="60%"
class="img-fluid" />
</div>
</div>
</div>
<div class="section pt-0">
<div class="container">
<div class="row justify-content-between mb-5">
<div class="col-lg-7 mb-5 mb-lg-0">
<div class="img-about dots">
<img
src="images/j7-global/Radisson Blu J 7 Group Features.webp"
alt="Facilities"
class="img-fluid" />
</div>
</div>
<div class="col-lg-4">
<div class="d-flex feature-h">
<div class="feature-text">
<h3 class="heading">Facilities and Amenities:</h3>
<ul>
<li>2 spacious entrances & Emergency exits</li>
<li>Banking facility as per mall timing</li>
<li>Customer Care Centre</li>
<li>Disabled Person Facilities</li>
<li>Escalators, Elevators & travelator</li>
<li>Extra Heightened Shops</li>
<li>First-Ever Smart Mall in Pakistan</li>
<li>Indoor Smart Car Parking</li>
<li>Life Time Maintenance</li>
<li>Monument in Atrium</li>
<li>Play Area</li>
<li>Promotional Activities in the atrium</li>
<li>Solar Glass</li>
<li>Spacious Mall</li>
<li>Stand-by Power Generators</li>
<li>Ultra-Lavish Interior</li>
<li>Wide Atrium & Corridors</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section pt-0">
<div class="container">
<div class="row justify-content-between mb-5">
<div class="col-lg-4">
<div class="d-flex feature-h">
<div class="feature-text">
<h3 class="heading">Luxury Hotel</h3>
<p class="text-black-50">
J7 Global Mall and Apartments offer a design-driven luxury
hotel set in a contemporary and tranquil environment,
providing the perfect destination for enjoyable weekends. The
luxury hotel is conveniently situated, just a 10-minute drive
from Islamabad International Airport.