-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGuideTips.html
More file actions
589 lines (503 loc) · 17.7 KB
/
GuideTips.html
File metadata and controls
589 lines (503 loc) · 17.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Living Walls - Creative Design Agency</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.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=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
</head>
<body>
<header id="header" class="header d-flex align-items-center fixed-top">
<div class="containerr position-relative d-flex align-items-center justify-content-between">
<div class="logo">
<a href="index.html">
<img class="logo-img" src="img/logo-removebg.png" alt="Brick & Bolt Home Construction Logo" />
</a>
</div>
<nav class="nav">
<ul class="nav__list">
<li><a href="work.html">Our Work</a></li>
<li class="dropdown">
<a href="packages.html">Packages</a>
<div class="dropdown-content">
<a href="#">Residential</a>
<a href="#">Commercial</a>
</div>
</li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="GuideTips.html">Guide & Tips</a></li>
</ul>
</nav>
<a href="GetQuote.html" class="get-quote">Get Quote</a>
<button class="menu-toggle">
<span></span>
<span></span>
<span></span>
</button>
</div>
</header>
<script>
window.addEventListener('scroll', () => {
const header = document.querySelector('.header');
if (window.scrollY > 50) {
header.classList.add('scrolled');
} else {
header.classList.remove('scrolled');
}
});
</script>
<!-- Floating WhatsApp Button -->
<div style="position: fixed; bottom: 20px; right: 20px; z-index: 999;">
<a href="https://wa.me/919146478677" target="_blank" rel="noopener noreferrer" aria-label="Chat with us on WhatsApp">
<img src="https://techfocus24.com/wp-content/uploads/2021/01/whatsapp-button.png" alt="WhatsApp Button" style="width: 200px; height: 70px;" />
</a>
</div>
<!-- floating whats app -->
<!--hero section-->
<section class="construction-hero">
<div class="hero-content">
<h1>Constructing home has never been this simple</h1>
<p>We construct homes and ensure peace of mind you deserve with our project tracking service.</p>
<div class="features">
<div class="feature">
<i class="fas fa-home"></i>
<div class="feature-text">
<strong>1200+</strong>
<div>Homes</div>
</div>
</div>
<div class="feature">
<i class="fas fa-check-circle"></i>
<div class="feature-text">
<strong>310+</strong>
<div>Quality Checks</div>
</div>
</div>
<div class="feature">
<i class="fas fa-shield-alt"></i>
<div class="feature-text">
<strong>100%</strong>
<div>Safe Money<br>Transaction</div>
</div>
</div>
</div>
<a href="GetQuote.html" class="btn-build">LET'S BUILD</a>
</div>
</section>
<!-- End Hero section -->
<!-- construction services-->
<section class="construction-section">
<div class="content">
<h1>Hire the best construction service</h1>
<div class="stats">
<div class="stat">
<i class="fa-solid fa-house" style="color: #e63946;"></i>
<div>
<span class="highlight">1200+</span>
<p>Homes</p>
</div>
</div>
<div class="stat">
<i class="fa-solid fa-square-check" style="color: #e63946;"></i>
<div>
<span class="highlight">310+</span>
<p>Quality Checks</p>
</div>
</div>
<div class="stat">
<i class="fa-solid fa-indian-rupee-sign" style="color: #e63946;"></i>
<div>
<span class="highlight">100%</span>
<p>Safe Money Transaction</p>
</div>
</div>
</div>
<a href="GetQuote.html" class="cta-btn">LET’S BUILD →</a>
</div>
</div>
<div class="image-area">
<img src="https://d2d4xyu1zrrrws.cloudfront.net/website/web-ui/assets/images/svg/ic-letbuild.svg" alt="Illustration of houses" width="500" height="700" />
</div>
</section>
<style>
.construction-section {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
padding: 5rem 10rem;
background-color: #f7f7f7;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.construction-section .content {
flex: 1 1 50%;
max-width: 750px;
}
.construction-section h1 {
font-size: 3rem;
color: #1d3557;
margin-bottom: 2.5rem;
}
.stats {
display: flex;
gap: 2.5rem;
flex-wrap: wrap;
margin-bottom: 2.5rem;
}
.stat {
display: flex;
align-items: center;
gap: 1.5rem;
background: #ffffff;
padding: 1.5rem 2rem;
border-radius: 14px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease;
min-width: 220px;
}
.stat:hover {
transform: translateY(-6px);
}
.stat i {
font-size: 2.5rem;
}
.highlight {
font-size: 2.2rem;
font-weight: 700;
color: #e63946;
}
.stat p {
margin: 0;
font-size: 1.2rem;
color: #333;
}
.cta-btn {
display: inline-block;
background-color: #e63946;
color: white;
padding: 1rem 2.5rem;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
font-size: 1.2rem;
transition: background-color 0.3s ease;
}
.cta-btn:hover {
background-color: #d62839;
}
.image-area {
flex: 1 1 40%;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.image-area img {
max-width: 100%;
height: auto;
}
</style>
<!--Referral Program-->
<section class="referral-section">
<div class="referral-card">
<div class="referral-content">
<h2><span class="highlight">▰</span> Referral Program</h2>
<p>Refer your friends & family looking for house construction and earn cashbacks/discounts* upto 20,000 INR today</p>
<a href="#" class="btn">Learn More →</a>
</div>
<div class="referral-image">
<img src="https://www.jobsoid.com/wp-content/uploads/2021/07/Employee-Referral-Bonus-Blog-Image.jpg" width="400" height="700" alt="Referral Illustration">
</div>
</div>
</section>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: #fff;
}
.referral-section {
padding: 40px 20px;
display: flex;
justify-content: center;
}
.referral-card {
background-color: #fff4f0;
border-radius: 10px;
padding: 60px;
max-width: 1000px;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
gap: 50px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.referral-content {
flex: 1;
}
.referral-content h2 {
font-size: 26px;
color: #2c2c2c;
margin-bottom: 21px;
}
.referral-content .highlight {
color: #d62828;
margin-right: 8px;
font-weight: bold;
}
.referral-content p {
font-size: 16px;
color: #444;
margin-bottom: 25px;
line-height: 1.5;
}
.btn {
background-color: #d62828;
color: #fff;
text-decoration: none;
padding: 12px 22px;
border-radius: 5px;
font-weight: 600;
display: inline-block;
transition: background 0.3s;
}
.btn:hover {
background-color: #d6541a;
}
</style>
<!--End hero section-->
<!--footer section -->
<footer class="footer">
<div class="footercontainer">
<div class="footer-sections">
<!-- Column 1: Constructions -->
<div class="footer-column">
<h3>Constructions</h3>
<ul>
<li><a href="#residential">Residential Construction</a></li>
<li><a href="#commercial">Commercial Construction</a></li>
<li><a href="#home">Home Construction</a></li>
<li><a href="#farmhouse">Farm House Construction</a></li>
<li><a href="#addfloor">Add New Floor</a></li>
<li><a href="#duplex">Duplex Home Construction</a></li>
<li><a href="#independent">Independent House Construction</a></li>
<li><a href="#villa">Villa Construction</a></li>
<li><a href="#luxury">Luxury Home Construction</a></li>
<li><a href="#cost">Cost of New Home Construction</a></li>
</ul>
</div>
<!-- Column 2: Interiors -->
<div class="footer-column">
<h3>Interiors</h3>
<ul>
<li><a href="#res-interior">Residential Interior Design</a></li>
<li><a href="#living">Living Room Interior Design</a></li>
<li><a href="#kitchen">Kitchen Interior Design</a></li>
<li><a href="#bedroom">Bedroom Interior Design</a></li>
<li><a href="#bathroom">Bathroom Interior Design</a></li>
<li><a href="#office">Office Interior Design</a></li>
<li><a href="#commercial-interior">Commercial Interior Design</a></li>
<li><a href="#apartment">Apartment Interior Design</a></li>
</ul>
</div>
<!-- Column 3: Calculator -->
<div class="footer-column">
<h3>Calculator</h3>
<ul>
<li><a href="#res-cost">Residential Cost Estimator</a></li>
<li><a href="#comm-cost">Commercial Cost Estimator</a></li>
<li><a href="#interior-cost">Interior Cost Estimator</a></li>
</ul>
<h3>Packages</h3>
<ul>
<li><a href="#luxury">Luxury</a></li>
<li><a href="#commercial">Commercial</a></li>
<li><a href="#interior">Interior</a></li>
</ul>
</div>
<!-- Column 4: Info -->
<div class="footer-column">
<h3>Your Floor Plan Solution</h3>
<p>Find the perfect floor plan for your dream home. We offer a wide selection of customizable designs from top architects and designers.</p>
<h4>Get in Touch</h4>
<p><a href="tel:+919739011656">+91 9739011656</a><br>
<a href="mailto:rajashekarreddy@livinwalls.com">rajashekarreddy@livinwalls.com</a>
</p>
<h4>Social</h4>
<div class="social-icons">
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<!-- Optional links -->
<div class="footer-links">
<a href="#support">Support</a>
<a href="#terms">Terms & Services</a>
<a href="#privacy">Privacy & Policy</a>
</div>
</div>
</div>
</footer>
<hr>
<!-- New Footer Section -->
<footer class="footer">
<div class="footer-container">
<div class="footer-row">
<div class="footer-column">
<h4>Construction Services</h4>
<ul>
<li><a href="#">Residential Projects</a></li>
<li><a href="#">Commercial Construction</a></li>
<li><a href="#">Interior Design</a></li>
<li><a href="#">Renovation</a></li>
<li><a href="#">Turnkey Solutions</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Project Features</h4>
<ul>
<li><a href="#">Modular Kitchens</a></li>
<li><a href="#">Smart Home Integration</a></li>
<li><a href="#">Green Buildings</a></li>
<li><a href="#">Vastu-Compliant Designs</a></li>
<li><a href="#">Premium Materials</a></li>
</ul>
</div>
<div class="footer-column">
<h4>About Living Walls</h4>
<ul>
<li><a href="#">Our Vision</a></li>
<li><a href="#">Meet the Team</a></li>
<li><a href="#">Our Projects</a></li>
<li><a href="#">Certifications</a></li>
<li><a href="#">Client Testimonials</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Help & Support</h4>
<ul>
<li><a href="#">Contact Us</a></li>
<li><a href="#">FAQs</a></li>
<li><a href="#">Get a Quote</a></li>
<li><a href="#">Site Map</a></li>
<li><a href="#">Terms & Conditions</a></li>
</ul>
</div>
</div>
</div>
</footer>
<hr>
<!-- Living WallsConstruction - Extended Footer Section -->
<section class="extended-footer">
<div class="ext-container">
<div class="ext-section">
<h2>Build Your Dream with Living Walls</h2>
<p>
At Living Walls Construction, we believe every strong foundation begins with a smart floor plan.
Whether you’re building your first home or planning a commercial space, we provide expertly
designed layouts that balance style, strength, and functionality.
</p>
</div>
<div class="ext-section">
<h2>Why Choose Our Plans?</h2>
<p>
Living Walls offers precision-engineered floor plans tailored to meet your specific needs.
Our experienced architects ensure each plan is not only visually appealing but also
structurally sound and compliant with modern construction standards.
</p>
</div>
<div class="ext-section">
<h3>Our Services</h3>
<ul class="ext-services">
<li>Residential Floor Plan Design</li>
<li>Custom Home Layouts</li>
<li>3D Elevation & Visualization</li>
<li>Plan Modifications</li>
<li>Vastu-Compliant Plans</li>
<li>1 BHK to 5 BHK Designs</li>
<li>Duplex and Villa Plans</li>
<li>Commercial Layout Planning</li>
</ul>
</div>
</div>
<hr>
<!-- Living Walls Construction - Services Footer Section B2B -->
<section class="construction-footer">
<div class="footer-content">
<h2>B2B Construction Services</h2>
<p>
Partner with Living Walls Construction for commercial building solutions. With over 800 contractors and 470+ quality checks,
we deliver robust, scalable commercial spaces that empower businesses to grow with confidence.
</p>
<h3>Commercial Construction</h3>
<p>
Our team crafts commercial spaces designed for optimal productivity, ensuring every square foot serves your business goals.
</p>
<h3>Warehouse Construction</h3>
<p>
We build secure, accessible warehouses engineered to preserve and manage inventory efficiently.
</p>
<h3>Retail Construction</h3>
<p>
Our designers create dynamic retail environments that enhance customer engagement and streamline shopping experiences.
</p>
<h3>Hospital Construction</h3>
<p>
Constructing hospitals that combine medical functionality with safety and comfort, customized for both patients and staff.
</p>
<h3>Hospitality Construction</h3>
<p>
We design memorable hospitality spaces that prioritize guest experience, ambiance, and operational flow.
</p>
<h3>School Construction</h3>
<p>
Building schools that foster creativity, learning, and growth — aligned with modern education needs and safety standards.
</p>
<hr>
<h3>Locations</h3>
<p class="location-text">
House Construction in Bengaluru, Chennai, Mysuru, NCR Faridabad, NCR Ghaziabad, NCR Noida, NCR Delhi, NCR Gurgaon, Hyderabad, Pune, Hubli
</p>
</div>
<div class="footer-bottom">
<p>
Copyright ©
<script>document.write(new Date().getFullYear());</script> All Rights Reserved
</p>
</div>
</section>
<!--EndB2B-->
<script>
// Simple script for the mobile menu toggle
document.querySelector('.menu-toggle').addEventListener('click', function() {
document.querySelector('.nav').classList.toggle('nav--active');
this.classList.toggle('menu-toggle--active');
});
// Custom cursor
const cursor = document.querySelector('.cursor');
document.addEventListener('mousemove', e => {
cursor.setAttribute("style", "top: "+(e.pageY - 10)+"px; left: "+(e.pageX - 10)+"px;");
});
document.addEventListener('click', () => {
cursor.classList.add("cursor--expand");
setTimeout(() => {
cursor.classList.remove("cursor--expand");
}, 500);
});
</script>
</body>
</html>