-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
915 lines (900 loc) · 56.8 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
<!doctype html>
<html lang="en">
<head>
<!--
/ Multipurpose: Free Template by FreeHTML5.co
/ Author: https://freehtml5.co
/ Facebook: https://facebook.com/fh5co
/ Twitter: https://twitter.com/fh5co
-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Document title -->
<title>Multipurpose</title>
<!-- Stylesheets & Fonts -->
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i%7CRajdhani:400,600,700"
rel="stylesheet">
<!-- Plugins Stylesheets -->
<link rel="stylesheet" href="https://ninjahck.github.io/SarawatiSteels/assets/css/loader/loaders.css">
<link rel="stylesheet" href="https://ninjahck.github.io/SarawatiSteels/assets/css/font-awesome/font-awesome.css">
<link rel="stylesheet" href="https://ninjahck.github.io/SarawatiSteels/assets/css/bootstrap.css">
<link rel="stylesheet" href="https://ninjahck.github.io/SarawatiSteels/assets/css/aos/aos.css">
<link rel="stylesheet" href="https://ninjahck.github.io/SarawatiSteels/assets/css/swiper/swiper.css">
<link rel="stylesheet" href="https://ninjahck.github.io/SarawatiSteels/assets/css/lightgallery.min.css">
<!-- Template Stylesheet -->
<link rel="stylesheet" href="https://ninjahck.github.io/SarawatiSteels/assets/css/style.css">
<!-- Responsive Stylesheet -->
<link rel="stylesheet" href="https://ninjahck.github.io/SarawatiSteels/assets/css/responsive.css">
</head>
<body>
<!-- Loader Start -->
<div class="css-loader">
<div class="loader-inner line-scale d-flex align-items-center justify-content-center"></div>
</div>
<!-- Loader End -->
<!-- Header Start -->
<header class="position-absolute w-100">
<div class="container">
<div class="top-header d-none d-sm-flex justify-content-between align-items-center">
<div class="contact">
<a href="tel:9215058219" class="tel"><i class="fa fa-phone" aria-hidden="true"></i>9215058219 , 7056717051,
9215058225</a>
<a href="mailto:[email protected]"><i class="fa fa-envelope"
aria-hidden="true"></i>[email protected]</a>
</div>
</div>
<nav class="navbar navbar-expand-md navbar-light">
<a class="navbar-brand" href="index.html"><img src="https://ninjahck.github.io/SarawatiSteels/assets/images/logo.png" alt="Multipurpose"></a>
<div class="group d-flex align-items-center">
<button class="navbar-toggler" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation"><span
class="navbar-toggler-icon"></span></button>
</div>
<div class="collapse navbar-collapse justify-content-end" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link" href="#">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#AboutUs">About Us</a></li>
<li class="nav-item"><a class="nav-link" href="#Whyus">Why Us?</a></li>
<li class="nav-item"><a class="nav-link" href="#Mission">Our Mission</a></li>
<li class="nav-item"><a class="nav-link" href="#PEB">PEB</a></li>
<li class="nav-item"><a class="nav-link" href="#Machines">Machines</a></li>
<li class="nav-item"><a class="nav-link" href="#Products">Our Products</a></li>
<li class="nav-item"><a class="nav-link" href="#Contact">Contact Us</a></li>
<li class="nav-item"><a class="nav-link" href="#Clients">Clients</a></li>
</ul>
</div>
</nav>
</div>
</header>
<!-- Header End -->
<!-- Hero Start -->
<section class="hero">
<div class="container">
<div class="row">
<div class="col-12 offset-md-1 col-md-11">
<div class="swiper-container hero-slider">
<div class="swiper-wrapper">
<div class="swiper-slide slide-content d-flex align-items-center">
<div class="single-slide">
<h1 data-aos="fade-right" data-aos-delay="200">Believe In <br> Building Relations
</h1>
<p data-aos="fade-right" data-aos-delay="600">Our Mision is to Achieve the highest
customer satisfaction & delight.Have mutual trust, respect, open
communication and transparency of action in all spheres of
activity.
</p>
<a data-aos="fade-right" data-aos-delay="900" href="#" class="btn btn-primary">See
More</a>
<a data-aos="fade-right" data-aos-delay="900" href="#" class="btn btn-primary">Get
Now</a>
</div>
</div>
<div class="swiper-slide slide-content d-flex align-items-center">
<div class="single-slide">
<h1 data-aos="fade-right" data-aos-delay="200">FABRICATOR & TRADER<br> Pre Engineered Buildings
Fabrication
</h1>
<p data-aos="fade-right" data-aos-delay="600">Live our Value with <br> Quality Integrity Technology Collaboration
Customer - Orientation.
</p>
<a data-aos="fade-right" data-aos-delay="900" href="#" class="btn btn-primary">See
More</a>
<a data-aos="fade-right" data-aos-delay="900" href="#" class="btn btn-primary">Get
Now</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Add Control -->
<span class="arr-left"><i class="fa fa-angle-left"></i></span>
<span class="arr-right"><i class="fa fa-angle-right"></i></span>
</div>
<div class="texture"></div>
<div class="diag-bg"></div>
</section>
<!-- Hero End -->
<!-- Call To Action Start -->
<a name="Whyus"></a>
<section class="cta" data-aos="fade-up" data-aos-delay="0">
<div class="container">
<div class="cta-content d-xl-flex align-items-center justify-content-around text-center text-xl-left">
<div class="content" data-aos="fade-right" data-aos-delay="200">
<h2> Fabrication, Erection & Construction Company</h2>
<p>Modern machineries to produce architectural steels</p>
</div>
<div class="subscribe-btn" data-aos="fade-left" data-aos-delay="400" data-aos-offset="0">
<a href="#" class="btn btn-primary">Know More</a>
</div>
</div>
</div>
</section>
<!-- Call To Action End -->
<!-- Services Start -->
<section class="services">
<div class="container">
<div class="title text-center">
<h6>Our Speakers</h6>
<h1 class="title-blue">Why Choose Us</h1>
</div>
<div class="container">
<div class="row">
<div class="col-sm-6 col-lg-4">
<div class="media" data-aos="fade-up" data-aos-delay="200" data-aos-duration="400">
<img class="mr-4" src="https://ninjahck.github.io/SarawatiSteels/assets/images/service1.png" alt="Web Development">
<div class="media-body">
<h5>Quality</h5>
Experience of 28 Years in the steel Industry, With so much of exeperience
We assure a good quality of products with global standards.
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="media" data-aos="fade-up" data-aos-delay="400" data-aos-duration="600">
<img class="mr-4" src="https://ninjahck.github.io/SarawatiSteels/assets/images/service2.png" alt="Web Development">
<div class="media-body">
<h5>Raw Material</h5>
We source raw material from the leading manufacturers in the world of supply it to the foremost industries
& customers in india & the world .
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="media" data-aos="fade-up" data-aos-delay="600" data-aos-duration="800">
<img class="mr-4" src="https://ninjahck.github.io/SarawatiSteels/assets/images/service3.png" alt="Web Development">
<div class="media-body">
<h5>Customers Leading Edge</h5>
We strive to keep our customers on the leading edge now and in
future.
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="media" data-aos="fade-up" data-aos-delay="200" data-aos-duration="400">
<img class="mr-4" src="https://ninjahck.github.io/SarawatiSteels/assets/images/service4.png" alt="Web Development">
<div class="media-body">
<h5>Modern style</h5>
We match the current Modern Style and Pattern.
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="media" data-aos="fade-up" data-aos-delay="400" data-aos-duration="600">
<img class="mr-4" src="https://ninjahck.github.io/SarawatiSteels/assets/images/service1.png" alt="Web Development">
<div class="media-body">
<h5>Quantity</h5>
No quantity too big or too small to deliver & service for us.
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="media" data-aos="fade-up" data-aos-delay="600" data-aos-duration="800">
<img class="mr-4" src="https://ninjahck.github.io/SarawatiSteels/assets/images/service5.png" alt="Web Development">
<div class="media-body">
<h5>Expectation</h5>
We always try to live up a little higher than our customers
expectations.
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services End -->
<!-- Featured Start -->
<a name="AboutUs"></a>
<section class="featured">
<div class="container">
<div class="row">
<div class="col-md-6" data-aos="fade-right" data-aos-delay="400" data-aos-duration="800">
<div class="title">
<h6 class="title-primary">about Us</h6>
<h1 class="title-blue">a rich featured, epic & premium work.</h1>
</div>
<p>Saraswati steels an ISO 9001:2015 Certified
Company, was established in 1992 and registered as well.We have founder of the company
with his rich experience ,industrial knowledge and his
experienced team . The guidelines developed by him is what helps and support the growth
of the company. Saraswati Steels is also active in social and charity works.
The management at saraswati steels is committed in its mission of satisfying clints by
providing best quality products at competitive price range.
Today, Saraswati steels has equipped modern machineries to produce architectural steels.
We have grown as one of the Leading
Fabrication, erection & Construction Company.</p>
<p> We are proud to be trusted by many
companies of national repute for providing high quality steel structuring works. We have
registered our stamp of class by executing various prestigious projects in varied domain,
such
as Industrial & Manufacturing and Infrastructures. With almost three decades of experience
behind us in Fabrication, erection and construction we have carved a niche for ourselves as
one of the reputed players in fabrication and erection offering a full spectrum of specialized
professional steel structural engg. and construction service that are associated with
mechanical works.</p>
<div class="media-element d-flex justify-content-between">
<div class="media">
<i class="fa fa-magic mr-4"></i>
<div class="media-body">
<h5>PEB Qualities</h5>
We adhere strictly to quality and safety norms
</div>
</div>
<div class="media">
<i class="fa fa-magic mr-4"></i>
<div class="media-body">
<h5>Health Safety & Environment Policy</h5>
We are committed to the health and safety of our employees and Working Environment.
</div>
</div>
</div>
<a href="#" class="btn btn-primary">See More</a>
</div>
<div class="col-md-6" data-aos="fade-left" data-aos-delay="400" data-aos-duration="800">
<div class="featured-img">
<img class="featured-big" src="https://ninjahck.github.io/SarawatiSteels/assets/images/aboutus2.png" height="710" width="500" alt="Featured 1">
</div>
<div class="media-element d-flex justify-content-between">
</div>
</div>
</div>
</div>
</section>
<!-- Featured End -->
<!-- Recent Posts Start -->
<a name="Mission"></a>
<section class="recent-posts">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="single-rpost d-sm-flex align-items-center" data-aos="fade-right"
data-aos-duration="800">
<div class="post-content text-sm-right">
<h1>Our Mission</h1>
<h3><a href="#">Highest
customer satisfaction & delight</a></h3>
<a class="post-btn" href="#"><i class="fa fa-arrow-right"></i></a>
</div>
<div class="post-thumb">
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/post1.jpg" alt="Post 1">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="single-rpost d-sm-flex align-items-center" data-aos="fade-left" data-aos-duration="800">
<div class="post-thumb">
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/post2.jpg" alt="Post 1">
</div>
<div class="post-content">
<h3><a href="#">Mutual trust, Respect, Open
communication</a></h3>
<a class="post-btn" href="#"><i class="fa fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="single-rpost d-sm-flex align-items-center" data-aos="fade-right" data-aos-delay="200"
data-aos-duration="800">
<div class="post-content text-sm-right">
<h3><a href="#">Transparency of action in all spheres of
activity.</a></h3>
<a class="post-btn" href="#"><i class="fa fa-arrow-right"></i></a>
</div>
<div class="post-thumb">
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/post3.jpg" alt="Post 1">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="single-rpost d-sm-flex align-items-center" data-aos="fade-left" data-aos-delay="200"
data-aos-duration="800">
<div class="post-thumb">
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/post4.jpg" alt="Post 1">
</div>
<div class="post-content">
<h3><a href="#">Best Quality at market price.</a></h3>
<a class="post-btn" href="#"><i class="fa fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
<div class="text-center">
</div>
</div>
</section>
<!-- Recent Posts End -->
<!-- Trust Start -->
<section class="trust">
<div class="container">
<div class="row">
<a name="PEB"></a>
<div class="offset-xl-1 col-xl-6" data-aos="fade-right" data-aos-delay="200" data-aos-duration="800">
<div class="title">
<h6 class="title-primary">about PEB</h6>
<h1>Pre engineered building concept.</h1>
</div>
<p>Pre-Engineered Buildings (PEB) were introduced into the steel building industry
to facilitate fast design, delivery and erection of simple low
rise structures like canopies, warehouses etc. PEB can be constructed in much less
than the normal time for other structure.PEB is a
structural concept whereby all the components of a building are designed, detailed
and fabricated to suit the specific requirement of
design and serviceability, yet very much standardized to facilitate ease in design,
Detailing, fabrication and erection. There would be
absolutely no cutting or welding at site. The erector would only use spanners to
connect the various elements together.
</p>
<h5>PEB Major Component</h5>
<h6>Primary Framing</h6>
<p> Primary Framing consists of columns and rafters with tapered web and variable
flanges. These are manufactured by welding together cut
plates to form the desired frame I - sections. The tapered sections are welded at
factory/bolted at site at splices to form the desired frame
profile. These frames in PEB are normally moment resisting frames with fixed or
pinned bases as mandated by the design.</p>
<h6>Secondary Framing members</h6>
<p> Secondary Framing members are purlins and girts made of cold formed sheets.
Normally, secondary framing members are in Z or C shapes.
Purlins which are used to support roof sheeting and the girts at longitudinal walls are
normally designed as continuous members. However,
the girts at transverse or short walls are normally designed as simply supported beams.
The spacing of secondary framing members are
primarily dictated by capacity of the cladding to span in between the purlins/girts.</p>
<h6>Cladding</h6>
<p> Cladding comes in a variety of profiles which are customized to suit structural and
aesthetic requirements.</p>
</div>
<div class="col-xl-5 gallery">
<div>
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/hero-bg3.jpg">
<p></p>
<p></p>
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/gallery1.jpg">
<div>
</div>
</div>
</div>
</div>
</section>
<!-- Machine Section -->
<!-- Pricing Start -->
<a name="Machines"></a>
<section class="cta" data-aos="fade-up" data-aos-delay="0">
<div class="container">
<div class="cta-content d-xl-flex align-items-center justify-content-around text-center text-xl-left">
<div class="content" data-aos="fade-right" data-aos-delay="200">
<h2> PEB, Fabrication Machinery & Equipments</h2>
<p>We have all type of PEB and fabrication related Machinery & equipments</p>
</div>
<div class="subscribe-btn" data-aos="fade-left" data-aos-delay="400" data-aos-offset="0">
<a href="#" class="btn btn-primary">Know More</a>
</div>
</div>
</div>
</section>
<section class="recent-posts">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="single-rpost d-sm-flex align-items-center" data-aos="fade-right"
data-aos-duration="800">
<div class="post-content text-sm-right">
<h1>Available Machines</h1>
<h3><a href="#">PTW Welding Machine</a></h3>
<a class="post-btn" href="#"><i class="fa fa-arrow-right"></i></a>
</div>
<div class="post-thumb">
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/machines/ptw.gif" alt="Post 1">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="single-rpost d-sm-flex align-items-center" data-aos="fade-left" data-aos-duration="800">
<div class="post-thumb">
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/machines/plasma.jpg" alt="Post 1">
</div>
<div class="post-content">
<h3><a href="#">Plasma Cutting Machine
Cutting Capacity
2 mm to 400 mm</a></h3>
<a class="post-btn" href="#"><i class="fa fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="single-rpost d-sm-flex align-items-center" data-aos="fade-right" data-aos-delay="200"
data-aos-duration="800">
<div class="post-content text-sm-right">
<h3><a href="#">Banding Machine Capacity 4 Mtr</a></h3>
<a class="post-btn" href="#"><i class="fa fa-arrow-right"></i></a>
</div>
<div class="post-thumb">
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/machines/banding.jpeg" alt="Post 1">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="single-rpost d-sm-flex align-items-center" data-aos="fade-left" data-aos-delay="200"
data-aos-duration="800">
<div class="post-thumb">
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/machines/shearingmachine.jpg" alt="Post 1">
</div>
<div class="post-content">
<h3><a href="#">Shearing Machine Capacity 3 mtr to 12 mm.</a></h3>
<a class="post-btn" href="#"><i class="fa fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
<div class="text-center">
</div>
</div>
</section>
<!-- Trust End -->
<!-- Pricing Start -->
<a name="Products"></a>
<section class="pricing-table">
<div class="container">
<div class="title text-center">
<h6 class="title-primary">Our Products</h6>
<h1 class="title-blue">Product List</h1>
</div>
<div class="row no-gutters">
<div class="col-md-4">
<div class="single-pricing text-center" data-aos="fade-up" data-aos-delay="0"
data-aos-duration="600">
<span>Regularly</span>
<h2>Ms Pipe</h2>
<p class="desc">We build Quality , Ms Pipe</p>
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/products/mspipe.jpg" alt="Product Image">
<a href="#" class="btn btn-primary">Buy Now</a>
<svg viewBox="0 0 170 193">
<path fill-rule="evenodd" fill="rgb(238, 21, 21)"
d="M39.000,31.999 C39.000,31.999 -21.000,86.500 9.000,121.999 C39.000,157.500 91.000,128.500 104.000,160.999 C117.000,193.500 141.000,201.000 150.000,183.000 C159.000,165.000 172.000,99.000 167.000,87.000 C162.000,75.000 170.000,63.000 152.000,45.000 C134.000,27.000 128.000,15.999 116.000,11.000 C104.000,6.000 89.000,-0.001 89.000,-0.001 L39.000,31.999 Z" />
</svg>
</div>
</div>
<div class="col-md-4">
<div class="single-pricing text-center" data-aos="fade-up" data-aos-delay="300"
data-aos-duration="600">
<span>Regularly</span>
<h2>Ms Angle</h2>
<p class="desc">We build Quality , Ms Angle</p>
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/products/angle.jpg" alt="Product Image">
<a href="#" class="btn btn-primary">Buy Now</a>
<svg viewBox="0 0 170 193">
<path fill-rule="evenodd" fill="rgb(238, 21, 21)"
d="M39.000,31.999 C39.000,31.999 -21.000,86.500 9.000,121.999 C39.000,157.500 91.000,128.500 104.000,160.999 C117.000,193.500 141.000,201.000 150.000,183.000 C159.000,165.000 172.000,99.000 167.000,87.000 C162.000,75.000 170.000,63.000 152.000,45.000 C134.000,27.000 128.000,15.999 116.000,11.000 C104.000,6.000 89.000,-0.001 89.000,-0.001 L39.000,31.999 Z" />
</svg>
</div>
</div>
<div class="col-md-4">
<div class="single-pricing text-center" data-aos="fade-up" data-aos-delay="600"
data-aos-duration="600">
<span>Regularly</span>
<h2>Ms Plate</h2>
<p class="desc">We build Quality, Ms Plate</p>
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/products/msplate.gif" alt="Product Image">
<a href="#" class="btn btn-primary">Buy Now</a>
<svg viewBox="0 0 170 193">
<path fill-rule="evenodd" fill="rgb(238, 21, 21)"
d="M39.000,31.999 C39.000,31.999 -21.000,86.500 9.000,121.999 C39.000,157.500 91.000,128.500 104.000,160.999 C117.000,193.500 141.000,201.000 150.000,183.000 C159.000,165.000 172.000,99.000 167.000,87.000 C162.000,75.000 170.000,63.000 152.000,45.000 C134.000,27.000 128.000,15.999 116.000,11.000 C104.000,6.000 89.000,-0.001 89.000,-0.001 L39.000,31.999 Z" />
</svg>
</div>
</div>
<div class="col-md-4">
<div class="single-pricing text-center" data-aos="fade-up" data-aos-delay="600"
data-aos-duration="600">
<span>Regularly</span>
<h2>Ms Round & Square</h2>
<p class="desc">We build Quality, Ms Round & Square</p>
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/products/msroundsquare.jpeg" alt="Product Image">
<a href="#" class="btn btn-primary">Buy Now</a>
<svg viewBox="0 0 170 193">
<path fill-rule="evenodd" fill="rgb(238, 21, 21)"
d="M39.000,31.999 C39.000,31.999 -21.000,86.500 9.000,121.999 C39.000,157.500 91.000,128.500 104.000,160.999 C117.000,193.500 141.000,201.000 150.000,183.000 C159.000,165.000 172.000,99.000 167.000,87.000 C162.000,75.000 170.000,63.000 152.000,45.000 C134.000,27.000 128.000,15.999 116.000,11.000 C104.000,6.000 89.000,-0.001 89.000,-0.001 L39.000,31.999 Z" />
</svg>
</div>
</div>
<div class="col-md-4">
<div class="single-pricing text-center" data-aos="fade-up" data-aos-delay="600"
data-aos-duration="600">
<span>Regularly</span>
<h2>CR Sheet</h2>
<p class="desc">We build Quality, CR Sheet</p>
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/products/cr sheet.jpg" alt="Product Image">
<a href="#" class="btn btn-primary">Buy Now</a>
<svg viewBox="0 0 170 193">
<path fill-rule="evenodd" fill="rgb(238, 21, 21)"
d="M39.000,31.999 C39.000,31.999 -21.000,86.500 9.000,121.999 C39.000,157.500 91.000,128.500 104.000,160.999 C117.000,193.500 141.000,201.000 150.000,183.000 C159.000,165.000 172.000,99.000 167.000,87.000 C162.000,75.000 170.000,63.000 152.000,45.000 C134.000,27.000 128.000,15.999 116.000,11.000 C104.000,6.000 89.000,-0.001 89.000,-0.001 L39.000,31.999 Z" />
</svg>
</div>
</div>
<div class="col-md-4">
<div class="single-pricing text-center" data-aos="fade-up" data-aos-delay="600"
data-aos-duration="600">
<span>Regularly</span>
<h2>CQ Plate</h2>
<p class="desc">We build Quality, CQ Plate</p>
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/products/cq plate.jpg" alt="Product Image">
<a href="#" class="btn btn-primary">Buy Now</a>
<svg viewBox="0 0 170 193">
<path fill-rule="evenodd" fill="rgb(238, 21, 21)"
d="M39.000,31.999 C39.000,31.999 -21.000,86.500 9.000,121.999 C39.000,157.500 91.000,128.500 104.000,160.999 C117.000,193.500 141.000,201.000 150.000,183.000 C159.000,165.000 172.000,99.000 167.000,87.000 C162.000,75.000 170.000,63.000 152.000,45.000 C134.000,27.000 128.000,15.999 116.000,11.000 C104.000,6.000 89.000,-0.001 89.000,-0.001 L39.000,31.999 Z" />
</svg>
</div>
</div>
<div class="col-md-4">
<div class="single-pricing text-center" data-aos="fade-up" data-aos-delay="600"
data-aos-duration="600">
<span>Regularly</span>
<h2>Bar Profile Sheet</h2>
<p class="desc">We build Quality, Bar Profile Sheet</p>
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/products/color-profile-sheet-500x500.jpg" alt="Product Image">
<a href="#" class="btn btn-primary">Buy Now</a>
<svg viewBox="0 0 170 193">
<path fill-rule="evenodd" fill="rgb(238, 21, 21)"
d="M39.000,31.999 C39.000,31.999 -21.000,86.500 9.000,121.999 C39.000,157.500 91.000,128.500 104.000,160.999 C117.000,193.500 141.000,201.000 150.000,183.000 C159.000,165.000 172.000,99.000 167.000,87.000 C162.000,75.000 170.000,63.000 152.000,45.000 C134.000,27.000 128.000,15.999 116.000,11.000 C104.000,6.000 89.000,-0.001 89.000,-0.001 L39.000,31.999 Z" />
</svg>
</div>
</div>
<div class="col-md-4">
<div class="single-pricing text-center" data-aos="fade-up" data-aos-delay="600"
data-aos-duration="600">
<span>Regularly</span>
<h2>Purling</h2>
<p class="desc">We build Quality, Purling</p>
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/products/Image.jpeg" alt="Product Image">
<a href="#" class="btn btn-primary">Buy Now</a>
<svg viewBox="0 0 170 193">
<path fill-rule="evenodd" fill="rgb(238, 21, 21)"
d="M39.000,31.999 C39.000,31.999 -21.000,86.500 9.000,121.999 C39.000,157.500 91.000,128.500 104.000,160.999 C117.000,193.500 141.000,201.000 150.000,183.000 C159.000,165.000 172.000,99.000 167.000,87.000 C162.000,75.000 170.000,63.000 152.000,45.000 C134.000,27.000 128.000,15.999 116.000,11.000 C104.000,6.000 89.000,-0.001 89.000,-0.001 L39.000,31.999 Z" />
</svg>
</div>
</div>
<div class="col-md-4">
<div class="single-pricing text-center" data-aos="fade-up" data-aos-delay="600"
data-aos-duration="600">
<span>Regularly</span>
<h2>HSS Bar</h2>
<p class="desc">We build Quality, HSS Bar</p>
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/products/m-35-high-speed-steel-500x500.png" alt="Product Image">
<a href="#" class="btn btn-primary">Buy Now</a>
<svg viewBox="0 0 170 193">
<path fill-rule="evenodd" fill="rgb(238, 21, 21)"
d="M39.000,31.999 C39.000,31.999 -21.000,86.500 9.000,121.999 C39.000,157.500 91.000,128.500 104.000,160.999 C117.000,193.500 141.000,201.000 150.000,183.000 C159.000,165.000 172.000,99.000 167.000,87.000 C162.000,75.000 170.000,63.000 152.000,45.000 C134.000,27.000 128.000,15.999 116.000,11.000 C104.000,6.000 89.000,-0.001 89.000,-0.001 L39.000,31.999 Z" />
</svg>
</div>
</div>
<div class="col-md-4">
<div class="single-pricing text-center" data-aos="fade-up" data-aos-delay="600"
data-aos-duration="600">
<span>Regularly</span>
<h2>HSS Sheet</h2>
<p class="desc">We build Quality, HSS Sheet</p>
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/products/hss sheet.jpeg" alt="Product Image">
<a href="#" class="btn btn-primary">Buy Now</a>
<svg viewBox="0 0 170 193">
<path fill-rule="evenodd" fill="rgb(238, 21, 21)"
d="M39.000,31.999 C39.000,31.999 -21.000,86.500 9.000,121.999 C39.000,157.500 91.000,128.500 104.000,160.999 C117.000,193.500 141.000,201.000 150.000,183.000 C159.000,165.000 172.000,99.000 167.000,87.000 C162.000,75.000 170.000,63.000 152.000,45.000 C134.000,27.000 128.000,15.999 116.000,11.000 C104.000,6.000 89.000,-0.001 89.000,-0.001 L39.000,31.999 Z" />
</svg>
</div>
</div>
<div class="col-md-4">
<div class="single-pricing text-center" data-aos="fade-up" data-aos-delay="600"
data-aos-duration="600">
<span>Regularly</span>
<h2>Die Steel Flat Bar</h2>
<p class="desc">We build Quality, Die Steel Flat Bar</p>
<img class="img-fluid" src="https://ninjahck.github.io/SarawatiSteels/assets/images/products/die steel flat bar.jpg" alt="Product Image">
<a href="#" class="btn btn-primary">Buy Now</a>
<svg viewBox="0 0 170 193">
<path fill-rule="evenodd" fill="rgb(238, 21, 21)"
d="M39.000,31.999 C39.000,31.999 -21.000,86.500 9.000,121.999 C39.000,157.500 91.000,128.500 104.000,160.999 C117.000,193.500 141.000,201.000 150.000,183.000 C159.000,165.000 172.000,99.000 167.000,87.000 C162.000,75.000 170.000,63.000 152.000,45.000 C134.000,27.000 128.000,15.999 116.000,11.000 C104.000,6.000 89.000,-0.001 89.000,-0.001 L39.000,31.999 Z" />
</svg>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing End -->
<!-- Testimonial and Clients Start -->
<a name="Clients"></a>
<section class="cta" data-aos="fade-up" data-aos-delay="0">
<div class="container">
<div class="cta-content d-xl-flex align-items-center justify-content-around text-center text-xl-left">
<div class="content" data-aos="fade-right" data-aos-delay="200">
<h2> Clients & Customers</h2>
<p>We have valuable clients</p>
</div>
</div>
</div>
</div>
</section>
<section class="testimonial-and-clients">
<div class="container">
<div class="testimonials">
<div class="swiper-container test-slider">
<div class="swiper-wrapper">
<div class="swiper-slide text-center">
<div class="row">
<div class="offset-lg-1 col-lg-10">
<h5 data-aos="fade-up" data-aos-delay="200" data-aos-duration="600"
data-aos-offset="0">Harish Goel</h5>
<span data-aos="fade-up" data-aos-delay="400" data-aos-duration="600"
data-aos-offset="0">Chairman & Founder</span>
<p data-aos="fade-up" data-aos-delay="600" data-aos-duration="600"
data-aos-offset="0">The founder of the company with his rich experience and industrial knowledge and his
experienced team . The guidelines developed by him is what helps and support the growth
of the company.Saraswati Steels is also active in social and charity works.</p>
</div>
</div>
</div>
<div class="swiper-slide text-center">
<div class="row">
<div class="offset-lg-1 col-lg-10">
<h5 data-aos="fade-up" data-aos-delay="200" data-aos-duration="600"
data-aos-offset="0">ISO Certified</h5>
<span data-aos="fade-up" data-aos-delay="400" data-aos-duration="600"
data-aos-offset="0">ISO 9001:2015 Certified</span>
<p data-aos="fade-up" data-aos-delay="600" data-aos-duration="600"
data-aos-offset="0">Saraswati steels an ISO 9001:2015 Certified
Company.The management at saraswati steels is committed in its mission of
satisfying clints by
providing best quality products at competitive price range.</p>
</div>
</div>
</div>
<div class="swiper-slide text-center">
<div class="row">
<div class="offset-lg-1 col-lg-10">
<h5 data-aos="fade-up" data-aos-delay="200" data-aos-duration="600"
data-aos-offset="0">Fabrication, Erection & Construction Company</h5>
<span data-aos="fade-up" data-aos-delay="400" data-aos-duration="600"
data-aos-offset="0">
Designer</span>
<p data-aos="fade-up" data-aos-delay="600" data-aos-duration="600"
data-aos-offset="0">We are proud to be trusted by many
companies of national repute for providing high quality steel structuring works. We have
registered our stamp of class by executing various prestigious projects in varied domain</p>
</div>
</div>
</div>
</div>
<div class="test-pagination"></div>
</div>
</div>
<div class="clients" data-aos="fade-up" data-aos-delay="200" data-aos-duration="600">
<div class="swiper-container clients-slider">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/clients/client1.png" height="100" width="100" alt="Client 1">
</div>
<div class="swiper-slide">
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/clients/client2.jpg" height="100" width="100" alt="Client 2">
</div>
<div class="swiper-slide">
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/clients/client3.png" height="100" width="100" alt="Client 3">
</div>
<div class="swiper-slide">
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/clients/client4.png" height="100" width="100" alt="Client 4">
</div>
<div class="swiper-slide">
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/clients/client5.png" height="100" width="100" alt="Client 5">
</div>
<div class="swiper-slide">
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/clients/client6.png" height="100" width="100" alt="Client 6">
</div>
<div class="swiper-slide">
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/clients/client7.jpg" height="100" width="100" alt="Client 7">
</div>
<div class="swiper-slide">
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/clients/client8.jpg" height="100" width="100" alt="Client 8">
</div>
<div class="swiper-slide">
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/clients/client9.jpg" height="100" width="100" alt="Client 9">
</div>
<div class="swiper-slide">
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/clients/client10.png" height="100" width="100" alt="Client 10">
</div>
<div class="swiper-slide">
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/clients/client11.jpg" height="100" width="100" alt="Client 11">
</div>
<div class="swiper-slide">
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/clients/client12.jpg" height="100" width="100" alt="Client 12">
</div>
<div class="swiper-slide">
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/clients/client13.jpg" height="100" width="100" alt="Client 13">
</div>
<div class="swiper-slide">
<img src="https://ninjahck.github.io/SarawatiSteels/assets/images/clients/client14.png" height="100" width="100" alt="Client 14">
</div>
</div>
<div class="test-pagination"></div>
</div>
</div>
</div>
</section>
<!-- Testimonial and Clients End -->
<!-- Call To Action 2 Start -->
<a name="Contact"></a>
<section class="cta cta2" data-aos="fade-up" data-aos-delay="0">
<div class="container">
<div class="cta-content d-xl-flex align-items-center justify-content-around text-center text-xl-left">
<div class="content" data-aos="fade-right" data-aos-delay="200">
<h2>WE SUPPLY BRAND PRODUCTS</h2>
<p>Packed with good Quality and Great Experience.</p>
</div>
<div class="subscribe-btn" data-aos="fade-left" data-aos-delay="400" data-aos-offset="0">
<a href="#" class="btn btn-primary">Join Us</a>
</div>
</div>
</div>
</section>
<!-- Call To Action 2 End -->
<!-- Footer Start -->
<footer>
<!-- Widgets Start -->
<div class="footer-widgets">
<div class="container">
<div class="row">
<div class="col-md-6 col-xl-3">
<div class="single-widget contact-widget" data-aos="fade-up" data-aos-delay="0">
<h6 class="widget-tiltle"> </h6>
<p>By subscribing to our mailing list you will always be update with the latest news from
us.
</p>
<div class="media">
<i class="fa fa-map-marker"></i>
<div class="media-body ml-3">
<h6>Address</h6>
15/3 , Main G.T. Road , Kundli<br>
Sonepat , Haryana : 131028
</div>
</div>
<div class="media">
<i class="fa fa-envelope-o"></i>
<div class="media-body ml-3">
<h6>Have any questions?</h6>
<a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
<div class="media">
<i class="fa fa-phone"></i>
<div class="media-body ml-3">
<h6>Call us & Hire us</h6>
<a href="tel:9215058219"> 9215058219 , 7056717051</a>
</div>
</div>
<div class="media">
<i class="fa fa-fax"></i>
<div class="media-body ml-3">
<h6>Mob:</h6>
<a href="Mob:911889047521432">(91) 9215058225</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-xl-3">
<div class="single-widget recent-post-widget" data-aos="fade-up" data-aos-delay="400">
<h6 class="widget-tiltle">Latest Updates</h6>
<div class="media">
<a class="rcnt-img" href="#"><img src="https://ninjahck.github.io/SarawatiSteels/assets/images/rcnt-post1.png"
alt="Recent Post"></a>
<div class="media-body ml-3">
<h6><a href="#">An engaging</a></h6>
<p><i class="fa fa-user"></i>Mano <i class="fa fa-eye"></i> 202 Views</p>
</div>
</div>
<div class="media">
<a class="rcnt-img" href="#"><img src="https://ninjahck.github.io/SarawatiSteels/assets/images/rcnt-post2.png"
alt="Recent Post"></a>
<div class="media-body ml-3">
<h6><a href="#">Statistics and analysis. The key to succes.</a></h6>
<p><i class="fa fa-user"></i>Rosias <i class="fa fa-eye"></i> 20 Views</p>
</div>
</div>
<div class="media">
<a class="rcnt-img" href="#"><img src="https://ninjahck.github.io/SarawatiSteels/assets/images/rcnt-post3.png"
alt="Recent Post"></a>
<div class="media-body ml-3">
<h6><a href="#">Envato Meeting turns into a photoshooting.</a></h6>
<p><i class="fa fa-user"></i>Kien <i class="fa fa-eye"></i> 74 Views</p>
</div>
</div>
<div class="media">
<a class="rcnt-img" href="#"><img src="https://ninjahck.github.io/SarawatiSteels/assets/images/rcnt-post4.png"
alt="Recent Post"></a>
<div class="media-body ml-3">
<h6><a href="#">An engaging embedded the video posts</a></h6>
<p><i class="fa fa-user"></i>Robert <i class="fa fa-eye"></i> 48 Views</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-xl-3">
<div class="single-widget tags-widget" data-aos="fade-up" data-aos-delay="800">
<h6 class="widget-tiltle">Popular Tags</h6>
<a href="#">Amazing</a>
<a href="#">Design</a>
<a href="#">Photoshop</a>
<a href="#">Art</a>
<a href="#">Wordpress</a>
<a href="#">jQuery</a>
</div>
<div class="single-widget subscribe-widget" data-aos="fade-up" data-aos-delay="800">
<h6 class="widget-tiltle">Subscribe us</h6>
<p>Sign up for our mailing list to get latest updates and offers</p>
<form class="" method="get">
<div class="input-group">
<input class="field form-control" name="subscribe" type="email"
placeholder="Email Address">
<span class="input-group-btn">
<button type="submit" name="submit-mail"><i class="fa fa-check"></i></button>
</span>
</div>
</form>
<p>We respect your privacy</p>
<ul class="nav social-nav">
<li><a href="https://www.facebook.com/fh5co" target="_blank"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-google-plus"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-google-plus"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Widgets End -->
<!-- Foot Note Start -->
<div class="foot-note">
<div class="container">
<div
class="footer-content text-center text-lg-left d-lg-flex justify-content-between align-items-center">
<p class="mb-0" data-aos="fade-right" data-aos-offset="0">© 2020 All Rights Reserved. œ</p>
<p class="mb-0" data-aos="fade-left" data-aos-offset="0"><a href="#">Terms Of Use</a><a
href="#">Privacy & Security
Statement</a></p>
</div>
</div>
</div>
<!-- Foot Note End -->
</footer>
<!-- Footer Endt -->
<!--jQuery-->
<script src="https://ninjahck.github.io/SarawatiSteels/assets/js/jquery-3.3.1.js"></script>
<!--Plugins-->
<script src="https://ninjahck.github.io/SarawatiSteels/assets/js/bootstrap.bundle.js"></script>
<script src="https://ninjahck.github.io/SarawatiSteels/assets/js/loaders.css.js"></script>
<script src="https://ninjahck.github.io/SarawatiSteels/assets/js/aos.js"></script>
<script src="https://ninjahck.github.io/SarawatiSteels/assets/js/swiper.min.js"></script>
<script src="https://ninjahck.github.io/SarawatiSteels/assets/js/lightgallery-all.min.js"></script>
<!--Template Script-->
<script src="https://ninjahck.github.io/SarawatiSteels/assets/js/main.js"></script>
</body>
</html>