-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1038 lines (956 loc) · 51.6 KB
/
index.html
File metadata and controls
1038 lines (956 loc) · 51.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
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, viewport-fit=cover">
<meta name="google-site-verification" content="SVvD-Ost3NG7IaCoLQQPJPMVCmsK7PtZzU4VJlJTOG8" />
<!--SEO-->
<title>Aggressive Polymers | Innovators in Polymer Solutions</title>
<meta name="description" content="Aggressive Polymers is a leading provider of advanced polymer solutions, delivering innovation, sustainability, and performance for diverse industrial needs." />
<!--favicon link-->
<link rel="shortcut icon" href="./assets/images/logo.png" type="image/x-icon" width="32" height="32">
<!-- font awesome -->
<script src="https://kit.fontawesome.com/f5d6705a2e.js" crossorigin="anonymous"></script>
<!--emailjs-->
<script src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"></script>
<!--bootstrap links-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!--sass link-->
<link rel="stylesheet" href="./assets/css/main.css">
</head>
<body>
<!-- ========== Start Header ========== -->
<nav class="navbar navbar-expand-lg fixed-top bg-body-tertiary px-1 px-lg-0 px-xlg-5 py-1 align-items-center">
<div class="container">
<a class="navbar-brand" href="index.html"> <img src="./assets/images/logo.png" alt="logo" width="auto" height="80" loading="lazy"></a>
<button class="navbar-toggler me-2 me-lg-0" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon text-gradient">
<span></span>
</span>
</button>
<div class="collapse navbar-collapse py-3 py-lg-0" id="navbarSupportedContent">
<ul class="navbar-nav mx-auto mb-3 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="index.html" role="button" data-bs-toggle="dropdown" aria-expanded="false">About Us</a>
<ul class="dropdown-menu mt-1 mb-2 mt-lg-0 mb-lg-0">
<li><a class="dropdown-item" href="#who-we-are">Who We Are?</a></li>
<li><a class="dropdown-item" href="#business-model-section">Business Model</a></li>
<li><a class="dropdown-item" href="#our-strategy">Our Strategy</a></li>
<li><a class="dropdown-item" href="#why-choosen-us">Why Choose Us?</a></li>
<li><a class="dropdown-item" href="#your-business-model">Your Business Partner</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="services.html" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Services
</a>
<ul class="dropdown-menu mt-1 mb-2 mt-lg-0 mb-lg-0">
<li><a class="dropdown-item" href="services.html#product-design">Product Design</a></li>
<li><a class="dropdown-item" href="services.html#cad-services">CAD Services</a></li>
<li><a class="dropdown-item" href="services.html#rapid-prototyping">Rapid Prototyping</a></li>
<li><a class="dropdown-item" href="services.html#reverse-engineering">Reverse Engineering</a></li>
<li><a class="dropdown-item" href="services.html#packaging-solution">Packaging Solution</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#capabilities">Capabilities</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="product_development.html" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Product Development
</a>
<ul class="dropdown-menu mt-1 mb-2 mt-lg-0 mb-lg-0">
<li><a class="dropdown-item" href="product_development.html">Development Process</a></li>
<li><a class="dropdown-item" href="product_development.html">Value Engineering</a></li>
<li><a class="dropdown-item" href="product_development.html">Tooling Solutions</a></li>
</ul>
</li>
</ul>
<!-- Close Icon Inside Navbar -->
<!-- <button class="close-icon" type="button" aria-label="Close">
<span aria-hidden="true">×</span>
</button> -->
<button class="btn ms-3 ms-lg-0 text-nowrap contact-btn mb-3 mb-lg-0" type="submit" ><a href="#footer">Contact Us</a></button>
</div>
</div>
</nav>
<!-- ========== End Header ========== -->
<div class="main-wrapper">
<!-- ========== Start home-carousel sliders ========== -->
<section class="home-carousel" id="home-carousel">
<div id="carouselExample" class="carousel slide" data-bs-ride="carousel" data-bs-interval="5000">
<div class="carousel-inner">
<!-- Team Collaboration Slide -->
<div class="carousel-item active" >
<img src="./assets/images/home-1.jpg" class="d-block w-100" alt="Team Collaboration" loading="lazy">
<div class="carousel-caption d-block caption-overlay">
<h3>Innovate, Create, Dominate</h3>
<p class="mt-3 text-inside-gradient">Engineering solutions that transform ideas into market-leading products in a competitive marketplace</p>
<button class="btn btn-primary btn-sm"><a href="#who-we-are">Learn more!</a></button>
</div>
</div>
<!-- Services Slide -->
<div class="carousel-item" >
<img src="./assets/images/services-1.jpg" class="d-block w-100" alt="Services" loading="lazy">
<div class="carousel-caption d-block caption-overlay">
<h3>Precision in Every Solution</h3>
<p class="mt-3 text-inside-gradient">From CAD services to rapid prototyping, delivering excellence through advanced engineering solutions</p>
<button class="btn btn-purple btn-sm"><a href="services.html">Explore Our Services</a></button>
</div>
</div>
<!-- Product Development Slide -->
<div class="carousel-item" >
<img src="./assets/images/product development-1.jpg" class="d-block w-100" alt="Product Development" loading="lazy">
<div class="carousel-caption d-block caption-overlay">
<h3>From Concept to Reality</h3>
<p class="mt-3 text-inside-gradient">Transforming innovative ideas into tangible products. Agile development for rapid market success</p>
<button class="btn btn-danger btn-sm"><a href="product_development.html">Get Started</a></button>
</div>
</div>
</div>
<!-- Carousel Controls -->
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExample" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExample" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</section>
<!-- ========== End home-carousel sliders ========== -->
<!-- ========== Start about-us ========== -->
<section id="who-we-are" class="who-we-are fade-section">
<div class="container py-lg-5 py-3">
<div class="row align-items-center justify-content-center justify-content-sm-start">
<!-- Left Column: Image with Buttons -->
<div class="col-12 col-xl-5 offset-xl-1 col-lg-6 mb-1 mb-lg-0 order-2 order-xl-1 mt-5 mt-lg-0">
<div class="custom-image-container scroll-trigger">
<img src="./assets/images/who-we-are-image-1.jpg" alt="Who We Are" class="img-fluid" loading="lazy">
<!-- Overlay Buttons with Paragraphs -->
<div class="overlay-button button-1">Innovation
<span class="button-desc">Pushing new ideas forward</span>
</div>
<div class="overlay-button button-2">Sustainability
<span class="button-desc">Eco-friendly and efficient</span>
</div>
<div class="overlay-button button-3">Collaboration
<span class="button-desc">Achieving success together</span>
</div>
<div class="overlay-button button-4">Commitment to Quality
<span class="button-desc">Precision and reliability</span>
</div>
</div>
</div>
<!-- Right Column: Text Content -->
<div class="col-12 col-sm-10 col-lg-5 offset-xs-0 offset-sm-1 col-xl-5 offset-xl-1 text-center text-lg-start order-1 order-lg-2 px-3 px-md-3 px-lg-0">
<h2 class="who-we-are__small-heading mb-3 mb-lg-2 text-gradient text-lg-start"><span class="about-content__line"></span>Who We Are?</h2>
<h1 class="who-we-are__big-heading">
Transforming Ideas into Reality with Cutting-Edge Innovation
</h1>
<p class="fw-medium text-start">
Aggressive Polymers is a forward-thinking product design and development company, dedicated to helping businesses bring
<span class="highlight fw-semibold">innovative</span> and <span class="highlight fw-semibold">first-to-market solutions</span> to life. We thrive in today’s rapidly evolving business environment by combining creativity, technical expertise, and a collaborative approach.
</p>
<p class="fw-medium text-start>
Our team is composed of young, <span class="highlight fw-semibold">creative</span>, and <span class="highlight fw-semibold">multi-disciplinary engineers</span> with a wealth of experience across diverse industries. At Aggressive Polymers, we don’t just design products — we envision possibilities, transform ideas into reality, and help businesses <span class="highlight fw-semibold">stay competitive</span>.
</p>
</div>
</div>
</section>
<!-- ========== End about-us ========== -->
<!-- ========== Start business-model ========== -->
<section id="business-model-section" class="business-model-section mb-5 fade-section">
<!-- Randomly placed bubbles -->
<!-- <div class="bubble" style="top: 10%; left: 8%;"></div>
<div class="bubble small" style="top: 20%; right: 5%;"></div>
<div class="bubble large" style="bottom: 15%; left: 12%;"></div>
<div class="bubble" style="bottom: 25%; right: 20%;"></div>
<div class="bubble small" style="top: 50%; left: 30%;"></div>
<div class="bubble large" style="top: 40%; right: 40%;"></div>
<div class="bubble" style="top: 70%; left: 15%;"></div>
<div class="bubble small" style="bottom: 5%; right: 8%;"></div>
<div class="bubble large" style="bottom: 10%; right: 2%;"></div>
<div class="bubble small" style="top: 35%; left: 50%;"></div>
<div class="bubble large" style="top: 5%; right: 10%;"></div>
<div class="bubble small" style="top: 35%; left: 50%;"></div> -->
<!--floating with same(gear,polymer,reverse engineering) icon-->
<div class="floating-icon" style="top: 10%; left: 8%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear-moving" loading="lazy">
</div>
<div class="floating-icon small " style="top: 20%; right: 5%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear-moving" loading="lazy">
</div>
<div class="floating-icon large hide-on-small" style="bottom: 15%; left: 12%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear-moving" loading="lazy">
</div>
<div class="floating-icon large" style="bottom: 25%; right: 20%;">
<img src="./assets/images/polymer-moving-img.png" alt="polymer" loading="lazy">
</div>
<div class="floating-icon small" style="top: 50%; left: 30%;">
<img src="./assets/images/tools-moving-img .png" alt="tools-moving" loading="lazy">
</div>
<div class="floating-icon small hide-on-small" style="top: 40%; right: 40%;">
<img src="./assets/images/polymer-moving-img.png" alt="Gear-moving" loading="lazy">
</div>
<div class="floating-icon" style="top: 70%; left: 15%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear-moving" loading="lazy">
</div>
<div class="floating-icon small hide-on-small" style="bottom: 5%; right: 8%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear-moving" loading="lazy">
</div>
<div class="floating-icon large hide-on-small" style="bottom: 10%; right: 2%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear-moving" loading="lazy">
</div>
<div class="floating-icon small hide-on-small" style="top: 35%; left: 50%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear-moving" loading="lazy">
</div>
<div class="floating-icon large hide-on-small" style="top: 5%; right: 10%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear-moving" loading="lazy">
</div>
<div class="floating-icon small hide-on-small" style="top: 35%; left: 50%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear-moving" loading="lazy">
</div>
<!--floating with same(gear) icon-->
<!-- <div class="floating-icon" style="top: 10%; left: 8%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear">
</div>
<div class="floating-icon small" style="top: 20%; right: 5%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear">
</div>
<div class="floating-icon large" style="bottom: 15%; left: 12%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear">
</div>
<div class="floating-icon" style="bottom: 25%; right: 20%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear">
</div>
<div class="floating-icon small" style="top: 50%; left: 30%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear">
</div>
<div class="floating-icon large" style="top: 40%; right: 40%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear">
</div>
<div class="floating-icon" style="top: 70%; left: 15%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear">
</div>
<div class="floating-icon small" style="bottom: 5%; right: 8%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear">
</div>
<div class="floating-icon large" style="bottom: 10%; right: 2%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear">
</div>
<div class="floating-icon small" style="top: 35%; left: 50%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear">
</div>
<div class="floating-icon large" style="top: 5%; right: 10%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear">
</div>
<div class="floating-icon small" style="top: 35%; left: 50%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear">
</div> -->
<!--floating with different icons-->
<!-- <div class="floating-icon large" style="top: 10%; left: 8%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear">
</div>
<div class="floating-icon large" style="top: 40%; right: 5%;">
<img src="./assets/images/tools-moving-img .png" alt="Tools">
</div>
<div class="floating-icon" style="top: 50%; left: 50%;">
<img src="./assets/images/polymer-moving-img.png" alt="polymer">
</div>
<div class="floating-icon small" style="bottom: 28%; left: 15%;">
<img src="./assets/images/reverse-engineering-icon.png" alt="Innovation">
</div>
<div class="floating-icon small" style="bottom: 30%; right: 20%;">
<img src="./assets/images/gear-moving-img.png" alt="Gear">
</div>
<div class="floating-icon small" style="top: 10%; right: 15%;">
<img src="./assets/images/reverse-engineering-icon.png" alt="Innovation">
</div> -->
<!--business model contents-->
<div class="business-model-section-content">
<h2 class="business-model-section-content-title text-inside-gradient">Our Business Model</h2>
<h4 class="business-model-section-content-subtitle">that's how do we work</h4>
<p class="business-model-section-content-description px-3 px-lg-0 text-center">
Explore our structured and efficient business model that enables us to deliver top-quality products and services tailored to meet the unique needs of our clients
</p>
</div>
<!--cards-->
<!-- Carousel Section -->
<div class="business-model-section-carousel-container">
<button class="business-model-section-carousel-nav prev-btn"><</button>
<div class="business-model-section-carousel-wrapper-container mb-5 mb-md-0">
<div class="business-model-section-carousel-wrapper">
<!-- 9 Cards -->
<!--concept generation-->
<div class="business-card">
<div class="card-inner">
<div class="card-front">
<div class="image-part">
<img src="./assets/images/concept-screening.png" alt="concept-generation" height="80px">
</div>
<div class="content-part">
<h4>Concept Generation</h4>
<span class="tagline">Refining ideas to perfection</span>
</div>
</div>
<div class="card-back">
<p>Focus: Evaluating multiple concepts to identify the most feasible and impactful</p>
</div>
</div>
</div>
<!--concept screening-->
<div class="business-card">
<div class="card-inner">
<div class="card-front">
<div class="image-part">
<img src="./assets/images/concept-screening-2.png" alt="concept-screening" style="object-fit:cover!important;">
</div>
<div class="content-part">
<h4>Concept Screeening</h4>
<span class="tagline">"Innovative ideas backed by thorough market research"</span>
</div>
</div>
<div class="card-back">
<p>Focus: Consumer market research, SWOT analysis, and market understanding for innovative ideas</p>
</div>
</div>
</div>
<!--3d modelling-->
<div class="business-card">
<div class="card-inner">
<div class="card-front">
<div class="image-part">
<img src="./assets/images/3d-modeling.png" alt="3d-modeling" height="80px" style="object-fit:cover!important;">
</div>
<div class="content-part">
<h4>3D Modelling</h4>
<span class="tagline">"Transforming concepts into virtual designs"</span>
</div>
</div>
<div class="card-back">
<p>Focus: Creating CAD models using advanced 3D software</p>
</div>
</div>
</div>
<!--photo-realistic rendering-->
<div class="business-card">
<div class="card-inner">
<div class="card-front">
<div class="image-part">
<img src="./assets/images/sleek car.png" alt="photo-realistic rendering" height="80px"
style="object-fit:cover!important;">
</div>
<div class="content-part">
<h4>Photo-realistic Rendering</h4>
<span class="tagline">"Visualizing the future"</span>
</div>
</div>
<div class="card-back">
<p>Focus: Applying graphical effects to visualize the final product</p>
</div>
</div>
</div>
<!--prototyping development-->
<div class="business-card">
<div class="card-inner">
<div class="card-front">
<div class="image-part">
<img src="./assets/images/prototype development.png" alt="prototype-development" height="80px"
style="object-fit:cover!important;">
</div>
<div class="content-part">
<h4>Prototype Development</h4>
<span class="tagline">"Turning designs into tangible prototypes"</span>
</div>
</div>
<div class="card-back">
<p>Focus: Building physical models with technologies like SLA and CNC</p>
</div>
</div>
</div>
<!--validation-->
<div class="business-card">
<div class="card-inner">
<div class="card-front">
<div class="image-part">
<img src="./assets/images/validation.jpg" alt="validation" height="80px"
style="object-fit:cover!important;">
</div>
<div class="content-part">
<h4>Validation</h4>
<span class="tagline">"Validating for quality and efficiency"</span>
</div>
</div>
<div class="card-back">
<p>Focus: Ensuring quality with tools like FMEA and DFMA</p>
</div>
</div>
</div>
<!--engineering detailing-->
<div class="business-card">
<div class="card-inner">
<div class="card-front">
<div class="image-part">
<img src="./assets/images/engineering drawing.png" alt="engineering detailing" height="80px"
style="object-fit:cover!important;">
</div>
<div class="content-part">
<h4>Engineering Detailing</h4>
<span class="tagline">"Precision in every detail"</span>
</div>
</div>
<div class="card-back">
<p>Focus: Creating detailed drawings for manufacturing readiness</p>
</div>
</div>
</div>
<!--tool development-->
<div class="business-card">
<div class="card-inner">
<div class="card-front">
<div class="image-part">
<img src="./assets/images/concept-screening-1.jpg" alt="tool development" height="80px"
style="object-fit:cover!important;">
</div>
<div class="content-part">
<h4>Tool Development</h4>
<span class="tagline">"Equipping production with cutting-edge tools"</span>
</div>
</div>
<div class="card-back">
<p>Focus: Creating tools using CNC machining processes</p>
</div>
</div>
</div>
<!--engineering change management-->
<div class="business-card">
<div class="card-inner">
<div class="card-front">
<div class="image-part">
<img src="./assets/images/gear.jpg" alt="engineering change management" height="80px"
style="object-fit:cover!important;">
</div>
<div class="content-part">
<h4>Engineering Change Management</h4>
<span class="tagline">"Adapting to deliver excellence"</span>
</div>
</div>
<div class="card-back">
<p>Focus: Implementing changes with analysis tools like FMEA & ECO for improvement</p>
</div>
</div>
</div>
</div>
</div>
<button class="business-model-section-carousel-nav next-btn">></button>
</div>
</section>
<!-- ========== End business-model ========== -->
<!-- ========== Start our strategy ========== -->
<section id="our-strategy" class="our-strategy mt-5 mb-5 px-xl-5 pb-5 pb-lg-0 fade-section">
<div class="container">
<div class="row align-items-center justify-content-center justify-content-lg-between pb-5 pb-lg-0">
<!-- Content Column -->
<div class="col-11 offset-0 col-md-11 col-lg-6 col-xl-6 offset-md-0 offset-lg-0 our-strategy-content-column">
<div class="our-strategy-content-column-section">
<h5 class="our-strategy-content-column-section-heading text-gradient">Our Strategy</h5>
<div class="small-line"></div>
</div>
<h2 class="our-strategy-content-column-bold-heading">Driving Excellence through Collaboration and Innovation</h2>
<p class="our-strategy-content-column-description">
Our strategy revolves around achieving exceptional results by aligning with client goals, ensuring quality, and staying ahead of trends through continuous learning and adaptation.
</p>
<!-- Strategy Elements -->
<div class="strategy-element col-md-12 w-100">
<div class="our-strategy-content-column-strategy-element border border-1">
<div class="icon-circle">
<img src="./assets/images/team.png" alt="Collaboration Icon" loading="lazy">
</div>
<div class="our-strategy-content-column-strategy-element-content">
<h4>Customer-Driven Collaborative Product Development</h4>
<p>Close interaction with client teams to align with expectations and achieve goals</p>
<span class="tagline">"Collaboration is the key to innovation"</span>
</div>
</div>
<div class="our-strategy-content-column-strategy-element">
<div class="icon-circle">
<img src="./assets/images/process-optimization-icon.png" alt="Quality Icon" loading="lazy">
</div>
<div class="our-strategy-content-column-strategy-element-content">
<h4>Focus on Quality, Cost, and Delivery</h4>
<p>Meticulous attention to quality, cost optimization, and timely delivery</p>
<span class="tagline">"Delivering value through precision and reliability"</span>
</div>
</div>
<div class="our-strategy-content-column-strategy-element">
<div class="icon-circle">
<img src="./assets/images/learning icons.png" alt="Learning Icon" loading="lazy">
</div>
<div class="our-strategy-content-column-strategy-element-content">
<h4>Continuous Learning and Market Adaptation</h4>
<p>Regularly updating knowledge to stay ahead of industry trends and consumer expectations</p>
<span class="tagline">"Adapting to trends, shaping the future"</span>
</div>
</div>
</div>
</div>
<!-- Image Column -->
<!-- <div class="col-10 col-sm-11 col-md-9 col-lg-4 offset-lg-1 col-xl-5 offset-xl-0 offset-md-0 our-strategy-image-column mt-xl-0">
<img src="./assets/images/linkedin-sales-solutions-u3hmzw5U-SI-unsplash.jpg" alt="Our Strategy" class="img-fluid" loading="lazy">
</div> -->
<!-- Image Column -->
<div class="col-12 col-sm-11 col-md-9 col-lg-5 offset-lg-0 col-xl-6 offset-xl-0 offset-md-0 our-strategy-image-container mt-lg-0 d-flex gap-4 mt-5">
<div class="image-column translate-img">
<img src="./assets/images/our-strategy-image-3.jpg" alt="Strategy Image 1" class="img-fluid strategy-img">
</div>
<div class="image-column">
<img src="./assets/images/designer-using-3d-printer (1).jpg" alt="Strategy Image 2" class="img-fluid strategy-img">
</div>
</div>
</div>
</div>
</section>
<!-- ========== End our strategy ========== -->
<!-- <div class="business-model-section-carousel-container mt-5">
<div class="carousel-inner">
<div class="carousel-track">
<div class="card">1</div>
<div class="card">2</div>
<div class="card">3</div>
<div class="card">4</div>
<div class="card">5</div>
</div>
</div>
<button id="prevBtn">←</button>
<button id="nextBtn">→</button>
</div> -->
<!-- Capabilities Section -->
<section class="capabilities fade-section" id="capabilities">
<div class="container-fluid">
<div class="row align-items-stretch">
<!-- Left Content Section -->
<div class="col-lg-7 offset-lg-1 col-md-12 capabilities__content">
<h2 class="capabilities__heading text-inside-gradient">Our Capabilities</h2>
<p class="capabilities__description">
We specialize in <span>precision manufacturing, advanced tooling, and high-performance engineering</span> solutions.
Our facility is equipped with <span>cutting-edge technology</span> to ensure <span>efficiency, accuracy, and reliability</span> in production.
</p>
<div class="d-flex flex-column flex-sm-row mb-0 justify-content-center">
<!-- View Our Machinery tools Button -->
<button class="btn capabilities__button" data-bs-toggle="modal" data-bs-target="#toolMachineryModal">View Tool Room Machineries</button>
<!-- View Our Machines Button -->
<button type="button" class="btn btn-primary fs-6 mt-3 me-0 ms-sm-2" data-bs-toggle="modal" data-bs-target="#machineGalleryModal">
View Our Machines
</button>
</div>
<!-- Capabilities Cards -->
<div class="capabilities__cards">
<!-- Card 1 -->
<div class="capabilities__card">
<h5><span class="capabilities__icon">✔</span> Tool Room Facilities</h5>
<p>State-of-the-art <span>machinery, CNC tools, and automated production systems</span> for precision manufacturing</p>
</div>
<!-- Card 2 -->
<div class="capabilities__card">
<h5><span class="capabilities__icon">✔</span> Advanced Prototyping</h5>
<p>We utilize <span>3D printing, CNC machining, and rapid prototyping</span> to accelerate product development</p>
</div>
<!-- Card 3 -->
<div class="capabilities__card">
<h5><span class="capabilities__icon">✔</span> Material Engineering</h5>
<p>Our facility specializes in <span>high-performance materials</span> for durability, strength and sustainability</p>
</div>
<!-- Card 4 -->
<div class="capabilities__card capabilities__card--overlay">
<h5><span class="capabilities__icon">✔</span> Lean Manufacturing</h5>
<p>We implement <span>automated workflows and efficiency-driven processes</span> to reduce waste , optimize production</p>
<!-- Popover Button -->
<button type="button" class="btn btn-secondary"
data-bs-toggle="popover"
data-bs-placement="bottom"
data-bs-html="true"
data-bs-title="<div class='popover-header-content'>Lean Manufacturing
<button type='button' class='btn-close' onclick='closePopover()'></button></div>"
data-bs-content="<div class='popover-body-content'>
<div class='popover-image-text'>
<img src='assets/images/lean-manufacturing-dfma.jpg' alt='Lean Manufacturing' class='popover-img'>
<h6>Lean Manufacturing through DFMA</h6>
</div>
<div class='popover-description'>
<p>Lean manufacturing is a concept that helps
companies in eliminating non-value added work and
creates more value for money to their consumers.
It can be applied in early stages of product design &
development process and it's manufacturing
technique</p>
</div>
</div>">
Learn More
</button>
</div>
</div>
</div>
<!-- Right Image Section -->
<div class="col-lg-4 col-md-12 capabilities__image-container h-100">
<img src="./assets/images/capabilities-1.jpg" alt="Capabilities Image" class="capabilities__image img-fluid">
</div>
</div>
</div>
</section>
<!-- Tool Room Machineries Modal -->
<div class="modal fade" id="toolMachineryModal" tabindex="-1" aria-labelledby="toolMachineryModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered">
<div class="modal-content modal-custom">
<!-- Modal Header -->
<div class="modal-header text-white">
<h5 class="modal-title" id="toolMachineryModalLabel">🔧 Tool Room Machineries</h5>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<!-- Modal Body (Table) -->
<div class="modal-body">
<div class="table-responsive">
<table class="table table-hover table-custom">
<thead class="table-dark">
<tr>
<th scope="col">Machine Name</th>
<th scope="col">Specification</th>
<th scope="col">Make</th>
<th scope="col">Quantity</th>
</tr>
</thead>
<tbody>
<tr><td>VMC</td><td>XYZ-820X510X510 MM</td><td>MACPOWER</td><td>1</td></tr>
<tr><td>EDM</td><td>550X350 MM</td><td>CHMER</td><td>1</td></tr>
<tr><td>Surface Grinding</td><td>450X150 MM</td><td>SEEDTEC</td><td>1</td></tr>
<tr><td>Surface Grinding</td><td>1000X500 MM</td><td>DAHANUKAR</td><td>1</td></tr>
<tr><td>Screw Compressor</td><td>7.5 HP</td><td>FRANK</td><td>1</td></tr>
<tr><td>Stacker (Heavy)</td><td>2 TON</td><td>HUNTER, CHINA</td><td>1</td></tr>
</tbody>
</table>
</div>
</div>
<!-- Modal Footer -->
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- View Our Machines Modal -->
<div class="modal fade" id="machineGalleryModal" tabindex="-1" aria-labelledby="machineGalleryModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered">
<div class="modal-content modal-customs">
<!-- Modal Header -->
<div class="modal-header text-gradient">
<h5 class="modal-title" style="background: linear-gradient(to right, red, #1e1e24)!important;
-webkit-background-clip: text!important;
color: transparent!important;
font-size: 1rem;
font-weight: 600;" id="machineGalleryModalLabel">Aggressive Polymer-Our Machines</h5>
<button type="button" class="btn-close btn-close-modal" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<!-- Modal Body (Carousel with Fixed Height) -->
<div class="modal-body d-flex flex-column align-items-center">
<div id="machineCarousel" class="carousel slide" data-bs-ride="carousel">
<!-- Carousel Indicators -->
<div class="carousel-indicators">
<button type="button" data-bs-target="#machineCarousel" data-bs-slide-to="0" class="active"></button>
<button type="button" data-bs-target="#machineCarousel" data-bs-slide-to="1"></button>
<button type="button" data-bs-target="#machineCarousel" data-bs-slide-to="2"></button>
<button type="button" data-bs-target="#machineCarousel" data-bs-slide-to="3"></button>
</div>
<div class="carousel-inner carousel-inner-modal ">
<!-- Image 1 -->
<div class="carousel-item active">
<img src="./assets/images/view-machine-1.jpeg" class="machine-img" alt="Machine 1" loading="lazy">
</div>
<!-- Image 2 -->
<div class="carousel-item">
<img src="./assets/images/view-machine-2.jpeg" class="machine-img" alt="Machine 2" loading="lazy">
</div>
<!-- Image 3 -->
<div class="carousel-item">
<img src="./assets/images/view-machine-3.jpeg" class="machine-img" alt="Machine 3" loading="lazy">
</div>
<!-- Image 4 -->
<div class="carousel-item">
<img src="./assets/images/view-machine-4.jpeg" class="machine-img" alt="Machine 4" loading="lazy">
</div>
</div>
<!-- Carousel Controls (Middle Left & Right in Square Boxes) -->
<button class="carousel-control-prev carousel-control-prev-modal custom-control" type="button" data-bs-target="#machineCarousel" data-bs-slide="prev">
<span class="carousel-control-prev-icon"></span>
</button>
<button class="carousel-control-next carousel-control-next-modal custom-control" type="button" data-bs-target="#machineCarousel" data-bs-slide="next">
<span class="carousel-control-next-icon"></span>
</button>
</div>
<!-- Machine Name Container -->
<div class="machine-name text-center mt-2">
<h5 id="machineTitle"> EDM MACHINE- CHMER </h5>
<h6 id="machineSize">
BED SIZE— 550X350 MM</h6>
</div>
</div>
<!-- Modal Footer -->
<!-- <div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div> -->
</div>
</div>
</div>
<!-- ========== End capabilities ========== -->
<!-- ========== Start why-choosen-us ========== -->
<section id="why-choosen-us" class="why-choosen-us mt-5 py-5 fade-section">
<div class="container">
<div class="row align-items-center justify-content-center">
<!-- First Column -->
<div class="col-12 col-lg-4 mb-5 mb-md-4 px-4 px-md-5 px-lg-0">
<h2 class="why-choosen-us-section-heading text-gradient">Why Choose Us</h2>
<p class="why-choosen-us-description">
We deliver excellence through innovation, quality, and customer-centric solutions. With a focus on collaboration, sustainability, and continuous improvement, our proven processes ensure successful outcomes for our clients. Our dedication to quality, cost optimization, and timely delivery sets us apart in the industry. By staying aligned with market trends and client goals, we bring your vision to life with precision and reliability.
</p>
<button type="button" class="btn btn-primary fs-6 mt-2 mb-3 me-0 ms-sm-2" data-bs-toggle="modal" data-bs-target="#machineGalleryModal">
View Our Machines
</button>
</div>
<!-- Second Column -->
<div class="col-10 col-md-10 col-lg-8">
<div class="row g-md-5 g-5 g-lg-4">
<!-- Card 1 -->
<div class="col-12 offset-0 col-sm-10 col-md-6 offset-md-0 col-lg-4">
<div class="card-box" style="background-image: url('./assets/images/mimi-thian-vdXMSiX-n6M-unsplash.jpg')!important;">
<div class="card-content">
<h4>Collaboration</h4>
<p class="text-center">We ensure close interaction with marketing and engineering teams to align with your goals.</p>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="col-12 offset-0 col-sm-10 col-md-6 offset-md-0 col-lg-4">
<div class="card-box" style="background-image: url('./assets/images/qa-3.jpg');">
<div class="card-content">
<h4>Quality</h4>
<p class="text-center">Our focus is on delivering exceptional quality at every stage of development.</p>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="col-12 offset-0 col-sm-10 col-md-6 offset-md-0 col-lg-4">
<div class="card-box" style="background-image: url('./assets/images/innovation-bulb.jpg');">
<div class="card-content">
<h4>Innovation</h4>
<p class="text-center">We continuously improve to stay ahead of trends and provide innovative solutions.</p>
</div>
</div>
</div>
<!-- Card 4 -->
<div class="col-12 offset-0 col-sm-10 col-md-6 offset-md-0 col-lg-4">
<div class="card-box" style="background-image: url('./assets/images/sustainability\ concept.png');">
<div class="card-content">
<h4>Sustainability</h4>
<p class="text-center">Sustainability and ethical practices drive our work for a better future.</p>
</div>
</div>
</div>
<!-- Card 5 -->
<div class="col-12 offset-0 col-sm-10 col-md-6 offset-md-0 col-lg-4">
<div class="card-box" style="background-image: url('./assets/images/reliability-concept.png');">
<div class="card-content">
<h4>Reliability</h4>
<p class="text-center">Timely delivery and precision define our commitment to excellence.</p>
</div>
</div>
</div>
<!-- Card 6 -->
<div class="col-12 offset-0 col-sm-10 col-md-6 offset-md-0 col-lg-4">
<div class="card-box" style="background-image: url('./assets/images/digital-globe.png');">
<div class="card-content">
<h4>Global Standards</h4>
<p class="text-center">Delivering solutions that meet global standards while understanding local needs.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ========== End why-choosen-us ========== -->
<!-- ========== Start your-business-partner ========== -->
<section id="your-business-model" class="your-business-model mt-5 mb-3 py-5 fade-section">
<div class="container text-center">
<!-- First Row -->
<div class="row pt-1">
<div class="col-12 your-business-model-content">
<h1 class="your-business-model-content__heading text-inside-gradient">Your Business Model</h1>
<p class="your-business-model-content__description mx-auto">
We strongly believe in the concept "Customer-driven Collaborative Product Development (CdCPD)."
Client involvement is most important throughout the product development cycle.
Close interaction with marketing and engineering teams of the client will help our expertise
to work better in achieving the client's expectations and marketing goals.
</p>
</div>
</div>
<!-- Second Row -->
<div class="row pb-5">
<div class="col-12">
<div class="your-business-model__logos">
<div class="your-business-model__logos-wrapper pb-lg-5 pb-2 pb-sm-3 pb-md-4">
<img src="./assets/images/client-1.png" alt="Client 1" class="your-business-model__logos-wrapper__logo" width="100" height="100" loading="lazy">
<img src="./assets/images/client-2.png" alt="Client 2" class="your-business-model__logos-wrapper__logo" width="100" height="100" loading="lazy">
<img src="./assets/images/client-3.png" alt="Client 3" class="your-business-model__logos-wrapper__logo" width="100" height="100" loading="lazy">
<img src="./assets/images/client-4.png" alt="Client 4" class="your-business-model__logos-wrapper__logo" width="100" height="100" loading="lazy">
<img src="./assets/images/client-5.png" alt="Client 5" class="your-business-model__logos-wrapper__logo" width="100" height="100" loading="lazy">
<img src="./assets/images/client-6.png" alt="Client 6" class="your-business-model__logos-wrapper__logo" width="100" height="100" loading="lazy">
<img src="./assets/images/client-7.png" alt="Client 7" class="your-business-model__logos-wrapper__logo" width="100" height="100" loading="lazy">
<img src="./assets/images/client-8.png" alt="Client 8" class="your-business-model__logos-wrapper__logo" width="100" height="100" loading="lazy">
<img src="./assets/images/client-9-1.png" alt="Client 9" class="your-business-model__logos-wrapper__logo" width="100" height="100" loading="lazy">
<img src="./assets/images/client-10.png" alt="Client 10" class="your-business-model__logos-wrapper__logo" width="100" height="100" loading="lazy">
</div>
</div>
</div>
</div>
</div>
<svg class="your-business-model__wave" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="#fff" fill-opacity="1" d="M0,224L18.5,218.7C36.9,213,74,203,111,208C147.7,213,185,235,222,218.7C258.5,203,295,149,332,149.3C369.2,149,406,203,443,192C480,181,517,107,554,90.7C590.8,75,628,117,665,154.7C701.5,192,738,224,775,202.7C812.3,181,849,107,886,80C923.1,53,960,75,997,101.3C1033.8,128,1071,160,1108,160C1144.6,160,1182,128,1218,128C1255.4,128,1292,160,1329,160C1366.2,160,1403,128,1422,112L1440,96L1440,320L1421.5,320C1403.1,320,1366,320,1329,320C1292.3,320,1255,320,1218,320C1181.5,320,1145,320,1108,320C1070.8,320,1034,320,997,320C960,320,923,320,886,320C849.2,320,812,320,775,320C738.5,320,702,320,665,320C627.7,320,591,320,554,320C516.9,320,480,320,443,320C406.2,320,369,320,332,320C295.4,320,258,320,222,320C184.6,320,148,320,111,320C73.8,320,37,320,18,320L0,320Z"></path></svg>
</section>
<!-- ========== End your-business-partner ========== -->
<!-- ========== Start pagination section ========== -->
<div class="container mb-4">
<nav aria-label="Page navigation">
<ul class="pagination justify-content-center justify-content-md-end pagination-lg">
<li class="page-item disabled">
<a class="page-link next-arrow" href="" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
<li class="page-item active"><a class="page-link" href="index.html">1</a></li>
<li class="page-item"><a class="page-link" href="services.html">2</a></li>
<li class="page-item"><a class="page-link" href="product_development.html">3</a></li>
<li class="page-item">
<a class="page-link right-arrow" href="services.html" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</nav>
</div>
<!-- ========== End pagination section ========== -->
</div>
<!-- ========== Start contact-us footer ========== -->
<footer id="footer" class="footer mt-0 fade-section">
<div class="container-fluid px-0">
<!-- First Row -->
<div class="row">
<div class="col-10 offset-1 col-sm-8 offset-sm-2 col-md-12 offset-md-0 col-lg-12 offset-lg-0">
<div class="row footer__row text-center">
<!-- Get in Touch -->
<div class="col-lg-5 col-md-4 offset-md-1">
<h5 class="footer__heading text-gradient">Get in Touch with us!</h5>
<p class="footer__content">
Have questions or need assistance? We're here to help.
Feel free to reach out to us through the following channels.
Our dedicated team ensures your queries are addressed promptly and effectively.
</p>
<div class="footer__icon d-flex align-items-center">
<i class="fas fa-envelope me-3 fa-sm text-gradient" ></i>
<a href="mailto:aggressivepolymers@outlook.com" style="text-decoration: none; color: inherit;">
aggressivepolymers@outlook.com
</a>
</div>
<div class="footer__icon">
<i class="fas fa-mobile-alt me-4 fa-sm text-gradient"></i>
<div>
<a href="tel:+918056227558" style="text-decoration: none; color: inherit;">+91 8056227558</a><br>
<a href="tel:+919047425015" style="text-decoration: none; color: inherit;">+91 9047425015</a>
</div>
</div>
<div class="footer__icon">
<a href="https://www.google.com/maps/search/?api=1&query=No.15/A, Kamatchi Amman Street, Ekkattuthangal, Chennai-32, TamilNadu"
target="_blank"
style="text-decoration: none; color: inherit;">
<i class="fas fa-map-marker-alt fa-sm me-4 text-gradient"></i>
No.15/A, Kamatchi Amman Street, Ekkattuthangal,<br>
Chennai-32, TamilNadu
</a>
</div>
</div>
<!-- Contact Us Form -->
<div class="col-md-5 col-lg-4 offset-md-1 footer__form">
<h3 class="footer__head">say something 😊</h3>
<form>
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Mail" required>
<textarea rows="4" name="message" placeholder="Message..." required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</div>
</div>
</div>
<!-- Second Row -->
<div class="row g-sm-4 g-md-3 g-lg-0 footer__bottom mt-0">
<div class="col-lg-4 col-md-5 col-sm-6 footer__column mt-lg-0 d-flex flex-column align-items-start justify-content-start">
<h3 class="footer__column-heading">About Us</h3>
<div class="footer__column-line"></div>
<div class="footer__column-para">
Aggressive Polymers specializes in plastic injection molds, jigs, and fixtures, delivering innovative and cost-effective solutions to drive business success.
</div>
<!-- View Our Machines Button -->
<button type="button" class="btn btn-danger bg-warning fs-6 mt-3 me-0 ms-sm-0" data-bs-toggle="modal" data-bs-target="#machineGalleryModal">
View Our Machines
</button>
</div>
<div class="col-lg-2 col-md-3 col-sm-5 footer__column">
<h3 class="footer__column-heading">Quick Links</h3>
<div class="footer__column-line"></div>
<div class="footer__links">
<a href="index.html">Home</a>
<a href="index.html">About Us</a>
<a href="services.html">Services</a>
<a href="index.html">Capabilities</a>
<a href="product_development.html">Product Development</a>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-5 order-sm-4 order-md-3 footer__column">
<h3 class="footer__column-heading">Address</h3>
<div class="footer__column-line"></div>
<p>No.15/A, Kamatchi Amman Street, Ekkattuthangal,<br>
Chennai-32, TamilNadu <br>
<a href="https://maps.google.com/?q=13.0102,80.2124" target="_blank">
View on Google Maps
</a>
</p>
</div>
<div class="col-lg-3 col-md-4 col-sm-6 me-sm-4 me-md-0 footer__column order-sm-3 order-md-4 px-4">
<h3 class="footer__column-heading">Contact Links</h3>
<div class="footer__column-line"></div>
<a href="https://wa.me/918056227558" target="_blank" class="footer__button"><i class="fab fa-whatsapp-square fa-lg me-3 text-gradient"></i>Chat with Us</a>
<a href="mailto:aggressivepolymers@outlook.com" class="footer__button"> <i class="fas fa-envelope me-3 f6 text-gradient" ></i>Email Us</a>
</div>
</div>
</div>
</footer>