-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1524 lines (1375 loc) · 81.7 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 name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="title" content="Lucero Landscaping & Construction | Montville, New Jersey">
<meta name="description"
content="Lucero Landscaping & Construction specializes in bespoke landscape design, hardscaping, maintenance, and construction services, tailored to clients' needs in Montville, New Jersey, and surrounding areas.">
<meta name="keywords"
content="Professional landscaping services in US-NJ, landscaping services in Montville, New Jersey, hardscaping, planting services, mulching services, weekly grass cutting services, Falls and spring clean up, thatching & Aeration, Trimming, pruning, Drainage, Re-gradin, Seed and sod installation, Fence Installation, Patios, walkways, driveways, Retaining walls, snow removal, garden maintenance, lawn care, outdoor living, residential construction, commercial construction, Montville, New Jersey, Contact us - +1 8625760837">
<meta name="robots" content="index, follow">
<meta name="author" content="Lucero Landscaping & Construction">
<meta name="rating" content="Safe For All">
<meta name="language" content="English">
<meta name="geo.region" content="US-NJ">
<meta name="geo.placename" content="Montville">
<meta name="geo.position" content="40.89232;-74.30154">
<meta name="ICBM" content="40.89232, -74.30154">
<title>Landscaping services in Montville, NJ</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/logo-nbg.png" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v6.1.0/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<link href="css/main.css" rel="stylesheet" />
<!-- bootstrap icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" media="screen" href="https://fontlibrary.org//face/bluu" type="text/css" />
</head>
<body>
<div id="preloader">
</div>
<div class="page-top" id = "page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand" href="#page-top"><img class="" src="assets/logo-nbg.png" alt="..." /></a>
<!-- <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fas fa-bars ms-1"></i>
</button> -->
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ms-auto py-4 py-lg-0">
<li class="nav-item fw-bold"><a class="nav-link" href="#home">Home</a></li>
<li class="nav-item fw-bold"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item fw-bold"><a class="nav-link" href="#service">Services</a></li>
<li class="nav-item fw-bold"><a class="nav-link" href="#portfolio">Portfolio</a></li>
<!-- <li class="nav-item fw-bold"><a class="nav-link" href="#team">Gallery</a></li> -->
<li class="nav-item fw-bold"><a class="nav-link" href="#testinomial">Testimonials</a></li>
<li class="nav-item fw-bold"><a class="nav-link" href="#blogs">Blog</a></li>
<!-- <li class="nav-item fw-bold"><a class="nav-link" href="#team">Team</a></li> -->
<!-- <li class="nav-item fw-bold"><a class="nav-link" href="#contact">Contact</a></li> -->
<li class="nav-item fw-bold border rounded-9 px-2 w-75"><a class="nav-link" href="#callnow"><i
class="bi bi-telephone-outbound text-primary me-2"></i>+18625760837</a></li>
</ul>
</div>
</div>
</nav>
<!-- Masthead-->
<header class="masthead present-section" id="home">
<div class="container">
<!-- <img class="img-fluid pb-4 mb-4 fs-4" src="assets/logo-nbg.png" alt=""> -->
<div class="masthead-subheading zoom">Welcome to Lucero Landscaping And Construction</div>
<!-- <div class="masthead-heading text-uppercase zoom">Unlock Your Dream Garden</div> -->
<a class="btn btn-primary btn-xl text-uppercase" href="#about">Tell Me More</a>
</div>
</header>
<!-- About -->
<section class="page-section present-section" id="about"
style="background-image: url(https://www.toptal.com/designers/subtlepatterns/uploads/leaves-pattern.png); ">
<div class="">
<div class="section-title">
<h2 class="">ABOUT</h2>
<h5 class="section-subheading text-muted">Bringing Your Outdoor Dreams to Life: Learn More About Our
Passion for Landscaping!</h5>
</div>
<section class="section-about">
<div class="container container-about">
<div class="left"></div>
<div class="right">
<div class="content">
<p class="masthead-heading text-warning text-uppercase fs-4 ">
Crafting Nature's Masterpieces for Your Outdoor Oasis.</p>
<p class=" ">Welcome to Lucero Landscaping & Construction, your premier destination for
exceptional landscaping and construction
services in Montville, New Jersey, and the surrounding areas. With over 20 years of
industry experience, we pride
ourselves on delivering personalized solutions tailored to our clients' unique needs and
visions.
Our team of skilled professionals is dedicated to transforming your outdoor spaces into
beautiful, functional, and
sustainable environments. From creative landscape design and installation to
high-quality construction projects, we
cover all aspects of your property improvement needs.
</p>
</div>
</div>
</div>
</section>
</div>
</section>
<!-- Services-->
<section class="page-section present-section" id="service">
<div class="container">
<div class="section-title">
<h2 class="">Services</h2>
<h5 class="section-subheading text-muted">We provide a complete list of landscape & hardscape needs.
</h5>
</div>
<div class="d-flex justify-content-center mb-lg-4 pb-lg-4 ">
<div class="me-5">
<button class="btn btn-outline-success map-point-sm " data-show=".landscaping">
Landscaping Services
</button>
</div>
<div class="me-5">
<button class="btn btn-outline-warning map-point-sm" data-show=".construction">
Construction Services
</button>
</div>
</div>
<div class="inner-basic division-details">
<div class="initialmsg">
<div class="row g-4 py-2 row-cols-1 row-cols-lg-3">
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/cut.png" height="50px">
</div>
<div>
<h3 class="fs-4">Planting</h3>
<p class="fs-6 text-muted lh-1"> Partnering with you, we will carefully select an array
of trees, shrubs,
annuals, and perennials that perfectly
complement your yard, then professionally plant them to ensure their
flourishing growth.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/cut.png" height="50px">
</div>
<div>
<h3 class="fs-4">Falls / springs clean-ups</h3>
<p class="fs-6 text-muted lh-1"> Let us handle the task of removing leaves, branches,
and other debris from
your property on a regular basis, keeping
your outdoor space clean and tidy without any hassle on your part.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/cut.png" height="50px">
</div>
<div>
<h3 class="fs-4">Design</h3>
<p class="fs-6 text-muted lh-1"> With our expertise and your imagination, we can
transform your yard into a
stunning masterpiece, no matter how big or
small your initial plans may be.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/cut.png" height="50px">
</div>
<div>
<h3 class="fs-4">Trimming /pruning</h3>
<p class="fs-6 text-muted lh-1"> Transform your landscaping with a deep summer pruning
that promotes healthy
plant and tree growth while keeping your
yard neatly shaped year-round</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/aeration.png" height="50px">
</div>
<div>
<h3 class="fs-3">Thatching & Aeration</h3>
<p class="fs-6 text-muted lh-1">Achieve a healthy, lush lawn with our expert dethatching
in spring and core
aeration in fall, ensuring your yard looks
vibrant all year.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/drainage.png" height="50px">
</div>
<div>
<h3 class="fs-3">Drainage & Re-grading</h3>
<p class="fs-6 text-muted lh-1">Let us transform your yard with a proper drainage system
that maximizes its
beauty and functionality, solving any water
problems for good.</p>
</div>
</div>
</div>
<div class="row g-4 py-2 row-cols-1 row-cols-lg-3">
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/mulching.png" height="50px">
</div>
<div>
<h3 class="fs-3">Mulching</h3>
<p class="fs-6 text-muted lh-1">Enhance your plant beds with our fresh Cedar, Hemlock,
and Bark mulch
options in blonde, brown, and red, providing a
beautiful complement to your yard.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/cutting.png" height="50px">
</div>
<div>
<h3 class="fs-3">Weekly Grass Cutting</h3>
<p class="fs-6 text-muted lh-1">Keep your yard in perfect shape with our weekly or
bi-weekly services,
including thorough edging, weed removal, and
grass clipping disposal.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/seeding.png" height="50px">
</div>
<div>
<h3 class="fs-3">Seed & sod installation</h3>
<p class="fs-6 text-muted lh-1">Whether you need general over-seeding, brand new seeded
lawn, or complete
weed-free sod installation, we have you
covered.</p>
</div>
</div>
</div>
<div class="row g-4 py-2 row-cols-1 row-cols-lg-3">
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/ice.png" height="50px">
</div>
<div>
<h3 class="fs-3">Snow removal</h3>
<p class="fs-6 text-muted lh-1">For both residential and commercial properties, we offer
24-hour snow
removal services to meet all of your
winter weather needs.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/fence.png" height="50px">
</div>
<div>
<h3 class="fs-3">Fence Installation</h3>
<p class="fs-6 text-muted lh-1">Upgrade your yard with beautiful, functional fencing
options like vinyl,
wooden, and chain link to achieve the look and
privacy you desire</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/wall.png" height="50px">
</div>
<div>
<h3 class="fs-3">Retaining Walls</h3>
<p class="fs-6 text-muted lh-1">Add dimension and stability to your yard with our
expertly designed
retaining walls, from simple garden blocks to
large-scale solutions tailored to your needs.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/wall.png" height="50px">
</div>
<div>
<h3 class="fs-3">Cultured stone</h3>
<p class="fs-6 text-muted lh-1">Transform the exterior of your home with the addition of
cultured stone,
adding a beautiful and durable finish to your
house foundation, stairs, fireplace, and more.</p>
</div>
</div>
</div>
</div>
<div class="landscaping hide">
<div class="row g-4 py-2 row-cols-1 row-cols-lg-3">
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/cut.png" height="50px">
</div>
<div>
<h3 class="fs-4">Planting</h3>
<p class="fs-6 text-muted lh-1"> Partnering with you, we will carefully select an array
of trees, shrubs,
annuals, and perennials that perfectly
complement your yard, then professionally plant them to ensure their
flourishing growth.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/cut.png" height="50px">
</div>
<div>
<h3 class="fs-4">Falls / springs clean-ups</h3>
<p class="fs-6 text-muted lh-1"> Let us handle the task of removing leaves, branches,
and other debris from
your property on a regular basis, keeping
your outdoor space clean and tidy without any hassle on your part.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/cut.png" height="50px">
</div>
<div>
<h3 class="fs-4">Design</h3>
<p class="fs-6 text-muted lh-1"> With our expertise and your imagination, we can
transform your yard into a
stunning masterpiece, no matter how big or
small your initial plans may be.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/cut.png" height="50px">
</div>
<div>
<h3 class="fs-4">Trimming /pruning</h3>
<p class="fs-6 text-muted lh-1"> Transform your landscaping with a deep summer pruning
that promotes healthy
plant and tree growth while keeping your
yard neatly shaped year-round</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/aeration.png" height="50px">
</div>
<div>
<h3 class="fs-3">Thatching & Aeration</h3>
<p class="fs-6 text-muted lh-1">Achieve a healthy, lush lawn with our expert dethatching
in spring and core
aeration in fall, ensuring your yard looks
vibrant all year.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/drainage.png" height="50px">
</div>
<div>
<h3 class="fs-3">Drainage & Re-grading</h3>
<p class="fs-6 text-muted lh-1">Let us transform your yard with a proper drainage system
that maximizes its
beauty and functionality, solving any water
problems for good.</p>
</div>
</div>
</div>
<div class="row g-4 py-2 row-cols-1 row-cols-lg-3">
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/mulching.png" height="50px">
</div>
<div>
<h3 class="fs-3">Mulching</h3>
<p class="fs-6 text-muted lh-1">Enhance your plant beds with our fresh Cedar, Hemlock,
and Bark mulch
options in blonde, brown, and red, providing a
beautiful complement to your yard.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/cutting.png" height="50px">
</div>
<div>
<h3 class="fs-3">Weekly Grass Cutting</h3>
<p class="fs-6 text-muted lh-1">Keep your yard in perfect shape with our weekly or
bi-weekly services,
including thorough edging, weed removal, and
grass clipping disposal.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/seeding.png" height="50px">
</div>
<div>
<h3 class="fs-3">Seed & sod installation</h3>
<p class="fs-6 text-muted lh-1">Whether you need general over-seeding, brand new seeded
lawn, or complete
weed-free sod installation, we have you
covered.</p>
</div>
</div>
</div>
<div class="row g-4 py-2 row-cols-1 row-cols-lg-3">
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/ice.png" height="50px">
</div>
<div>
<h3 class="fs-3">Snow removal</h3>
<p class="fs-6 text-muted lh-1">For both residential and commercial properties, we offer
24-hour snow
removal services to meet all of your
winter weather needs.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/fence.png" height="50px">
</div>
<div>
<h3 class="fs-3">Fence Installation</h3>
<p class="fs-6 text-muted lh-1">Upgrade your yard with beautiful, functional fencing
options like vinyl,
wooden, and chain link to achieve the look and
privacy you desire</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/wall.png" height="50px">
</div>
<div>
<h3 class="fs-3">Retaining Walls</h3>
<p class="fs-6 text-muted lh-1">Add dimension and stability to your yard with our
expertly designed
retaining walls, from simple garden blocks to
large-scale solutions tailored to your needs.</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/wall.png" height="50px">
</div>
<div>
<h3 class="fs-3">Cultured stone</h3>
<p class="fs-6 text-muted lh-1">Transform the exterior of your home with the addition of
cultured stone,
adding a beautiful and durable finish to your
house foundation, stairs, fireplace, and more.</p>
</div>
</div>
</div>
</div>
<div class="construction hide">
<div class="row g-4 py-2 row-cols-1 row-cols-lg-3">
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/cut.png" height="50px">
</div>
<div>
<h3 class="fs-4">Painting</h3>
<p class="fs-6 text-muted lh-1">Lucero Landscaping and Construction offers top-quality
painting services to give your home or business a fresh, new
look. Our team of experts guarantees exceptional results and customer satisfaction.
</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/cut.png" height="50px">
</div>
<div>
<h3 class="fs-4">Renovation of rooms</h3>
<p class="fs-6 text-muted lh-1"> Lucero Landscaping and Construction is your renovation
specialist for transforming any room in your home, including
bathrooms and basements. With our expert team, we'll help you achieve your dream
space, delivering outstanding results
and customer satisfaction..</p>
</div>
</div>
<div class="col d-flex align-items-start zoom">
<div
class="icon-square text-body-emphasis bg-body-secondary d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
<img src="assets/icon/wall.png" height="50px">
</div>
<div>
<h3 class="fs-3">Patios, walkways, Driveways</h3>
<p class="fs-6 text-muted lh-1">Elevate your hardscape design by selecting from our
extensive selection of
brick paver systems, available in a diverse
range of colors, textures, and patterns to make your outdoor space truly unique.</p>
</div>
</div>
</div>
</div>
</div>
<script>
$(document).on('click', '.map-point-sm', function () {
var show = $(this).data('show');
$(show).removeClass("hide").siblings().addClass("hide");
});
</script>
</div>
</section>
<!-- Request for our service -->
<div class="container col-xxl-10 px-4 section-bg" id="callnow">
<div class="row flex-lg-row-reverse align-items-center g-5">
<div class="col-10 col-sm-8 col-lg-6 ">
<img src="assets/lucero-logo.jpg" class="d-block mx-lg-auto p-4 zoom w-100 img-fluid "
alt="Bootstrap Themes" loading="lazy">
</div>
<div class="col-lg-6">
<h3 class="display-6 fw-bold lh-1 mb-3 section-subheading zoom">Request For Our Various Landscaping
Service </h3>
<p class="lead masthead-heading">Transform your outdoor space into a beautiful oasis with our
landscaping services. From lawn care to hardscaping, our skilled professionals are committed to
providing high-quality and reliable services that exceed our clients' expectations. Don't settle for
a boring outdoor space - <span class="text-success">contact us</span> today to get started!</p>
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
<a href="tel:+18625760837"><button type="button" class="btn btn-primary btn-lg px-2 me-md-2"><i
class="bi bi-telephone-fill me-2"></i>CALL NOW</button></a>
<a href="#contact"> <button type="button" class="btn btn-outline-warning btn-lg px-4"></i>REQUEST
FOR CALL</button></a>
</div>
</div>
</div>
</div>
<!-- Portfolio Grid-->
<!-- <section class="page-section bg-light" id="portfolio">
<div class="container">
<div class="section-title">
<h2>Portfolio</h2>
<h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3>
</div>
<div class="row ">
<div class="col-lg-4 col-sm-6 mb-4"> -->
<!-- Portfolio item 1-->
<!-- <div class="portfolio-item">
<a class="portfolio-link" data-bs-toggle="modal" href="#portfolioModal1">
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/1.jpg" alt="..." />
</a>
<div class="portfolio-caption">
<div class="portfolio-caption-heading">Threads</div>
<div class="portfolio-caption-subheading text-muted">Illustration</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mb-4"> -->
<!-- Portfolio item 2-->
<!-- <div class="portfolio-item">
<a class="portfolio-link" data-bs-toggle="modal" href="#portfolioModal2">
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/2.jpg" alt="..." />
</a>
<div class="portfolio-caption">
<div class="portfolio-caption-heading">Explore</div>
<div class="portfolio-caption-subheading text-muted">Graphic Design</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mb-4"> -->
<!-- Portfolio item 3-->
<!-- <div class="portfolio-item">
<a class="portfolio-link" data-bs-toggle="modal" href="#portfolioModal3">
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/3.jpg" alt="..." />
</a>
<div class="portfolio-caption">
<div class="portfolio-caption-heading">Finish</div>
<div class="portfolio-caption-subheading text-muted">Identity</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mb-4 mb-lg-0"> -->
<!-- Portfolio item 4-->
<!-- <div class="portfolio-item">
<a class="portfolio-link" data-bs-toggle="modal" href="#portfolioModal4">
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/4.jpg" alt="..." />
</a>
<div class="portfolio-caption">
<div class="portfolio-caption-heading">Lines</div>
<div class="portfolio-caption-subheading text-muted">Branding</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mb-4 mb-sm-0"> -->
<!-- Portfolio item 5-->
<!-- <div class="portfolio-item">
<a class="portfolio-link" data-bs-toggle="modal" href="#portfolioModal5">
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/5.jpg" alt="..." />
</a>
<div class="portfolio-caption">
<div class="portfolio-caption-heading">Southwest</div>
<div class="portfolio-caption-subheading text-muted">Website Design</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6"> -->
<!-- Portfolio item 6-->
<!-- <div class="portfolio-item">
<a class="portfolio-link" data-bs-toggle="modal" href="#portfolioModal6">
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/6.jpg" alt="..." />
</a>
<div class="portfolio-caption">
<div class="portfolio-caption-heading">Window</div>
<div class="portfolio-caption-subheading text-muted">Photography</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- Portfolio -->
<section class="gallery present-section" id="portfolio">
<div class="section-title container">
<h2>Portfolio</h2>
<h5 class="section-subheading text-muted">Transforming Outdoor Spaces: See Our Stunning Portfolio of
Landscaping Projects!</h5>
</div>
<div class="container">
<div class="row">
<div class="gallery-filter">
<span class="filter-item active" data-filter="all">All</span>
<span class="filter-item" data-filter="top">Top</span>
<span class="filter-item" data-filter="trimming">Trimming</span>
<span class="filter-item" data-filter="masonry">Masonry and Hardscape</span>
<span class="filter-item" data-filter="landscape">Landscape design</span>
</div>
</div>
<div class="row">
<!-- gallery item start -->
<div class="gallery-item top">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="assets/img/portfolio/n3.jpg" class="zoom" alt="shoe">
</div>
</div>
<!-- gallery item end -->
<!-- gallery item start -->
<div class="gallery-item landscape">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="assets/img/portfolio/n1.jpg" class="zoom" alt="trimming">
</div>
</div>
<!-- gallery item end -->
<!-- gallery item start -->
<div class="gallery-item trimming">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="assets/img/portfolio/n2.jpg" class="zoom" alt="trimming">
</div>
</div>
<!-- gallery item end -->
<!-- gallery item start -->
<div class="gallery-item masonry">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="assets/img/portfolio/n4.jpg" class="zoom" alt="headphone">
</div>
</div>
<!-- gallery item end -->
<!-- gallery item start -->
<div class="gallery-item landscape">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="assets/img/portfolio/n5.jpg" class="zoom" alt="camera">
</div>
</div>
<!-- gallery item end -->
<div class="gallery-item masonry">
<div class="gallery-item-inner content overflow-hidden w-100 h-100">
<!-- <div class="content-overlay"></div> -->
<img src="assets/img/portfolio/n6.jpg" class="zoom" alt="phone">
<!-- <div class="content-details fadeIn-bottom">
<h3 class="content-title">This is Phone</h3>
<p class="content-text">This is a short description about phone</p>
</div> -->
</div>
</div>
<div class="gallery-item masonry">
<div class="gallery-item-inner content overflow-hidden w-100 h-100">
<img src="assets/img/portfolio/n7.jpg" class="zoom" alt="camera">
</div>
</div>
<div class="gallery-item trimming">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="assets/img/portfolio/n8.jpg" class="zoom" alt="watch">
</div>
</div>
<!-- gallery item start -->
<div class="gallery-item masonry">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="assets/img/portfolio/n9.jpg" class="zoom" alt="watch">
</div>
</div>
<!-- gallery item end -->
<div class="gallery-item landscape">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="./assets/img/portfolio/w1.jpg" class="zoom"
alt="camera">
</div>
</div>
<div class="gallery-item landscape">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="./assets/img/portfolio/w3.jpg" class="zoom"
alt="camera">
</div>
</div>
<div class="gallery-item landscape">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="./assets/img/portfolio/w4.jpg" class="zoom"
alt="camera">
</div>
</div>
<div class="gallery-item landscape">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="./assets/img/portfolio/w5.jpg" class="zoom"
alt="camera">
</div>
</div>
<div class="gallery-item landscape">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="./assets/img/portfolio/w6.jpg" class="zoom"
alt="camera">
</div>
</div>
<div class="gallery-item landscape">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="./assets/img/portfolio/w7.jpg" class="zoom"
alt="camera">
</div>
</div>
<div class="gallery-item landscape">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="./assets/img/portfolio/w8.jpg" class="zoom"
alt="camera">
</div>
</div>
<div class="gallery-item masonry">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="./assets/img/portfolio/w9.jpg" class="zoom"
alt="camera">
</div>
</div>
<div class="gallery-item landscape">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="./assets/img/portfolio/w10.jpg" class="zoom"
alt="camera">
</div>
</div>
<div class="gallery-item masonry">
<div class="gallery-item-inner overflow-hidden w-100 h-100">
<img src="./assets/img/portfolio/w2.jpg" class="zoom"
alt="watch">
</div>
</div>
</div>
</div>
</section>
<!-- ======= Testimonials ======= -->
<section class="services section-bg present-section" id="testinomial">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Testimonials</h2>
<h5 class="section-subheading text-muted">Words from Our Satisfied Customers: Hear What They Have to
Say!</h5>
</div>
<div class="row">
<div class="col-xl-3 col-md-6 d-flex align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box">
<div class="icon"><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i
class="bi bi-star-fill"></i> <i class="bi bi-star-fill"></i> <i
class="bi bi-star-fill"></i></div>
<h4 class="masthead-subheading"><a href="">Great Service</a></h4>
<p>I never realized how much a well-designed backyard could enhance my home </p>
<br>
<div class="d-flex mt-2">
<img src="assets/img/team/3.jpg" class="rounded-circle" height="64px">
<div class="customer-names" style="line-height:0.5rem">
<h6 class="customer-name">Rajan V.</h6>
<p>Resident of NJ</p>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="zoom-in"
data-aos-delay="200">
<div class="icon-box">
<div class="icon"><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i
class="bi bi-star-fill"></i> <i class="bi bi-star-fill"></i><i
class="bi bi-star-fill"></i></div>
<h4><a href="">Exceptional</a></h4>
<p>I highly recommend this team for their expertise in creating beautiful outdoor spaces.</p>
<br>
<div class="d-flex mt-2">
<img src="assets/img/team/1.jpg" class="rounded-circle" height="64px">
<div class="customer-names" style="line-height:0.5rem">
<h6 class="customer-name">Andrew P.</h6>
<p>Montville, NJ</p>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-md-6 d-flex align-items-stretch mt-4 mt-xl-0" data-aos="zoom-in"
data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i
class="bi bi-star-fill"></i> <i class="bi bi-star-fill"></i><i
class="bi bi-star-half"></i></div>
<h4><a href="">Outstanding</a></h4>
<p>They transformed my backyard into a stunning retreat that I can now enjoy with my family and
friends.</p>
<div class="d-flex mt-4">
<img src="assets/img/team/2.jpg" class="rounded-circle" height="64px">
<div class="customer-names" style="line-height:0.5rem">
<h6 class="customer-name">Samantha T.</h6>
<p>Montville, NJ</p>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-md-6 d-flex align-items-stretch mt-4 mt-xl-0" data-aos="zoom-in"
data-aos-delay="400">
<div class="icon-box">
<div class="icon"><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i
class="bi bi-star-fill"></i> <i class="bi bi-star-fill"></i><i
class="bi bi-star-fill"></i></div>
<h4><a href="">Impressive</a></h4>
<p>They transformed my backyard into a stunning retreat that I can now enjoy with my family and
friends.</p>
<div class="d-flex mt-4">
<img src="assets/img/team/3.jpg" class="rounded-circle" height="64px">
<div class="customer-names" style="line-height:0.5rem">
<h6 class="customer-name">Christopher L.</h6>
<p>Resident of NJ</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End testimonials Section -->