-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2227 lines (1930 loc) · 93.3 KB
/
index.html
File metadata and controls
2227 lines (1930 loc) · 93.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Builtline is a trusted construction company in Bangalore offering quality residential and commercial projects.">
<link rel="icon" type="image/png" href="static/image/Logo 11.jpg">
<title>Builtline Construction</title>
<link rel="canonical" href="https://builtlineconstruction.com/" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="static/css/style.css?v=20260317">
<link rel="stylesheet" href="static/css/media.css?v=10">
<!-- likes for font-awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css">
<link href="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.min.css" rel="stylesheet">
<!-- emailjs link -->
<script src="https://cdn.jsdelivr.net/npm/@emailjs/browser@4/dist/email.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&icon_names=dropper_eye" />
<!-- Google fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&display=swap" rel="stylesheet">
<!-- <link rel="stylesheet" href="https://fonts.google.com/share?selection.family=Cairo:wght@200..1000"> -->
<link href="https://fonts.googleapis.com" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link rel="preload" as="image" href="static/image/hero-image1.webp" fetchpriority="high" type="image/webp">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "HomeAndConstructionBusiness",
"name": "Builtline Construction",
"image": "https://builtlineconstruction.com/static/image/Logo1.jpg",
"url": "https://builtlineconstruction.com/",
"telephone": "+91 9148498588",
"priceRange": "$$",
"address": {
"@type": "PostalAddress",
"streetAddress": "Malleshwaram",
"addressLocality": "Bengaluru",
"addressRegion": "Karnataka",
"postalCode": "560003",
"addressCountry": "IN"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "12.9988",
"longitude": "77.5703"
},
"areaServed": {
"@type": "City",
"name": "Bengaluru"
},
"description": "Builtline Construction is a premier building construction company in Bangalore, specializing in residential and commercial projects."
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is the cost of construction per sq ft in Bangalore in 2026?",
"acceptedAnswer": {
"@type": "Answer",
"text": "As of 2026, the average house construction cost in Bangalore ranges from ₹1,700 to ₹3,500 per sq ft. Basic quality starts at ₹1,700–₹2,000, standard quality at ₹2,100–₹2,800, and premium/luxury construction exceeds ₹3,000 per sq ft depending on materials and finishes."
}
},
{
"@type": "Question",
"name": "How much does it cost to build a 30x40 G+1 house in Bangalore?",
"acceptedAnswer": {
"@type": "Answer",
"text": "For a standard 30x40 plot (1200 sq ft) with a G+1 duplex structure, the total construction cost typically ranges between ₹40 lakhs to ₹55 lakhs. This estimate excludes land cost and government approval fees but includes structure and essential finishes."
}
},
{
"@type": "Question",
"name": "How long does it take to construct a G+1 or G+2 house in Bangalore?",
"acceptedAnswer": {
"@type": "Answer",
"text": "On average, a G+1 residential building takes 6 to 9 months to complete, while a G+2 house may take 8 to 11 months. Timelines depend on the complexity of the design, weather conditions, and timely material procurement."
}
},
{
"@type": "Question",
"name": "What approvals are required for house construction in Bangalore?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Homeowners need building plan sanctions from BBMP (for city limits) or BDA/BMRDA (for outskirts). Additionally, you require a Khata certificate, tax receipts, and NOCs from BESCOM and BWSSB for electricity and water connections."
}
},
{
"@type": "Question",
"name": "Is a soil test mandatory before building a house in Bangalore?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, a soil test is highly recommended and often required by structural engineers in Bangalore to determine foundation depth. This is especially critical in areas with red soil or loose clay to ensure the long-term safety of your G+1 or G+2 building."
}
}
]
}
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WXSFV86F');</script>
</head>
<body>
<section class="section-container">
<!-- header -->
<header class="hero-header container">
<img src="static/image/Logo1.jpg" alt="" class="Image">
<nav>
<a href="index.html"><span>HOME</span></a>
<div class="nav-dropdown">
<a href="about.html">ABOUT</a>
<div class="dropdown-menu">
<a href="construction-landing.html">BUILD HOME</a>
<hr>
<a href="career.html">CAREER</a>
</div>
</div>
<a href="services.html">SERVICE</a>
<a href="project.html">PROJECTS</a>
<a href="construction-company-in-bangalore.html">BLOGS</a>
<div class="nav-dropdown">
<a href="contact.html">CONTACT</a>
<div class="dropdown-menu">
<a href="https://builtlineconstruction.com/login.php">LOGIN</a>
</div>
</div>
<!-- <a href="package.html" class="wave-btn"> <span>GET FREE A QUOTE</span> <i class="fa-solid fa-arrow-right-long"></i></a> -->
<a href="package.html" class="fill-btn">
<span>GET A FREE QUOTE</span>
<div class="icon"><i class="fa-solid fa-arrow-right-long"></i></div>
</a>
</nav>
</header>
<!-- scroll -->
<header class="scroll-header">
<div class="scroll-container container">
<img src="static/image/Logo 11.jpg" alt="">
<navbar>
<a href="index.html"><span>HOME</span></a>
<div class="nav-dropdown">
<a href="about.html">ABOUT</a>
<div class="dropdown-menu">
<a href="construction-landing.html">BUILD HOME</a>
<hr>
<a href="career.html">CAREER</a>
</div>
</div>
<a href="services.html">SERVICE</a>
<a href="project.html">PROJECTS</a>
<a href="construction-company-in-bangalore.html">BLOGS</a>
<div class="nav-dropdown">
<a href="contact.html">CONTACT</a>
<div class="dropdown-menu">
<a href="https://builtlineconstruction.com/login.php">LOGIN</a>
</div>
</div>
<a href="package.html" class="class-btn"> GET A QUOTE<i class="fa-solid fa-arrow-right-long"></i></a>
</navbar>
</div>
</header>
<!-- Hero Banner -->
<div class="hero">
<div class="container">
<div class="hero-mainContent">
<div class="hero-content">
<h1 id="heroText">BUILD YOUR DREAM HOUSE WITH US</h1>
<p>We deliver quality construction services you can trust.</p>
<a href="package.html" class="class-btn"> <span>GET A QUOTE</span><i class="fa-solid fa-arrow-right-long"></i></a>
</div>
<div class="hero-form">
<h2>Get Your Free Construction <br> Quote Today !</h2>
<form id="homeForm">
<div class="form-row">
<input type="text" placeholder="First Name" id="firstname" required>
<input type="text" placeholder="Last Name" id="lastname" required>
</div>
<div class="form-row">
<input type="email" placeholder="yourname@gmail.com" id="email" required>
<input type="tel" placeholder="Phone number" id="phone" required>
</div>
<select id="project">
<option>Type of service</option>
<option>Construction</option>
<option>Renovation</option>
<option>Interior Design</option>
<option>Architecture</option>
</select>
<textarea placeholder="Enter your message" id="message" required></textarea>
<button type="submit">Get Our Free Quote</button>
</form>
</div>
</div>
</div>
</div>
<!-- about -->
<div class="about-section" id="about">
<div class="container">
<div class="expertise-header text-center" data-aos="zoom-in">
<h2 style="color: #fff;">About Us</h2>
<!-- <div class="underline"></div> -->
</div>
<!-- Content -->
<div class="about-content">
<div class="row align-items-center">
<!-- TEXT -->
<div class="col-12 col-md-6 col-lg-6">
<div class="aboutText">
<p>
We follow a systematic approach to construction with experienced professionals and skilled workers.
Quality control, on-site safety, and customer satisfaction are our top priorities.
Our goal is to deliver dependable construction solutions with long-term value.
</p>
<p>
We provide end-to-end construction services including planning, design coordination, and project execution.
Our work emphasizes structural strength, cost efficiency, and adherence to industry standards.
Each project is managed carefully to ensure quality delivery within the agreed timeline.
</p>
<p>
Safety, quality, and customer satisfaction are our top priorities. We ensure every project is managed carefully
from start to finish to deliver long-lasting value and dependable results within the agreed timeline.
</p>
</div>
</div>
<!-- IMAGE -->
<div class="col-12 col-md-6 col-lg-6">
<div class="about-image">
<img src="static/image/aboutus.avif" alt="About construction work" class="img-fluid">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- counter -->
<div class="counter-container " id="counter">
<div class="container">
<div class="row justify-content-space-between align-items: center ">
<div class="col-lg-3 col-md-4 col-sm-6 col-12">
<div class="counter-box">
<div class="icon"><i class="fas fa-home"></i></div>
<h2 class="count" data-target="70">0</h2>
<h3>Completed Projects</h3>
<p>Successfully completed multiple residential and commercial projects with a focus on quality, safety</p>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-12">
<div class="counter-box">
<div class="icon"><i class="fas fa-building"></i></div>
<h2 class="count" data-target="10">0</h2>
<h3>Years of Experiences</h3>
<p>Decades of hands-on experience delivering quality construction projects with proven expertise and reliability.</p>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-12">
<div class="counter-box">
<div class="icon"><i class="fas fa-users"></i></div>
<h2 class="count" data-target="120">0</h2>
<h3>Happy Clients</h3>
<p>Trusted by satisfied clients through transparent communication, professional service, and consistent project outcomes.</p>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 col-12">
<div class="counter-box">
<div class="icon"><i class="fas fa-city"></i></div>
<h2 class="count" data-target="5">0</h2>
<h3>5 High-Rise</h3>
<p>We have successfully completed five high-rise projects with strong structural integrity and modern architectural design.</p>
</div>
</div>
<!-- <div class="col-lg-3 col-md-4 col-sm-6 col-12">
<div class="counter-box">
<div class="icon"><i class="fas fa-cubes"></i></div>
<h2 class="count" data-target="110">0</h2>
<h3>Housing Units Built</h3>
<p>We have built high-quality housing units designed for comfortable and secure living.</p>
</div>
</div> -->
</div>
</div>
</div>
<!-- experts -->
<section class="expertise-section section">
<div class="expertise-container container">
<div class="expertise-header" data-aos="zoom-in">
<h2>Our Expertise</h2>
<div class="underline"></div>
</div>
<div class="expertise-intro">
<p>
With extensive industry knowledge and a commitment to excellence, we provide
reliable and high-quality construction solutions tailored to meet our clients’ needs.
</p>
<p>
Our expertise spans every phase of the construction process, from planning and
design to execution and final delivery.
</p>
</div>
<div class="expertise-cards row">
<div class="expertise-card">
<h3>Construction Excellence</h3>
<p>
We specialise in residential, commercial, and industrial construction, delivering
projects with precision, durability, and superior craftsmanship.
</p>
</div>
<div class="expertise-card">
<h3>Professional Project Management</h3>
<p>
Our experienced team manages complex projects with transparency, attention to
detail, and strict adherence to timelines and budgets.
</p>
</div>
<div class="expertise-card">
<h3>Quality & Safety Driven</h3>
<p>
We follow modern construction techniques, quality materials, and strict safety
standards to ensure consistent and reliable outcomes.
</p>
</div>
</div>
<div class="expertise-header">
<h2>Our Areas of Expertise include</h2>
<div class="underline"></div>
</div>
<section class="expert-container">
<button class="arrow left" onclick="slide(-1)">❮</button>
<div class="expertise-viewpoint">
<div class="expertise-wrapper" id="expertTrack">
<div class="flip-card">
<div class="flip-inner">
<div class="front">
<img src="static/image/Residential-building.jpg" alt="Residential-building">
<h3>Residential</h3>
</div>
<div class="back">
<p>We build comfortable, stylish, and durable homes tailored to your lifestyle, ensuring quality construction and timely delivery.</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-inner">
<div class="front">
<img src="static/image/Commercial-building.png" alt="Commercial-building">
<h3>Commercial</h3>
</div>
<div class="back">
<p>Delivering efficient and modern commercial spaces designed to support business growth, functionality, and long-term performance.</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-inner">
<div class="front">
<img src="static/image/Project-planning.jpg" alt="Project-planning">
<h3>Project Planning</h3>
</div>
<div class="back">
<p>Careful planning and strategic execution to ensure projects are completed on time, within budget, and with maximum efficiency.</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-inner">
<div class="front">
<img src="static/image/Structural works.jpg" alt="Structural works">
<h3>Structural Works</h3>
</div>
<div class="back">
<p>Strong and reliable structural solutions built with precision engineering to ensure safety, durability, and long-lasting performance.</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-inner">
<div class="front">
<img src="static/image/Renovation.jpg" alt="Renovation">
<h3>Renovation</h3>
</div>
<div class="back">
<p>Upgrade and transform existing spaces with modern design, improved functionality, and high-quality finishing that enhances both value and comfort.</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-inner">
<div class="front">
<img src="static/image/Quality and safety.jpg" alt="Quality-and-safety">
<h3>Quality & Safety</h3>
</div>
<div class="back">
<p>We follow strict quality standards and safety protocols to ensure every project is built securely, efficiently, and without compromise.</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-inner">
<div class="front">
<img src="static/image/Sustainable solutions.jpg" alt="Sustainable-solutions">
<h3>Sustainable Solutions</h3>
</div>
<div class="back">
<p>Eco-friendly construction practices focused on energy efficiency, resource optimization, and environmentally responsible building methods.</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-inner">
<div class="front">
<img src="static/image/Renovation.jpg" alt="Renovation">
<h3>Residential</h3>
</div>
<div class="back">
<p>We build comfortable, stylish, and durable homes tailored to your lifestyle, ensuring quality construction and timely delivery.</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-inner">
<div class="front">
<img src="static/image/Commercial-building.png" alt="Commercial-building">
<h3>Commercial</h3>
</div>
<div class="back">
<p>Delivering efficient and modern commercial spaces designed to support business growth, functionality, and long-term performance.</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-inner">
<div class="front">
<img src="static/image/Project-planning.jpg" alt="Project-planning">
<h3>Project Planning</h3>
</div>
<div class="back">
<p>Careful planning and strategic execution to ensure projects are completed on time, within budget, and with maximum efficiency.</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-inner">
<div class="front">
<img src="static/image/Structural works.jpg" alt="Structural works">
<h3>Structural Works</h3>
</div>
<div class="back">
<p>Strong and reliable structural solutions built with precision engineering to ensure safety, durability, and long-lasting performance.</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-inner">
<div class="front">
<img src="static/image/Renovation.jpg" alt="Renovation">
<h3>Renovation</h3>
</div>
<div class="back">
<p>Upgrade and transform existing spaces with modern design, improved functionality, and high-quality finishing that enhances both value and comfort.</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-inner">
<div class="front">
<img src="static/image/Quality and safety.jpg" alt="Quality-and-safety">
<h3>Quality & Safety</h3>
</div>
<div class="back">
<p>We follow strict quality standards and safety protocols to ensure every project is built securely, efficiently, and without compromise.</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-inner">
<div class="front">
<img src="static/image/c3.jpg" alt="building">
<h3>Sustainable Solutions</h3>
</div>
<div class="back">
<p>Eco-friendly construction practices focused on energy efficiency, resource optimization, and environmentally responsible building methods.</p>
</div>
</div>
</div>
</div>
</div>
<button class="arrow right" onclick="slide(1)">❯</button>
</section>
</div>
</section>
<!-- performance graph -->
<section class="performance-section" style="margin-top: 20px;">
<div class="container">
<div class="landing-services-header">
<span class="tag">Total Projects Across 8 Bangalore Zones</span>
<h2>Project Performance Overview</h2>
<p>
Choose your build quality. No hidden fees. All prices are per sq ft.
</p>
</div>
<div class="chart-card">
<h3 style="margin-top: -20px;">Zonal Project Strength</h3>
<canvas id="zoneChart"></canvas>
</div>
<div class="performance-wrapper">
<div class="chart-card1" >
<h3>Completed vs Ongoing</h3>
<canvas id="statusChart"></canvas>
</div>
<div class="chart-card1">
<h3>All Type Services</h3>
<canvas id="projectTypePieChart"></canvas>
</div>
</div>
</div>
</section>
<!-- trust -->
<div class="brand-section" style="margin-top: -20px;">
<div class="landing-services-header" style="padding-top: 20px;">
<span class="tag">GOOD BRANDS</span>
<h2>Trust Brands</h2>
<p>
Quality construction using world-class materials.
</p>
</div>
<div class="scrollContainer container">
<div class="scrollWrapper">
<div class="card">
<img src="static/image/b1.png" alt="">
</div>
<!-- <div class="cards">
<img src="static/image/b2.png" alt="">
</div> -->
<div class="cards">
<img src="static/image/b3.jpg" alt="">
</div>
<div class="cards">
<img src="static/image/b4.png" alt="">
</div>
<div class="cards">
<img src="static/image/b5.jpg" alt="">
</div>
<div class="cards">
<img src="static/image/b6.png" alt="">
</div>
<div class="cards">
<img src="static/image/b7.jpg" alt="">
</div>
<div class="cards">
<img src="static/image/b8.png" alt="">
</div>
<div class="cards">
<img src="static/image/b9.jpg" alt="">
</div>
<div class="cards">
<img src="static/image/b10.png" alt="">
</div>
<div class="cards">
<img src="static/image/b11.png" alt="">
</div>
<div class="cards">
<img src="static/image/b12.jpg" alt="">
</div>
<div class="cards">
<img src="static/image/b6.png" alt="">
</div>
<div auto-hidden="true" class="card">
<img src="static/image/b1.png" alt="">
</div>
<div class="cards">
<img src="static/image/b2.png" alt="">
</div>
<div class="cards">
<img src="static/image/b3.jpg" alt="">
</div>
<div class="cards">
<img src="static/image/b4.png" alt="">
</div>
<div class="cards">
<img src="static/image/b5.jpg" alt="">
</div>
<div class="cards">
<img src="static/image/b6.png" alt="">
</div>
<div class="cards">
<img src="static/image/b7.jpg" alt="">
</div>
<div class="cards">
<img src="static/image/b8.png" alt="">
</div>
<div class="cards">
<img src="static/image/b9.jpg" alt="">
</div>
<div class="cards">
<img src="static/image/b10.png" alt="">
</div>
<div class="cards">
<img src="static/image/b11.png" alt="">
</div>
<div class="cards">
<img src="static/image/b12.jpg" alt="">
</div>
<div class="cards">
<img src="static/image/b12.jpg" alt="">
</div>
</div>
</div>
</div>
<!-- template -->
<div class="template-section" >
<!-- <center data-aos="zoom-in" class="timeline-heading">
<h2></h2>
</center> -->
<div class="landing-services-header" style="padding-top: 20px;">
<span class="tag">Right Choice</span>
<h2>Why Choose Builtline</h2>
<p>
Where innovation meets strong and reliable construction.
</p>
</div>
<div class="template-container section ">
<!-- <div data-aos="zoom-in">
<center class="timeline-heading">
<h2>Why Choose Builtline</h2>
</center>
</div> -->
<div class="container">
<div class="template-box row">
<div class="template-card col-lg-2 col-md-4 col-sm-6 col-12">
<div class="template-inner">
<div class="template-front">
<div class="template-image">
<img src="static/image/t1.png" alt="No Subcontractors">
</div>
<h3>No Subcontractors</h3>
</div>
<div class="template-back">
<p>We provide flexible construction solutions without unnecessary limitations. Clients have the freedom to choose designs and plans as per their needs.</p>
</div>
</div>
</div>
<div class="template-card col-lg-2 col-md-4 col-sm-6 col-12">
<div class="template-inner">
<div class="template-front">
<div class="template-image image2">
<img src="static/image/t2 (2).png" alt="Process">
</div>
<h3 class="process-test">Process</h3>
</div>
<div class="template-back">
<p>Our construction process is simple, well-structured, and easy to understand. Each stage is clearly defined from planning to completion.</p>
</div>
</div>
</div>
<div class="template-card col-lg-2 col-md-4 col-sm-6 col-12">
<div class="template-inner">
<div class="template-front">
<div class="template-image">
<img src="static/image/t3.png" alt="Professional Project Management">
</div>
<h3>Professional Project Management</h3>
</div>
<div class="template-back">
<p>Experienced professionals manage every stage of the project efficiently. This ensures smooth coordination, quality control, and timely execution.</p>
</div>
</div>
</div>
<div class="template-card col-lg-2 col-md-4 col-sm-6 col-12">
<div class="template-inner">
<div class="template-front">
<div class="template-image">
<img src="static/image/t4.png" alt="Unique and Modern ">
</div>
<h3>Unique and Modern <br>Design</h3>
</div>
<div class="template-back">
<p>We offer creative designs that are modern, functional, and visually appealing. Each design is customized to suit current trends and client preferences.</p>
</div>
</div>
</div>
</div>
<div class="template-box row">
<div class="template-card col-lg-2 col-md-4 col-sm-6 col-12">
<div class="template-inner">
<div class="template-front">
<div class="template-image">
<img src="static/image/t5.png" alt="Quality">
</div>
<h3>Quality</h3>
</div>
<div class="template-back">
<p>We maintain high construction quality using trusted materials and skilled workmanship. Quality checks are followed at every stage of the project.</p>
</div>
</div>
</div>
<div class="template-card col-lg-2 col-md-4 col-sm-6 col-12">
<div class="template-inner">
<div class="template-front">
<div class="template-image">
<img src="static/image/t6 (2).png" alt="Timeline">
</div>
<h3>Adherence To Timeline</h3>
</div>
<div class="template-back">
<p>Projects are completed within the committed timeframe without delays. Proper planning ensures smooth progress at every stage.</p>
</div>
</div>
</div>
<div class="template-card col-lg-2 col-md-4 col-sm-6 col-12">
<div class="template-inner">
<div class="template-front">
<div class="template-image">
<img src="static/image/t7.png" alt="Pricing">
</div>
<h3>Competitive Pricing</h3>
</div>
<div class="template-back">
<p>Our pricing is fair, transparent, and market competitive. Clients receive the best value without compromising on quality.</p>
</div>
</div>
</div>
<div class="template-card col-lg-2 col-md-4 col-sm-6 col-12">
<div class="template-inner">
<div class="template-front">
<div class="template-image">
<img src="static/image/t8 (2).png" class="image-icon" alt="Design">
</div>
<h3>high-quality Design</h3>
</div>
<div class="template-back">
<p>Designs are created with attention to detail and functionality. Every plan ensures durability, comfort, and aesthetic appeal.</p>
</div>
</div>
</div>
</div>
<div class="template-box row ">
<div class="template-card col-lg-2 col-md-4 col-sm-6 col-12">
<div class="template-inner">
<div class="template-front">
<div class="template-image">
<img src="static/image/t9.png" alt="Transparency">
</div>
<h3>Transparency</h3>
</div>
<div class="template-back">
<p>We maintain complete transparency in pricing, planning, and execution. Clients receive clear updates throughout the project.</p>
</div>
</div>
</div>
<div class="template-card col-lg-2 col-md-4 col-sm-6 col-12">
<div class="template-inner">
<div class="template-front">
<div class="template-image">
<img src="static/image/t.webp" alt="Customer">
</div>
<h3>Professional Customer <br> Service</h3>
</div>
<div class="template-back">
<p>Our customer service team provides continuous support and guidance. Client queries are handled promptly and professionally.</p>
</div>
</div>
</div>
<div class="template-card col-lg-2 col-md-4 col-sm-6 col-12">
<div class="template-inner">
<div class="template-front">
<div class="template-image">
<img src="static/image/t10.png" alt="Trustworthy">
</div>
<h3>Trustworthy</h3>
</div>
<div class="template-back">
<p>We build trust through honest communication and reliable execution. Our commitment ensures long-term client satisfaction.</p>
</div>
</div>
</div>
<div class="template-card col-lg-2 col-md-4 col-sm-6 col-12">
<div class="template-inner">
<div class="template-front">
<div class="template-image">
<img src="static/image/t11.png" alt="Hassle-Free">
</div>
<h3>Hassle-Free Service</h3>
</div>
<div class="template-back">
<p>We handle all construction responsibilities from start to finish. Clients enjoy a smooth and stress-free building experience.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- timeline -->
<div class="timeline-container timeline-section" >
<div class="landing-services-header" style="padding-top: 20px;">
<span class="tag">OUR PROCESS</span>
<h2>How We Build Your Home</h2>
<p>
A systematic, step-by-step approach from first call to handover.
</p>
</div>
<div class="timeline">
<div class="step left" data-aos="fade-left">
<div class="timeline-card">
<i class="fa-solid fa-map-location"></i>
<h3>Site Visit</h3>
<p>Schedule a site visit to assess your project's requirements firsthand.</p>
</div>
</div>
<div class="step right" data-aos="fade-right">
<div class="timeline-card">
<i class="fa-solid fa-coins"></i>
<h3>Cost Derive (Approx)</h3>
<p>Estimate project cost based on client requirements.</p>
</div>
</div>
<div class="step left" data-aos="fade-left">
<div class="timeline-card">
<i class="fa-solid fa-indian-rupee-sign"></i>
<h3>Taken Advance</h3>
<p>Secure your project with a nominal taken advance</p>
</div>
</div>
<div class="step right" data-aos="fade-right">
<div class="timeline-card">
<span class="material-symbols-outlined">dropper_eye</span>
<h3>Soil Test</h3>
<p>Prioritize the stability and longevity of your construction with a through soil test</p>
</div>
</div>
<div class="step left" data-aos="fade-left">
<div class="timeline-card">
<i class="fa-solid fa-file-circle-check"></i>
<h3>Plan Approval</h3>
<p>Navigate the Government paperwork process effortlessy as we handle the Government's plan approval process for you</p>
</div>
</div>
<div class="step right" data-aos="fade-right">
<div class="timeline-card">
<i class="fa-solid fa-pen-to-square"></i>
<h3>Plan Design</h3>
<p>Entrust our skilled designed to create a customized plan that brings your dream home to life</p>
</div>
</div>
<div class="step left"data-aos="fade-left">
<div class="timeline-card">
<i class="fa-solid fa-people-roof"></i>
<h3>Structural Work</h3>
<p>Trust us to provide a construction design for every aspect of your project</p>
</div>
</div>
<div class="step right" data-aos="fade-right">
<div class="timeline-card">
<i class="fa-solid fa-handshake"></i>
<h3>Agreements</h3>
<p>Formalize our commitment through clear and comprehensive agreements</p>
</div>
</div>
<div class="step left" data-aos="fade-left">
<div class="timeline-card">
<i class="fa-solid fa-house-circle-check"></i>
<h3>Bhoomi Pooja</h3>
<p>Begin your project with blessings. Bluemoon Construction conducts Bhoomi Pooja ceremonies for a promising start to your dream home.</p>
</div>
</div>
</div>
</div>
<!-- team -->
<div class="team-section" style="margin-top: -50px;">
<div class="landing-services-header" style="padding-top: 20px;">