-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnova-city.html
839 lines (822 loc) · 35.6 KB
/
nova-city.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
<!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>- Nova City Islamabad</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 ------------------- -->
<!--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 active">
<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">
<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/nova-city/nova-city-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">
Nova City Islamabad
</h2>
</div>
<div class="col-lg-6">
<p class="text-black-50">
Nova City Islamabad, a housing society approved by PHATA and
developed by Nova Group, is situated adjacent to the Islamabad
International Airport along the M-14 Motorway. This well-regarded
property developer is committed to providing top-notch housing
facilities at affordable prices. Nova City has quickly earned a
reputation as an exceptional housing project, catering to both
comfortable living and lucrative investment opportunities. With
its secure environment and a touch of luxury, Nova City offers a
perfect residential destination that fulfills your desires without
breaking the bank.
</p>
</div>
<div class="col-lg-6">
<p class="text-black-50">
Nova City in Islamabad is an upcoming and rapidly emerging real
estate housing project in the federal capital. The primary
objective behind this development is to offer a central location
between the twin cities, complemented by state-of-the-art
infrastructure, all at affordable rates. With a vision to cater to
people from all budget ranges in Pakistan, this project aims to
provide accessible housing options. Looking ahead, Nova City is
poised to become a formidable contender among the mega real estate
projects in Islamabad, Pakistan. Notably, property insights
indicate that Nova City holds excellent investment potential.
</p>
</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/nova-city/nova-city-dev.webp"
alt="Developers"
class="img-fluid" />
</div>
</div>
<div class="col-lg-4">
<div class="d-flex feature-h">
<div class="feature-text">
<h3 class="heading">Nova City Islamabad Owners & Developers</h3>
<p class="text-black-50">
The Nova City Developers, led by Mr. Junaid Afzal, are the
owners and developers of Nova City. Renowned for their
numerous successful real estate ventures, they have earned a
reputation for delivering high-quality infrastructure within
stipulated timelines. Among their notable accomplishments is
the development of the Nova City School System, currently
operational in New City Wah Cantt and other areas. Currently,
they are diligently working on crafting a state-of-the-art
residential and commercial hub known as Nova City Islamabad.
</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">
<div class="img-about dots">
<img
src="images/nova-city/nova-city-noc.webp"
alt="NOC"
class="img-fluid" />
</div>
</div>
<div class="col-lg-4">
<div class="d-flex feature-h">
<div class="feature-text">
<h3 class="heading">Nova City Islamabad NOC</h3>
<p class="text-black-50">
The Punjab Housing and Town Planning Agency (PHATA) allegedly
granted approval for the No Objection Certificate (NOC) of
Nova City Islamabad, as stated in letter No.
PHATA/W-I/PHS/2021/690.
</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/nova-city/Nova City Proximity.webp"
alt="Location"
class="img-fluid" />
</div>
</div>
<div class="col-lg-4">
<div class="d-flex feature-h">
<div class="feature-text">
<h3 class="heading">Nova City Islamabad Location</h3>
<p class="text-black-50">
Nova City Islamabad is strategically situated near the M-14
Motorway, in close proximity to the Islamabad International
Airport. Its prime location has made it a highly sought-after
real estate investment option in Islamabad, particularly for
investors. The convenience of its location is further enhanced
by its easy accessibility, as it is placed in one of the best
areas of the twin cities. Additionally, Nova City benefits
from its close proximity to both the China-Pakistan Economic
Corridor (CPEC) route and the Rawalpindi Ring Road (RRR). This
excellent connectivity allows the society to be accessed
easily from various routes, making it an ideal and desirable
location for both residential and commercial purposes.
</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/nova-city/Nova City Residencial Plots Payments Plan.webp"
alt="Payment Plan"
class="img-fluid" />
</div>
<div id="wrap">
<a
href="pdf/nova-city-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">Nova City Islamabad Payment Plan</h3>
<p class="text-black-50">
Nova City Islamabad offers highly affordable payment plans
with convenient installment schedules. The plots for sale in
this residential development are competitively priced,
providing a cost-effective alternative to other projects with
ultra-luxurious amenities. The management and developers have
diligently worked towards maintaining lower prices without
compromising on quality, making Nova City an attractive and
accessible investment opportunity for investors in Islamabad.
</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">
<div class="img-about dots">
<img
src="images/nova-city/Nova City Amenities.webp"
alt="Facilities & Amenities"
class="img-fluid" />
</div>
</div>
<div class="col-lg-4">
<div class="d-flex feature-h">
<div class="feature-text">
<h3 class="heading">Facilities & Amenities</h3>
<p class="text-black-50">
Nova City Islamabad offers a comprehensive range of modern
facilities and amenities at affordable rates. These facilities
are on par with those found in luxurious contemporary
multi-purpose projects, making Nova City a complete and
outstanding real estate venture.
</p>
<ul>
<li>Eco-Friendly</li>
<li>Water Resources</li>
<li>Business & Commercial Hub</li>
<li>Secure Project</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 order-lg-2">
<div class="img-about dots">
<img
src="images/nova-city/nova-city-features.webp"
alt="Nova City Islamabad Salient Features"
class="img-fluid" />
</div>
</div>
<div class="col-lg-4">
<div class="d-flex feature-h">
<div class="feature-text">
<h3 class="heading">Nova City Islamabad Salient Features:</h3>
<ul>
<li>Shops</li>
<li>Affordability</li>
<li>Accessibility</li>
<li>24/7 Security</li>
<li>Maintenance</li>
<li>Water Resources</li>
<li>Eco-Community</li>
<li>Beautiful Entrance</li>
<li>Quality Development</li>
<li>Water, Gas, Electricity</li>
<li>Sewerage and Waste Disposal System</li>
<li>World-Class Infrastructure Development</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section pt-0">
<div class="container">
<div class="feature-text">
<h3 class="heading">
What makes investing in Nova City Islamabad a compelling choice?
</h3>
<p class="text-black-50">
Investing in Nova City Islamabad presents numerous compelling
reasons for any investor seeking a profitable project. With its
status as the best investment opportunity in Islamabad, some of the
main reasons to consider investing in Nova City are outlined below:
</p>
<ul>
<li>Eco-friendly</li>
<li>Affordable</li>
<li>Prime location</li>
<li>Spacious properties</li>
<li>Luxurious amenities</li>
<li>Well-known developers</li>
<li>International infrastructure development</li>
</ul>
</div>
</div>
</div>
<div class="section pt-0">
<div class="container">
<div class="row justify-content-between mb-5">
<div>
<div class="d-flex feature-h">
<div class="feature-text">
<h2>Conclusion:</h2>
<p class="text-black-50">
Glorious highly recommends Nova City Islamabad as a luxurious
residential and commercial project, dedicated to offering a
world-class, upscale lifestyle to its residents. With its
luxurious facilities, affordability, and prime location, Nova
City stands out as a remarkable investment opportunity. To
acquire Nova City Islamabad plots for sale, interested
individuals can easily contact Glorious.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section">
<div class="container">
<div class="row">
<div class="col-md-4" data-aos="fade-up" data-aos-delay="0">
<img
src="images/nova-city/Nova City (1).webp"
alt="Image"
class="img-fluid" />
</div>
<div class="col-md-4 mt-lg-5" data-aos="fade-up" data-aos-delay="100">
<img
src="images/nova-city/Nova City (2).webp"
alt="Image"
class="img-fluid" />
</div>
<div class="col-md-4" data-aos="fade-up" data-aos-delay="200">
<img
src="images/nova-city/Nova City (3).webp"
alt="Image"
class="img-fluid" />
</div>
</div>
<div class="row section-counter mt-5">
<div
class="col-6 col-sm-6 col-md-6 col-lg-3"
data-aos="fade-up"
data-aos-delay="300">
<div class="counter-wrap mb-5 mb-lg-0">
<span class="number"
><span class="countup text-primary">2917</span></span
>
<span class="caption text-black-50"># of Buy Properties</span>
</div>
</div>
<div
class="col-6 col-sm-6 col-md-6 col-lg-3"
data-aos="fade-up"
data-aos-delay="400">
<div class="counter-wrap mb-5 mb-lg-0">
<span class="number"
><span class="countup text-primary">3918</span></span
>
<span class="caption text-black-50"># of Sell Properties</span>
</div>
</div>
<div
class="col-6 col-sm-6 col-md-6 col-lg-3"
data-aos="fade-up"
data-aos-delay="500">
<div class="counter-wrap mb-5 mb-lg-0">
<span class="number"
><span class="countup text-primary">38928</span></span
>
<span class="caption text-black-50"># of All Properties</span>
</div>
</div>
<div
class="col-6 col-sm-6 col-md-6 col-lg-3"
data-aos="fade-up"
data-aos-delay="600">
<div class="counter-wrap mb-5 mb-lg-0">
<span class="number"
><span class="countup text-primary">1291</span></span
>
<span class="caption text-black-50"># of Agents</span>
</div>
</div>
</div>
</div>
</div>
<!--====Footer====-->
<div class="site-footer">
<!--====Footer Contact Form====-->
<div class="section">
<div class="container">
<div class="row">
<div
class="col-lg-4 mb-5 mb-lg-0"
data-aos="fade-up"
data-aos-delay="100">
<div class="contact-info">
<div class="address mt-2">
<i class="icon-room"></i>
<h4 class="mb-2">Mardan Office Location:</h4>
<p>
House No: 377, Street No: 08, Sector R, Sheikh Maltoon Town
Mardan.
</p>
</div>
<div class="address mt-2">
<i class="icon-room"></i>
<h4 class="mb-2">Peshawar Office Location:</h4>
<p>
Plot No.01, Street No.06, Rahatabad, Opposite Forest
College, Peshawar
</p>
</div>
<div class="address mt-2">
<i class="icon-room"></i>
<h4 class="mb-2">Islamabad Office Location:</h4>
<p>Tower 3, G-15.</p>
</div>
<div class="open-hours mt-4">
<i class="icon-clock-o"></i>
<h4 class="mb-2">Open Hours:</h4>
<p>
Monday - Saturday:<br />
10:00 AM - 06:00 PM
</p>
</div>
<div class="email mt-4">
<i class="icon-envelope"></i>
<h4 class="mb-2">Email:</h4>
<p>
<a href="mailto:info@gloriousrealestates.pk"
>info@gloriousrealestates.pk</a
>
</p>
</div>
<div class="phone mt-4">
<i class="icon-phone"></i>
<h4 class="mb-2">Call:</h4>
<p><a href="tel://923177779844">+92 317 777 98 44</a></p>
</div>
</div>
</div>
<div class="col-lg-8" data-aos="fade-up" data-aos-delay="200">
<div class="text-center">
<h2>Request A Callback</h2>
<p>Talk with our investment advisor:</p>
</div>
<form action="#">
<div class="row">
<div class="col-6 mb-3">
<input
type="text"
class="form-control"
placeholder="Your Name" />
</div>
<div class="col-6 mb-3">
<input
type="email"
class="form-control"
placeholder="Your Email" />
</div>
<div class="col-12 mb-3">
<input
type="text"
class="form-control"
placeholder="Subject" />
</div>
<div class="col-12 mb-3">
<textarea
name=""
id=""
cols="30"
rows="7"
class="form-control"
placeholder="Message"></textarea>
</div>
<div class="col-12">
<input
type="submit"
value="Send Message"
class="btn btn-primary" />
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!--====Footer Contact Form End-->
<div class="container">
<div class="row">
<div class="flex justify-content-center">
<!--====Social Icons====-->
<div class="widget">
<div>
<h2>Follow Us</h2>
</div>
<ul class="list-unstyled social">
<li class="px-2">
<a href="https://www.instagram.com/gloriousrealestates.pk/"
><span class="icon-instagram"></span
></a>
</li>
<li class="px-2">
<a href="#"><span class="icon-twitter"></span></a>
</li>
<li class="px-2">
<a href="https://www.facebook.com/gloriousrealestates.pk"
><span class="icon-facebook"></span
></a>
</li>
<li class="px-2">
<a href="#"><span class="icon-linkedin"></span></a>
</li>
<li class="px-2">
<a href="https://www.youtube.com/@GloriousRealEstatespk"
><span class="icon-youtube"></span
></a>
</li>
</ul>
</div>
<!--===Social Icons End===-->
</div>
</div>
<div class="row mt-5">
<div class="col-12 text-center">
<p>
Copyright ©
<script>
document.write(new Date().getFullYear());
</script>
. All Rights Reserved. — Designed & Develop with ♥ by
<a href="https://beacontechh.com" target="_blank">Beacontechh</a>
</p>
</div>
</div>
</div>
</div>
<!--====Footer End====-->
<!-- Preloader -->
<div id="overlayer"></div>
<div class="loader">
<div class="spinner-border" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/tiny-slider.js"></script>
<script src="js/aos.js"></script>
<script src="js/navbar.js"></script>
<script src="js/counter.js"></script>
<script src="js/custom.js"></script>
</body>
</html>