/* ================= GLOBAL ================= */

body{
font-family:Arial, Helvetica, sans-serif;
margin:0;
line-height:1.6;
color:#222;
background:#ffffff;
}

.container{
max-width:1100px;
margin:0 auto;
padding:0 20px;
}

/* ================= TITLES ================= */

h2{
position:relative;
display:inline-block;
margin-bottom:30px;
}

h2::after{
content:"";
display:block;
width:60px;
height:3px;
background:#359935;
margin-top:8px;
}

/* ================= HEADER ================= */

.site-header{
background:linear-gradient(90deg,#2f8f2f,#359935);
border-bottom:1px solid rgba(0,0,0,0.1);
box-shadow:0 2px 6px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:1000;
}

.site-header::after{
content:"";
display:block;
height:3px;
background:linear-gradient(90deg,#8cff8c,#2f8f2f,#8cff8c);
}

.header-inner{
max-width:1200px;
margin:0 auto;
padding:14px 20px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo-block{
display:flex;
align-items:center;
gap:14px;
}

.site-logo{
height:60px;
}

.brand-text{
display:flex;
flex-direction:column;
}

.brand-text strong{
color:white;
font-size:1.05em;
}

.brand-text span{
color:#e9f7e9;
font-size:0.9em;
}

.main-nav{
display:flex;
align-items:center;
flex-wrap:nowrap;
}

.main-nav a{
margin-left:16px;
text-decoration:none;
color:white;
font-weight:600;
white-space:nowrap;
transition:0.2s;
}

.main-nav a:hover{
color:#e6ffe6;
}

/* ================= HERO ================= */

.hero{
background-image:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("/assets/hero-steel.jpg");
background-size:cover;
background-position:center;
padding:120px 20px;
text-align:center;
color:white;
}

.hero-content{
max-width:900px;
margin:0 auto;
}

.hero h1{
font-size:2.6em;
margin-bottom:20px;
}

.hero p{
font-size:1.2em;
color:#dfe6ee;
}

.cta-button{
display:inline-block;
background:#ffffff;
color:#003366;
padding:12px 28px;
font-weight:700;
border-radius:6px;
text-decoration:none;
margin-top:20px;
transition:0.25s;
}

.cta-button:hover{
background:#e6e6e6;
}

/* ================= STATS ================= */

.stats{
padding:40px 20px;
background:#f8fafc;
}

.stats-grid{
max-width:1000px;
margin:0 auto;
display:flex;
justify-content:space-between;
text-align:center;
flex-wrap:wrap;
}

.stats-grid div{
flex:1;
min-width:200px;
}

.stats-grid h3{
font-size:2em;
color:#003366;
}

/* ================= SOLUTIONS ================= */

.home-solutions{
padding:40px 20px;
text-align:center;
}

.solutions-grid{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.solution-box{
background:#f4f6f9;
padding:30px;
width:360px;
border-radius:6px;
border:1px solid #e5e5e5;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
transition:0.25s;
}

.solution-box:hover{
transform:translateY(-5px);
box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

/* ================= WHY DAMANI ================= */

.why-damani{
background:#f8fafc;
padding:40px 20px;
text-align:center;
}

.why-grid{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
max-width:1100px;
margin:0 auto;
}

.why-grid div{
background:white;
padding:25px;
border-radius:6px;
border:1px solid #e5e5e5;
max-width:300px;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

/* ================= INDUSTRIES ================= */

.industries{
padding:40px 20px;
text-align:center;
}

.industries-grid{
display:flex;
flex-wrap:wrap;
gap:30px;
justify-content:center;
max-width:1100px;
margin:0 auto;
}

.industries-grid div{
background:#f4f6f9;
padding:25px;
border-radius:6px;
max-width:250px;
border:1px solid #e5e5e5;
}

/* ================= HOME APPLICATIONS ================= */

.applications-preview{
background:#f8fafc;
padding:40px 20px;
text-align:center;
}

.applications-grid{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
max-width:1000px;
margin:0 auto;
}

.home-app-card{
background:white;
border-radius:6px;
overflow:hidden;
width:280px;
border:1px solid #e5e5e5;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
transition:0.25s;
text-align:center;
}

.home-app-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.home-app-card img{
width:100%;
height:170px;
object-fit:cover;
}

.home-app-card h3{
margin:18px 0 8px 0;
color:#003366;
}

.home-app-card p{
padding:0 20px 20px 20px;
}

/* ================= APPLICATION PAGE ================= */

.application-block{
padding:35px 20px;
}

.application-grid{
display:flex;
align-items:center;
gap:35px;
max-width:1100px;
margin:10px auto;
}

.application-grid.reverse{
flex-direction:row-reverse;
}

.application-image img{
width:100%;
max-width:460px;
border-radius:6px;
}

.application-text{
flex:1;
font-size:17px;
line-height:1.7;
}

/* ================= CONTACT ================= */

.contact-layout{
display:flex;
gap:60px;
max-width:1000px;
margin:40px auto;
align-items:flex-start;
}

.contact-form{
flex:1;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:12px;
}

.contact-form input,
.contact-form textarea{
padding:10px;
border:1px solid #ccc;
border-radius:4px;
font-size:14px;
}

.contact-map{
flex:1;
}

/* ================= WORLD MAP ================= */

.world-map{
position:relative;
max-width:600px;
margin:0 auto;
border:1px solid #e5e5e5;
border-radius:6px;
padding:10px;
background:#fafafa;
}

.world-map img{
width:100%;
height:auto;
}

/* map points */

.map-point{
position:absolute;
width:14px;
height:14px;
background:#2ecc71;
border-radius:50%;
border:3px solid white;
box-shadow:0 0 8px rgba(0,0,0,0.3);
animation:pulse 2s infinite;
}

@keyframes pulse{

0%{
transform:scale(1);
box-shadow:0 0 0 0 rgba(46,204,113,0.7);
}

70%{
transform:scale(1.3);
box-shadow:0 0 0 12px rgba(46,204,113,0);
}

100%{
transform:scale(1);
}

}

/* map locations */

.canada{ top:32%; left:22%; }
.uk{ top:33%; left:47%; }
.germany{ top:36%; left:50%; }
.italy{ top:40%; left:51%; }
.japan{ top:37%; left:82%; }
.brazil{ top:63%; left:36%; }

/* ================= PARTNERS ================= */

.partners-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
max-width:800px;
margin:30px auto;
text-align:center;
}

.partner-card img{
width:120px;
margin:0 auto 10px auto;
filter:grayscale(100%);
transition:0.3s ease;
}

.partner-card:hover img{
filter:grayscale(0%);
transform:scale(1.08);
}

/* ================= FOOTER ================= */

.site-footer{
background:#359935;
color:white;
margin-top:40px;
padding:35px 20px;
}

.footer-container{
display:flex;
flex-wrap:wrap;
justify-content:space-between;
max-width:1100px;
margin:0 auto;
}

.footer-column{
min-width:250px;
}

.footer-column a{
color:white;
text-decoration:none;
}

.footer-logo{
height:48px;
margin-bottom:12px;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.3);
margin-top:20px;
padding-top:10px;
}

/* ================= MOBILE ================= */

@media (max-width:900px){

.header-inner{
flex-direction:column;
align-items:flex-start;
}

.main-nav{
flex-wrap:wrap;
margin-top:10px;
}

.main-nav a{
margin:6px 8px;
font-size:14px;
}

.hero{
padding:80px 20px;
}

.solutions-grid,
.why-grid,
.industries-grid,
.applications-grid,
.stats-grid{
flex-direction:column;
align-items:center;
}

.contact-layout{
flex-direction:column;
}

.partners-grid{
grid-template-columns:repeat(2,1fr);
}

.footer-container{
flex-direction:column;
gap:30px;
}

}
/* ================= PARTNERS CARDS IMPROVEMENT ================= */

.partner-card img{
width:160px;
display:block;
margin:0 auto 15px auto;
filter:grayscale(100%);
transition:0.3s ease;
}

.partner-card:hover img{
filter:grayscale(0%);
transform:scale(1.05);
}

.partner-card h4{
font-size:18px;
margin-bottom:10px;
color:#003366;
}

.partner-card p{
font-size:14px;
line-height:1.5;
margin-bottom:10px;
}

.partners-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:35px;
max-width:1100px;
margin:40px auto;
}
/* ================= PARTNER CARDS IMPROVED ================= */

.partner-card{
background:#ffffff;
padding:25px;
border-radius:6px;
border:2px solid #e5e5e5;
box-shadow:0 6px 18px rgba(0,0,0,0.06);
transition:0.25s;
}

.partner-card:hover{
border-color:#359935;
box-shadow:0 8px 24px rgba(0,0,0,0.12);
transform:translateY(-3px);
}

.partner-card img{
width:170px;
display:block;
margin:0 auto 18px auto;
filter:grayscale(100%);
transition:0.3s;
}

.partner-card:hover img{
filter:grayscale(0%);
}

.partner-card h4{
font-size:18px;
margin-bottom:10px;
color:#003366;
}

.partner-card p{
font-size:14px;
line-height:1.5;
margin-bottom:10px;
}
/* ================= REFERENCES LOGO SLIDER ================= */

.references{
padding:60px 20px;
background:#f8fafc;
text-align:center;
}

.references-intro{
max-width:800px;
margin:0 auto 40px auto;
color:#555;
}

.logo-slider{
overflow:hidden;
position:relative;
max-width:1100px;
margin:0 auto;
}

.logo-track{
display:flex;
gap:60px;
animation:scrollLogos 35s linear infinite;
align-items:center;
}

.logo-track img{
height:50px;
filter:grayscale(100%);
opacity:0.8;
transition:0.3s;
}

.logo-track img:hover{
filter:grayscale(0%);
opacity:1;
transform:scale(1.05);
}

@keyframes scrollLogos{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}
/* ================= HERO SOLUTIONS ================= */

.hero-solutions{
background-image:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("/assets/loco-gand.jpg");
background-size:cover;
background-position:center;
}
/* ================= SOLUTIONS PAGE SPACING ================= */

.page-solutions .application-block{
padding:40px 20px;
}

.page-solutions .industries{
padding:35px 20px;
}

.page-solutions .references{
padding:40px 20px;
}

.page-solutions h2{
margin-bottom:25px;
}

.page-solutions .application-grid{
margin:20px auto;
}
/* ================= SOLUTIONS PAGE COMPACT ================= */

.page-solutions .application-block{
padding:30px 20px;
}

.page-solutions .industries{
padding:30px 20px;
}

.page-solutions .references{
padding:35px 20px;
}

.page-solutions .application-grid{
gap:35px;
margin:10px auto;
}

.page-solutions h2{
margin-bottom:18px;
}
/* ================= MOBILE SOLUTIONS LAYOUT ================= */

@media (max-width:900px){

.page-solutions .application-grid{
flex-direction:column;
text-align:center;
gap:20px;
}

.page-solutions .application-image img{
max-width:100%;
height:auto;
border-radius:6px;
}

.page-solutions .application-text{
font-size:16px;
line-height:1.6;
}

.page-solutions .application-text p{
max-width:95%;
margin:auto;
}

.page-solutions .cta-button{
margin-top:10px;
}

}
.page-solutions .application-image img{
max-width:420px;
}
/* ================= APPLICATIONS MOBILE OPTIMIZATION ================= */

@media (max-width:900px){

.application-grid{
flex-direction:column;
text-align:center;
gap:18px;
}

.application-grid.reverse{
flex-direction:column;
}

.application-image img{
width:100%;
max-width:420px;
border-radius:6px;
}

.application-text{
font-size:16px;
line-height:1.6;
}

.application-text p{
max-width:95%;
margin:auto;
}

.application-block{
padding:28px 20px;
}

}
/* ================= HERO APPLICATIONS ================= */

.hero-applications{
background-image:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("/assets/bat-oven.JPG");
background-size:cover;
background-position:center;
}


/* ================= HERO CONTACT ================= */

.hero-contact{
background-image:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("/assets/tag-cc.JPG");
background-size:cover;
background-position:center;
}
/* ================= VEROLINE IMAGE GRID ================= */

.veroline-gallery{
padding:50px 20px;
text-align:center;
background:#f8fafc;
}

.veroline-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1100px;
margin:40px auto;
}

.veroline-item img{
width:100%;
border-radius:6px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
transition:0.3s;
}

.veroline-item img:hover{
transform:scale(1.03);
box-shadow:0 6px 20px rgba(0,0,0,0.15);
}
.veroline-product{
width:100%;
max-width:380px;
display:block;
margin:25px auto;
border-radius:6px;
}
/* ================= VEROLINE PAGE ================= */

.veroline-grid img{
max-width:320px;
width:100%;
border-radius:6px;
margin:auto;
display:block;
}

.veroline-item{
text-align:center;
}
.veroline-tech img{
max-width:550px;
width:100%;
display:block;
margin:auto;
}
.pdf-download{
text-align:center;
max-width:650px;
margin:40px auto;
}
.veroline-grid img{
max-width:300px;
width:100%;
border-radius:6px;
}

.application-image img{
max-width:380px;
}
/* HERO VEROLINE */

.hero-veroline{
background-image:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("/assets/loco-quai.jpg");
background-size:cover;
background-position:center;
}


/* TECH DRAWINGS */

.veroline-tech{
display:flex;
gap:40px;
justify-content:center;
flex-wrap:wrap;
margin-top:30px;
}

.veroline-tech img{
max-width:420px;
width:100%;
height:auto;
}


/* VEROLINE SPECS */

.veroline-specs{
max-width:700px;
margin:auto;
line-height:1.7;
font-size:15px;
}


/* SMALLER APPLICATION IMAGES */

.application-image img{
max-width:340px;
width:100%;
border-radius:6px;
}


/* CENTER PDF */

.pdf-download{
text-align:center;
max-width:650px;
margin:50px auto;
}

.pdf-download a{
margin:10px;
display:inline-block;
}
/* HERO VEROLINE */

.hero-veroline{
background-image:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("/assets/loco-quai.jpg");
background-size:cover;
background-position:center;
}


/* TEXT STYLE */

.container p{
max-width:750px;
margin:auto;
margin-bottom:15px;
font-size:16px;
line-height:1.7;
color:#333;
}


/* TECHNICAL DRAWINGS */

.veroline-tech{
display:flex;
gap:50px;
justify-content:center;
flex-wrap:wrap;
margin-top:40px;
}

.tech-item{
text-align:center;
}

.tech-item img{
max-width:420px;
width:100%;
height:auto;
border-radius:6px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.tech-item p{
margin-top:10px;
font-size:14px;
color:#555;
}


/* APPLICATION IMAGES */

.application-image img{
max-width:320px;
width:100%;
border-radius:6px;
}


/* PDF DOWNLOAD */

.pdf-download{
text-align:center;
max-width:700px;
margin:60px auto;
}

.pdf-buttons{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
margin-top:20px;
}

.pdf-button{
padding:12px 25px;
background:#003366;
color:white;
border-radius:5px;
text-decoration:none;
font-weight:600;
}
/* VEROLINE PI dimensions (30% larger) */

.vlpi-dim{
max-width:550px;
width:100%;
height:auto;
}
/* HERO VEROLINE */

.hero-veroline{
background-image:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("/assets/loco-quai.jpg");
background-size:cover;
background-position:center;
}


/* PRODUCT BLOCKS */

.veroline-product{
padding:50px 20px;
margin-top:40px;
}

.veroline-product.pi{
background:#f8fafc;
border-top:4px solid #003366;
}

.veroline-product.vi{
background:#ffffff;
border-top:4px solid #359935;
}


/* TEXT STYLE */

.veroline-intro{
max-width:700px;
margin:auto;
font-size:16px;
line-height:1.7;
}

.veroline-intro ul{
margin-top:15px;
padding-left:20px;
}

.veroline-intro li{
margin-bottom:6px;
}


/* TECH DRAWINGS */

.veroline-tech{
display:flex;
gap:40px;
justify-content:center;
flex-wrap:wrap;
margin-top:35px;
}

.veroline-tech img{
background:white;
padding:10px;
border:1px solid #e5e5e5;
border-radius:6px;
max-width:420px;
width:100%;
height:auto;
}

.vlpi-dim{
max-width:550px;
}

.vli-tech{
max-width:300px;
}


/* APPLICATION IMAGES */

.application-image img{
max-width:320px;
width:100%;
border-radius:6px;
}


/* PDF BUTTONS */

.pdf-download{
text-align:center;
max-width:700px;
margin:50px auto;
}

.pdf-buttons{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
margin-top:20px;
}
/* VEROLINE APPLICATION GRID */

.veroline-applications{
padding:40px 20px;
max-width:1100px;
margin:auto;
}

.veroline-app-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:30px;
}

.veroline-card{
background:#ffffff;
border:1px solid #e5e5e5;
border-radius:6px;
padding:18px;
text-align:center;
box-shadow:0 3px 8px rgba(0,0,0,0.05);
}

.veroline-card img{
width:100%;
max-width:320px;
margin:auto;
display:block;
border-radius:6px;
}

.veroline-card p{
font-size:15px;
line-height:1.6;
margin-top:12px;
color:#444;
max-width:320px;
margin-left:auto;
margin-right:auto;
}


/* MOBILE */

@media (max-width:900px){

.veroline-app-grid{
grid-template-columns:1fr;
}

}
/* VEROLINE PI APPLICATION GRID */

.veroline-app-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:30px;
}

.veroline-card{
background:white;
border:1px solid #e5e5e5;
border-radius:6px;
padding:18px;
text-align:center;
}

.veroline-card img{
max-width:420px;
width:100%;
border-radius:6px;
margin:auto;
display:block;
}

.veroline-card p{
max-width:420px;
margin:12px auto 0;
font-size:15px;
line-height:1.6;
}



/* VEROLINE I GRID */

.veroline-i-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:30px;
max-width:900px;
margin-left:auto;
margin-right:auto;
}

.veroline-i-card{
background:white;
border:1px solid #e5e5e5;
border-radius:6px;
padding:18px;
text-align:center;
}

.veroline-i-card img{
max-width:420px;
width:100%;
border-radius:6px;
margin:auto;
display:block;
}

.veroline-i-card p{
max-width:420px;
margin:12px auto 0;
font-size:14px;
line-height:1.6;
}



/* MOBILE */

@media (max-width:900px){

.veroline-app-grid,
.veroline-i-grid{
grid-template-columns:1fr;
}

}
/* VEROLINE I dimensions (smaller) */

.vli-dim{
max-width:220px;
width:100%;
height:auto;
margin:auto;
display:block;
}
/* VEROLINE I photos larger */

/* VEROLINE I photos */

.vli-photo{
max-width:520px;
width:100%;
height:auto;
display:block;
margin:auto;
border-radius:6px;
border:1px solid #e5e5e5;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}
/* VEROLINE ADVANTAGES */

.veroline-advantages{
background:#f8fafc;
padding:50px 20px;
text-align:center;
}

.advantages-grid{
display:flex;
flex-wrap:wrap;
gap:30px;
justify-content:center;
max-width:1100px;
margin:40px auto;
}

.advantage-box{
background:white;
border:1px solid #e5e5e5;
border-radius:6px;
padding:25px;
max-width:250px;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
transition:0.25s;
}

.advantage-box:hover{
transform:translateY(-6px);
box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.advantage-box h3{
color:#003366;
margin-bottom:10px;
}
.veroline-product{
padding:60px 20px;
margin-top:40px;
border-top:3px solid #e5e5e5;
}
/* ================= VEROLINE APPLICATION TITLE FIX ================= */

.veroline-i-applications{
padding:40px 20px;
max-width:1100px;
margin:auto;
}
/* ================= VEROLINE I APPLICATIONS ================= */

.veroline-i-applications{
padding:40px 20px;
max-width:1100px;
margin:auto;
}
/* ================= ABOUT FACILITIES ================= */

.about-facilities{
padding:40px 20px;
}

.about-facilities p{
max-width:750px;
margin-bottom:15px;
}

.about-photo{
text-align:center;
margin-top:25px;
}

.about-photo img{
max-width:650px;
width:100%;
border-radius:6px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}
/* ================= NEWS TITLES ================= */

.news-item h2 a{
color:#003366;
text-decoration:none;
}

.news-item h2 a:hover{
color:#359935;
text-decoration:none;
}
