-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstruction-landing.html
More file actions
1158 lines (985 loc) · 54.7 KB
/
construction-landing.html
File metadata and controls
1158 lines (985 loc) · 54.7 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/construction-landing.html" />
<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=20260318">
<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 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">
<!-- Meta Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '956817820422555');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=956817820422555&ev=PageView&noscript=1"
/></noscript>
<!-- End Meta Pixel Code -->
<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/construction-landing.html",
"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">
<div class="landing-header">
<div class="container">
<div class="landing-nav">
<img src="static/image/Logo 11.jpg" alt="">
<p><i class="fa-solid fa-phone"></i> <span>99455 99401/91484 98588</span></p>
<a class="animated-button" href="#package">
<svg xmlns="http://www.w3.org/2000/svg" class="arr-2" viewBox="0 0 24 24">
<path
d="M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z"
></path>
</svg>
<span class="text">GET A FREE QUOTE</span>
<span class="circle"></span>
<svg xmlns="http://www.w3.org/2000/svg" class="arr-1" viewBox="0 0 24 24">
<path
d="M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z"
></path>
</svg>
</svg>
</a>
</div>
</div>
</div>
<div class="container">
<section class="landing-hero">
<div class="hero-left">
<span class="tag">BANGALORE’S TRUSTED CONSTRUCTION PARTNER</span>
<h1>
Build Your <span>Dream Home</span><br>
in Bangalore
</h1>
<p>
From foundation to finishing — Builtline Construction delivers quality homes with no subcontractors, on-time delivery, and full transparency.
</p>
<div class="stats">
<div><strong>70+</strong><span>Projects Done</span></div>
<div><strong>5</strong><span>High-Rises Built</span></div>
<div><strong>100%</strong><span>On-Time Rate</span></div>
</div>
<div class="hero-btns">
<!-- From Uiverse.io by adamgiebl -->
<a href="#package" class="cssbuttons-io-button" >
Get started
<div class="icon">
<svg
height="24"
width="24"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M0 0h24v24H0z" fill="none"></path>
<path
d="M16.172 11l-5.364-5.364 1.414-1.414L20 12l-7.778 7.778-1.414-1.414L16.172 13H4v-2z"
fill="currentColor"
></path>
</svg>
</div>
</a>
<a class="btn-outline" href="tel:+91 9148498588">Call Now</a>
</div>
</div>
<div class="hero-right">
<h2>Get Your Free Quote</h2>
<p>No obligation. Response within 2 hours.</p>
<form id="landing-form">
<input type="text" id="fullname" placeholder="Your full name">
<input type="tel" id="number" placeholder="+91 98765 43210">
<input type="text" id="area" placeholder="Area / Location">
<select id="project">
<option>Select a service</option>
<option>Construction</option>
<option>Renovation</option>
<option>Interior Design</option>
<option>Architecture</option>
</select>
<select id="packages">
<option>Select plot size</option>
<option>1200 sqft</option>
<option>1500 sqft</option>
<option>2000 sqft</option>
</select>
<!-- <button type="submit" class="btn-submit">Request Free Quote →</button> -->
<button type="submit" class="btn-submit" style="vertical-align:middle"><span>Request Free Quote</span></button>
<small>Your info is 100% private. No spam ever.</small>
</form>
</div>
</section>
<!-- about -->
<div class="land-about">
<div class="ceo-section">
<div class="ceo-card">
<!-- LEFT CONTENT -->
<div class="ceo-content">
<span class="ceo-tag">Meet Our CEO</span>
<h1 class="ceo-name">Jhenkar A V</h1>
<p class="ceo-role">CEO</p>
<p class="ceo-desc">
With years of experience in the construction industry,
our CEO leads the company with vision, professionalism,
and a commitment to quality. Under their leadership,
we strive to deliver reliable and innovative solutions
tailored to our clients.
</p>
<div class="ceo-more-content" id="ceoMore">
<p>
Under their leadership, the company has successfully completed
numerous residential and commercial projects, focusing on
safety, sustainability, and customer satisfaction.
</p>
<p>
The CEO believes in transparent communication, skilled execution,
and long-term relationships with clients and partners.
</p>
</div>
<div class="ceo-buttons">
<a href="contact.html" class="btn-dark">Contact CEO</a>
<button class="btn-light" id="toggleBtn">Learn More</button>
</div>
</div>
<!-- RIGHT IMAGE -->
<div class="ceo-image-wrapper">
<div class="image-bg"></div>
<img src="static/image/ceo2.png" alt="CEO Image">
</div>
</div>
</div>
</div>
<!-- top-bar -->
<div class="top-bar">
<div class="top-item">
<i class="fa-solid fa-check"></i>
<span>No Subcontractors</span>
</div>
<div class="top-item">
<i class="fa-solid fa-star"></i>
<span>Trusted Since Inception</span>
</div>
<div class="top-item">
<i class="fa-solid fa-lightbulb"></i>
<span>Free Consultation</span>
</div>
<div class="top-item">
<i class="fa-regular fa-clock"></i>
<span>On-Time Delivery</span>
</div>
<div class="top-item">
<i class="fa-solid fa-star"></i>
<span>120+ Happy Clients</span>
</div>
</div>
<!-- services -->
<section class="services">
<div class="landing-services-header">
<span class="tag">WHAT WE BUILD</span>
<h2>End-to-End Construction Services</h2>
<p>
From residential homes to commercial complexes, we handle every stage
with precision, quality materials, and experienced professionals.
</p>
</div>
<div class="services-grid">
<div class="service-card">
<div class="icon">🏠</div>
<h3>Residential Construction</h3>
<p>
Independent houses, G+1, G+2, villas, and apartments built to your
specifications with structural integrity and premium finishes.
</p>
</div>
<div class="service-card">
<div class="icon">🏢</div>
<h3>Commercial Construction</h3>
<p>
Offices, retail spaces, and commercial buildings constructed with
precision, durability, and modern architectural design.
</p>
</div>
<div class="service-card">
<div class="icon">🛠</div>
<h3>Renovation & Remodelling</h3>
<p>
Professional renovation, refurbishment, and remodelling services
that breathe new life into existing structures.
</p>
</div>
<div class="service-card">
<div class="icon">📐</div>
<h3>Architecture & Planning</h3>
<p>
Custom architectural designs, detailed drawings, structural plans,
and BBMP/BDA approval assistance.
</p>
</div>
<div class="service-card">
<div class="icon">🛋</div>
<h3>Interior Design</h3>
<p>
Functional and aesthetic interiors with modern, customised designs
tailored to your lifestyle and preferences.
</p>
</div>
<div class="service-card">
<div class="icon">🏗</div>
<h3>Structural Works</h3>
<p>
Reliable civil engineering and structural works ensuring long-term
stability and safety of your building.
</p>
</div>
</div>
</section>
<!-- compare -->
<section class="compare">
<h2>Builtline vs Others</h2>
<div class="compare-table">
<div class="compare-row header">
<div>Builtline</div>
<div>Others</div>
</div>
<div class="compare-row">
<div class="good">✔ Detailed Written Agreement</div>
<div class="bad">✖ Basic Informal Agreement</div>
</div>
<div class="compare-row">
<div class="good">✔ Clear Cost Breakdown</div>
<div class="bad">✖ No Clear Cost Details</div>
</div>
<div class="compare-row">
<div class="good">✔ Auto Cost Estimate</div>
<div class="bad">✖ Manual Rough Guess</div>
</div>
<div class="compare-row">
<div class="good">✔ Regular Progress Updates</div>
<div class="bad">✖ Updates Only When Asked</div>
</div>
<div class="compare-row">
<div class="good">✔ Strict Timeline Planning</div>
<div class="bad">✖ Flexible (Delayed) Timelines</div>
</div>
<div class="compare-row">
<div class="good">✔ Dedicated Site Supervision</div>
<div class="bad">✖ Limited Supervision</div>
</div>
</div>
</section>
<!-- process -->
<section class="landing-timeline-container">
<div class="landing-timeline-heading">
<h3>OUR PROCESS</h3>
<h2>How We Build Your Home</h2>
<p>A systematic, step-by-step approach from first call to handover.</p>
</div>
<div class="landing-timeline">
<div class="landing-step">
<span>01</span>
<h3>Site Visit</h3>
<p>We visit your site to assess requirements firsthand.</p>
</div>
<div class="landing-step">
<span>02</span>
<h3>Cost Estimate</h3>
<p>Detailed cost breakdown provided before any commitment.</p>
</div>
<div class="landing-step">
<span>03</span>
<h3>Plan & Approvals</h3>
<p>Design, soil test, and approvals handled end-to-end.</p>
</div>
<div class="landing-step">
<span>04</span>
<h3>Build & Handover</h3>
<p>Construction, quality checks, and on-time delivery.</p>
</div>
</div>
</section>
<!-- packages -->
<search class="plans" >
<div class="container" id="package">
<div class="landing-services-header">
<span class="tag">Construction Cost</span>
<h2>Transparent Pricing for Bangalore 2025-26</h2>
<p>
Choose your build quality. No hidden fees. All prices are per sq ft.
</p>
</div>
<div class="package-container">
<!-- row1 -->
<div class="package-wrapper row">
<div class="package-card col-lg-3 col-md-4 col-sm-6 col-12">
<h1>Standard <br> Package</h1>
<p class="package-price">
<i class="fa-solid fa-indian-rupee-sign"></i><span>2,000</span>
per sq. ft</p>
<div class="packageText">
<details class="toggle-box">
<summary class="toggle-title">
<h1>Kitchen & Utility Provisions</h1>
</summary>
<ul class="toggle-content">
<li>Kitchen Sink: Premium Quality Quartz Material (₹5,000/-).</li>
<li>20mm thick quartz (150/- per sqft)</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1> Painting Specifications</h1>
</summary>
<ul class="toggle-content">
<li>1 coat of primer + 2 coats of exterior-grade paint</li>
<li>Enamel paint to be used for window grills and railings</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1>Bathroom Specifications</h1>
</summary>
<ul class="toggle-content">
<li>All bathrooms will have one diverter or wall mixer, 1 shower system, 2 taps,1 washbasin & 1 geyser point.</li>
<li>Up to ceiling height; value up to ₹40 + ₹20 per sq. ft</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1>Doors & Windows</h1>
</summary>
<ul class="toggle-content">
<li>Wooden frames with single-glass shutters</li>
<li>Window Chejja: Provides up to 1 ft outward projection + 6 inches extra on each side of the window</li>
</ul>
</details>
</div>
<a href="pdf/Standard-Package.pdf" download class="cost-btn">Choose Plan</a>
</div>
<div class="package-card col-lg-3 col-md-4 col-sm-6 col-12">
<h1>Advanced Standard <br> Package</h1>
<p class="package-price">
<i class="fa-solid fa-indian-rupee-sign"></i><span>2,250</span>
per sq. ft</p>
<div class="packageText">
<details class="toggle-box">
<summary class="toggle-title">
<h1>Kitchen & Utility Provisions</h1>
</summary>
<ul class="toggle-content">
<li>Kitchen Sink: Premium Quality Quartz material (₹7,000/-)</li>
<li>20mm thick quartz (180/- per sqft)</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1> Painting Specifications</h1>
</summary>
<ul class="toggle-content">
<li>1 coat of primer + 2 coats of exterior-grade paint.</li>
<li>All MS steel will be coated with an anti-corrosion primer before painting</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1>Bathroom Specifications</h1>
</summary>
<ul class="toggle-content">
<li>All bathrooms will have one diverter or wall mixer, 1 shower system, 2 taps,1 washbasin & 1 geyser point.</li>
<li>Up to ceiling height; value up to ₹50 + ₹20 per sq.ft</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1>Doors & Windows</h1>
</summary>
<ul class="toggle-content">
<li>Fitted with a premium lock (Europa/Godrej)</li>
<li>Window Chejja: Provides up to 1 ft outward projection + 6 inches extra on each side of the window</li>
</ul>
</details>
</div>
<a href="pdf/Advanced-Standard-Package.pdf" download class="cost-btn">Choose Plan</a>
</div>
<div class="package-card col-lg-3 col-md-4 col-sm-6 col-12">
<h1>Premium <br> Package</h1>
<p class="package-price">
<i class="fa-solid fa-indian-rupee-sign"></i><span>2,550</span>
per sq. ft</p>
<div class="packageText">
<details class="toggle-box">
<summary class="toggle-title">
<h1>Kitchen & Utility Provisions</h1>
</summary>
<ul class="toggle-content">
<li>Kitchen Sink of premium quality Quartz material ( 8000/-). </li>
<li>20mm thick quartz (250/- per sqft)</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1>Painting Specifications</h1>
</summary>
<ul class="toggle-content">
<li>1 coat of primer + 2 coats of exterior-grade paint.</li>
<li>Enamel paint to be used for window grills and railings.</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1>Bathroom Specifications</h1>
</summary>
<ul class="toggle-content">
<li>All bathrooms will have one diverter or wall mixer, 1 shower system, 2 taps,1 washbasin & 1 geyser point.</li>
<li>Up to ceiling height; value up to ₹55 + ₹20 per sq. ft</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1>Doors & Windows</h1>
</summary>
<ul class="toggle-content">
<li>Wooden frames with single-glass shutters</li>
<li>Window Chejja: Provides up to 1 ft outward projection + 6 inches extra on each side of the window</li>
</ul>
</details>
</div>
<a href="pdf/Premium-Package.pdf" download class="cost-btn">Choose Plan</a>
</div>
</div>
<!-- row2 -->
<div class="package-wrapper row">
<div class="package-card col-lg-3 col-md-4 col-sm-6 col-12">
<h1>Deluxe <br> Package</h1>
<p class="package-price">
<i class="fa-solid fa-indian-rupee-sign"></i><span>2,850</span>
per sq. ft</p>
<div class="packageText">
<details class="toggle-box">
<summary class="toggle-title">
<h1>Kitchen & Utility Provisions</h1>
</summary>
<ul class="toggle-content">
<li>Kitchen Sink: Premium Quality Quartz material (₹10,000/-)</li>
<li>20mm thick quartz (400/- per sqft)</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1> Painting Specifications</h1>
</summary>
<ul class="toggle-content">
<li>1 coat of primer + 2 coats of exterior-grade paint</li>
<li>All MS steel will be coated with an anti-corrosion primer before painting</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1>Bathroom Specifications</h1>
</summary>
<ul class="toggle-content">
<li>All bathrooms will have one diverter or wall mixer, 1 shower system, 2 taps,1 washbasin & 1 geyser point.</li>
<li>Up to ceiling height; value up to ₹65 + ₹20 per sq.ft</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1>Doors & Windows</h1>
</summary>
<ul class="toggle-content">
<li>Fitted with a premium lock (Europa/Godrej)</li>
<li>Window Chejja: Provides up to 1 ft outward projection + 6 inches extra on each side of the window</li>
</ul>
</details>
</div>
<a href="pdf/Deluxe-Package.pdf" download class="cost-btn">Choose Plan</a>
</div>
<div class="package-card col-lg-3 col-md-4 col-sm-6 col-12">
<h1>Elite Premium <br> Package</h1>
<p class="package-price">
<i class="fa-solid fa-indian-rupee-sign"></i><span>3,350</span>
per sq. ft</p>
<div class="packageText">
<details class="toggle-box">
<summary class="toggle-title">
<h1>Kitchen & Utility Provisions</h1>
</summary>
<ul class="toggle-content">
<li>Kitchen Sink: Premium Quality Quartz material (₹12,000/-)</li>
<li>20mm thick quartz (600/- per sqft)</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1> Painting Specifications</h1>
</summary>
<ul class="toggle-content">
<li>1 coat of primer + 2 coats of exterior-grade paint.</li>
<li>All MS steel will be coated with an anti-corrosion primer before painting</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1>Bathroom Specifications</h1>
</summary>
<ul class="toggle-content">
<li>All bathrooms will have one diverter or wall mixer, 1 shower system, 2 taps,1 washbasin & 1 geyser point.</li>
<li>Up to ceiling height; value up to ₹85 + ₹20 per sq. ft</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1>Doors & Windows</h1>
</summary>
<ul class="toggle-content">
<li>Wooden frames with single-glass shutters</li>
<li>Window Chejja: Provides up to 1 ft outward projection + 6 inches extra on each side of the window</li>
</ul>
</details>
</div>
<a href="pdf/Elite-Premier-Package.pdf" download class="cost-btn">Choose Plan</a>
</div>
<div class="package-card col-lg-3 col-md-4 col-sm-6 col-12">
<h1>Luxury Signature <br> Package</h1>
<p class="package-price">
<i class="fa-solid fa-indian-rupee-sign"></i><span>3,550</span>
per sq. ft</p>
<div class="packageText">
<details class="toggle-box">
<summary class="toggle-title">
<h1>Kitchen & Utility Provisions</h1>
</summary>
<ul class="toggle-content">
<li>Kitchen Sink: Premium Quality Quartz material (₹15,000/-)</li>
<li>20mm thick quartz (700/- per sqft)</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1> Painting Specifications</h1>
</summary>
<ul class="toggle-content">
<li>1 coat of primer + 2 coats of exterior-grade paint.</li>
<li>All MS steel will be coated with an anti-corrosion primer before painting</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1>Bathroom Specifications</h1>
</summary>
<ul class="toggle-content" type="bullet">
<li>All bathrooms will have one diverter or wall mixer, 1 shower system, 2 taps,1 washbasin & 1 geyser point.</li>
<li>Up to ceiling height; value up to ₹95 + ₹20 per sq. ft</li>
</ul>
</details>
<details class="toggle-box">
<summary class="toggle-title">
<h1>Doors & Windows</h1>
</summary>
<ul class="toggle-content">
<li>Wooden frames with single-glass shutters</li>
<li>Window Chejja: Provides up to 1 ft outward projection + 6 inches extra on each side of the window</li>
</ul>
</details>
</div>
<a href="pdf/Luxury-Signature-Package.pdf" download class="cost-btn">Choose Plan</a>
</div>
</div>
</div>
</div>
</search>
<!-- feedback -->
<section class="landing-testimonials-section">
<div class="landing-testimonials-header">
<span class="tag">Client reviews</span>
<h1>What Homeowners Say</h1>
<p>Real stories from real clients across Bangalore.</p>
</div>
<div class="landing-testimonials-container">
<div class="landing-testimonial-card">
<div class="stars">★★★★★</div>
<p class="quote">"Builtline finished our new deck on time and within budget. The quality is excellent — we'll definitely use them again for our next project."</p>
<div class="client-info">
<span class="client-name">Appu</span>
<span class="project-type">Residential Project, Bangalore</span>
</div>
</div>
<div class="landing-testimonial-card">
<div class="stars">★★★★★</div>
<p class="quote">"Our kitchen remodel exceeded all expectations. The team was clean, punctual, and highly skilled. Truly professional from start to finish."</p>
<div class="client-info">
<span class="client-name">Sanjeev Kumar</span>
<span class="project-type">Kitchen Renovation, Bangalore</span>
</div>
</div>
<div class="landing-testimonial-card">
<div class="stars">★★★★★</div>
<p class="quote">"Builtline turned our vision into reality! Their attention to detail, innovative design, and unmatched craftsmanship were truly impressive."</p>
<div class="client-info">
<span class="client-name">Tarunkumar Nayak</span>
<span class="project-type">New Home Construction, Bangalore</span>
</div>
</div>
</div>
</section>
<!-- FAQ -->
<div class="services-question main">
<div class="container">
<div class="landing-services-header">
<span class="tag">FAQ</span>
<h2>Common Questions</h2>
<p>
Everything you need to know before starting your construction project in Bangalore.
</p>
</div>
<div class="sub-compare">
<div class="compareText">
<details class="compare-details">
<summary class="compare-summery">
<h2>1. What is the cost of construction per sq ft in Bangalore in 2026?</h2>
</summary>
<p class="serviceText">
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.
</p>
</details>
<details class="compare-details">
<summary class="compare-summery">
<h2>2. How much does it cost to build a 30x40 G+1 house in Bangalore?</h2>
</summary>
<p class="serviceText">
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
</p>
</details>
<details class="compare-details">
<summary class="compare-summery">
<h2>3. What approvals are required for house construction in Bangalore?</h2>
</summary>
<p class="serviceText">
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.
</p>
</details>
<details class="compare-details">
<summary class="compare-summery">
<h2>4.How long does it take to construct a G+1 or G+2 house in Bangalore?</h2>
</summary>
<p class="serviceText">
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.
</p>
</details>
<details class="compare-details">
<summary class="compare-summery">
<h2>5. Is a soil test mandatory before building a house in Bangalore?</h2>
</summary>
<p class="serviceText">
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.
</p>
</details>
</div>
</div>
</div>
</div>
<section class="cta-banner">
<div class="cta-content">
<h2>Ready to Build Your Dream Home?</h2>
<p>Get a free consultation with our team. Serving Whitefield, Koramangala, Jayanagar, Indiranagar, Malleshwaram & all Bangalore zones.</p>
</div>
<!-- From Uiverse.io by Creatlydev -->
<a href="#package" class="quote-btn" style="--clr: #7808d0" >
<span class="button__icon-wrapper">
<svg
viewBox="0 0 14 15"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="button__icon-svg"
width="10"
>
<path
d="M13.376 11.552l-.264-10.44-10.44-.24.024 2.28 6.96-.048L.2 12.56l1.488 1.488 9.432-9.432-.048 6.912 2.304.024z"
fill="currentColor"
></path>
</svg>
<svg
viewBox="0 0 14 15"
fill="none"
width="10"
xmlns="http://www.w3.org/2000/svg"
class="button__icon-svg button__icon-svg--copy"
>
<path
d="M13.376 11.552l-.264-10.44-10.44-.24.024 2.28 6.96-.048L.2 12.56l1.488 1.488 9.432-9.432-.048 6.912 2.304.024z"
fill="currentColor"
></path>
</svg>
</span>
GET A FREE QUOTE
</a>
</section>
<footer class="main-footer">
<div class="landing-footer-container">
<div class="footer-brand">
<h3 class="brand-name">BUILTLINE CONSTRUCTION</h3>
<p class="address">#4th Main Road CA's, near Lingaraj Pujari & Co.,<br> Malleshwaram, Bengaluru, Karnataka — 560003</p>
</div>
<div class="landing-footer-container main-address">
<p><i class="fa-solid fa-phone"></i> <span>9148498588 / 8884134013 </span></p><br>
<p><i class="fa-solid fa-envelope-circle-check"></i> <span>builtlineconstruction@gamil.com</span></p>
</div>
</div>
</footer>
<!-- <a class="styled-wrapper" href="index.html">
<button class="back-btn">
<div class="button-box">
<span class="button-elem">
<svg
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
class="arrow-icon"
>
<path
fill="darkgoldenrod"
d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"
></path>
</svg>
</span>
<span class="button-elem">
<svg
fill="darkgoldenrod"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
class="arrow-icon"
>
<path
d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"
></path>
</svg>
</span>
</div>
</button>
</a> -->