-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1081 lines (937 loc) · 53 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
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 content="width=device-width, initial-scale=1.0" name="viewport">
<title>Pearl Orchid Properties</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon/pearl_orchid_properties_logo.png" rel="icon">
<link href="assets/img/favicon/pearl_orchid_properties_logo.png" rel="apple-touch-icon">
<!-- Icons -->
<link rel="stylesheet" href="assets/fonts/icomoon/style.css" />
<link rel="stylesheet" href="assets/fonts/flaticon/font/flaticon.css" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/main.css" rel="stylesheet">
</head>
<body>
<!-- ======= Header ======= -->
<section id="topbar" class="topbar d-flex align-items-center">
<div class="container d-flex justify-content-center justify-content-md-between">
<div class="contact-info d-flex align-items-center">
<i class="bi bi-envelope d-flex align-items-center"><a href="mailto:contact@example.com">info@pearlorchidzambia.com</a></i>
<i class="bi bi-phone d-flex align-items-center ms-4"><a href="tel:+260 979 639258">+260 979 639258</a></i>
<i class="bi bi-phone d-flex align-items-center ms-4"><a href="tel:+260 977 862 761">+260 977 862 761</a></i>
<i class="bi bi-phone d-flex align-items-center ms-4"><a href="tel:+260 765 655185">+260 765 655185</a></i>
</div>
<div class="social-links d-none d-md-flex align-items-center">
<a href="#" class="twitter"><i class="bi bi-twitter"></i></a>
<a href="#" class="facebook"><i class="bi bi-facebook"></i></a>
<a href="#" class="instagram"><i class="bi bi-instagram"></i></a>
<a href="#" class="linkedin"><i class="bi bi-linkedin"></i></i></a>
</div>
</div>
</section><!-- End Top Bar -->
<header id="header" class="header d-flex align-items-center">
<div class="container-fluid container-xl d-flex align-items-center justify-content-between">
<a href="index.html" class="logo d-flex align-items-center">
<!-- Uncomment the line below if you also wish to use an image logo -->
<!-- <img src="assets/img/logo.png" alt=""> -->
<h1><img src="assets/img/favicon/pearl_orchid_properties_logo.png" alt="nav-logo"></h1>
</a>
<nav id="navbar" class="navbar">
<ul>
<li><a href="#hero">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#team">Team</a></li>
<li class="dropdown"><a href="#"><span>Drop Down</span> <i class="bi bi-chevron-down dropdown-indicator"></i></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-down dropdown-indicator"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav><!-- .navbar -->
<i class="mobile-nav-toggle mobile-nav-show bi bi-list"></i>
<i class="mobile-nav-toggle mobile-nav-hide d-none bi bi-x"></i>
</div>
</header><!-- End Header -->
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="hero">
<div class="container position-relative">
<div class="row gy-5" data-aos="fade-in">
<div class="col-lg-6 order-2 order-lg-1 d-flex flex-column justify-content-center text-center text-lg-start">
<h2>Green Ambition<span></span></h2>
<p>Environmental protection and conservation is at the center of the Pearl-Orchid business model through the three pillars in its “Green Ambition”.</p>
<div class="d-flex justify-content-center justify-content-lg-start">
<a href="#about" class="btn-get-started">Get Started</a>
<a href="https://www.youtube.com/watch?v=LXb3EKWsInQ" class="glightbox btn-watch-video d-flex align-items-center"><i class="bi bi-play-circle"></i><span>Watch Video</span></a>
</div>
</div>
<div class="col-lg-6 order-1 order-lg-2">
<img src="assets/img/carousel/real-estate-agency.png" class="img-fluid" alt="" data-aos="zoom-out" data-aos-delay="100">
</div>
</div>
</div>
<div class="icon-boxes position-relative">
<div class="container position-relative">
<div class="row gy-4 mt-5">
<div class="col-xl-3 col-md-6" data-aos="fade-up" data-aos-delay="100">
<div class="icon-box">
<div class="icon"><span class="flaticon-house"></span></div>
<h4 class="title"><a href="" class="stretched-link">Leasing of Warehouses</a></h4>
</div>
</div><!--End Icon Box -->
<div class="col-xl-3 col-md-6" data-aos="fade-up" data-aos-delay="200">
<div class="icon-box">
<div class="icon"><span class="flaticon-house-3"></span></div>
<h4 class="title"><a href="" class="stretched-link">Real Estate Management</a></h4>
</div>
</div><!--End Icon Box -->
<div class="col-xl-3 col-md-6" data-aos="fade-up" data-aos-delay="300">
<div class="icon-box">
<div class="icon"><span class="flaticon-house-1"></span></div>
<h4 class="title"><a href="" class="stretched-link">Real Estate Development</a></h4>
</div>
</div><!--End Icon Box -->
<div class="col-xl-3 col-md-6" data-aos="fade-up" data-aos-delay="500">
<div class="icon-box">
<div class="icon"><span class="flaticon-building"></span></div>
<h4 class="title"><a href="" class="stretched-link">Commercial Land For Sale</a></h4>
</div>
</div><!--End Icon Box -->
</div>
</div>
</div>
</div>
</section>
<!-- End Hero Section -->
<main id="main">
<!-- ======= About Us Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Green Ambition Concept</h2>
<p>Pearl Orchid “Green Ambition” is based on three tier business model that advocates and protects our Environment.</p>
</div>
<div class="row gy-4">
<div class="col-lg-6" style="text-align: justify;">
<img src="assets/img/about-us/about-us-green-environment.jpg" class="img-fluid rounded-4 mb-4" alt="">
<h3 class="fst-italic">Forward Thinking and Giving Back</h3>
<p class="fst-italic">As a young company with long-term ambitions Pearl-Orchid in the third pillar of its Green Ambition is thinking ahead. The “forward thinking and giving back ambition”
aims at extending the Pearl-Orchid Green Ambition to other upcoming Pearl-Orchid projects and products such as the Chifwema Scheme and Chifwema Housing Complex, and others. As well as, extending the benefits of these
ambitions to its clients, surrounding communities and the nation at large through giving back in the form of knowledge and product transfer.</p>
</div>
<div class="col-lg-6">
<div class="content ps-0 ps-lg-5">
<h3 class="fst-italic">Eco-Friendiness</h3>
<p class="fst-italic" style="text-align: justify;">
The first pillar in the Pearl-Orchid Green Ambition is being eco-friendly in all its real estate developments. This “eco-friendly ambition” means that in any particular product,
Pearl-Orchid tries as much as possible to have minimal disturbance and no harm to the environment, this means that minimal cutting down of trees and earth movements. As well as, adopting
environmentally friendly construction practices that do not disrupt the eco-system with minimal use of hazardous materials. With this Pearl-Orchid is a friend to the environment.</p>
<!--<ul>
<li><i class="bi bi-check-circle-fill"></i> Ullamco laboris nisi ut aliquip ex ea commodo consequat.</li>
<li><i class="bi bi-check-circle-fill"></i> Duis aute irure dolor in reprehenderit in voluptate velit.</li>
<li><i class="bi bi-check-circle-fill"></i> Ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate trideta storacalaperda mastiro dolore eu fugiat nulla pariatur.</li>
</ul>-->
<h3 class="fst-italic">Regeneration</h3>
<p class="fst-italic" style="text-align: justify;">Apart from preserving the environment, the second pillar of the Pearl -Orchid Green Ambition is that of Environmental Regeneration. The “regeneration ambition” aims at
not just retaining the environment to its original state of nature but also going beyond by protecting it from future degradation. This includes tree planting, water harvesting, and land-use management.</p>
<div class="position-relative mt-4">
<img src="assets/img/about-us/Green-Ambition-Pearl-Orchid.png" class="img-fluid rounded-4" alt="">
<a href="https://www.youtube.com/watch?v=LXb3EKWsInQ" class="glightbox play-btn"></a>
</div>
</div>
</div>
</div>
</div>
</section><!-- End About Us Section -->
<!-- ======= Clients Section ======= -->
<section id="clients" class="clients">
<div class="container" data-aos="zoom-out">
<div class="section-header">
<h2>Affiliations</h2>
<p>The importance of partnerships in the real estate business can never be underestimated, it is for this reason that Pearl-Orchid
works with a network of partners and stakeholders who assist it in its product and service offers, as well as, enable it to remain
compliant with regulators and the law.</p>
</div>
<div class="clients-slider swiper">
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide"><img src="assets/img/clients/client-1.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-2.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-3.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-4.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-5.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-6.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-7.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-8.png" class="img-fluid" alt=""></div>
</div>
</div>
</div>
</section><!-- End Clients Section -->
<!-- ======= Stats Counter Section ======= -->
<section id="stats-counter" class="stats-counter">
<div class="container" data-aos="fade-up">
<div class="row gy-4 align-items-center">
<div class="col-lg-6">
<img src="assets/img/carousel/real-estate-development.webp" alt="" class="img-fluid">
</div>
<div class="col-lg-6">
<div class="stats-item d-flex align-items-center">
<span data-purecounter-start="0" data-purecounter-end="232" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Happy Clients</strong> consequuntur quae diredo para mesta</p>
</div><!-- End Stats Item -->
<div class="stats-item d-flex align-items-center">
<span data-purecounter-start="0" data-purecounter-end="521" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Projects</strong> adipisci atque cum quia aut</p>
</div><!-- End Stats Item -->
<div class="stats-item d-flex align-items-center">
<span data-purecounter-start="0" data-purecounter-end="453" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Hours Of Support</strong> aut commodi quaerat</p>
</div><!-- End Stats Item -->
</div>
</div>
</div>
</section><!-- End Stats Counter Section -->
<!-- ======= Call To Action Section ======= -->
<section id="call-to-action" class="call-to-action">
<div class="container text-center" data-aos="zoom-out">
<a href="https://www.youtube.com/watch?v=LXb3EKWsInQ" class="glightbox play-btn"></a>
<h3>Call To Action</h3>
<p>Click button to directly call Pearl Orchid office.</p>
<a class="cta-btn" href="tel:+260 979 639258">Call To Action</a>
</div>
</section><!-- End Call To Action Section -->
<!-- About Start -->
<div class="container-xxl py-5">
<div class="container">
<div class="row g-4 align-items-end mb-4">
<div class="section-header">
<h2>About Us</h2>
<p>Pearl Orchid “Green Ambition” is based on three tier business model that advocates and protects our Environment.</p>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s">
<img class="img-fluid rounded" src="assets/img/about-us/about-us-logo.png">
</div>
<div class="col-lg-6 wow fadeInUp" style="text-align: justify;" data-wow-delay="0.3s">
<p class="mb-4">
Pearl orchid Zambia Limited (Pearl-Orchid) (Trading As “Pearl Orchid Properties”) is a company specialised
in real estate development and management in Zambia. As a wholly Zambian owned company Pearl-Orchid was
established in 2019 to address the need for more Zambians to own real estate in Zambia. This need was cemented
over the past decade when the real estate and construction boom that was spearheaded by the government brought
with it huge foreign direct investment (FDI) which saw massive appropriation of land especially in the peri-urban
and rural areas, as well as some urban areas thus creating gentrification. In addition, this rapid urbanisation and
boom in the construction sector has had a negative effect on the environment with a lot of forests and grasslands
being destroyed.
</p>
<div class="border rounded p-4">
<nav>
<div class="nav nav-tabs mb-3" id="nav-tab" role="tablist">
<button class="nav-link fw-semi-bold active" id="nav-story-tab" data-bs-toggle="tab"
data-bs-target="#nav-story" type="button" role="tab" aria-controls="nav-story"
aria-selected="true">Our Values</button>
<button class="nav-link fw-semi-bold" id="nav-mission-tab" data-bs-toggle="tab"
data-bs-target="#nav-mission" type="button" role="tab" aria-controls="nav-mission"
aria-selected="false">Our Mission</button>
<button class="nav-link fw-semi-bold" id="nav-vision-tab" data-bs-toggle="tab"
data-bs-target="#nav-vision" type="button" role="tab" aria-controls="nav-vision"
aria-selected="false">Our Vision</button>
</div>
</nav>
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active" id="nav-story" role="tabpanel"
aria-labelledby="nav-story-tab">
<p>Reliable, Dependable, Professional, Trusted, Eco Friendly.</p>
</div>
<div class="tab-pane fade" id="nav-mission" role="tabpanel"
aria-labelledby="nav-mission-tab">
<p>To use end-to-end quality services to provide real estate products in a sustainable and ecofriendly manner.</p>
</div>
<div class="tab-pane fade" id="nav-vision" role="tabpanel" aria-labelledby="nav-vision-tab">
<p>To become the largest locally owned real estate company in Zambia by 2030.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="border rounded p-4 wow fadeInUp" data-wow-delay="0.1s">
<div class="row g-4">
<div class="col-lg-4 wow fadeIn" data-wow-delay="0.1s">
<div class="h-100">
<div class="d-flex">
<div class="flex-shrink-0 btn-lg-square rounded-circle bg-primary">
<i class="fa fa-times text-white"></i>
</div>
<div class="ps-3">
<h4>Real Estate Management</h4>
<span style="text-align: justify;">We specialize in construction and rehabilitating of housing units (stand-alone and flats) for rent.</span>
</div>
<div class="border-end d-none d-lg-block"></div>
</div>
<div class="border-bottom mt-4 d-block d-lg-none"></div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay="0.3s">
<div class="h-100">
<div class="d-flex">
<div class="flex-shrink-0 btn-lg-square rounded-circle bg-primary">
<i class="fa fa-users text-white"></i>
</div>
<div class="ps-3">
<h4>Commercial Land For Sale</h4>
<span style="text-align: justify;">Readily available residential and commercial land, as well as, agricultural land for sale.</span>
</div>
<div class="border-end d-none d-lg-block"></div>
</div>
<div class="border-bottom mt-4 d-block d-lg-none"></div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay="0.5s">
<div class="h-100">
<div class="d-flex">
<div class="flex-shrink-0 btn-lg-square rounded-circle bg-primary">
<i class="fa fa-phone text-white"></i>
</div>
<div class="ps-3">
<h4>Warehouse Leasing</h4>
<span style="text-align: justify;">Access our warehouse leasing services anytime and anywhere with support offered.</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ======= Our Services Section ======= -->
<section id="services" class="services sections-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Our Services</h2>
<p>In order to provide end-to-end real estate solutions, Pearl-Orchid couples its
real estate products with requisite services which include;</p>
</div>
<div class="row gy-4" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-4 col-md-6">
<div class="service-item position-relative">
<div class="icon">
<i class="bi bi-activity"></i>
</div>
<h3>Land</h3>
<p>sourcing, due diligence, sub-division, and conveyance.</p>
<a href="#" class="readmore stretched-link">Read more <i class="bi bi-arrow-right"></i></a>
</div>
</div><!-- End Service Item -->
<div class="col-lg-4 col-md-6">
<div class="service-item position-relative">
<div class="icon">
<i class="bi bi-broadcast"></i>
</div>
<h3>Residential</h3>
<p>management, compliance, tailoring, and due diligence.</p>
<a href="#" class="readmore stretched-link">Read more <i class="bi bi-arrow-right"></i></a>
</div>
</div><!-- End Service Item -->
<div class="col-lg-4 col-md-6">
<div class="service-item position-relative">
<div class="icon">
<i class="bi bi-easel"></i>
</div>
<h3>Commercial</h3>
<p>utilities, compliance, management, tailoring, due diligence, and security.</p>
<a href="#" class="readmore stretched-link">Read more <i class="bi bi-arrow-right"></i></a>
</div>
</div><!-- End Service Item -->
<div class="col-lg-4 col-md-6">
<div class="service-item position-relative">
<div class="icon">
<i class="bi bi-bounding-box-circles"></i>
</div>
<h3>Industrial</h3>
<p>development, utilities, compliance, management, tailoring, due diligence, and security.</p>
<a href="#" class="readmore stretched-link">Read more <i class="bi bi-arrow-right"></i></a>
</div>
</div><!-- End Service Item -->
<div class="col-lg-4 col-md-6">
<div class="service-item position-relative">
<div class="icon">
<i class="bi bi-calendar4-week"></i>
</div>
<h3>Other</h3>
<p>through its partners Pearl-Orchid also offers referral services in architecture, land survey, construction, real estate agency/consultancy and valuation.</p>
<a href="#" class="readmore stretched-link">Read more <i class="bi bi-arrow-right"></i></a>
</div>
</div><!-- End Service Item -->
<div class="col-lg-4 col-md-6">
<div class="service-item position-relative">
<div class="icon">
<i class="bi bi-chat-square-text"></i>
</div>
<h3>Dolori Architecto</h3>
<p>Hic molestias ea quibusdam eos. Fugiat enim doloremque aut neque non et debitis iure. Corrupti recusandae ducimus enim.</p>
<a href="#" class="readmore stretched-link">Read more <i class="bi bi-arrow-right"></i></a>
</div>
</div><!-- End Service Item -->
</div>
</div>
</section><!-- End Our Services Section -->
<!-- Features Start -->
<div class="container-xxl feature py-5">
<div class="container">
<div class="section-header">
<h2>Why Choose Us</h2>
<p>In order to provide end-to-end real estate solutions, Pearl-Orchid couples its
real estate products with requisite services which include;</p>
</div>
<div class="row g-5 align-items-center">
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s">
<h2 class="display-5 mb-4">Few Reasons Why People Choosing Us!</h2>
<p class="mb-4">
Discover the advantages of choosing our services.
</p>
<a class="btn btn-primary py-3 px-5" href="contact.html">Contact Us Now</a>
</div>
<div class="col-lg-6">
<div class="row g-4 align-items-center">
<div class="col-md-6">
<div class="row g-4">
<div class="col-12 wow fadeIn" data-wow-delay="0.3s">
<div class="feature-box border rounded p-4">
<i class="fa fa-check fa-3x text-primary mb-3"></i>
<h4 class="mb-3">Fast Executions</h4>
<p class="mb-3">
Experience quick and efficient executions with our services.
</p>
</div>
</div>
<div class="col-12 wow fadeIn" data-wow-delay="0.5s">
<div class="feature-box border rounded p-4">
<i class="fa fa-check fa-3x text-primary mb-3"></i>
<h4 class="mb-3">Guide & Support</h4>
<p class="mb-3">
Benefit from expert guidance and support.
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 wow fadeIn" data-wow-delay="0.7s">
<div class="feature-box border rounded p-4">
<i class="fa fa-check fa-3x text-primary mb-3"></i>
<h4 class="mb-3">Financial Secure</h4>
<p class="mb-3">
Ensure financial security with our reliable services.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Features End -->
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Testimonials</h2>
<p>Pearl Orchid Properties thrives on building a reputable brand on the zambian market by providing best realtor services.</p>
</div>
<div class="slides-3 swiper" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<div class="d-flex align-items-center">
<img src="assets/img/team/team-4.jpg" class="testimonial-img flex-shrink-0" alt="">
<div>
<h3>Saul Goodman</h3>
<h4>Ceo & Founder</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
</div>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Proin iaculis purus consequat sem cure digni ssim donec porttitora entum suscipit rhoncus. Accusantium quam, ultricies eget id, aliquam eget nibh et. Maecen aliquam, risus at semper.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<div class="d-flex align-items-center">
<img src="assets/img/team/team-4.jpg" class="testimonial-img flex-shrink-0" alt="">
<div>
<h3>Sara Wilsson</h3>
<h4>Designer</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
</div>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Export tempor illum tamen malis malis eram quae irure esse labore quem cillum quid cillum eram malis quorum velit fore eram velit sunt aliqua noster fugiat irure amet legam anim culpa.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<div class="d-flex align-items-center">
<img src="assets/img/team/team-4.jpg" class="testimonial-img flex-shrink-0" alt="">
<div>
<h3>Jena Karlis</h3>
<h4>Store Owner</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
</div>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Enim nisi quem export duis labore cillum quae magna enim sint quorum nulla quem veniam duis minim tempor labore quem eram duis noster aute amet eram fore quis sint minim.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<div class="d-flex align-items-center">
<img src="assets/img/team/team-4.jpg" class="testimonial-img flex-shrink-0" alt="">
<div>
<h3>Matt Brandon</h3>
<h4>Freelancer</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
</div>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Fugiat enim eram quae cillum dolore dolor amet nulla culpa multos export minim fugiat minim velit minim dolor enim duis veniam ipsum anim magna sunt elit fore quem dolore.
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<div class="d-flex align-items-center">
<img src="asets/img/team/team-4.jpg" class="testimonial-img flex-shrink-0" alt="">
<div>
<h3>John Larson</h3>
<h4>Entrepreneur</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
</div>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
Export tempor illum tamen malis malis eram quae irure esse labore quem cillum quid cillum eram malis quorum velit fore eram velit sunt aliqua noster fugiat irure amet legam anim culpa.
</p>
</div>
</div>
</div><!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section><!-- End Testimonials Section -->
<!-- ======= Our Team Section ======= -->
<section id="team" class="team">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Management</h2>
<p>Highly skilled and talented team that offers there expertise, insights and advice to our clients.</p>
</div>
<div class="row gy-4">
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="100">
<div class="member">
<img src="assets/img/team/team-4.jpg" class="img-fluid" alt="">
<h4>Kuli Mbofwana</h4>
<span>Managing Director</span>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="200">
<div class="member">
<img src="assets/img/team/team-4.jpg" class="img-fluid" alt="">
<h4>Bwalya Mbofwana</h4>
<span>Senior Accountant</span>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="300">
<div class="member">
<img src="assets/img/team/team-4.jpg" class="img-fluid" alt="">
<h4>William Anderson</h4>
<span>Land Surveyor</span>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<img src="assets/img/team/team-4.jpg" class="img-fluid" alt="">
<h4>Amanda Jepson</h4>
<span>Accountant</span>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div><!-- End Team Member -->
</div>
</div>
</section><!-- End Our Team Section -->
<!-- ======= Frequently Asked Questions Section ======= -->
<section id="faq" class="faq">
<div class="container" data-aos="fade-up">
<div class="row gy-4">
<div class="col-lg-4">
<div class="content px-xl-5">
<h3>Frequently Asked <strong>Questions</strong></h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Duis aute irure dolor in reprehenderit
</p>
</div>
</div>
<div class="col-lg-8">
<div class="accordion accordion-flush" id="faqlist" data-aos="fade-up" data-aos-delay="100">
<div class="accordion-item">
<h3 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq-content-1">
<span class="num">1.</span>
Non consectetur a erat nam at lectus urna duis?
</button>
</h3>
<div id="faq-content-1" class="accordion-collapse collapse" data-bs-parent="#faqlist">
<div class="accordion-body">
Feugiat pretium nibh ipsum consequat. Tempus iaculis urna id volutpat lacus laoreet non curabitur gravida. Venenatis lectus magna fringilla urna porttitor rhoncus dolor purus non.
</div>
</div>
</div><!-- # Faq item-->
<div class="accordion-item">
<h3 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq-content-2">
<span class="num">2.</span>
Feugiat scelerisque varius morbi enim nunc faucibus a pellentesque?
</button>
</h3>
<div id="faq-content-2" class="accordion-collapse collapse" data-bs-parent="#faqlist">
<div class="accordion-body">
Dolor sit amet consectetur adipiscing elit pellentesque habitant morbi. Id interdum velit laoreet id donec ultrices. Fringilla phasellus faucibus scelerisque eleifend donec pretium. Est pellentesque elit ullamcorper dignissim. Mauris ultrices eros in cursus turpis massa tincidunt dui.
</div>
</div>
</div><!-- # Faq item-->
<div class="accordion-item">
<h3 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq-content-3">
<span class="num">3.</span>
Dolor sit amet consectetur adipiscing elit pellentesque habitant morbi?
</button>
</h3>
<div id="faq-content-3" class="accordion-collapse collapse" data-bs-parent="#faqlist">
<div class="accordion-body">
Eleifend mi in nulla posuere sollicitudin aliquam ultrices sagittis orci. Faucibus pulvinar elementum integer enim. Sem nulla pharetra diam sit amet nisl suscipit. Rutrum tellus pellentesque eu tincidunt. Lectus urna duis convallis convallis tellus. Urna molestie at elementum eu facilisis sed odio morbi quis
</div>
</div>
</div><!-- # Faq item-->
<div class="accordion-item">
<h3 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq-content-4">
<span class="num">4.</span>
Ac odio tempor orci dapibus. Aliquam eleifend mi in nulla?
</button>
</h3>
<div id="faq-content-4" class="accordion-collapse collapse" data-bs-parent="#faqlist">
<div class="accordion-body">
Dolor sit amet consectetur adipiscing elit pellentesque habitant morbi. Id interdum velit laoreet id donec ultrices. Fringilla phasellus faucibus scelerisque eleifend donec pretium. Est pellentesque elit ullamcorper dignissim. Mauris ultrices eros in cursus turpis massa tincidunt dui.
</div>
</div>
</div><!-- # Faq item-->
<div class="accordion-item">
<h3 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq-content-5">
<span class="num">5.</span>
Tempus quam pellentesque nec nam aliquam sem et tortor consequat?
</button>
</h3>
<div id="faq-content-5" class="accordion-collapse collapse" data-bs-parent="#faqlist">
<div class="accordion-body">
Molestie a iaculis at erat pellentesque adipiscing commodo. Dignissim suspendisse in est ante in. Nunc vel risus commodo viverra maecenas accumsan. Sit amet nisl suscipit adipiscing bibendum est. Purus gravida quis blandit turpis cursus in
</div>
</div>
</div><!-- # Faq item-->
</div>
</div>
</div>
</div>
</section><!-- End Frequently Asked Questions Section -->
<!-- ======= Recent Blog Posts Section ======= -->
<section id="recent-posts" class="recent-posts sections-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Recent Blog Posts</h2>
<p>Review our clients comments, remarks and ratings towards our services.</p>
</div>
<div class="row gy-4">
<div class="col-xl-4 col-md-6">
<article>
<div class="post-img">
<img src="assets/img/team/team-4.jpg" alt="" class="img-fluid">
</div>
<p class="post-category">Politics</p>
<h2 class="title">
<a href="blog-details.html">Dolorum optio tempore voluptas dignissimos</a>
</h2>
<div class="d-flex align-items-center">
<img src="assets/img/team/team-4.jpg" alt="" class="img-fluid post-author-img flex-shrink-0">
<div class="post-meta">
<p class="post-author">Maria Doe</p>
<p class="post-date">
<time datetime="2022-01-01">Jan 1, 2022</time>
</p>
</div>
</div>
</article>
</div><!-- End post list item -->
<div class="col-xl-4 col-md-6">
<article>
<div class="post-img">
<img src="assets/img/team/team-4.jpg" alt="" class="img-fluid">
</div>
<p class="post-category">Sports</p>
<h2 class="title">
<a href="blog-details.html">Nisi magni odit consequatur autem nulla dolorem</a>
</h2>
<div class="d-flex align-items-center">
<img src="assets/img/team/team-4.jpg" alt="" class="img-fluid post-author-img flex-shrink-0">
<div class="post-meta">
<p class="post-author">Allisa Mayer</p>
<p class="post-date">
<time datetime="2022-01-01">Jun 5, 2022</time>
</p>
</div>
</div>
</article>
</div><!-- End post list item -->
<div class="col-xl-4 col-md-6">
<article>
<div class="post-img">
<img src="assets/img/team/team-4.jpg" alt="" class="img-fluid">
</div>
<p class="post-category">Entertainment</p>
<h2 class="title">
<a href="blog-details.html">Possimus soluta ut id suscipit ea ut in quo quia et soluta</a>
</h2>
<div class="d-flex align-items-center">
<img src="assets/img/team/team-4.jpg" alt="" class="img-fluid post-author-img flex-shrink-0">
<div class="post-meta">
<p class="post-author">Mark Dower</p>
<p class="post-date">
<time datetime="2022-01-01">Jun 22, 2022</time>
</p>
</div>
</div>
</article>
</div><!-- End post list item -->
</div><!-- End recent posts list -->
</div>
</section><!-- End Recent Blog Posts Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Contact</h2>
<p>Pearl Orchid Properties Limited can be contacted on the following listed details.</p>
</div>
<div class="row gx-lg-0 gy-4">
<div class="col-lg-4">
<div class="info-container d-flex flex-column align-items-center justify-content-center">
<div class="info-item d-flex">
<i class="bi bi-geo-alt flex-shrink-0"></i>
<div>
<h4>Location:</h4>
<p>Suite No.8 KGC GALLERIA Building, Chilenge,Lusaka Zambia</p>
</div>
</div><!-- End Info Item -->
<div class="info-item d-flex">
<i class="bi bi-envelope flex-shrink-0"></i>
<div>
<h4>Email:</h4>
<p>info@pearlorchidzambia.com</p>
</div>
</div><!-- End Info Item -->
<div class="info-item d-flex">
<i class="bi bi-phone flex-shrink-0"></i>
<div>
<h4>Call:</h4>
<p>+260 979 639258</p>
<p>+260 977 862 761</p>
</div>
</div><!-- End Info Item -->
<div class="info-item d-flex">
<i class="bi bi-clock flex-shrink-0"></i>
<div>
<h4>Open Hours:</h4>
<p>Mon-Sat: 8AM - 5PM</p>
</div>
</div><!-- End Info Item -->
</div>
</div>
<div class="col-lg-8">
<form action="forms/contact.php" method="post" role="form" class="php-email-form">
<div class="row">
<div class="col-md-6 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" required>
</div>
<div class="col-md-6 form-group mt-3 mt-md-0">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" required>
</div>
</div>
<div class="form-group mt-3">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" required>
</div>
<div class="form-group mt-3">
<textarea class="form-control" name="message" rows="7" placeholder="Message" required></textarea>
</div>
<div class="my-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your message has been sent. Thank you!</div>
</div>
<div class="text-center"><button type="submit">Send Message</button></div>
</form>
</div><!-- End Contact Form -->
</div>
</div>
</section><!-- End Contact Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer" class="footer">
<div class="container">
<div class="row gy-4">
<div class="col-lg-5 col-md-12 footer-info">
<a href="index.html" class="logo d-flex align-items-center">