/* GLOBAL RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
color:#222;
background:#fff;
line-height:1.6;
}

/* HEADER */

.header-container{
display:flex;
align-items:center;
justify-content:space-between;
padding:10px 40px;
max-width:1400px;
margin:auto;
gap:20px;
}

.top-bar{
display:flex;
justify-content:space-between;
align-items:center;
width:100%;
}

.logo{
flex:0 0 auto;
padding-right:40px;
}

.nav-menu{
display:flex;
align-items:center;
justify-content:flex-end;
flex-wrap:nowrap;
gap:40px;
flex:1;
}

.nav-menu a{
display:flex;
align-items:center;
white-space:nowrap;
font-size:15px;
font-weight:600;
color:#222;
text-decoration:none;
padding:8px 6px;
transition:all .25s ease;
}

.nav-menu a:hover{
color:#ff2400;
}

.shop-link{
color:#ff2400;
font-weight:700;
}

.jeco-header{
background:#ffffffee;
backdrop-filter:blur(6px);
}

/* ABOUT SECTION */

.jainEn-container{
max-width:900px;
margin:auto;
text-align:center;
padding:80px 20px;
}

.jainEn-title{
font-size:32px;
font-weight:700;
margin-bottom:10px;
}

.jainEn-subtitle{
color:#888;
margin-bottom:20px;
}

.jainEn-description{
margin-bottom:20px;
color:#444;
}

.jainEn-link{
color:#d32f2f;
font-weight:bold;
text-decoration:none;
}

/* PRODUCT GRID */

.jainEr-responsive-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
padding:60px 20px;
text-align:center;
}

.jainEr-grid-item img{
width:100%;
max-width:200px;
transition:transform .3s ease;
}

.jainEr-grid-item img:hover{
transform:scale(1.1);
}

.jainEr-grid-item h3{
margin-top:15px;
font-size:18px;
}

.jainEr-grid-item a{
display:block;
margin-top:5px;
color:#d32f2f;
font-weight:bold;
text-decoration:none;
}

/* DISCOVER SECTION */

.discoverJainEr{
background:#f7f7f7;
padding:60px 20px;
text-align:center;
}

.discoverJainEr img{
max-width:100%;
}

/* FOOTER */

.jainEn-footer{
background:#000;
color:#fff;
padding:60px 20px;
}

.jainEn-footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:2fr 3fr;
gap:40px;
}

.jainEn-footer-logo img{
max-width:150px;
margin-bottom:10px;
}

.jainEn-footer-links{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.jainEn-footer-links a{
text-decoration:none;
color:#fff;
}

.jainEn-footer-bottom{
margin-top:40px;
display:flex;
justify-content:space-between;
align-items:center;
}

/* RESPONSIVE */

@media(max-width:900px){

.jainEr-responsive-grid{
grid-template-columns:repeat(2,1fr);
}

.jainEn-footer-container{
grid-template-columns:1fr;
}

}

@media(max-width:600px){

.nav-menu{
gap:15px;
font-size:14px;
}

.jainEr-responsive-grid{
grid-template-columns:1fr;
}

}

/* SIDEBAR MENU */

.jecSibar{
position:fixed;
left:-320px;
top:0;
width:300px;
height:100%;
background:#fff;
box-shadow:2px 0 10px rgba(0,0,0,0.1);
transition:0.3s;
z-index:9999;
overflow-y:auto;
}

.jecSibar.active{
left:0;
}

.close-btn{
position:absolute;
right:10px;
top:10px;
font-size:24px;
background:none;
border:none;
cursor:pointer;
}

.menu{
list-style:none;
padding:20px;
}

.menu li{
margin-bottom:10px;
}

.menu-item{
background:#f3f3f3;
border:none;
padding:10px;
width:100%;
text-align:left;
font-weight:600;
cursor:pointer;
}

.sub-menu{
list-style:none;
padding-left:15px;
display:none;
}

.menu-item.active + .sub-menu{
display:block;
}

.sub-menu li{
margin:5px 0;
}

.sub-menu a{
text-decoration:none;
color:#333;
font-size:14px;
}

.arrow{
float:right;
}

.search-slide
{
position:absolute;
top:80px;
right:0;
width:0;
overflow:hidden;
background:#fff;
transition:0.4s;
border-bottom:1px solid #ddd;
}

.search-slide.active
{
width:100%;
padding:20px;
}

.search-container
{
max-width:700px;
margin:auto;
display:flex;
}

.search-container input
{
flex:1;
padding:12px;
font-size:16px;
border:1px solid #ccc;
}

.search-container button
{
padding:12px 18px;
background:#ff2400;
color:#fff;
border:none;
}

.shop-link
{
color:#ff2400;
font-weight:700;
}

.jeco-intro
{
background:#f7f7f7;
padding:80px 20px;
}

.jeco-intro-container
{
max-width:1200px;
margin:auto;
}

.jeco-intro-heading
{
text-align:center;
margin-bottom:50px;
}

.jeco-intro-heading h1
{
font-size:44px;
font-weight:700;
color:#1a1a1a;
letter-spacing:1px;
margin-bottom:10px;
}

.jeco-tagline
{
font-size:18px;
color:#ff2400;
font-weight:600;
}

.jeco-intro-grid
{
display:grid;
grid-template-columns:2fr 1fr;
gap:60px;
align-items:center;
}

.jeco-intro-text p
{
font-size:18px;
line-height:1.8;
margin-bottom:20px;
color:#333;
}

.jeco-intro-stats
{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.stat-box
{
background:#ffffff;
border:1px solid #eee;
padding:25px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.stat-box h3
{
font-size:28px;
color:#ff2400;
margin-bottom:5px;
}

.stat-box span
{
font-size:14px;
color:#666;
}

.jeco-intro-cta
{
text-align:center;
margin-top:40px;
}

.jeco-cta
{
color:#ff2400;
font-weight:600;
font-size:18px;
text-decoration:none;
}

.bharat-section
{
position:relative;
width:100%;
overflow:hidden;
}

.bharat-bg
{
width:100%;
height:auto;
display:block;
}

.bharat-overlay
{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
to bottom,
rgba(0,0,0,0.55),
rgba(0,0,0,0.30),
rgba(0,0,0,0.65)
);
}

.bharat-content
{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%, -50%);
text-align:center;
color:white;
max-width:850px;
padding:20px;
}

.bharat-content h2
{
font-size:42px;
font-weight:700;
letter-spacing:1px;
margin-bottom:20px;
}

.bharat-content p
{
font-size:18px;
line-height:1.7;
margin-bottom:30px;
}

.bharat-btn
{
display:inline-block;
padding:14px 28px;
border:2px solid #ff2400;
color:#ffffff;
text-decoration:none;
font-weight:600;
letter-spacing:1px;
transition:0.3s;
}

.bharat-btn:hover
{
background:#ff2400;
color:#ffffff;
}

.bharat-section{
position:relative;
width:100%;
overflow:hidden;
}

.bharat-bg{
width:100%;
display:block;
}

.bharat-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
to bottom,
rgba(0,0,0,0.35),
rgba(0,0,0,0.15),
rgba(0,0,0,0.45)
);
}

.bharat-text{
position:absolute;
top:60px;
left:60px;
max-width:520px;
color:#ffffff;
}

.bharat-text h2{
font-size:44px;
font-weight:700;
margin-bottom:20px;
letter-spacing:1px;
}

.bharat-text p{
font-size:18px;
line-height:1.7;
}

.bharat-btn{
position:absolute;
bottom:60px;
right:60px;
padding:16px 32px;
border:2px solid #ff2400;
color:#ffffff;
text-decoration:none;
font-weight:600;
letter-spacing:1px;
transition:0.3s;
}

.bharat-btn:hover{
background:#ff2400;
color:#fff;
}

.logo img{
height:48px;
width:auto;
}


/* HERO CAROUSEL FIX */

.carousel-item{
height:520px;
}

.carousel-item img{
width:100%;
height:520px;
object-fit:cover;
}

.jeco-footer{
background:#000;
color:#fff;
padding:60px 30px 20px;
}

.footer-wrapper{
max-width:1300px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:stretch;
}

/* LEFT SECTION */

.footer-info{
display:flex;
flex-direction:column;
justify-content:flex-start;
}

.footer-brand{
display:flex;
align-items:flex-start;
gap:20px;
margin-bottom:25px;
}

.footer-logo{
width:120px;
}

.footer-title h3{
font-size:22px;
margin-bottom:6px;
}

.footer-title p{
color:#bbb;
line-height:1.5;
}

/* CONTACT */

.footer-contact{
margin-bottom:20px;
}

.footer-contact p{
margin-bottom:10px;
font-size:15px;
}

.footer-contact i{
margin-right:10px;
color:#ff2400;
}

/* SOCIAL */

.footer-social a{
color:#fff;
font-size:20px;
margin-right:15px;
transition:0.3s;
}

.footer-social a:hover{
color:#ff2400;
}

/* MAP */

.footer-map iframe{
width:100%;
height:100%;
min-height:260px;
border:0;
border-radius:6px;
}

/* COPYRIGHT */

.footer-bottom{
text-align:center;
margin-top:40px;
font-size:14px;
color:#aaa;
border-top:1px solid #222;
padding-top:15px;
}

.footer-contact a{
color:#ffffff;
text-decoration:none;
transition:0.25s;
}

.footer-contact a:hover{
color:#ff2400;
}

.footer-social a{
color:#ffffff;
font-size:20px;
margin-right:18px;
transition:0.25s;
}

.footer-social a:hover{
color:#ff2400;
transform:translateY(-2px);
}

/* =========================
WHO WE ARE HERO
========================= */

.jeco-hero{
position:relative;
width:100%;
height:clamp(420px, 45vw, 520px);
overflow:hidden;
display:flex;
align-items:flex-end;
}

.jeco-hero img{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:1;
}

/* DARK GRADIENT FOR TEXT VISIBILITY */

.jeco-hero::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:100%;
height:45%;
background:linear-gradient(
to top,
rgba(0,0,0,0.75),
rgba(0,0,0,0.35),
transparent
);
z-index:2;
}


/* TEXT POSITION */

.jeco-hero-content{
position:absolute;
bottom:60px;
left:80px;
max-width:520px;
color:#ffffff;
text-shadow:0 3px 10px rgba(0,0,0,.55);
z-index:3;
}


/* HEADLINE */

.jeco-hero-content h1{
font-size:46px;
font-weight:700;
margin-bottom:12px;
line-height:1.15;
letter-spacing:.4px;
}

.jeco-hero-content h2{
font-size:26px;
font-weight:600;
margin-bottom:16px;
color:#ffffff;
}

.jeco-hero-content p{
font-size:17px;
line-height:1.7;
color:#e8e8e8;
}

/* BREADCRUMB */

.jeco-breadcrumb{
max-width:1200px;
margin:20px auto;
padding:0 20px;
font-size:14px;
color:#777;
}

.jeco-breadcrumb a{
text-decoration:none;
color:#111;
}


/* MAIN CONTENT */

.jeco-main-wrapper{
max-width:1200px;
margin:60px auto;
padding:0 20px;
}


/* TAB NAVIGATION */

.jeco-subnav{
display:flex;
gap:25px;
border-bottom:1px solid #ddd;
padding-bottom:10px;
flex-wrap:wrap;
}

.subnav-link{
background:none;
border:none;
font-size:16px;
font-weight:600;
cursor:pointer;
padding:8px 12px;
color:#555;
transition:0.3s;
}

.subnav-link:hover{
color:#ff2400;
}

.subnav-link.is-active{
border-bottom:3px solid #ff2400;
color:#000;
}


/* TAB CONTENT */

.tab-panel{
margin-top:40px;
}

.tab-panel h2{
font-size:32px;
margin-bottom:20px;
}

.tab-panel h3{
font-size:22px;
margin-top:30px;
margin-bottom:8px;
}

.tagline{
color:#ff2400;
font-weight:600;
margin-bottom:12px;
}

.tab-panel p{
line-height:1.8;
color:#444;
margin-bottom:20px;
max-width:900px;
}

/* ==================================
WHO WE ARE HERO CLEAN VERSION
================================== */

.jeco-hero{
position:relative;
width:100%;
height:clamp(420px,45vw,520px);
overflow:hidden;
}

.jeco-hero img{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
object-position:right center;
}

/* HERO TITLE POSITION */

.jeco-hero-title{
position:absolute;
bottom:120px;
left:80px;
color:white;
z-index:3;
max-width:420px;
}

.jeco-hero-title h1{
font-size:46px;
font-weight:700;
line-height:1.1;
margin-bottom:12px;
text-shadow:0 4px 14px rgba(0,0,0,.6);
}

/* TAGLINE */

.hero-tagline{
font-size:22px;
font-weight:600;
cursor:pointer;
display:inline-block;
padding:6px 12px;
background:rgba(0,0,0,0.4);
border-radius:4px;
}

/* TOOLTIP */

.hero-info-trigger{
position:relative;
display:inline-block;
}

.hero-tooltip{
position:absolute;
bottom:40px;
left:0;
width:420px;
background:#111;
color:#eee;
padding:18px 22px;
border-radius:6px;
font-size:15px;
line-height:1.7;
box-shadow:0 10px 25px rgba(0,0,0,.35);
opacity:0;
visibility:hidden;
transform:translateY(10px);
transition:all .25s ease;
}

/* SHOW TOOLTIP */

.hero-info-trigger:hover .hero-tooltip{
opacity:1;
visibility:visible;
transform:translateY(0);
}

.seo-hero-text{
display:none;
}

/* ===========================
LEADERSHIP SECTION
=========================== */

.jeco-leadership{
max-width:1100px;
margin:40px auto;
display:grid;
grid-template-columns:1fr;
gap:30px;
}

.leader-card{
background:#ffffff;
padding:30px;
border-left:4px solid #ff2400;
box-shadow:0 5px 20px rgba(0,0,0,.06);
border-radius:6px;
transition:.3s;
}

.leader-card:hover{
transform:translateY(-3px);
box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.leader-card h3{
font-size:22px;
margin-bottom:6px;
}

.leader-tag{
display:inline-block;
color:#ff2400;
font-weight:600;
margin-bottom:10px;
font-size:14px;
}

.leader-quote{
font-style:italic;
color:#444;
margin-bottom:10px;
}

.leader-card p{
line-height:1.7;
color:#555;
}

/* =========================
WHO WE ARE SECTIONS
========================= */

.section-intro{
max-width:760px;
color:#555;
margin-bottom:40px;
line-height:1.7;
}

/* TAB NAV */

.jeco-subnav{
display:flex;
gap:30px;
border-bottom:1px solid #ddd;
margin-bottom:40px;
flex-wrap:wrap;
}

.subnav-link{
background:none;
border:none;
font-size:15px;
font-weight:600;
cursor:pointer;
padding:12px 0;
position:relative;
color:#444;
}

.subnav-link:hover{
color:#ff2400;
}

.subnav-link.is-active{
color:#111;
}

.subnav-link.is-active::after{
content:"";
position:absolute;
bottom:-1px;
left:0;
width:100%;
height:3px;
background:#ff2400;
}

/* PANELS */

.tab-panel{
display:none;
padding-top:30px;
max-width:900px;
}

.tab-panel.active-panel{
display:block;
}

.tab-panel h2{
font-size:30px;
margin-bottom:18px;
}

.tab-panel h3{
margin-top:30px;
margin-bottom:8px;
font-size:20px;
color:#111;
}

.tab-panel p{
line-height:1.75;
color:#555;
}

/* LEADERSHIP CARDS */

.jeco-leadership{
display:grid;
gap:26px;
margin-top:40px;
}

.leader-card{
background:#fff;
padding:26px 28px;
border-left:4px solid #ff2400;
border-radius:6px;
box-shadow:0 5px 20px rgba(0,0,0,.06);
transition:.25s;
}

.leader-card:hover{
transform:translateY(-3px);
box-shadow:0 14px 35px rgba(0,0,0,.12);
}

.leader-card h3{
font-size:20px;
margin-bottom:6px;
}

.leader-tag{
display:inline-block;
font-size:14px;
font-weight:600;
color:#ff2400;
margin-bottom:12px;
}

.leader-quote{
font-style:italic;
margin-bottom:10px;
color:#444;
}

.jeco-subnav{
display:flex;
gap:40px;
border-bottom:1px solid #ddd;
margin:40px auto;
max-width:1100px;
}

.subnav-link{
background:none;
border:none;
font-size:18px;
font-weight:600;
padding:12px 0;
cursor:pointer;
color:#444;
position:relative;
}

.subnav-link:hover{
color:#ff2400;
}

.subnav-link.is-active{
color:#000;
}

.subnav-link.is-active::after{
content:"";
position:absolute;
left:0;
bottom:-1px;
width:100%;
height:4px;
background:#ff2400;
border-radius:2px;
}

.heritage-timeline{
border-left:3px solid #ff2400;
padding-left:25px;
margin-top:30px;
}

.heritage-block{
margin-bottom:35px;
}

.heritage-block h3{
margin-bottom:8px;
}

/* =========================
JECO THEME LINKS
========================= */

.tab-panel a{
color:#ff2400;
font-weight:600;
text-decoration:none;
transition:0.25s;
border-bottom:1px solid rgba(255,36,0,0.4);
padding-bottom:2px;
}

.tab-panel a:hover{
color:#cc1d00;
border-bottom:1px solid #ff2400;
text-decoration:underline;
}

html{
scroll-behavior:smooth;
}

.tab-panel a:visited{
color:#ff2400;
}

/* =========================
JECO CTA LINK
========================= */

.jeco-cta-link{
display:inline-block;
margin-top:20px;

font-size:20px;
font-weight:700;

color:#ff2400;
text-decoration:none;

border-bottom:2px solid #ff2400;
padding-bottom:3px;

transition:0.25s ease;
}

.jeco-cta-link:hover{
color:#cc1d00;
border-bottom:2px solid #cc1d00;
transform:translateX(3px);
}

/* WORK WITH US GRID */

.jeco-work-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:28px;
margin:40px 0;
}

.work-card{
background:#ffffff;
padding:28px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.25s ease;
border-top:4px solid #ff2400;
}

.work-card:hover{
transform:translateY(-4px);
box-shadow:0 16px 40px rgba(0,0,0,0.12);
}

.work-card h3{
margin-bottom:10px;
font-size:20px;
color:#111;
}

.work-card p{
color:#555;
line-height:1.6;
}

.work-contact{
font-size:18px;
margin-top:20px;
}

/* WORK WITH US GRID */

.jeco-work-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:28px;
margin:40px 0;
}

/* cards */

.work-card{
background:#fff;
padding:28px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
border-top:4px solid #ff2400;
transition:0.25s ease;
}

.work-card:hover{
transform:translateY(-4px);
box-shadow:0 16px 40px rgba(0,0,0,0.12);
}

.work-card h3{
font-size:20px;
margin-bottom:10px;
}

/* CTA bottom right */

.jeco-work-cta{
display:flex;
justify-content:space-between;
align-items:center;
margin-top:40px;
flex-wrap:wrap;
gap:20px;
}

.jeco-cta-link{
font-weight:700;
color:#ff2400;
text-decoration:none;
border-bottom:2px solid #ff2400;
padding-bottom:3px;
transition:0.25s;
}

.jeco-cta-link:hover{
color:#cc1d00;
border-bottom-color:#cc1d00;
}

/* PRODUCTS */

.jeco-products{
padding:80px 0;
text-align:center;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:40px;
margin-top:40px;
}

.product-card img{
height:120px;
margin-bottom:20px;
}

.product-card h3{
font-size:22px;
margin-bottom:10px;
}

.product-card a{
color:#ff2400;
font-weight:600;
text-decoration:none;
}


/* SERVICES */

.jeco-services{
padding:80px 0;
background:#f7f7f7;
text-align:center;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:30px;
margin-top:40px;
}

.service-card{
background:#fff;
padding:30px;
border-top:3px solid #ff2400;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}


/* INDUSTRIES */

.jeco-industries{
padding:80px 0;
text-align:center;
}

.industry-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
margin-top:40px;
}

.industry-card{
padding:40px;
border:1px solid #ddd;
font-weight:600;
}


/* CREDIBILITY */

.jeco-credibility{
background:#111;
color:white;
padding:60px 0;
}

.credibility-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
text-align:center;
}

.cred-card h3{
color:#ff2400;
font-size:28px;
}


/* CTA */

.jeco-final-cta{
padding:80px 0;
text-align:center;
}

.jeco-cta-btn{
display:inline-block;
margin-top:20px;
color:white;
background:#ff2400;
padding:12px 28px;
text-decoration:none;
font-weight:600;
}

/* HERO BANNER */

.jeco-hero-banner{
position:relative;
width:100%;
height:420px;

background:url('/assets/images/products-banner.jpg') center/cover no-repeat;

display:flex;
align-items:center;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.45);
}

.hero-text{
position:relative;
z-index:2;
max-width:1100px;
margin:auto;
padding:0 20px;
color:white;
}

.hero-text h1{
font-size:48px;
font-weight:600;
margin-bottom:15px;
}

.hero-text p{
font-size:20px;
max-width:650px;
}

/* PRODUCT SECTION */

.jeco-products{
padding:90px 0;
background:#fafafa;
}

.section-title{
text-align:center;
font-size:42px;
margin-bottom:60px;
}

/* GRID */

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;
max-width:1200px;
margin:auto;
}

/* CARD */

.product-card{
background:white;
border-radius:12px;
padding:30px;
text-align:center;
transition:all .35s ease;
border:1px solid #eee;
position:relative;
overflow:hidden;
}

/* RED ACCENT */

.product-card::before{
content:"";
position:absolute;
top:0;
left:0;
height:4px;
width:0%;
background:#ff2400;
transition:0.4s;
}

.product-card:hover::before{
width:100%;
}

/* IMAGE */

.product-image img{
height:140px;
margin-bottom:20px;
transition:0.4s;
}

/* IMAGE HOVER */

.product-card:hover img{
transform:scale(1.07);
}

/* CONTENT */

.product-content h3{
font-size:24px;
margin-bottom:15px;
}

.product-content p{
font-size:16px;
line-height:1.6;
color:#555;
margin-bottom:20px;
}

/* LINK */

.product-link{
color:#ff2400;
font-weight:600;
text-decoration:none;
}

.product-link:hover{
text-decoration:underline;
}

/* CARD HOVER */

.product-card:hover{
box-shadow:0 18px 40px rgba(0,0,0,0.12);
transform:translateY(-6px);
}

/* INDUSTRY APPLICATIONS */

.jeco-industries{
padding:100px 0;
background:#fafafa;
text-align:center;
}

.industry-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:35px;
max-width:1200px;
margin:auto;
margin-top:50px;
}

.industry-card{
background:white;
padding:40px 30px;
border-radius:10px;
border:1px solid #eee;
transition:all .35s ease;
position:relative;
overflow:hidden;
}

/* red accent line */

.industry-card::before{
content:"";
position:absolute;
top:0;
left:0;
height:4px;
width:0%;
background:#ff2400;
transition:.4s;
}

.industry-card:hover::before{
width:100%;
}

.industry-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.1);
}

/* ICON */

.industry-icon{
margin-bottom:20px;
}

.industry-icon svg{
width:70px;
height:70px;
stroke:#ff2400;
stroke-width:2;
fill:none;
}

.industry-card h3{
font-size:20px;
line-height:1.4;
}

/* CREDIBILITY STRIP */

.jeco-credibility{
background:#000;
padding:55px 0;
}

.credibility-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
text-align:center;
}

.cred-card h3{
color:#ff2400;
font-size:34px;
margin-bottom:6px;
font-weight:600;
}

.cred-card p{
color:white;
font-size:17px;
}


/* CTA SECTION */

.jeco-final-cta{
text-align:center;
padding:55px 0 65px 0;
}

.jeco-final-cta h2{
font-size:42px;
margin-bottom:12px;
}

.jeco-final-cta p{
max-width:700px;
margin:auto;
margin-bottom:28px;
font-size:18px;
color:#444;
}


/* BUTTON */

.jeco-cta-btn{
display:inline-block;
background:#ff2400;
color:white;
padding:14px 38px;
font-weight:600;
font-size:18px;
text-decoration:none;
transition:0.25s;
}

.jeco-cta-btn:hover{
background:#d81f00;
}