-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
1048 lines (889 loc) · 54.8 KB
/
about.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 -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="keywords" content="" />
<meta name="author" content="" />
<meta name="robots" content="" />
<meta name="description" content="" />
<!-- FAVICONS ICON -->
<link rel="icon" href="images/Anil Logo - favicn.png" type="image/x-icon" />
<link rel="shortcut icon" type="image/x-icon" href="images/Anil Logo - favicn.png" />
<!-- PAGE TITLE HERE -->
<title>Anil Brothers</title>
<!-- MOBILE SPECIFIC -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- BOOTSTRAP STYLE SHEET -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<!-- FONTAWESOME STYLE SHEET -->
<link rel="stylesheet" type="text/css" href="css/fontawesome/css/font-awesome.min.css" />
<!-- OWL CAROUSEL STYLE SHEET -->
<link rel="stylesheet" type="text/css" href="css/owl.carousel.min.css">
<!-- BOOTSTRAP SLECT BOX STYLE SHEET -->
<link rel="stylesheet" type="text/css" href="css/bootstrap-select.min.css">
<!-- MAGNIFIC POPUP STYLE SHEET -->
<link rel="stylesheet" type="text/css" href="css/magnific-popup.min.css">
<!-- LOADER STYLE SHEET -->
<link rel="stylesheet" type="text/css" href="css/loader.min.css">
<!-- MAIN STYLE SHEET -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- FLATICON STYLE SHEET -->
<link rel="stylesheet" type="text/css" href="css/flaticon.min.css">
<!-- IMAGE POPUP -->
<link rel="stylesheet" type="text/css" href="css/lc_lightbox.css" />
<!-- THEME COLOR CHANGE STYLE SHEET -->
<link rel="stylesheet" class="skin" type="text/css" href="css/skin/skin-2.css">
<!-- SIDE SWITCHER STYLE SHEET -->
<link rel="stylesheet" type="text/css" href="css/switcher.css">
<!-- REVOLUTION SLIDER CSS -->
<link rel="stylesheet" type="text/css" href="plugins/revolution/revolution/css/settings.css">
<!-- REVOLUTION NAVIGATION STYLE -->
<link rel="stylesheet" type="text/css" href="plugins/revolution/revolution/css/navigation.css">
<!-- GOOGLE FONTS -->
<link href="https://fonts.googleapis.com/css?family=Teko:300,400,500,600,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700,900&display=swap" rel="stylesheet">
<script type="text/javascript"
src="https://gc.kis.v2.scr.kaspersky-labs.com/FD126C42-EBFA-4E12-B309-BB3FDD723AC1/main.js?attr=Tj90TvJh2WzzhCPfe9BAfPpJDODzt5bffmOZTjSxtDRCaSpQaKpmD4oRgL8eVHDMm7dA5UgkJF49t4vugD-IOQ"
charset="UTF-8"></script>
</head>
<body>
<div class="page-wraper">
<!-- HEADER START -->
<header class="site-header header-style-4 mobile-sider-drawer-menu wide-navigation">
<div class="top-bar">
<div class="container">
</div>
</div>
<div class="sticky-header main-bar-wraper navbar-expand-lg">
<div class="main-bar">
<div class="container clearfix">
<div class="logo-header">
<div class="logo-header-inner logo-header-one">
<a href="index.html">
<img src="images/Anil Logo - transperent.svg" alt="" />
</a>
</div>
</div>
<!-- NAV Toggle Button -->
<button id="mobile-side-drawer" data-target=".header-nav" data-toggle="collapse" type="button"
class="navbar-toggler collapsed">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar icon-bar-first"></span>
<span class="icon-bar icon-bar-two"></span>
<span class="icon-bar icon-bar-three"></span>
</button>
<!-- MAIN Vav -->
<div class="nav-animation header-nav navbar-collapse collapse d-flex justify-content-center">
<ul class=" nav navbar-nav">
<li><a href="index.html">Home</a>
</li>
<li><a href="#">About</a>
<!-- <ul class="sub-menu">
<li><a href="about-1.html">About 1</a></li>
<li><a href="about-2.html">About 2</a></li>
</ul> -->
</li>
<li><a href="product.html">Products</a>
<!-- <ul class="sub-menu">
<li><a href="project-grid.html">Project Grid</a></li>
<li><a href="project-masonry.html">Project Masonry</a></li>
<li><a href="project-carousel.html">Project Carousel</a></li>
<li><a href="project-detail.html">Project Detail</a>
</ul> -->
</li>
<li><a href="#service-us">Services</a>
<!-- <ul class="sub-menu">
<li><a href="services-1.html">Services one</a></li>
<li><a href="services-2.html">Services Two</a></li>
<li><a href="s-agricultural.html">Agricultural Automation</a></li>
<li><a href="s-automotive.html">Automotive Manufacturing</a></li>
<li><a href="s-chemical.html">Chemical Research</a></li>
<li><a href="s-civil.html">Civil Engineering</a></li>
<li><a href="s-mechanical.html">Mechanical Engineering</a></li>
<li><a href="s-oilgas.html">Oil & Gas Engineering</a></li>
<li><a href="s-power-energy.html">Power & Energy Sector</a></li>
</ul> -->
</li>
<li><a href="#contact-us">Contact</a>
<!-- <ul class="sub-menu">
<li><a href="product.html">Shop</a></li>
<li><a href="product-detail.html">Shop Detail</a></li>
<li><a href="shopping-cart.html">Shopping Cart</a></li>
<li><a href="checkout.html">Checkut</a></li>
<li><a href="wish-list.html">Wishlist</a></li>
</ul> -->
</li>
</ul>
</div>
<!-- SITE Search -->
<div id="search-toggle-block">
<div id="search">
<form role="search" id="searchform" action="/search" method="get" class="radius-xl">
<div class="input-group">
<input class="form-control" value="" name="q" type="search"
placeholder="Type to search" />
<span class="input-group-append"><button type="button" class="search-btn"><i
class="fa fa-search"></i></button></span>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- HEADER END -->
<!-- CONTENT START -->
<div class="page-content">
<!-- front page starts-->
<div class="product-page-top">
<img src="images/about-us-handling.jpg" alt="">
</div>
<!-- front page end -->
<!-- Gallery First Start -->
<!-- <div class="gallery-index">
<div class="container">
<h2 style="text-align: center;">Products</h2>
<div class="gallery Ab-products">
<a href="product.html" target="_blank">
<div class="gallery-item">
<img src="https://lh3.googleusercontent.com/p/AF1QipM3lVHvo0PbyvStlbXCWhWmt8rRUf1TZIENhvz3=s1360-w1360-h1020" alt="Assembly Line Conveyor">
<h4>Trolly tools & machines</h4>
</div>
</a>
<a href="product.html" target="_blank">
<div class="gallery-item">
<img src="https://lh3.googleusercontent.com/p/AF1QipM3lVHvo0PbyvStlbXCWhWmt8rRUf1TZIENhvz3=s1360-w1360-h1020" alt="Assembly Line Conveyor">
<h4>Lifting tools and machines</h4>
</div>
</a>
<a href="product.html" target="_blank">
<div class="gallery-item">
<img src="https://lh3.googleusercontent.com/p/AF1QipM3lVHvo0PbyvStlbXCWhWmt8rRUf1TZIENhvz3=s1360-w1360-h1020" alt="Assembly Line Conveyor">
<h4>Storage and Placers</h4>
</div>
</a>
</div>
</div>
<div class="products-btn">
<button name="submit" type="submit" value="Submit" class="site-button " style="text-align: center;"> <span>See more</span> </button>
</div>
</div> -->
<!-- About Us -->
<section id="about-us" class="about-sec">
<div class="section-full content-inner bg-white">
<div class="container about-sec">
<h2 style="text-align: center;">Who are we</h2>
<div class="about-row align-items-center">
<div class="col-lg-6 col-md-12 m-b30">
<div class="our-story">
<span style="font-size: 30px; font-weight: 600;">About us</span>
<h2 class="title">
<!-- Running a <br>successful business <br> -->
<span class="text-primary">since
1990</span>
</h2>
<!-- <h4 class="title">We are in the Industrial engineering which deals with the
industrial machining and process
optimization.</h4> -->
<p>
we have been helping customers with handling materials with ease. We specialize
at offering various
companies and industries with specialized Material Handling Tools and Solutions
so they can run their
operation efficiently.
</p>
<p>
With over 40 years of experience in the area, our company, "Anil Brothers," This
is a well-known
establishment being one-stop destination servicing customers across India. We
are known to provide
top notch service in the wider range of categories such as Material Handling
Equipment and much more.
</p>
<p>
Our company has been running for more than four decades and earned the trust of
all of our clients
and gained a remarkable position in the market for excellent servicing
manufacturing these products
and this has also helped us in maintaining a long-term relationship with our
clients
</p>
</div>
</div>
<div class="col-lg-6 col-md-12 m-b30 our-story-thum">
<img src="images/about-us-page-sec.png" class="radius-sm" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- About Us End -->
<!-- What we do sec starts -->
<section>
<!-- <div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="#ff0000" fill-opacity="1" d="M0,128L1440,32L1440,320L0,320Z"></path></svg>
</div> -->
<div class="what-we-do-sec">
<h2>What we do</h2>
<div class="container wwe-content">
<div class="colum-wwe">
<div class="left-icon">
<span class="eos-icons--rotating-gear"></span>
</div>
<div class="right-para">
<p>
We are deep in the field of Material Handling Systems, Material Storages Solutions,
Pick
and Place systems and other handling related services for all the range of factories
and industries
</p>
</div>
</div>
<div class="colum-wwe">
<div class="left-icon">
<span class="vaadin--line-bar-chart"></span>
</div>
<div class="right-para">
<p>
No matter how dynamic your manufacturing process and workflows are, we are the
experts to provide
you customized solutions to optimize your work, cut down friction, reducing
manpower, less prone to
errors and running things cost effective.
</p>
</div>
</div>
<div class="colum-wwe">
<div class="left-icon">
<span class="fa-regular--handshake"></span>
</div>
<div class="right-para">
<p>
we have achieved a reputed position in the market to meet all our client
expectations and so do yours
too! Contact us!
</p>
</div>
</div>
</div>
</div>
<!-- <div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="#ff0000" fill-opacity="1" d="M0,128L1440,32L1440,0L0,0Z"></path></svg>
</div> -->
</section>
<!-- What we do sec Ends -->
<!-- Belt Section starts -->
<section class="belt-sec">
<div>
<h2 style="text-align: center;">What we Have</h2>
</div>
<div class="container belt-card">
<div class="card">
<h1>50+</h1>
<h4>employees</h4>
</div>
<div class="card">
<h1>40+</h1>
<h4>Years of Experience</h4>
</div>
<div class="card">
<h1>620+</h1>
<h4>Happy Clients</h4>
</div>
</div>
</section>
<!-- Belt Section Ends -->
<!-- Youtube section starts -->
<!-- youtube thumbnail starts -->
<!-- <section class="youtube-section" id="quick-start">
<div class="youtube-sec">
<div class="utube-video-div">
<div class="row m-0">
<div class="col-sm-12 text-center">
<iframe width="560" height="315"
src="https://www.youtube.com/embed/mQUBZ2UtkRo?si=RS1ylDEpdzZl66il"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
</iframe>
</div>
</div>
</div>
<div class="utube-box-div">
<h2 class="utube-head">Quick <span> Start</span></h2>
<p>Established in the year 2016, we "Anil Brothers" are the leading Manufacturer of Material
Handling Equipments, Material Storage Systems, Material Conveying System, Material Pick &
Place Systems, Other Customized Products Service to our valued clients.</p>
</div>
</div>
</section> -->
<!-- How we do section starts -->
<!-- How we do section Ends -->
<section class="container">
<div>
<h2 style="text-align: center; margin-bottom: 4%;">How are we</h2>
</div>
<div class="story-sec-div">
<div style="text-align: center;" class="without-AnilBrothers">
<h4>Without <span>Material handling</span> practice</h4>
<p>Struggling with inefficiencies? Manual processes <b>slow down</b> operations, leading to higher costs, errors, and <b>lost productivity</b>. <br> Managing inventory becomes a challenge, and growth is hindered by outdated methods.</p>
<div class="without-AB-img">
<img src="images/story/AB-thinking.png" alt="">
<img src="images/story/AB-without.png" alt="">
<img src="images/story/AB-without-rack.png" alt="">
<img src="images/story/AB-minus.png" alt="">
</div>
</div>
<div style="text-align: center;" class="with-AnilBrothers">
<h4>With material handling from <span>Anil brothers</span> </h4>
<p>Experience seamless efficiency! Our offer solutions to automate and optimize operations, reducing errors and maximizing productivity. <br> Streamline <b>Material handling</b> , improve inventory management, and drive <b>business success</b> effortlessly.</p>
<div class="with-AB-img">
<img src="images/story/AB-with.png" alt="">
<img src="images/story/AB-materialhandling.png" alt="">
<img src="images/story/AB-materialhandling-rack.png" alt="">
<img src="images/story/AB-stonks.png" alt="">
</div>
</div>
</div>
</section>
<section class="youtube-section" id="quick-start">
<div class="youtube-sec">
<div class="utube-video-div">
<div class="row m-0">
<div class="col-sm-12 text-center" style="position: relative;">
<!-- Thumbnail Image -->
<img src="images/YoutubeThumbnail1.png"
alt="YouTube Thumbnail" class="img-fluid"
style="cursor: pointer; border-radius: 15px; max-width: 100%; height: auto;" id="youtube-thumbnail">
<!-- Play Icon -->
<div id="play-button" style="position: absolute; top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgb(255 0 0 / 85%);
border-radius: 10%;
padding: 5px 20px;
cursor: pointer;
animation: pulse 1.5s infinite;">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="white"
viewBox="0 0 16 16">
<path
d="M10.804 8.673l-5.482 3.173A.802.802 0 0 1 4 11.174V4.826a.802.802 0 0 1 1.322-.672l5.482 3.173a.802.802 0 0 1 0 1.346z" />
</svg>
</div>
<!-- Placeholder for YouTube Video -->
<div id="youtube-video" style="display: none;">
<iframe width="560" height="315" src="" title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
</iframe>
</div>
</div>
</div>
</div>
<div class="utube-box-div">
<h2 class="utube-head">Quick <span> Start</span></h2>
<p>Established in the year 2016, we "Anil Brothers" are the leading Manufacturer of Material
Handling Equipments, Material Storage Systems, Material Conveying System, Material Pick
&
Place Systems, Other Customized Products Service to our valued clients.</p>
</div>
</div>
</section>
<!-- youtube thumbnail ends -->
<!-- Youtube section Ends -->
<!-- Client section starts -->
<section>
<div class="marquee-div">
<h2 style="text-align: center;">Our Clients</h2>
<div class="marquee">
<div class="marquee-content">
<div>
<img src="images/client-logo/jaquar.png" alt="Jaquar">
</div>
<div>
<img src="images/client-logo/lucas.png" alt="Lucas">
</div>
<div>
<img src="images/client-logo/roca.png" alt="Roca">
</div>
<div>
<img src="images/client-logo/wheels-india.png" alt="Wheels India">
</div>
<div>
<img src="images/client-logo/sundaram-fasteners.png" alt="Sundaram Fasteners">
</div>
<div>
<img src="images/client-logo/royal-enfield.png" alt="Royal Enfield">
</div>
<div>
<img src="images/client-logo/renault-nissan.png" alt="Renault Nissan">
</div>
<!-- Duplicate content for seamless scrolling -->
<div>
<img src="images/client-logo/jaquar.png" alt="Jaquar">
</div>
<div>
<img src="images/client-logo/lucas.png" alt="Lucas">
</div>
<div>
<img src="images/client-logo/roca.png" alt="Roca">
</div>
<div>
<img src="images/client-logo/wheels-india.png" alt="Wheels India">
</div>
<div>
<img src="images/client-logo/sundaram-fasteners.png" alt="Sundaram Fasteners">
</div>
<div>
<img src="images/client-logo/royal-enfield.png" alt="Royal Enfield">
</div>
<div>
<img src="images/client-logo/renault-nissan.png" alt="Renault Nissan">
</div>
</div>
</div>
</div>
</section>
<!-- Client section Ends -->
<div class="gallery-index">
</div>
</div>
<div id="modal" class="modal">
<span class="close" onclick="closeModal()">×</span>
<div class="modal-content">
<div class="modal-left">
<img id="modal-img" src="" alt="Modal Image">
</div>
<div class="modal-right">
<p id="modal-text"></p>
<button class="nav-btn" onclick="prevImage()">◀</button>
<button class="nav-btn" onclick="nextImage()">▶</button>
</div>
</div>
</div>
<!-- Gallery First End -->
<!-- Product Gallery second starts -->
<!-- <div class="gallery-second">
<article
style="--bg-img:url(https://lh3.googleusercontent.com/p/AF1QipM3lVHvo0PbyvStlbXCWhWmt8rRUf1TZIENhvz3=s1360-w1360-h1020)">
<button type="button" aria-label="open Vintage Analog Camera">
<img
src="https://lh3.googleusercontent.com/p/AF1QipM3lVHvo0PbyvStlbXCWhWmt8rRUf1TZIENhvz3=s1360-w1360-h1020"
alt="Vintage Analog Camera">
</button>
<div>
<h2>Vintage Analog Camera</h2>
<p>Photo by Elina Volkova from <a href="https://lh3.googleusercontent.com/p/AF1QipM3lVHvo0PbyvStlbXCWhWmt8rRUf1TZIENhvz3=s1360-w1360-h1020"
target="_blank">Pexels</a></p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Autem fugiat debitis voluptate et obcaecati ut,
veritatis ducimus nobis, nisi odit modi dolorem?</p>
<button type="button" data-close="" aria-label="close Vintage Analog Camera" tabindex="-1">✕</button>
</div>
</article>
<article
style="--bg-img:url(https://lh3.googleusercontent.com/p/AF1QipOaWkvYGN6SL-SsUiYm04hjCVGesM-gIETVtgUv=s1360-w1360-h1020)">
<button type="button">
<img
src="https://lh3.googleusercontent.com/p/AF1QipOaWkvYGN6SL-SsUiYm04hjCVGesM-gIETVtgUv=s1360-w1360-h1020"
alt="Image 2">
</button>
<div>
<h2>An Old Tricycle</h2>
<p>Photo by jovan curayag from <a href="https://lh3.googleusercontent.com/p/AF1QipOaWkvYGN6SL-SsUiYm04hjCVGesM-gIETVtgUv=s1360-w1360-h1020"
target="_blank">Pexels</a></p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Autem fugiat debitis voluptate et obcaecati ut,
veritatis ducimus nobis, nisi odit modi dolorem?</p>
<button type="button" data-close="" aria-label="close Sidecar" tabindex="-1">✕</button>
</div>
</article>
<article
style="--bg-img:url(https://lh3.googleusercontent.com/p/AF1QipP13-bKc96ZP_Gc__yutxwmry5_M3ZtxwPU2I6h=s1360-w1360-h1020)">
<button type="button">
<img
src="https://lh3.googleusercontent.com/p/AF1QipP13-bKc96ZP_Gc__yutxwmry5_M3ZtxwPU2I6h=s1360-w1360-h1020"
alt="Image ">
</button>
<div>
<h2>Old shabby unicycle hanging on brick wall</h2>
<p>Photo by Laker from <a href="https://lh3.googleusercontent.com/p/AF1QipP13-bKc96ZP_Gc__yutxwmry5_M3ZtxwPU2I6h=s1360-w1360-h1020"
target="_blank">Pexels</a></p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Autem fugiat debitis voluptate et obcaecati ut,
veritatis ducimus nobis, nisi odit modi dolorem?</p>
<button type="button" data-close="" aria-label="close Unicycle" tabindex="-1">✕</button>
</div>
</article>
<article
style="--bg-img:url(https://lh3.googleusercontent.com/p/AF1QipOdPmaMIdWYy1G22h95s_yZukJ3Z44Q056NEROe=s1360-w1360-h1020)">
<button type="button">
<img
src="https://lh3.googleusercontent.com/p/AF1QipOdPmaMIdWYy1G22h95s_yZukJ3Z44Q056NEROe=s1360-w1360-h1020"
alt="Image ">
</button>
<div>
<h2>Old fashioned red car left in woods</h2>
<p>Photo by Nandi Gustian from <a
href="https://www.pexels.com/photo/old-fashioned-red-car-left-in-woods-6691970/" target="_blank">Pexels</a>
</p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Autem fugiat debitis voluptate et obcaecati ut,
veritatis ducimus nobis, nisi odit modi dolorem?</p>
<button type="button" data-close="" aria-label="close red car" tabindex="-1">✕</button>
</div>
</article>
<article
style="--bg-img:url(https://lh3.googleusercontent.com/p/AF1QipNAVFCE-IuKxBlhWer0vvVQ7Y2qczW_ewSeCISH=s1360-w1360-h1020)">
<button type="button" aria-label="Open Rocking Chair">
<img
src="https://lh3.googleusercontent.com/p/AF1QipNAVFCE-IuKxBlhWer0vvVQ7Y2qczW_ewSeCISH=s1360-w1360-h1020"
alt="Image ">
</button>
<div>
<h2>Rocking chair on shabby wooden porch</h2>
<p>Photo by Erik Mclean from <a
href="https://www.pexels.com/photo/rocking-chair-on-shabby-wooden-porch-7561182/" target="_blank">Pexels</a>
</p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Autem fugiat debitis voluptate et obcaecati ut,
veritatis ducimus nobis, nisi odit modi dolorem?</p>
<button type="button" data-close="" aria-label="close Rocking Chair" tabindex="-1">✕</button>
</div>
</article>
<article
style="--bg-img:url(https://lh3.googleusercontent.com/p/AF1QipPhKFimTpg2CKnb97aOcOR6aPVYICBN8_PenZlk=s1360-w1360-h1020)">
<button type="button" aria-label="open Phone">
<img
src="https://lh3.googleusercontent.com/p/AF1QipPhKFimTpg2CKnb97aOcOR6aPVYICBN8_PenZlk=s1360-w1360-h1020"
alt="Image ">
</button>
<div>
<h2>Old metal public payphone hanging on shabby wall</h2>
<p>Photo by Darya Sannikova from <a
href="https://www.pexels.com/photo/old-metal-public-payphone-hanging-on-shabby-wall-4575426/"
target="_blank">Pexels</a>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Autem fugiat debitis voluptate et obcaecati ut,
veritatis ducimus nobis, nisi odit modi dolorem?</p>
<button type="button" data-close="" aria-label="close Phone" tabindex="-1">✕</button>
</div>
</article>
<article
style="--bg-img:url(https://lh3.googleusercontent.com/p/AF1QipP7tU9kA5UGoFSZAz18gx9IVTnLy1bhsJfAuVSx=s1360-w1360-h1020)">
<button type="button" aria-label="open Phone">
<img
src="https://lh3.googleusercontent.com/p/AF1QipP7tU9kA5UGoFSZAz18gx9IVTnLy1bhsJfAuVSx=s1360-w1360-h1020"
alt="Image ">
</button>
<div>
<h2>Old metal public payphone hanging on shabby wall</h2>
<p>Photo by Darya Sannikova from <a
href="https://www.pexels.com/photo/old-metal-public-payphone-hanging-on-shabby-wall-4575426/"
target="_blank">Pexels</a>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Autem fugiat debitis voluptate et obcaecati ut,
veritatis ducimus nobis, nisi odit modi dolorem?</p>
<button type="button" data-close="" aria-label="close Phone" tabindex="-1">✕</button>
</div>
</article>
<article
style="--bg-img:url(https://lh3.googleusercontent.com/p/AF1QipNBUxkJOYOpZqMBcfLQiG9Wk1RvFyvVEgEdXE23=s1360-w1360-h1020)">
<button type="button" aria-label="open Phone">
<img
src="https://lh3.googleusercontent.com/p/AF1QipNBUxkJOYOpZqMBcfLQiG9Wk1RvFyvVEgEdXE23=s1360-w1360-h1020"
alt="Image ">
</button>
<div>
<h2>Old metal public payphone hanging on shabby wall</h2>
<p>Photo by Darya Sannikova from <a
href="https://www.pexels.com/photo/old-metal-public-payphone-hanging-on-shabby-wall-4575426/"
target="_blank">Pexels</a>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Autem fugiat debitis voluptate et obcaecati ut,
veritatis ducimus nobis, nisi odit modi dolorem?</p>
<button type="button" data-close="" aria-label="close Phone" tabindex="-1">✕</button>
</div>
</article>
</div> -->
<!-- Product Gallery Second END -->
<!-- FOOTER START -->
<footer class="site-footer footer-large footer-dark text-white footer-style3">
<!-- FOOTER BLOCKES START -->
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="widget widget_about">
<div class="logo-footer clearfix">
<a href="index.html"><img src="images/Anil Logo - transperent.svg" alt=""></a>
</div>
<!-- <p>Anil brothers, based in Chennai since 1990, offer innovative solutions for material handling products and tools to optimize manufacturing processes, reduce costs, and improve workflow efficiency.</p> -->
<p>Anil Brothers | Chennai | Since 1990
Innovative material handling solutions to optimize manufacturing & workflow efficiency.
</p>
</div>
<div class="widget recent-posts-entry">
<ul class="widget_address">
<li><i class="fa-map-marker"></i>Office no. 4, New Street, Balaji Nagar, Ambattur Industrial Estate, Ambattur, Chennai - 600053.
</li>
<li a><i class="fa-envelope"></i>[email protected]</li>
<li> <i class="fa-phone"></i>+91-9087731601,+91-9841263401 </li>
</ul>
<div class="products-btn footer-btn">
<a href="index.html#contact-us" class="site-button" style="color: #fff; justify-content: flex-start;"> <span>Contact US</span> </a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="widget widget_services">
<h3 class="widget-title">Site map</h3>
<ul>
<li><a href="#">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="index.html#service-us">Services</a></li>
<li><a href="product.html">Products</a></li>
<li><a href="index.html#contact-us">Contact</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="widget widget_services">
<h3 class="widget-title">Our Services</h3>
<ul>
<li><a href="index.html#service-us">Research and Development</a></li>
<li><a href="index.html#service-us">Consulting</a></li>
<li><a href="index.html#service-us">Designing</a></li>
<li><a href="index.html#service-us">Process Optimizing</a></li>
<li><a href="index.html#service-us">Procurement</a></li>
<li><a href="index.html#service-us">Manpower</a></li>
<li><a href="index.html#service-us">Training</a></li>
<li><a href="index.html#service-us">Testing and QC</a></li>
<li><a href="index.html#service-us">Other related services</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="widget widget_services">
<h3 class="widget-title">Our Products</h3>
<ul>
<li><a href="product.html#Trolleytoolsandmachines">Material Handling equipment</a></li>
<li><a href="product.html#Liftingtoolsandmachines">Material Storage systems</a></li>
<li><a href="product.html#StorageandPlacers">Material Handling Conveyors</a></li>
<li><a href="product.html#Conveyorsystems">Pick and Place Systems</a></li>
<li><a href="product.html#Pickandplacesystems">Other Products</a></li>
<!-- <li><a href="product.html#Skimmers">Skimmers</a></li>
<li><a href="product.html#Othertoolsandservices">Other tools and services</a></li> -->
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- FOOTER COPYRIGHT -->
<div class="footer-bottom">
<div class="container">
<div class="wt-footer-bot-left d-flex justify-content-between">
<span class="copyrights-text">Copyright © 2020 <span
class="site-text-primary">Anil Brothers</span></span>
<ul class="copyrights-nav">
<li><a href="http://dedede.io" target="_blank">Made with love by dedede.io</a></li>
<li><a href="mailto:[email protected]">Contact Us</a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- FOOTER END -->
<!-- Get In Touch -->
<div class="contact-slide-hide bg-cover bg-no-repeat" style="background-image:url(images/background/bg-7.jpg)">
<div class="contact-nav">
<a href="javascript:void(0)" class="contact_close">×</a>
<div class="contact-nav-form">
<div class="contact-nav-info bg-white p-a30 bg-center bg-no-repeat"
style="background-image:url(images/background/bg-map2.png);">
<div class="row">
<div class="col-lg-4 col-md-4">
<div class="contact-nav-media-section">
<div class="contact-nav-media">
<img src="images/self-pic.png" alt="">
</div>
</div>
</div>
<div class="col-lg-8 col-md-8">
<form class="cons-contact-form" method="post" action="form-handler2.php">
<div class="m-b30">
<!-- TITLE START -->
<h2 class="m-b30">Get In Touch</h2>
<!-- TITLE END -->
<div class="row">
<div class="col-md-6 col-sm-6">
<div class="form-group">
<input name="username" type="text" required class="form-control"
placeholder="Name">
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="form-group">
<input name="email" type="text" class="form-control" required
placeholder="Email">
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="form-group">
<input name="phone" type="text" class="form-control" required
placeholder="Phone">
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="form-group">
<input name="subject" type="text" class="form-control" required
placeholder="Subject">
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<textarea name="message" class="form-control" rows="4"
placeholder="Message"></textarea>
</div>
</div>
<div style=" display: flex; justify-content: center;">
<button type="submit" class="site-button site-btn-effect">Submit
Now</button>
</div>
</div>
</div>
</form>
<div class="contact-nav-inner text-black">
<!-- TITLE START -->
<h2 class="m-b30">Contact Info</h2>
<!-- TITLE END -->
<div class="row">
<div class="col-lg-4 col-md-12">
<div class="wt-icon-box-wraper left icon-shake-outer">
<div class="icon-content">
<h4 class="m-t0">Phone number</h4>
<p>(456) 789 10 12</p>
<p>(456) 789 10 15</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12">
<div class="wt-icon-box-wraper left icon-shake-outer">
<div class="icon-content">
<h4 class="m-t0">Email address</h4>
<p>[email protected]</p>
<p>[email protected]</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12">
<div class="wt-icon-box-wraper left icon-shake-outer">
<div class="icon-content">
<h4 class="m-t0">Address info</h4>
<p>1363-1385 Sunset Blvd Los Angeles</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- BUTTON TOP START -->
<!-- <button class="scroltop"><span class="fa fa-angle-up relative" id="btn-vibrate"></span></button> -->
</div>
<!-- LOADING AREA START ===== -->
<!-- <div class="loading-area">
<div class="loading-box"></div>
<div class="loading-pic">
<div class="loader">
<span class="block-1"></span>
<span class="block-2"></span>
<span class="block-3"></span>
<span class="block-4"></span>
<span class="block-5"></span>
<span class="block-6"></span>
<span class="block-7"></span>
<span class="block-8"></span>
<span class="block-9"></span>
<span class="block-10"></span>
<span class="block-11"></span>
<span class="block-12"></span>
<span class="block-13"></span>
<span class="block-14"></span>
<span class="block-15"></span>
<span class="block-16"></span>
</div>
</div>
</div> -->
<!-- LOADING AREA END ====== -->
<!-- <script>
// JavaScript to replace the thumbnail with the YouTube iframe
document.getElementById('youtube-thumbnail').addEventListener('click', function() {
const videoDiv = document.getElementById('youtube-video');
const iframe = videoDiv.querySelector('iframe');
// Set the YouTube video URL with autoplay enabled
iframe.src = 'https://www.youtube.com/embed/mQUBZ2UtkRo?autoplay=1&si=RS1ylDEpdzZl66il';
videoDiv.style.display = 'block'; // Show the video
this.style.display = 'none'; // Hide the thumbnail
});
</script> -->
<script>
// JavaScript to handle thumbnail click
document.getElementById('youtube-thumbnail').addEventListener('click', function () {
const videoDiv = document.getElementById('youtube-video');
const iframe = videoDiv.querySelector('iframe');
const playButton = document.getElementById('play-button');
// Set the YouTube video URL with autoplay enabled
iframe.src = 'https://www.youtube.com/embed/mQUBZ2UtkRo?autoplay=1&si=RS1ylDEpdzZl66il';
videoDiv.style.display = 'block'; // Show the video
this.style.display = 'none'; // Hide the thumbnail
playButton.style.display = 'none'; // Hide the play button
});
document.getElementById('play-button').addEventListener('click', function () {
const thumbnail = document.getElementById('youtube-thumbnail');
thumbnail.click(); // Trigger thumbnail click event
});
</script>
<!-- JAVASCRIPT FILES ========================================= -->
<script src="js/jquery-2.2.0.min.js"></script>
<!-- JQUERY.MIN JS -->