WeldingCableManufactures – Professional Header

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,Helvetica,sans-serif;
}
html,body{
width:100%;
overflow-x:hidden;
background:#f4f6f9;
}
/* FULL HEADER */
.full-wrap{
position:relative;
left:50%;
margin-left:-50vw;
width:100vw;
background:linear-gradient(90deg,#0f172a,#1e293b,#334155);
border-bottom:4px solid #ff7a00;
box-shadow:0 8px 25px rgba(0,0,0,.18);
}
.inner{
max-width:1350px;
margin:auto;
padding:14px 20px;
display:flex;
align-items:center;
justify-content:space-between;
gap:18px;
flex-wrap:wrap;
}
/* LOGO */
.logo{
font-size:32px;
font-weight:900;
color:#fff;
letter-spacing:.5px;
line-height:1.1;
}
.logo span{
display:block;
font-size:13px;
font-weight:600;
margin-top:6px;
color:#ffb347;
text-transform:uppercase;
letter-spacing:2px;
}
/* MENU */
.menu{
display:flex;
align-items:center;
gap:8px;
flex-wrap:wrap;
}
.menu a{
color:#fff;
text-decoration:none;
font-size:15px;
font-weight:700;
padding:11px 18px;
border-radius:40px;
transition:.35s;
}
.menu a:hover{
background:#ff7a00;
color:#fff;
transform:translateY(-2px);
}
/* SEARCH */
.search{
flex:1;
min-width:320px;
display:flex;
background:#fff;
border-radius:50px;
overflow:hidden;
border:2px solid #ff7a00;
box-shadow:0 5px 15px rgba(0,0,0,.12);
}
.search input{
flex:1;
border:none;
outline:none;
padding:15px 18px;
font-size:15px;
}
.search button{
width:60px;
border:none;
background:#ff7a00;
cursor:pointer;
transition:.3s;
}
.search button:hover{
background:#e56700;
}
.search svg{
width:24px;
height:24px;
stroke:#fff;
}
/* BUTTONS */
.right-box{
display:flex;
gap:12px;
align-items:center;
flex-wrap:wrap;
}
.call-btn,
.whatsapp{
padding:13px 22px;
border-radius:50px;
font-weight:bold;
font-size:14px;
text-decoration:none;
color:#fff;
transition:.35s;
box-shadow:0 6px 18px rgba(0,0,0,.2);
position:relative;
overflow:hidden;
}
.call-btn{
background:linear-gradient(135deg,#ff7a00,#ff9500);
}
.whatsapp{
background:linear-gradient(135deg,#00b15d,#25D366);
}
.call-btn::before,
.whatsapp::before{
content:””;
position:absolute;
top:0;
left:-100%;
width:60%;
height:100%;
background:rgba(255,255,255,.25);
transform:skewX(-25deg);
animation:shine 3s infinite;
}
.call-btn:hover,
.whatsapp:hover{
transform:translateY(-4px) scale(1.05);
}
@keyframes shine{
0%{
left:-100%;
}
100%{
left:180%;
}
}
/* MOBILE */
@media(max-width:900px){
.inner{
flex-direction:column;
align-items:stretch;
}
.logo{
text-align:center;
}
.menu{
justify-content:center;
}
.search{
min-width:100%;
width:100%;
}
.right-box{
justify-content:center;
}
.call-btn,
.whatsapp{
flex:1;
text-align:center;
}
}


WeldingCableManufactures
Premium Welding Cable Store





📞 Call Now


đź’¬ WhatsApp

Powerful Performance For Heavy-Duty Welding Applications
Stable Arc Characteristics Ensure Smooth And Reliable Weld Quality
Built For Maximum Durability Efficiency And LongTerm Productivity

Click Here

Precision Gas Torch For Accurate Heating, Cutting, And Brazing Applications
Delivers A Stable Flame And Reliable Performance For Professional Use

Click Here

Advanced Auto Darkening Technology Provides Instant Eye Protection During Welding Lightweight And Comfortable Design Ensures Long Hours Of Safe Operation Enhanced Visibility And Fast Response Time Improve Welding Accuracy And Safety

Click Here


Argon Tig Regulator

Murex Gas Cutting Torch

Pug Cutting Machine

High Pressure Welding Torch

Ibell Vormir Welding Machine

Welding Rod

Serplex® 50W Plastic Welding Kit

BELL M220-81 Digital MIG 2

Need Any Welding Product?


📱 Chat On WhatsApp

Our Products | WeldingCableManufactures

body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#f2f4f7;
}
/* PAGE */
.container{
max-width:1600px;
margin:30px auto;
padding:10px;
}
/* GRID – 4 COLUMNS */
.grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}
/* RESPONSIVE */
@media(max-width:1600px){
.grid{ grid-template-columns:repeat(3,1fr); }
}
@media(max-width:768px){
.grid{ grid-template-columns:repeat(2,1fr); }
}
@media(max-width:480px){
.grid{ grid-template-columns:1fr; }
}
/* CARD */
.card{
background:#fff;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.12);
overflow:hidden;
position:relative;
transition:0.3s;
}
.card:hover{
transform:translateY(-5px);
}
/* SALE */
.sale{
position:absolute;
top:10px;
left:10px;
background:#dc2626;
color:#fff;
font-size:12px;
padding:5px 12px;
border-radius:20px;
}
/* IMAGE */
.card img{
width:100%;
height:180px;
object-fit:cover;
}
/* CONTENT */
.card-body{
padding:15px;
}
.card-body h3{
margin:0;
font-size:15px;
}
.card-body p{
font-size:13px;
color:#555;
}
/* BUTTON */
.card-body button{
margin-top:10px;
padding:9px 16px;
border:none;
border-radius:20px;
background:#0f5132;
color:#fff;
cursor:pointer;
}
.card-body button:hover{
background:#063d28;
}
/* MODAL */
.modal{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,0.6);
}
.modal-content{
background:#fff;
max-width:500px;
margin:80px auto;
padding:20px;
border-radius:10px;
position:relative;
}
.close{
position:absolute;
top:10px;
right:15px;
font-size:22px;
cursor:pointer;
}
.modal img{
width:100%;
height:220px;
object-fit:cover;
}


SALE

Super Drive 200 Arc Igbt With Hot Start

Industrial copper welding cable



SALE

M155-10 MMA Welding Machine, 155A with IGBT, Hot Start, Anti-Stick, Inverter Welding Machine

Flexible & heavy duty cable



SALE

KOUREVON 250A MMA ARC IGBT Technology LED Display. Hot Start and Anti Stick Functions Inverter Welding Machine

High current welding cable



SALE

105 Vormir M155 10 105a With Arc Force Provided In Bmc Oariginal

Extra heavy duty insulation



Ă—

Popular Welding Products

Auto Dark Welding Helmet

₹1,499


WhatsApp Now

Welding Safety Glasses

₹399


WhatsApp Now

Welding Gloves

₹499


WhatsApp Now

Industrial Welding Helmet

₹2,299


WhatsApp Now

Welding Safety Jacket

₹799


WhatsApp Now

.amazon-slider-wrap{
background:#fff;
padding:15px;
border-radius:12px;
margin:20px 0;
overflow:hidden;
}
.amazon-slider-wrap h2{
font-size:22px;
font-weight:700;
margin-bottom:15px;
color:#222;
}
.amazon-slider{
display:flex;
gap:12px;
overflow-x:auto;
scroll-behavior:smooth;
-webkit-overflow-scrolling:touch;
padding-bottom:10px;
scrollbar-width:none;
}
.amazon-slider::-webkit-scrollbar{
display:none;
}
.product-card{
min-width:170px;
max-width:170px;
background:#fff;
border:1px solid #e5e5e5;
border-radius:10px;
padding:10px;
flex-shrink:0;
}
.product-card img{
width:100%;
height:140px;
object-fit:contain;
display:block;
}
.product-card h3{
font-size:14px;
line-height:1.4;
color:#222;
margin:10px 0;
height:38px;
overflow:hidden;
}
.product-card p{
font-size:20px;
font-weight:bold;
color:#B12704;
margin-bottom:10px;
}
.product-card a{
display:block;
text-align:center;
background:#25D366;
color:#fff;
text-decoration:none;
padding:10px;
border-radius:25px;
font-size:13px;
font-weight:bold;
}
.product-card a:hover{
opacity:.9;
}
/* Tablet */
@media(min-width:768px){
.product-card{
min-width:220px;
max-width:220px;
}
.product-card img{
height:180px;
}
.product-card h3{
font-size:16px;
height:auto;
}
}
/* Desktop */
@media(min-width:1024px){
.product-card{
min-width:260px;
max-width:260px;
}
.product-card img{
height:220px;
}
.product-card p{
font-size:24px;
}
}

.top-selling-products{
padding:80px 20px;
background:#fff;
font-family:Arial,sans-serif;
}
.top-selling-container{
max-width:1200px;
margin:auto;
}
.top-selling-heading{
text-align:center;
margin-bottom:45px;
}
.top-selling-heading h2{
font-size:40px;
color:#111827;
margin-bottom:10px;
}
.top-selling-heading p{
color:#6b7280;
}
.top-selling-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}
.top-product-card{
background:#fff;
border-radius:15px;
overflow:hidden;
text-decoration:none;
box-shadow:0 4px 18px rgba(0,0,0,0.08);
transition:.3s;
}
.top-product-card:hover{
transform:translateY(-8px);
box-shadow:0 12px 25px rgba(0,0,0,0.15);
}
.top-product-card img{
width:100%;
height:260px;
object-fit:cover;
display:block;
}
.product-name{
text-align:center;
padding:18px;
font-size:18px;
font-weight:700;
color:#111827;
}
@media(max-width:992px){
.top-selling-grid{
grid-template-columns:repeat(2,1fr);
}
}
@media(max-width:576px){
.top-selling-grid{
grid-template-columns:1fr;
}
.top-selling-heading h2{
font-size:30px;
}
}

Top Selling Products

Most Popular Welding Products


Welding Safety Gloves
Welding Safety Gloves


25 Sqmm Welding Cable
25 Sqmm Welding Cable


35 Sqmm Welding Cable
Auto Dark Helmet


50 Sqmm Welding Cable
Cable Copper for Welding Inverter Machine

body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#f2f4f7;
}
.container{
max-width:1200px;
margin:20px auto;
padding:15px;
}
.grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}
.card{
background:#fff;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,.12);
overflow:hidden;
position:relative;
transition:.3s;
}
.card:hover{
transform:translateY(-5px);
}
.sale{
position:absolute;
top:10px;
left:10px;
background:#dc2626;
color:#fff;
font-size:12px;
padding:5px 12px;
border-radius:20px;
font-weight:bold;
}
.card img{
width:100%;
height:200px;
object-fit:cover;
display:block;
}
.card-body{
padding:15px;
}
.card-body h3{
margin:0 0 8px;
font-size:16px;
line-height:22px;
}
.card-body p{
font-size:13px;
color:#555;
margin-bottom:10px;
}
.card-body button{
width:100%;
padding:10px;
border:none;
border-radius:25px;
background:#0f5132;
color:#fff;
cursor:pointer;
font-weight:bold;
}
.card-body button:hover{
background:#063d28;
}
/* MODAL */
.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.65);
z-index:9999;
padding:15px;
overflow:auto;
}
.modal-content{
background:#fff;
max-width:550px;
margin:40px auto;
padding:20px;
border-radius:12px;
position:relative;
}
.close{
position:absolute;
right:15px;
top:10px;
font-size:28px;
cursor:pointer;
font-weight:bold;
}
.modal img{
width:100%;
height:260px;
object-fit:cover;
border-radius:8px;
}
#modalTitle{
margin-top:15px;
font-size:22px;
}
#modalDesc{
line-height:24px;
font-size:15px;
}
/* TABLET */
@media(max-width:1024px){
.grid{
grid-template-columns:repeat(2,1fr);
}
}
/* MOBILE */
@media(max-width:768px){
.container{
padding:10px;
}
.grid{
grid-template-columns:1fr;
gap:15px;
}
.card img{
height:220px;
}
.card-body h3{
font-size:18px;
}
.card-body p{
font-size:14px;
}
.modal-content{
width:100%;
margin:20px auto;
padding:15px;
}
.modal img{
height:220px;
}
#modalTitle{
font-size:20px;
}
#modalDesc{
font-size:14px;
line-height:22px;
}
}
/* SMALL MOBILE */
@media(max-width:480px){
.card img{
height:180px;
}
.modal img{
height:180px;
}
}

Need Any Welding Product?

Looking for Welding Cables, Welding Machines, Safety Helmets,
Safety Glasses, Gloves or Industrial Welding Accessories?
to help you find the right product at the best price.


📱 Chat On WhatsApp

WhatsApp Floating Button

*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family:Arial, sans-serif;
min-height:2000px;
background:#f5f5f5;
}
/* Demo Content */
.container{
padding:50px;
}
.container h1{
color:#333;
margin-bottom:15px;
}
.container p{
font-size:18px;
line-height:1.8;
}
/* WhatsApp Floating Button */
.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:75px;
height:75px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
text-decoration:none;
z-index:99999;
box-shadow:0 0 0 15px rgba(37,211,102,0.25);
animation:pulse 2s infinite;
transition:0.3s;
}
.whatsapp-float:hover{
transform:scale(1.08);
}
.whatsapp-float img{
width:42px;
height:42px;
}
/* Pulse Animation */
@keyframes pulse{
0%{
box-shadow:0 0 0 0 rgba(37,211,102,0.5);
}
70%{
box-shadow:0 0 0 22px rgba(37,211,102,0);
}
100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}
}
/* Mobile */
@media(max-width:768px){
.whatsapp-float{
width:65px;
height:65px;
bottom:20px;
right:20px;
}
.whatsapp-float img{
width:36px;
height:36px;
}
}

Welding Cable Manufactures

IF YOU NEED TO TALK ABOUT PRODUCTS IN RIGHT SIDE WHATSAPP ICON CLICK AND CONTACT WITH US



WhatsApp

WeldingCableManufactures.com

Premium quality welding cables manufactured for industrial,
fabrication, construction and heavy-duty applications.

Delivering reliable performance, durability and superior
conductivity for professionals across India.

Quick Links

Home

Our Products

About Us

Contact Us

Information

Privacy Policy

Terms & Conditions

FAQ

Sitemap

Contact

📞 +91 9082404995

✉ info@weldingcablemanufactures.com

đź’¬ WhatsApp Support Available

📍 India


© 2026 WeldingCableManufactures.com | All Rights Reserved.

About WeldingCableManufactures.com

WeldingCableManufactures.com is a trusted supplier of premium quality welding cables,
welding machines and industrial welding accessories. We offer a wide range of welding
safety products including safety helmets, welding safety glasses and protective gloves
designed to meet industrial standards. Our products are suitable for fabrication workshops,
construction projects and heavy-duty industrial applications. We focus on quality,
durability and customer satisfaction by providing reliable welding solutions at competitive prices.

*{
box-sizing:border-box;
margin:0;
padding:0;
}
.category-section{
padding:15px;
background:#f3f3f3;
}
.category-wrapper{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}
.category-box{
background:#fff;
padding:20px;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}
.category-box h2{
margin-bottom:15px;
font-size:22px;
color:#222;
}
.product-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
}
.product-grid img{
width:100%;
height:120px;
object-fit:contain;
background:#fff;
}
.product-grid p{
margin-top:5px;
font-size:14px;
color:#333;
text-align:center;
}

/* TABLET */
@media(max-width:991px){
.category-wrapper{
grid-template-columns:repeat(2,1fr);
gap:15px;
}
.category-box{
padding:15px;
}
.category-box h2{
font-size:20px;
}
.product-grid img{
height:110px;
}
}
/* MOBILE */
@media(max-width:768px){
.category-section{
padding:10px;
}
.category-wrapper{
grid-template-columns:1fr;
gap:15px;
}
.category-box{
padding:15px;
border-radius:12px;
}
.category-box h2{
font-size:20px;
text-align:center;
margin-bottom:15px;
}
.product-grid{
gap:8px;
}
.product-grid img{
height:90px;
}
.product-grid p{
font-size:13px;
line-height:1.3;
}
}
/* SMALL MOBILE */
@media(max-width:480px){
.category-section{
padding:8px;
}
.category-box{
padding:12px;
}
.category-box h2{
font-size:18px;
}
.product-grid img{
height:80px;
}
.product-grid p{
font-size:12px;
}
}

/* AMAZON STYLE EFFECT */
.category-box{
transition:.3s;
cursor:pointer;
}
.category-box:hover{
transform:translateY(-5px);
box-shadow:0 8px 25px rgba(0,0,0,.15);
}
.product-grid div{
background:#fafafa;
padding:8px;
border-radius:8px;
transition:.3s;
}
.product-grid div:hover{
background:#f1f1f1;
}
.product-grid img{
transition:.3s;
}
.product-grid img:hover{
transform:scale(1.05);
}
/* SEE MORE BUTTON */
.see-more{
display:block;
margin-top:15px;
text-align:center;
background:#0f5132;
color:#fff;
text-decoration:none;
padding:12px;
border-radius:30px;
font-weight:bold;
font-size:14px;
}
.see-more:hover{
background:#198754;
}
/* MOBILE IMPROVEMENTS */
@media(max-width:768px){
.category-box{
border-radius:15px;
}
.product-grid{
grid-template-columns:1fr 1fr;
gap:10px;
}
.product-grid div{
padding:6px;
}
.see-more{
padding:10px;
font-size:13px;
}
}

Showing 1–9 of 238 results

Scroll to Top