-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1097 lines (874 loc) · 57.9 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="stylesheet" href="/assets/css/styles.css">
<link rel="stylesheet" href="/assets/css/variables.css">
<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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<title>A & A Designs</title>
</head>
<body>
<!--header-section-->
<header class="header-section">
<div class="container">
<div class="row d-flex flex-row py-3">
<div class="col-2">
<a href="/"><img src="./assets/img/header/aanda_design_logo.png" alt="A & A design logo" height="50px"></a>
</div>
<!-- Menu section for desktops -->
<div class="col-10 justify-content-end align-items-center d-none d-lg-flex">
<nav id="desktop-nav" class="d-flex align-items-center">
<ul class="d-flex m-0">
<li><a class="active" href="/">Home</a></li>
<li><a href="/assets/pages/shop.html">Shop</a></li>
<li><a href="/assets/pages/blog.html">Blog</a></li>
<li><a href="/assets/pages/about.html">About</a></li>
</ul>
</nav>
<div class="call-to-action">
<a class="call-to-action-btn btn btn-outline-primary px-3 py-1" href="/assets/pages/contact.html">Contact Us</a>
</div>
</div>
<!-- Hamburg for mobile menu -->
<div class="col-8 d-block d-lg-none"></div>
<div class="hamburg col-2 d-flex d-lg-none align-items-center justify-content-end">
<i class="fa-solid fa-bars fs-3"></i>
</div>
</div>
</div>
<!-- Menu section for mobiles-->
<div class="menu-page pb-4 d-flex flex-column justify-content-center align-items-center border">
<nav class="">
<ul class="d-flex flex-column justify-content-center align-items-center p-0">
<li><a class="active" href="/">Home</a></li>
<li><a class="" href="/assets/pages/shop.html">Shop</a></li>
<li><a class="" href="/assets/pages/blog.html">Blog</a></li>
<li><a class="" href="/assets/pages/about.html">About</a></li>
</ul>
</nav>
<div class="call-to-action">
<a class="call-to-action-btn btn btn-outline-primary px-3 py-1" href="/assets/pages/contact.html">Contact Us</a>
</div>
</div>
</header><!--header-section-->
<!--hero-section-->
<section class="hero-section w-100">
<div class="container d-flex flex-column align-items-around">
<div class="row mb-5 pt-5 pt-lg-none mt-5 mt-lg-0">
<div class="col-12 col-lg-6 d-flex flex-column align-items-center justify-content-center hero-content ">
<div class="hero-text d-flex flex-column justify-content-center align-items-center">
<!-- Hero image for mobile screens -->
<div class="hero-image-mobile d-sm-flex d-flex d-lg-none">
<div id="" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="img-fluid" src="/assets/img/hero/3d-house-model-design-3.png" class="d-block w-100" alt="">
</div>
<div class="carousel-item">
<img class="img-fluid" src="/assets/img/hero/3d-house-model-design.png" class="d-block w-100" alt="...">
</div>
</div>
</div>
</div>
<h1 id="hero-first-line text-center">Dream Homes</h1>
<h1 id="hero-second-line text-center">Designed Perfectly</h1>
<h4 class="text-center mt-3">Architects | Civil Engineers | MEP Engineers</h4>
<!-- Paragraph only visible for Tabs and larger screens -->
<p class="mt-4 fs-6 d-none d-sm-block text-center">Welcome to our architectural wonderland, where innovation meets imagination. Discover extraordinary designs, expertly crafted with a blend of creativity and functionality. Embrace a seamless journey as we transform your visions into captivating realities. Your dream space awaits; step into a world of architectural excellence. Call us <a href="#"><span style="color: var(--primary-color); font-weight: 600;">0112122324</span></a> or</p>
</div>
<div class="hero-action mt-3 mt-lg-4">
<a class="btn btn-primary py-2 px-3" href="/assets/pages/contact.html">Send Message</a>
</div>
</div>
<!-- Hero carousel for desktop screens-->
<div class="col-lg-6 d-none d-lg-flex flex-column justify-content-center align-items-end">
<div class="hero-image d-flex justify-content-center align-items-center">
<div id="" class="carousel slide d-flex justify-content-center align-items-center" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="/assets/img/hero/3d-house-model-design-3.png" class="d-block w-100" alt="">
</div>
<div class="carousel-item">
<img src="/assets/img/hero/3d-house-model-design.png" class="d-block w-100" alt="...">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Featured service icons only visible for desktop screens-->
<div class="row w-100 hero-services d-none d-lg-flex mt-5">
<div class="col-12 d-flex flex-row justify-content-around">
<div class="service-signs">
<i class="fa-solid fa-house-chimney-window"></i>
<span class="d-flex">3D Designs</span>
<div class="underline"></div>
</div>
<div class="service-signs">
<i class="fa-solid fa-calculator"></i>
<span class="d-flex">BOQ</span>
<div class="underline"></div>
</div>
<div class="service-signs">
<i class="fa-solid fa-sun"></i>
<span class="d-flex">Vasthu</span>
<div class="underline"></div>
</div>
<div class="service-signs">
<i class="fa-solid fa-pen-ruler"></i>
<span class="d-flex">Drawings</span>
<div class="underline"></div>
</div>
</div>
</div>
</div>
</section> <!--hero-section-->
<!--Banner-image-->
<section id="banner-image" class="w-100 mb-5 mt-5">
<div class="container banner-img-container">
<div class="banner-img"></div>
</div>
</section> <!--Banner-image-->
<!--Why us section-->
<section class="why-section my-5">
<div class="container">
<div class="row why-header d-flex flex-column align-items-center">
<h2 class="text-center">Why You Should Choose Us</h2>
<div class="underline"></div>
</div>
<div class="row mt-5">
<!-- First card -->
<div class="col-12 col-md-4 p-1">
<div class="why-content card w-100">
<div class="card-header">
<i class="fa-solid fa-award mt-2"></i>
<h5 class="text-center mt-3">Expertise and Experience</h5>
</div>
<div class="card-body">
<p class="text-center">
With decades of collective experience and a talented team of professionals, our firm brings a wealth of expertise to every project we undertake, guaranteeing top-notch results that exceed expectations. Trust us to bring your architectural visions to life with precision and creativity.
</p>
</div>
</div>
</div>
<!-- Second Card -->
<div class="col-12 col-md-4 p-1">
<div class="why-content card w-100">
<div class="card-header">
<i class="fa-regular fa-handshake mt-2"></i>
<h5 class="text-center mt-3">Client-Centric Focus</h5>
</div>
<div class="card-body">
<p class="text-center">
Customer satisfaction drives our approach. We prioritize your needs, ensuring transparent communication, and meticulously tailor our services to precisely match your distinct requirements. Your contentment is the essence of our success.
</p>
</div>
</div>
</div>
<!-- Third Card -->
<div class="col-12 col-md-4 p-1">
<div class="why-content card w-100">
<div class="card-header">
<i class="fa-solid fa-gift mt-2"></i>
<h5 class="text-center mt-3">Comprehensive Services</h5>
</div>
<div class="card-body">
<p class="text-center">
Our comprehensive services cover the spectrum, encompassing 3D design, BOQ, Vasthu consultations, and detailed drawings, seamlessly streamlining the architectural journey. Embrace a stress-free experience as we bring your vision to fruition.
</p>
</div>
</div>
</div>
</div>
</div>
</section> <!--why-us-section-->
<!--Services Section-->
<section id="services-section" class="services my-5">
<div class="container">
<div class="row d-flex flex-column align-items-center">
<h2 class="text-center">Our Comprehensive Architectural Services</h2>
<div class="underline"></div>
</div>
<!-- Service thread -->
<div class="row d-flex flex-column-reverse flex-lg-row align-items-center mt-5">
<!-- Paragraph about service quality-->
<div class="col-12 col-lg-5 quote">
<p class="mt-4 fs-5">
<i class="fa-solid fa-quote-left fs-1"></i>
With a commitment to excellence, innovation, and client satisfaction, we take pride in turning your dreams into extraordinary and functional spaces.<br><br>
Experience the power of our 3D design services, where your ideas come to life with stunning visualizations.
Ensure cost efficiency and transparency with our meticulous BOQ services, providing accurate estimations for your project.
Embrace positive energies and harmony in your space through our expert Vasthu consultations.
Our skilled team of drafters and architects produce detailed drawings, laying the foundation for a flawless construction process.
</p>
</div>
<!-- Service images -->
<div class="col-12 col-lg-7">
<div class="row">
<div class="col-6 service-img-container">
<img class="service-img img-fluid" src="/assets/img/services/3d_design_service.jpg" alt="">
</div>
<div class="col-6 d-flex justify-content-center align-items-center">
<div class="services-symbol card">
<i class="fa-solid fa-house-chimney-window"></i>
<p class="mt-2">3D Design</p>
</div>
</div>
</div>
<div class="row">
<div class="col-6 d-flex justify-content-center align-items-center">
<div class="services-symbol card">
<i class="fa-solid fa-calculator"></i>
<p class="mt-2">BOQ</p>
</div>
</div>
<div class="col-6 service-img-container">
<img class="service-img img-fluid" src="/assets/img/services/boq_preparation.png" alt="">
</div>
</div>
<div class="row">
<div class="col-6 service-img-container">
<img class="service-img img-fluid" src="/assets/img/services/zodiac-vasthu.png" alt="">
</div>
<div class="col-6 d-flex justify-content-center align-items-center">
<div class="services-symbol card">
<i class="fa-solid fa-sun"></i>
<p class="mt-2">Vasthu</p>
</div>
</div>
</div>
<div class="row">
<div class="col-6 d-flex justify-content-center align-items-center">
<div class="services-symbol card">
<i class="fa-solid fa-pen-ruler"></i>
<p class="mt-2">Drawings</p>
</div>
</div>
<div class="col-6 service-img-container">
<img class="service-img img-fluid" src="/assets/img/services/drawings.png" alt="">
</div>
</div>
</div>
</div>
</div>
</section> <!--services-->
<!--Previous Projects Section-->
<section class="projects my-5">
<div class="container">
<div class="row mt-3 mb-5 d-flex flex-column align-items-center">
<h2 class="text-center">Inspiring Creations in Our Portfolio Gallery</h2>
<div class="underline"></div>
</div>
<!-- First Project -->
<div class="row border mt-4 d-flex flex-column flex-lg-row align-items-center">
<div class="col-12 col-lg-6">
<div class="project-image-container">
<img class="project-image img-fluid" src="/assets/img/projects/5_storey_residence_at_piliyandala.jpg" alt="">
</div>
</div>
<div class="col-12 col-lg-6 d-flex align-items-center">
<div class="project-des mt-3">
<h3>5 Story Office Building | Piliyandala</h3>
<p>
Our architectural firm proudly presents a 5-story building in Piliyandala, showcasing modern aesthetics and thoughtful design. This impressive structure reflects our commitment to excellence, blending creativity with functionality to deliver remarkable spaces for our valued clients.
</p>
<!-- Special features -->
<div class="project-features d-flex flex-column flex-sm-row mt-5">
<div class="wrap-content px-3 py-1 my-2 my-sm-0 mx-2 mx-lg-4">
<i class="feature-symbol fa-solid fa-house pe-3"></i>
<div class="des ps-3">
<p class="des-topic">Floor area</p>
<p>3540 sqft</p>
</div>
</div>
<div class="wrap-content px-3 py-1 my-2 my-sm-0 mx-2 mx-lg-4">
<i class="feature-symbol fa-solid fa-car pe-3"></i>
<div class="des ps-3">
<p class="des-topic">Parking</p>
<p>Available</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Second project -->
<div class="row mt-5 d-flex flex-column-reverse flex-lg-row align-items-center">
<div class="col-12 col-lg-6 d-flex align-items-center">
<div class="project-des mt-3">
<h3>3 Story Residence House | Gampaha</h3>
<p>
Discover our architecturally rich 3-story residence in Gampaha, featuring 6 bedrooms with attached bathrooms. This stunning house showcases a unique and futuristic external design, setting new standards for contemporary luxury and functionality. A true testament to our commitment to architectural excellence in the area.
</p>
<!-- Project features -->
<div class="project-features d-flex flex-column flex-sm-row mt-5">
<div class="wrap-content px-3 py-1 my-2 my-sm-0 mx-2 mx-lg-4">
<i class="feature-symbol fa-solid fa-house pe-3"></i>
<div class="des ps-3">
<p class="des-topic">Floor area</p>
<p>2540 sqft</p>
</div>
</div>
<div class="wrap-content px-3 py-1 my-2 my-sm-0 mx-2 mx-lg-4">
<i class="feature-symbol fa-solid fa-bed pe-3"></i>
<div class="des ps-3">
<p class="des-topic">Bedrooms</p>
<p>6</p>
</div>
</div>
</div>
</div>
</div>
<!-- Second Project image-->
<div class="col-12 col-lg-6">
<div class="project-image-container">
<img class="project-image img-fluid" src="/assets/img/projects/3_storey_house_at_gampaha.jpg" alt="">
</div>
</div>
</div>
<!-- Third project -->
<div class="row mt-5 d-flex flex-column flex-lg-row align-items-center">
<div class="col-12 col-lg-6">
<div class="project-image-container">
<img class="project-image img-fluid" src="/assets/img/projects/3_storey_house_at_matara.jpg" alt="">
</div>
</div>
<!-- Project description -->
<div class="col-12 col-lg-6 d-flex align-items-center">
<div class="project-des mt-3">
<h3>3 Story Residence House | Matara</h3>
<p>
Discover our architecturally rich 3-story luxury residence in Matara, boasting 7 bedrooms with a rooftop retreat. This exceptional house features an elegant wooden pergola at the front, epitomizing sophistication and modern living. A true testament to our commitment to architectural excellence, setting new standards in the area.
</p>
<!-- Project features -->
<div class="project-features d-flex flex-column flex-sm-row mt-5">
<div class="wrap-content px-3 py-1 my-2 my-sm-0 mx-2 mx-lg-4">
<i class="feature-symbol fa-solid fa-house pe-3"></i>
<div class="des ps-3">
<p class="des-topic">Floor area</p>
<p>2800 sqft</p>
</div>
</div>
<div class="wrap-content px-3 py-1 my-2 my-sm-0 mx-2 mx-lg-4">
<i class="feature-symbol fa-solid fa-bed pe-3"></i>
<div class="des ps-3">
<p class="des-topic">Bedrooms</p>
<p>7</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> <!--Previous Projects Section-->
<!--Testimonial Section-->
<section id="testimonial" class="mt-2">
<div class="container">
<div class="row mt-5 d-flex flex-column align-items-center">
<h2 class="header-testimonial text-center d-lg-block d-none">See What Our Satisfied Clients Have To Say</h2>
<h2 class="header-testimonial text-center d-block d-lg-none">Our Satisfied Clients</h2>
<div class="underline"></div>
</div>
<!--For smaller screens-->
<div class="row d-lg-none">
<div id="carouselExampleSlidesOnly" class="carousel slide mt-5" data-bs-ride="carousel">
<div class="carousel-inner">
<!-- Carousal cards -->
<div class="carousel-item active">
<div class="col-12 d-flex justify-content-center">
<div class="testimonial-card w-100 w-sm-75 card">
<div class="card-body testimonial-card-body">
<img class="profile-img" src="/assets/img/testimonial/abc_ceo.PNG" alt="">
<h4>Mr. Edward Cooray</h4>
<h6>CEO, ABC Network</h6>
<p><i class="fa-solid fa-quote-left"></i> Exceptional work! This design company crafted a stunning office space that reflects our brand identity and enhances productivity. Highly recommended!"</p>
<img class="rating-img" src="/assets/img/projects/5-star-rating.svg" alt="5 Star ratings">
</div>
</div>
</div>
</div>
<!-- Carousal cards -->
<div class="carousel-item">
<div class="col-12 d-flex justify-content-center">
<div class="testimonial-card w-100 w-sm-75 card">
<div class="card-body testimonial-card-body">
<img class="profile-img" src="/assets/img/testimonial/home_garden_ceo.PNG" alt="">
<h4>Mr. Yazool Ifthikhar</h4>
<h6>CEO, Home Garden</h6>
<p><i class="fa-solid fa-quote-left"></i> Excellent work. This company surpassed our expectations, creating a functional and visually stunning space that wows both clients and employees. Highly impressed!</p>
<img class="rating-img" src="/assets/img/projects/5-star-rating.svg" alt="5 Star ratings">
</div>
</div>
</div>
</div>
<!-- Carousal cards -->
<div class="carousel-item">
<div class="col-12 d-flex justify-content-center">
<div class="testimonial-card w-100 w-sm-75 card">
<div class="card-body testimonial-card-body">
<img class="profile-img" src="/assets/img/testimonial/prime_garden_md.PNG" alt="">
<h4>Ms. Devika Fernando</h4>
<h6>MD, Prime Garden</h6>
<p><i class="fa-solid fa-quote-left"></i> Thrilled with our new office design! This architectural firm delivered a space that captures our company culture and inspires our team to do their best work. Thank you!</p>
<img class="rating-img" src="/assets/img/projects/5-star-rating.svg" alt="5 Star ratings">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- For large screens-->>
<div id="carouselExampleSlidesOnly" class="carousel slide mt-5 d-none d-lg-block" data-bs-ride="carousel">
<div class="carousel-inner">
<!-- Carousel item -->
<div class="carousel-item active">
<div class="row">
<!-- Firsr column card -->
<div class="col-12 col-lg-4">
<div class="testimonial-card w-100 card">
<div class="card-body testimonial-card-body">
<img class="profile-img" src="/assets/img/testimonial/abc_ceo.PNG" alt="">
<h4>Mr. Edward Cooray</h4>
<h6>CEO, ABC Network</h6>
<p><i class="fa-solid fa-quote-left"></i> Exceptional work! This design company crafted a stunning office space that reflects our brand identity and enhances productivity. Highly recommended!"</p>
<img class="rating-img" src="/assets/img/projects/5-star-rating.svg" alt="5 Star ratings">
</div>
</div>
</div>
<!-- Second column card -->
<div class="col-12 col-lg-4">
<div class="testimonial-card w-100 card">
<div class="card-body testimonial-card-body">
<img class="profile-img" src="/assets/img/testimonial/prime_garden_md.PNG" alt="">
<h4>Ms. Devika Fernando</h4>
<h6>MD, Prime Garden</h6>
<p><i class="fa-solid fa-quote-left"></i> Thrilled with our new office design! This architectural firm delivered a space that captures our company culture and inspires our team to do their best work. Thank you!</p>
<img class="rating-img" src="/assets/img/projects/5-star-rating.svg" alt="5 Star ratings">
</div>
</div>
</div>
<!-- third column card -->
<div class="col-12 col-lg-4">
<div class="testimonial-card w-100 card">
<div class="card-body testimonial-card-body">
<img class="profile-img" src="/assets/img/testimonial/home_garden_ceo.PNG" alt="">
<h4>Mr. Yazool Ifthikhar</h4>
<h6>CEO, Home Garden</h6>
<p><i class="fa-solid fa-quote-left"></i> Excellent work. This company surpassed our expectations, creating a functional and visually stunning space that wows both clients and employees. Highly impressed!</p>
<img class="rating-img" src="/assets/img/projects/5-star-rating.svg" alt="5 Star ratings">
</div>
</div>
</div>
</div>
</div>
<!-- Second item -->
<div class="carousel-item">
<div class="row">
<!-- First card -->
<div class="col-12 col-lg-4">
<div class="testimonial-card w-100 card">
<div class="card-body testimonial-card-body">
<img class="profile-img" src="/assets/img/testimonial/prime_garden_md.PNG" alt="">
<h4>Ms. Devika Fernando</h4>
<h6>MD, Prime Garden</h6>
<p><i class="fa-solid fa-quote-left"></i> Thrilled with our new office design! This architectural firm delivered a space that captures our company culture and inspires our team to do their best work. Thank you!</p>
<img class="rating-img" src="/assets/img/projects/5-star-rating.svg" alt="5 Star ratings">
</div>
</div>
</div>
<!-- Second card -->
<div class="col-12 col-lg-4">
<div class="testimonial-card w-100 card">
<div class="card-body testimonial-card-body">
<img class="profile-img" src="/assets/img/testimonial/home_garden_ceo.PNG" alt="">
<h4>Mr. Yazool Ifthikhar</h4>
<h6>CEO, Home Garden</h6>
<p><i class="fa-solid fa-quote-left"></i> Excellent work. This company surpassed our expectations, creating a functional and visually stunning space that wows both clients and employees. Highly impressed!</p>
<img class="rating-img" src="/assets/img/projects/5-star-rating.svg" alt="5 Star ratings">
</div>
</div>
</div>
<!-- Third card -->
<div class="col-12 col-lg-4">
<div class="testimonial-card w-100 card">
<div class="card-body testimonial-card-body">
<img class="profile-img" src="/assets/img/testimonial/abc_ceo.PNG" alt="">
<h4>Mr. Edward Cooray</h4>
<h6>CEO, ABC Network</h6>
<p><i class="fa-solid fa-quote-left"></i> Exceptional work! This design company crafted a stunning office space that reflects our brand identity and enhances productivity. Highly recommended!"</p>
<img class="rating-img" src="/assets/img/projects/5-star-rating.svg" alt="5 Star ratings">
</div>
</div>
</div>
</div>
</div>
<!-- Third item -->
<div class="carousel-item">
<div class="row">
<!-- First card -->
<div class="col-12 col-lg-4">
<div class="testimonial-card w-100 card">
<div class="card-body testimonial-card-body">
<img class="profile-img" src="/assets/img/testimonial/home_garden_ceo.PNG" alt="">
<h4>Mr. Yazool Ifthikhar</h4>
<h6>CEO, Home Garden</h6>
<p><i class="fa-solid fa-quote-left"></i> Excellent work. This company surpassed our expectations, creating a functional and visually stunning space that wows both clients and employees. Highly impressed!</p>
<img class="rating-img" src="/assets/img/projects/5-star-rating.svg" alt="5 Star ratings">
</div>
</div>
</div>
<!-- Second card -->
<div class="col-12 col-lg-4">
<div class="testimonial-card w-100 card">
<div class="card-body testimonial-card-body">
<img class="profile-img" src="/assets/img/testimonial/abc_ceo.PNG" alt="">
<h4>Mr. Edward Cooray</h4>
<h6>CEO, ABC Network</h6>
<p><i class="fa-solid fa-quote-left"></i> Exceptional work! This design company crafted a stunning office space that reflects our brand identity and enhances productivity. Highly recommended!"</p>
<img class="rating-img" src="/assets/img/projects/5-star-rating.svg" alt="5 Star ratings">
</div>
</div>
</div>
<!-- Third card -->
<div class="col-12 col-lg-4">
<div class="testimonial-card w-100 card">
<div class="card-body testimonial-card-body">
<img class="profile-img" src="/assets/img/testimonial/prime_garden_md.PNG" alt="">
<h4>Ms. Devika Fernando</h4>
<h6>MD, Prime Garden</h6>
<p><i class="fa-solid fa-quote-left"></i> Thrilled with our new office design! This architectural firm delivered a space that captures our company culture and inspires our team to do their best work. Thank you!</p>
<img class="rating-img" src="/assets/img/projects/5-star-rating.svg" alt="5 Star ratings">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> <!--Testimonial Section-->
<!--Trusted brands-->
<section id="trusted-brands" class="my-5">
<div class="row pt-5 mt-5 ms-3 me-3">
<h2 class="text-center">Trusted by 20+ Renowned Brands in Sri Lanka for Exceptional Workplace Designs!</h2>
</div>
<div class="container">
<!-- Logos -->
<div class="row mb-5 d-flex justify-content-center">
<div class="card p-5 my-5 d-flex flex-row justify-content-around">
<div class="wrap-logo"><img src="/assets/img/logos/arpico-logo.jpeg" alt=""></div>
<div class="wrap-logo py-3"><img src="/assets/img/logos/homelands-logo.png" alt=""></div>
<div class="wrap-logo py-3"><img src="/assets/img/logos/prime-logo.png" alt=""></div>
<div class="wrap-logo"><img src="/assets/img/logos/singer-logo.png" alt=""></div>
<div class="wrap-logo"><img src="/assets/img/logos/wso2-logo.png" alt=""></div>
<div class="wrap-logo"><img src="/assets/img/logos/Damro-logo.jpg" alt=""></div>
<div class="wrap-logo"><img src="/assets/img/logos/maliban-logo.png" alt=""></div>
<div class="wrap-logo"><img src="/assets/img/logos/hnb-logo.png" alt=""></div>
<div class="wrap-logo py-5"><img src="/assets/img/logos/asiri-logo.png" alt=""></div>
</div>
</div>
</div>
</section> <!--Trusted brands-->
<!--Product Section-->
<section class="product-section mt-5">
<div class="container">
<div class="row d-flex flex-column align-items-center">
<h2 class="text-center d-lg-block d-none">Purchase Your Dream Home Design in No Time</h2>
<h2 class="text-center d-lg-none d-block">Purchase Pre Designed Plans</h2>
<div class="underline"></div>
</div>
<!-- Product gallery -->
<div class="row d-flex mt-5">
<!-- First product-->
<div class="col-12 col-sm-6 col-lg-3 p-1">
<a id="101" class="product show p-0 card" href="#">
<div class="card-body d-flex flex-column">
<div id="image-1-1" class="product-image d-flex justify-content-center align-items-center">
<button href="#" class="btn btn-outline-primary py-2 me-4"><i class="fa-solid fa-cart-plus"></i></button>
<button href="#" class="btn btn-outline-primary py-2 ms-4"><i class="fa-regular fa-heart"></i></button>
</div>
<h5 class="text-bold mt-3 ps-1">2 Story House Plan #101</h5>
<span class="area text-bold mt-1 ps-1"><i class="fa-solid fa-house"></i> 2,550 sqft</span>
<span class="bedroom text-bold mt-1 ps-1"><i class="fa-solid fa-bed"></i> 4 bedrooms</span>
<span class="bathroom text-bold mt-1 ps-1"><i class="fa-solid fa-bath"></i> 2 Bathrooms</span>
<span class="text-bold mt-1 ps-1"><i class="fa-solid fa-tags"></i> Rs. 300,000.00</span>
<img class="my-2" src="/assets/img/projects/5-star-rating.svg" width="50%" alt="5 Star ratings">
</div>
</a>
</div>
<!-- Second product -->
<div class="col-12 col-sm-6 col-lg-3 p-1">
<a id="102" class="product show p-0 card" href="#">
<div class=" card-body d-flex flex-column">
<div id="image-1-2" class="product-image d-flex justify-content-center align-items-center">
<button href="#" class="btn btn-outline-primary py-2 me-4"><i class="fa-solid fa-cart-plus"></i></button>
<button href="#" class="btn btn-outline-primary py-2 ms-4"><i class="fa-regular fa-heart"></i></button>
</div>
<h5 class="text-bold mt-3 ps-1">2 Story House Plan #102</h5>
<span class="area text-bold mt-1 ps-1"><i class="fa-solid fa-house"></i> 2,350 sqft</span>
<span class="bedroom text-bold mt-1 ps-1"><i class="fa-solid fa-bed"></i> 3 bedrooms</span>
<span class="bathroom text-bold mt-1 ps-1"><i class="fa-solid fa-bath"></i> 2 Bathrooms</span>
<span class="text-bold mt-1 ps-1"><i class="fa-solid fa-tags"></i> Rs. 275,000.00</span>
<img class="my-2" src="/assets/img/projects/5-star-rating.svg" width="50%" alt="5 Star ratings">
</div>
</a>
</div>
<!-- third product -->
<div class="col-12 col-sm-6 col-lg-3 p-1">
<a id="103" class="product show p-0 card" href="#">
<div class=" card-body d-flex flex-column">
<div id="image-1-3" class="product-image d-flex justify-content-center align-items-center">
<button href="#" class="btn btn-outline-primary py-2 me-4"><i class="fa-solid fa-cart-plus"></i></button>
<button href="#" class="btn btn-outline-primary py-2 ms-4"><i class="fa-regular fa-heart"></i></button>
</div>
<h5 class="text-bold mt-3 ps-1">1 Story House Plan #103</h5>
<span class="area text-bold mt-1 ps-1"><i class="fa-solid fa-house"></i> 1,200 sqft</span>
<span class="bedroom text-bold mt-1 ps-1"><i class="fa-solid fa-bed"></i> 2 bedrooms</span>
<span class="bathroom text-bold mt-1 ps-1"><i class="fa-solid fa-bath"></i> 1 Bathrooms</span>
<span class="text-bold mt-1 ps-1"><i class="fa-solid fa-tags"></i> Rs. 150,000.00</span>
<img class="my-2" src="/assets/img/projects/5-star-rating.svg" width="50%" alt="5 Star ratings">
</div>
</a>
</div>
<!-- Fourth product -->
<div class="col-12 col-sm-6 col-lg-3 p-1">
<a id="104" class="product show p-0 card" href="#">
<div class=" card-body d-flex flex-column">
<div id="image-2-1" class="product-image d-flex justify-content-center align-items-center">
<button href="#" class="btn btn-outline-primary py-2 me-4"><i class="fa-solid fa-cart-plus"></i></button>
<button href="#" class="btn btn-outline-primary py-2 ms-4"><i class="fa-regular fa-heart"></i></button>
</div>
<h5 class="text-bold mt-3 ps-1">1 Story House Plan #104</h5>
<span class="area text-bold mt-1 ps-1"><i class="fa-solid fa-house"></i> 1,550 sqft</span>
<span class="bedroom text-bold mt-1 ps-1"><i class="fa-solid fa-bed"></i> 3 bedrooms</span>
<span class="bathroom text-bold mt-1 ps-1"><i class="fa-solid fa-bath"></i> 2 Bathrooms</span>
<span class="text-bold mt-1 ps-1"><i class="fa-solid fa-tags"></i> Rs. 175,000.00</span>
<img class="my-2" src="/assets/img/projects/5-star-rating.svg" width="50%" alt="5 Star ratings">
</div>
</a>
</div>
</div>
<!-- Store link -->
<div class="row mt-2">
<div class="d-flex justify-content-end">
<a class="btn btn-outline-primary product-btn px-3 py-2" href="#">Visit Store <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</div>
</div>
</div>
</section> <!--Product Section-->
<!--Custom Design-->
<section id="custom-design" class="my-5 py-5 py-lg-0">
<div class="container">
<div class="row d-flex flex-column-reverse flex-lg-row align-items-center">
<!-- Custom section content-->
<div class="col-12 col-lg-6 text-center mt-4">
<h2>Need a Custom Design?</h2>
<h5 class="mt-4 lh-base">Call us <a id="phone" href="">0112122324</a> or send us a message with all the requirements of your dream home</h5>
<a href="/assets/pages/contact.html" class="custom-design-btn btn btn-primary px-3 py-2 mt-4">Send Message</a>
</div>
<!-- Custom section image -->
<div class="col-12 col-lg-6 d-flex justify-content-center">
<img class="custom-img img-fluid w-75 w-lg-100" src="/assets/img/custom/house-layout1.png" alt="">
</div>
</div>
</div>
</section> <!--Custom Design-->
<!--Staff Design-->
<section id="staff" class="staff-section">
<div class="container">
<!-- Topic -->
<div class="row mt-5 d-flex flex-column align-items-center">
<h2 class="text-center header-staff">Meet Our Visionaries</h2>
<div class="underline"></div>
</div>
<div class="row">
<!-- Card of MD -->
<div class="col-12 col-sm-6 col-lg-3 mt-5">
<div class="staff-card card">
<div class="card-body d-flex flex-column justify-content-center align-items-center">
<img src="/assets/img/staff/managing_director.jpg" alt="MD">
<i class="fa-solid fa-briefcase"></i>
<h5>Arjuna Vithana</h5>
<p>Managing Director</p>
</div>
</div>
</div>
<!-- Card of civil Engineer -->
<div class="col-12 col-sm-6 col-lg-3 mt-5">
<div class="staff-card card">
<div class="card-body d-flex flex-column justify-content-center align-items-center">
<img src="/assets/img/staff/civil_engineer.jpg" alt="MD">
<i class="fa-solid fa-pencil"></i>
<h5>Shane McCallum</h5>
<p>Charted Civil Engineer</p>
</div>
</div>
</div>
<!-- Card of Architect -->
<div class="col-12 col-sm-6 col-lg-3 mt-5">
<div class="staff-card card">
<div class="card-body d-flex flex-column justify-content-center align-items-center">
<img src="/assets/img/staff/mep_engineer.jpg" alt="MD">
<i class="fa-solid fa-compass-drafting"></i>
<h5>Anjalee Perera</h5>
<p>Charted Architect</p>
</div>
</div>
</div>
<!-- Card of Mep Engineer-->
<div class="col-12 col-sm-6 col-lg-3 mt-5">
<div class="staff-card card">
<div class="card-body d-flex flex-column justify-content-center align-items-center">
<img src="/assets/img/staff/architect.jpg" alt="MD">
<i style="padding-left: 12px; padding-right: 12px;" class="fa-solid fa-plug"></i>
<h5>Chamal Jayasuriya</h5>
<p>Charted MEP Engineer</p>
</div>
</div>
</div>
</div>
<!-- Link to the about section -->
<div class="row mt-3">
<div class="staff-call-to-action d-flex justify-content-end">
<a class="btn btn-outline-primary staff-btn px-3 py-2" href="/assets/pages/about.html">More About Us <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</div>
</div>
</div>
</section> <!--Staff Design-->
<!-- blog-section -->
<section class="blog-section" id="blog">
<div class="container mt-5">
<!-- Topic -->
<div class="row d-flex flex-column align-items-center">
<h2 class="text-center header-blog">Insights & Inspiration from Our Blog</h2>
<div class="underline"></div>
</div>
<div class="row d-flex flex-column flex-lg-row">
<!-- First blog post -->
<div class="blog-link col-12 col-lg-4 mt-5">
<a href="/assets/pages/blog.posts/blog.post.1/blog.post.1.html">
<div class="blog-card">
<img class="blog-img" src="/assets/img/blog/10_benifits_of_making_3d_designs.jpeg" alt="house 3d design">
<h5 class="mt-4 px-1">10 benifits of making 3D designs before construction</h5>
<p class="mt-3 px-1">In the realm of architectural design, the utilization of 3D technology has revolutionized the way projects are visualized and executed. <a class="read-more" href="#">Read more..</a></p>
<span class="mb-3 px-1"><i class="fa-regular fa-calendar"></i> 15th March 2023</span>
</div>
</a>
</div>
<!-- Second blog post -->
<div class="blog-link col-12 col-lg-4 mt-5">
<a href="/assets/pages/blog.posts/blog.post.1/blog.post.1.html">
<div class="blog-card">
<img class="blog-img" src="/assets/img/blog/15_new_design_ideas.png" alt="design ideas">
<h5 class="mt-4 px-1">15 new design ideas for 2 story houses</h5>
<p class="mt-3 px-1">Two-story houses provide ample space for families, allowing for functional separation between living and private areas. Whether you're <a class="read-more" href="#">Read more..</a></p>
<span class="mb-3 px-1"><i class="fa-regular fa-calendar"></i> 08th February 2023</span>
</div>
</a>
</div>
<!-- Third blog post -->
<div class="blog-link col-12 col-lg-4 mt-5">
<a href="/assets/pages/blog.posts/blog.post.1/blog.post.1.html">
<div class="blog-card">
<img class="blog-img" src="/assets/img/blog/13_ideas_to_reduce_the_cost.jpg" alt="reduce the cost">
<h5 class="mt-4 px-1">13 ideas to reduce the cost of house construction</h5>
<p class="mt-3 px-1">Building a house is a significant financial undertaking, and finding ways to reduce construction costs can make a substantial differ <a class="read-more" href="#">Read more..</a></p>
<span class="mb-3 px-1"><i class="fa-regular fa-calendar"></i> 01st January 2023</span>
</div>
</a>
</div>
</div>
<!-- Link to blog section -->
<div class="row mt-3 mb-5">
<div class="blog-call-to-action d-flex justify-content-end">
<a class="btn btn-outline-primary blog-btn px-3 py-2" href="/assets/pages/blog.html">Visit Blog <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</div>
</div>
</div>
</section> <!-- blog-section -->
<!-- Footer-Section -->
<footer>
<!-- Left corner column-->
<div class="container mt-5">