-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1336 lines (1293 loc) · 67.5 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.0">
<!-- styles files -->
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/new.css"><!-- navbar and faqs style in this file -->
<script src="script/main.js"></script>
<link rel="icon" href="images/logo/logo-navbar.png">
<!-- fontawesome for icons -->
<script src="https://kit.fontawesome.com/11ebebdeee.js" crossorigin="anonymous"></script>
<!-- SEO -->
<title>RJR Safety Nets in Bangalore</title>
<meta name="description"
content="RJR Safety Nets offers high-quality, durable safety nets for a variety of needs, including Balcony, Children's, Cricket Practice, Monkey, Pigeon, Construction, Coconut Protection, Industrial, Parking Lot, and Mosquito Nets, along with Anti Bird Spikes. We provide affordable safety solutions for homes, commercial spaces, and industrial sites.">
<meta name="keywords"
content="rjrsafetynets.com, RJR Safety Nets in Bangalore, RJR Safety Nets, rjr, Balcony safety nets, Pigeon safety nets, Pigeon nets for Balconies cost, Pigeon nets for Balconies, Pigeon nets for Balconies near me, Pigeon nets for Balconies online Cost, Pigeon nets for windows, Pigeon nets installation charges, Pigeon nets installation near me, Pigeon nets installation online charges, Pigeon nets near me, Pigeon nets price per square feet, Pigeon netting for Balconies, Pigeon netting Services, Pigeon Safety nets, Anti bird nets, Anti bird nets fixing near me, Anti bird nets for balcony, Anti bind nets installation near me, Anti bird net cost, Anti bird net online price, Anti bird net buy online, Anti bird net for agriculture, Anti bird nets for window, Anti bird net installation online cost , Anti bird netting balcony, Anti Pigeon nets installation near me, Anti bird net cost, Anti bird net online price, Anti bird net buy online, Anti bird net for agriculture, Anti bird nets for window, Anti bird net installation online cost, Anti bird netting balcony, Anti Pigeon nets, Bird control net, Bird nets for Balcony near me, Bird netting for Balconies, Bird netting service near, Bird protection nets, Children Safety net, Safety nets, Duct area covering nets, Invisible Grill for Balcony, Glass safety nets, Monkey Safety nets, All types of sports nets dealers, Coconut tree net, Construction Safety nets, Cricket practice nets, Industrial Safety nets, Parking lot safety nets, Swimming pool safety nets">
<meta name="RJR Safety Nets" content="rjrsafetynets">
<!-- <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> -->
<meta name="msapplication-TileImage" content="images/logo/logo-navbar.png">
<link rel="apple-touch-icon-precomposed" href="images/logo/logo-navbar.png">
<meta name="msapplication-TileImage" content="images/logo/logo-navbar.png">
<link rel="canonical" href="https://www.rjrsafetynets.com/">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "Why should I install a safety net?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Safety nets protect people, property, and assets from accidents and injuries. They reduce the risk of falls, prevent accidents in high-risk areas, and offer peace of mind for families and organizations."
}
},{
"@type": "Question",
"name": "Are bird protection nets harmful to birds?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No, our bird nets are designed to safely prevent birds from entering certain areas without causing them harm. They are environmentally friendly and non-intrusive."
}
},{
"@type": "Question",
"name": "Can safety nets be installed in balconies or windows?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, child safety nets are commonly installed on balconies, windows, and staircases to prevent falls and ensure child safety in homes."
}
},{
"@type": "Question",
"name": "Are child safety nets easy to remove when not needed?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, child safety nets can be easily removed when no longer required, and they do not cause damage to walls or railings."
}
},{
"@type": "Question",
"name": "",
"acceptedAnswer": {
"@type": "Answer",
"text": ""
}
}]
}
</script>
</head>
<style>
@keyframes appear {
from {
opacity: 0;
scale: 0.5;
}
to {
opacity: 1;
scale: 1;
}
}
.anime {
animation: appear 3s linear;
animation-timeline: view();
animation-range: entry 0% cover 34%;
}
@keyframes slideInFromLeft {
from {
opacity: 0;
transform: translateX(-100%);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.text-slide-in {
opacity: 0;
/* Initially hidden */
transform: translateX(-100%);
/* Start from left off-screen */
transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.text-slide-in.animate {
animation: slideInFromLeft 1s ease-out forwards;
}
/* Keyframes for zoom-out effect */
@keyframes zoomOut {
from {
opacity: 0;
transform: scale(0.5);
/* Start from 50% size */
}
to {
opacity: 1;
transform: scale(1);
/* End at full size */
}
}
/* Common class for elements to apply animation */
.zoom-out {
opacity: 0;
/* Initially hidden */
transform: scale(0.5);
/* Start from 50% */
transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}
.zoom-out.animate {
animation: zoomOut 1s ease-out forwards;
}
.loader {
border: 8px solid #f3f3f3;
border-top: 8px solid #3498db;
border-radius: 50%;
width: 90px;
height: 90px;
animation: spin 2s linear infinite;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
<!-- <script>
// for loading animation
window.addEventListener('load', () => {
// Simulate a loader delay of 3 seconds (you can adjust this time)
setTimeout(() => {
// Hide the loader
document.querySelector('.loader').style.display = 'none';
// Show the content
document.getElementById('content').style.display = 'block';
}, 1000);
});
</script> -->
<body>
<!-- <div class="loader"></div> -->
<!-- navbar start -->
<!-- id="content" style="display: none;" -->
<div >
<nav class="navbar">
<div class="left-nav ">
<div class="nav-logo">
<a href="https://rjrsafetynets.com/">
<h1>RJR Safety Nets</h1>
</a>
</div>
</div>
<!-- <img width="100px" height="100px" src="images/logo/logo-navbar.png"
alt="RJR safety nets"> -->
<div class="right-nav">
<div class="hamburger" id="hamburger">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav-links" id="nav-links-id">
<li><a class="nav-btn " href="https://rjrsafetynets.com/">Home</a></li>
<li><a class="nav-btn" href="about-us/">About</a></li>
<li class="dropdown">
<p class="nav-btn dropbtn">Services
<i class="fa-solid fa-angle-down"></i>
</p>
<div class="dropdown-content">
<a href="Balcony-Safety-Nets/">Balcony Safety Nets</a>
<a href="Children's-Safety-Nets/">Children's Safety Nets</a>
<a href="Cricket-Practice-Nets/">Cricket Practice Nets</a>
<a href="Monkey-Safety-Nets/">Monkey Safety Nets</a>
<a href="Pigeon-Safety-Nets/">Pigeon Safety Nets</a>
</div>
</li>
<li><a class="nav-btn" href="contact-us/">Contact</a></li>
<div class="mobile-view-cont">
<ul class="mobile-view-list">
<h3 class="mobile-view-title">Contact Info</h3>
<li class="">
<a class="" href="tel:+917075051812">
<i class="fa-solid fa-phone"></i>
+91 70 7505 1812
</a>
</li>
<li class="">
<a class="" href="https://wa.me/918074514411?text=Hi%20There!" target="_blank">
<i class="fa-brands fa-whatsapp"></i>
+91 80 7451 4411
</a>
</li>
<li class="text-line">
<a class="text-line-a" href="mailto:[email protected]">
<i class="fa-solid fa-envelope"></i>
</a>
</li>
<h3 class="mobile-view-title">Our Location
</h3>
<li class="text-line">
<i class="fa-solid fa-location-dot"></i>
Bengaluru
</li>
<!-- <h3 class="mobile-view-title">Social Links
</h3>
<div class="mobile-view-social-media-grp">
<li class="mobile-social-media-grp">
<a href="">
<i class="fa-brands fa-facebook-f social-icon"></i>
</a>
</li>
<li class="mobile-social-media-grp">
<a href="">
<i class="fa-brands fa-square-instagram social-icon"></i>
</a>
</li>
<li class="mobile-social-media-grp">
<a href="">
<i class="fa-brands fa-x-twitter social-icon"></i>
</a>
</li>
<li class="mobile-social-media-grp">
<a href="">
<i class="fa-brands fa-linkedin social-icon"></i>
</a>
</li>
</div> -->
</ul>
<div class="bottom-container">
<p>© 2024 RJR Safety Nets All Rights Reserved | Website Designed
by <a class="underline" href="https://www.instagram.com/king_misba/"> @Ahmed
Misbahuddin</a>
</p>
</div>
</div>
</ul>
</div>
<script>
let hamburger = document.getElementById('hamburger');
const navLinks = document.getElementById('nav-links-id');
hamburger.addEventListener('click', () => {
// Toggle classes for animation
navLinks.classList.toggle('open');
hamburger.classList.toggle('active');
});
</script>
</nav>
<!-- navbar end -->
<div class="top-space"></div>
<!-- hero section start -->
<section class="hero-section">
<div class="slider-container">
<!-- Slide 1 -->
<div class="mySlides fade ">
<img width="1200px" height="600px" src="images/slider/construction-safety-nets.jpg"
alt="RJR provide construction safety nets" class="slide-image">
<div class="text-background"></div>
<div class="text-container">
<p class="text text-slide-in animate">Construction Safety Nets<br>
<span class="sub-text text-slide-in animate">THE MAJOR CONSTRUCTION NETS DEALERS AND
SUPPLIERS.</span>
<br>
<span class="sub-text text-slide-in animate">With Free Installation & Free
Inspection</span>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button hover-button-space zoom-out animate" id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<a href="https://wa.me/918074514411?text=Hi%20There!" target="_blank">
<button class="hover-button-r zoom-out animate" id="myButton">Get A
Free
Estimate
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</button>
</a>
</div>
</p>
</div>
</div>
<!-- Slide 2 -->
<div class="mySlides fade">
<img width="1200px" height="600px" src="images/slider/pigeon-protection-nets.jpg"
onclick="showSlides()" alt="pigeon protection nets " class="slide-image">
<div class="text-background"></div>
<div class="text-container">
<p class="text text-slide-in animate">Pigeon Protection Nets <br>
<span class="sub-text text-slide-in animate">THE MAJOR PIGEON NETS DEALERS AND
SUPPLIERS.</span>
<br>
<span class="sub-text text-slide-in animate">With Free Installation & Free
Inspection</span>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button hover-button-space zoom-out animate" id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<a href="https://wa.me/918074514411?text=Hi%20There!" target="_blank">
<button class="hover-button-r zoom-out animate" id="myButton">
Get A Free Estimate
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</button>
</a>
</div>
</p>
</div>
</div>
<!-- Slide 3 -->
<div class="mySlides fade">
<img width="1200px" height="600px" src="images/slider/monkey-protection-nets.jpg"
alt="monkey protection nets" class="slide-image">
<div class="text-background"></div>
<div class="text-container">
<p class="text text-slide-in animate">Monkey Protection Nets<br>
<span class="sub-text text-slide-in animate">THE MAJOR MONKEY PROTECTION NETS DEALERS
AND
SUPPLIERS.</span>
<br>
<span class="sub-text text-slide-in animate">With Free Installation & Free
Inspection</span>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button hover-button-space zoom-out animate " id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<a href="https://wa.me/918074514411?text=Hi%20There!" target="_blank">
<button class="hover-button-r zoom-out animate" id="myButton">
Get A Free
Estimate
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</button>
</a>
</div>
</p>
</div>
</div>
<!-- Slide 4 -->
<div class="mySlides fade">
<img width="1200px" height="600px" src="images/slider/cricket-practice-nets.jpg"
alt="cricket practice nets" class="slide-image">
<div class="text-background"></div>
<div class="text-container">
<p class="text text-slide-in animate">Cricket Practice Nets<br>
<span class="sub-text text-slide-in animate">THE MAJOR CRICKET PRACTICE NETS DEALERS AND
SUPPLIERS.</span>
<br>
<span class="sub-text text-slide-in animate">With Free Installation & Free
Inspection</span>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button hover-button-space zoom-out animate" id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<a href="https://wa.me/918074514411?text=Hi%20There!" target="_blank">
<button class="hover-button-r zoom-out animate" id="myButton">
Get A Free Estimate
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</button>
</a>
</div>
</p>
</div>
</div>
<!-- Slide 5-->
<div class="mySlides fade">
<img width="1200px" height="600px" src="images/slider/children-safety-nets.jpg" alt="Image 3"
class="slide-image">
<div class="text-background"></div>
<div class="text-container">
<p class="text text-slide-in animate">Children Safety Nets<br>
<span class="sub-text text-slide-in animate">We Are The Best Choice For Your Safety
Nets</span>
<br>
<span class="sub-text text-slide-in animate">With Free Installation & Free
Inspection</span>
<div class="button-container">
<a href="https://wa.me/918074514411?text=Hi%20There!" target="_blank">
<a href="tel:7075051812">
<button class="hover-button hover-button-space zoom-out animate" id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<button class="hover-button-r zoom-out animate" id="myButton">Get
A
Free
Estimate
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</button>
</a>
</div>
</p>
</div>
</div>
<!-- Slide 6 -->
<div class="mySlides fade">
<img width="1200px" height="600px" src="images/slider/duct-area-safety-nets.jpg"
alt="duct-area safety nets" class="slide-image">
<div class="text-background"></div>
<div class="text-container">
<p class="text text-slide-in animate">Duct Area Safety Nets<br>
<span class="sub-text text-slide-in animate">THE MAJOR DUCT AREA NETS DEALERS AND
SUPPLIERS.</span>
<br>
<span class="sub-text text-slide-in animate">With Free Installation & Free
Inspection</span>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button hover-button-space zoom-out animate" id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<a href="https://wa.me/918074514411?text=Hi%20There!" target="_blank">
<button class="hover-button-r zoom-out animate " id="myButton">
Get A Free Estimate
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</button>
</a>
</div>
</p>
</div>
</div>
<!-- Slide 7 -->
<div class="mySlides fade">
<img width="1200px" height="600px" src="images/slider/balcony-safety-nets.jpg"
alt="balcony safety nets" class="slide-image">
<div class="text-background"></div>
<div class="text-container">
<p class="text text-slide-in animate">Balcony Safety Nets<br>
<span class="sub-text text-slide-in animate">THE MAJOR BALCONY NETS DEALERS AND
SUPPLIERS.</span>
<br>
<span class="sub-text text-slide-in animate">With Free Installation & Free
Inspection</span>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button hover-button-space zoom-out animate" id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<a href="https://wa.me/918074514411?text=Hi%20There!" target="_blank">
<button class="hover-button-r zoom-out animate" id="myButton">
Get A Free Estimate
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</button>
</a>
</div>
</p>
</div>
</div>
<!-- Dots for navigation -->
<div class="dots">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
<span class="dot" onclick="currentSlide(4)"></span>
<span class="dot" onclick="currentSlide(5)"></span>
<span class="dot" onclick="currentSlide(6)"></span>
<span class="dot" onclick="currentSlide(7)"></span>
</div>
</div>
</section>
<!-- hero section end -->
<!-- about us start -->
<div class="about">
<div class="about-left anime">
<h3 class="section-title">Welcome to RJR Safety Nets in Bangalore </h3>
<p class="about-text">RJR SAFETY NETS Bangalore is one of the Best and leading company in providing
different safety nets along with valuable services. It provides safety netting solutions for
different industrial, commercial and household sectors. The nets are categorized under Bird
protection nets, Monkey safety nets , Balcony safety nets, Sports nets, Construction safety
nets,Coconut safety nets, Duct area safety nets, Anti bird spikes, Mosquito nets and other nets.
For
all the kinds of Safety Nets Bangalore, Call RJR SAFETY NETS now at <a href="tel:+91 7075051812">+91
7075051812</a> or <a href="tel:+91 8074514411">+91 8074514411</a>. RJR SAFETY NETS Bangalore
is
expert in installing Balcony Safety Nets Bangalore,
Pigeon
Safety Nets Bangalore. We can help you with any kind of safety nets with premium quality at an
affordable price.</p>
</div>
<div class="about-right anime">
<img class="about-img" src="images/logo/logo-home-welcome.png" alt="abouot us">
</div>
</div>
<!-- about us end -->
<!-- services start -->
<div class="services" id="services">
<!-- <h1>Safety Nets for All Needs</h1> -->
<h3 class="section-title ">Our Services</h3>
<div class="services-container">
<div class="services-box anime">
<div class="services-img-box">
<a href="Balcony-Safety-Nets/">
<img class="services-img" height="180px" width="260px" src="images/balcony.jpg"
alt="Balcony Safety Nets" class="card-img" /></a>
</div>
<h3 class="services-title">Balcony Safety Nets</h3>
<p class="services-text">
Balcony safety net is used to prevent unwanted situation in buildings.. Where unexpected
falling
from balcony leads people life risky.. It makes people tension free, never feel fear to
stay
in
high
building
</p>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button-service hover-button-service-space zoom-out animate"
id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<a href="Balcony-Safety-Nets/">
<button class="hover-button-service-r zoom-out animate" id="myButton">
Explore More
<i class="fa-solid fa-arrow-right"></i>
</button>
</a>
</div>
</div>
<div class="services-box anime">
<div class="services-img-box">
<a href="Pigeon-Safety-Nets/">
<img class="services-img" height="180px" width="260px" src="images/pigeon-safety-nets.jpg"
alt="Pigeon Safety Nets" class="card-img" /></a>
</div>
<h3 class="services-title">Pigeon Safety Nets</h3>
<p class="services-text">
Pigeon Safety Nets. We are face several problems with pigeons / birds in our places like
hospitals, factories, apartments and hotels. Our team experts are specialized in
manufacturing nets & installing staffs.
</p>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button-service hover-button-service-space zoom-out animate"
id="myButton">
<i class="fa-solid fa-phone"></i>
view more
</button>
</a>
<a href="Pigeon-Safety-Nets/">
<button class="hover-button-service-r zoom-out animate" id="myButton">
Explore More
<i class="fa-solid fa-arrow-right"></i>
</button>
</a>
</div>
</div>
<div class="services-box anime">
<div class="services-img-box">
<a href="Cricket-Practice-Nets/">
<img class="services-img" height="180px" width="260px" src="images/cricket-nets.jpg"
alt="Cricket Practice Nets" class="card-img" /></a>
</div>
<h3 class="services-title">Cricket Practice Nets
</h3>
<p class="services-text">
They are essential for honing your batting and bowling skills. Designed for both indoor and
outdoor use, our nets are crafted from high-quality materials to withstand rigorous practice
sessions.
</p>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button-service hover-button-service-space zoom-out animate"
id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<a href="Cricket-Practice-Nets/">
<button class="hover-button-service-r zoom-out animate" id="myButton">
Explore More
<i class="fa-solid fa-arrow-right"></i>
</button>
</a>
</div>
</div>
<div class="services-box anime">
<div class="services-img-box">
<a href="Pigeon-Safety-Nets/">
<img class="services-img" height="180px" width="260px"
src="images/Coconut-Tree-Safety-Nets.jpg" alt="Cricket Practice Nets"
class="card-img" /></a>
</div>
<h3 class="services-title">Coconut Protection Nets</h3>
<p class="services-text">
Coconut Tree Safety Nets designed to protect people and property from falling coconuts. These
nets are durable, weatherproof and UV-resistant, and installed with expertise to ensure safety
</p>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button-service hover-button-service-space zoom-out animate"
id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<a href="Cricket-Practice-Nets/">
<button class="hover-button-service-r zoom-out animate" id="myButton">
Explore More
<i class="fa-solid fa-arrow-right"></i>
</button>
</a>
</div>
</div>
<div class="services-box anime">
<div class="services-img-box">
<a href="Balcony-Safety-Nets/">
<img class="services-img" height="180px" width="260px"
src="images/Construction Safety Nets-2.jpg" alt="Balcony Safety Nets"
class="card-img" /></a>
</div>
<h3 class="services-title">Construction Safety Nets</h3>
<p class="services-text">
Ensure worker safety at heights without compromising on efficiency. Our nets are rigorously
tested for durability and reliability, meeting industry standards for protection and peace
of mind.
</p>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button-service hover-button-service-space zoom-out animate"
id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<a href="Balcony-Safety-Nets/">
<button class="hover-button-service-r zoom-out animate" id="myButton">
Explore More
<i class="fa-solid fa-arrow-right"></i>
</button>
</a>
</div>
</div>
<div class="services-box anime">
<div class="services-img-box">
<a href="Children's-Safety-Nets/">
<img class="services-img" height="180px" width="260px" src="images/children.jpg"
alt="Children's Safety Nets" class="card-img" /></a>
</div>
<h3 class="services-title">Children Safety Nets</h3>
<p class="services-text">
Our products can do child proof at most every window & balcony. For another layer of balcony
safety nets consider installing restrictions on your balcony doors, preventing kids from
going out onto the balcony alone.
</p>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button-service hover-button-service-space zoom-out animate"
id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<a href="Children's-Safety-Nets/">
<button class="hover-button-service-r zoom-out animate" id="myButton">
Explore More
<i class="fa-solid fa-arrow-right"></i>
</button>
</a>
</div>
</div>
<div class="services-box anime">
<div class="services-img-box">
<a href="Monkey-Safety-Nets/">
<img class="services-img" height="180px" width="260px" src="images/monkey Safety Nets.jpg"
alt="Monkey Safety Nets" class="card-img" /></a>
</div>
<h3 class="services-title">Monkey Safety Nets</h3>
<p class="services-text">
Monkey safety nets is basically used for avoiding monkey and other animals trespassing
your
areas.
Monkey or other kind of animals play and live on trees branches. They can easily
grab things through windows.
</p>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button-service hover-button-service-space zoom-out animate"
id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<a href="Monkey-Safety-Nets/">
<button class="hover-button-service-r zoom-out animate" id="myButton">
Explore More
<i class="fa-solid fa-arrow-right"></i>
</button>
</a>
</div>
</div>
<div class="services-box anime">
<div class="services-img-box">
<a href="Balcony-Safety-Nets/">
<img class="services-img" height="180px" width="260px" src="images/brids-safty-nets.jpeg"
alt="Balcony Safety Nets" class="card-img" /></a>
</div>
<h3 class="services-title">Building Safety Nets</h3>
<p class="services-text">
If any protest happening near the building, there might be the chance that someone may throw
stones on glass buildings which cost in heavily, to avoid such thing glass safety nets are
used.
</p>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button-service hover-button-service-space zoom-out animate"
id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<a href="Balcony-Safety-Nets/">
<button class="hover-button-service-r zoom-out animate" id="myButton">
Explore More
<i class="fa-solid fa-arrow-right"></i>
</button>
</a>
</div>
</div>
<div class="services-box anime">
<div class="services-img-box">
<a href="Pigeon-Safety-Nets/">
<img class="services-img" height="180px" width="260px"
src="images/duct-area-safety-nets.jpg" alt="Pigeon Safety Nets" class="card-img" /></a>
</div>
<h3 class="services-title">Duct Area Safety Nets</h3>
<p class="services-text">
Duct area safety nets are used to secure empty spaces between buildings in apartments and
toprevent people and objects from getting hurt by falling or flying objects. ~ RJR Safety
Nets
</p>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button-service hover-button-service-space zoom-out animate"
id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<a href="Pigeon-Safety-Nets/">
<button class="hover-button-service-r zoom-out animate" id="myButton">
Explore More
<i class="fa-solid fa-arrow-right"></i>
</button>
</a>
</div>
</div>
<div class="services-box anime">
<div class="services-img-box">
<a href="Pigeon-Safety-Nets/">
<img class="services-img" height="180px" width="260px" src="images/Anti-Bird-Spikes.jpg"
alt="Pigeon Safety Nets" class="card-img" /></a>
</div>
<h3 class="services-title">Anti Bird Spikes</h3>
<p class="services-text">
Anti Bird Nets is to prevent from pigeon making shelters in buildings and dirtying place..
It
prevents entering birds or pigeons making unhealthy situation. Install pigeon nets for make
your
premises clean.
</p>
<div class="button-container">
<a href="tel:7075051812">
<button class="hover-button-service hover-button-service-space zoom-out animate"
id="myButton">
<i class="fa-solid fa-phone"></i>
Call Now
</button>
</a>
<a href="Pigeon-Safety-Nets/">
<button class="hover-button-service-r zoom-out animate" id="myButton">
Explore More
<i class="fa-solid fa-arrow-right"></i>
</button>
</a>
</div>
</div>
</div>
</div>
<!-- services end -->
<!-- counters box -->
<div class="full-counters-container">
<h3 class="section-title ">Our Achievements</h3>
<div class="counters-container anime">
<div class="counter-box anime">
<h2 class="counter" data-target="1423">0+</h2>
<p>Happy Clients</p>
</div>
<div class="counter-box anime">
<h2 class="counter" data-target="8">0+</h2>
<p>Years Experience</p>
</div>
<div class="counter-box anime">
<h2 class="counter" data-target="1500">0+</h2>
<p>Projects</p>
</div>
<div class="counter-box anime">
<h2 class="counter" data-target="28">0+</h2>
<p>Our Team</p>
</div>
</div>
</div>
<script>let updateCounter = (counter) => {
const target = +counter.getAttribute('data-target'); // Get the target number from data-target
const count = +counter.innerText.replace('+', ''); // Get the current number
const speed = 110; // Adjust the speed of the counting
const increment = target / speed; // Calculate increment
if (count < target) {
counter.innerText = `${Math.ceil(count + increment)}+`; // Update counter value
setTimeout(() => updateCounter(counter), 20); // Repeat every 20ms
} else {
counter.innerText = `${target}+`; // Set the final value
}
};
// Function to start counting on all counters
let startCounting = () => {
const counters = document.querySelectorAll('.counter');
counters.forEach(counter => {
updateCounter(counter); // Start counting each counter
});
};
// IntersectionObserver callback function
const sectionObserverCallback = (entries, observer) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
startCounting(); // Start counting when section is visible
observer.unobserve(entry.target); // Stop observing after counting
}
});
};
// Create IntersectionObserver to watch the entire section
const sectionObserverOptions = {
threshold: 0.1 // Trigger when 10% of the section is visible
};
const sectionObserver = new IntersectionObserver(sectionObserverCallback, sectionObserverOptions);
// Observe the entire section container
const section = document.querySelector('.full-counters-container');
sectionObserver.observe(section);
</script>
<!-- counters box -->
<!-- main box start -->
<div class="main-boxes ">
<h3 class="section-title ">why to choose us?</h3>
<div class="parent-boxes ">
<div class="box-1 anime">
<img class="box-1-img" height="80px" width="60px" src="images/quality-rem.png" alt="quality">
<h3 class="box-1-title">Quality</h3>
<p class="box-1-text">We use high quality nylon nets for strong and long lasting safety
nets.
</p>
</div>
<div class="box-1 anime">
<img class="box-1-img" height="80px" width="60px" src="images/safty-rem.png" alt="Safety">
<h3 class="box-1-title">Safety</h3>
<p class="box-1-text">Safeguarding Your World with Unmatched Excellence.</p>
</div>
<div class="box-1 anime">
<img class="box-1-img" height="80px" width="60px" src="images/time-rem.png" alt="Timely Work">
<h3 class="box-1-title">Timely Work</h3>
<p class="box-1-text">Excellence Delivered Right on Time.</p>
</div>
</div>
</div>
<!-- main boxs end-->
<!-- client reveiw start -->
<div class="client-review">
<h3 class="section-title">Client Reviews</h3>
<div class="carousel">
<div class="group">
<div class="bubble">
<blockquote>The Balcony Safety Net installation was flawless! It provides complete peace
of
mind
for
my family, especially with kids around. It blends well with the design of the
balcony,
and
the
quality is top-notch! </blockquote>
<div></div>
<cite> John D.</cite>
</div>
<div class="bubble">
<blockquote>I’m so happy with the Balcony Safety Net! We live on the 8th floor, and it’s
a
relief
knowing that our pets are safe now. The installation was quick, and the team was
extremely
professional. </blockquote>
<div></div>
<cite> Sarah K.</cite>
</div>
<div class="bubble">
<blockquote>The Building Safety Net was a lifesaver for our construction site. It
prevented
several
accidents during ongoing work. Highly durable, and the installation team was very
efficient.
</blockquote>
<div></div>
<cite>Rajesh P.</cite>
</div>
</div>
<!-- Add `aria-hidden` to hide the duplicated cards from screen readers. -->
<div aria-hidden class="group">
<div class="bubble">
<blockquote>As a building manager, safety is my top priority, and these Building Safety
Nets
exceeded my expectations. They’re sturdy and give me confidence that our workers are
protected
at all times. </blockquote>
<div></div>
<cite> Megha R.</cite>
</div>
<div class="bubble">
<blockquote>The Monkey Safety Net has saved our home from daily visits by monkeys! It’s
a
simple
but
effective solution, and we haven’t had a single issue since the installation.
</blockquote>
<div></div>
<cite> Arjun S</cite>
</div>
<div class="bubble">
<blockquote>We installed the Monkey Safety Net on our terrace, and it works like a