/* =====================================================
PROFUSE CONSULTANTS
CAPEX & EXPANSION RISK ADVISORY
Premium Consulting Theme
===================================================== */

:root{

--primary:#0f172a;
--secondary:#1e293b;
--accent:#2563eb;
--accent-dark:#1d4ed8;

--light:#f8fafc;
--white:#ffffff;

--text:#334155;
--muted:#64748b;

--border:#e2e8f0;

--container:1200px;

--shadow:
0 10px 30px rgba(0,0,0,.08);

}

/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
font-size:16px;
line-height:1.8;
color:var(--text);
background:#fff;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

ul{
list-style:none;
}

.container{
width:90%;
max-width:var(--container);
margin:auto;
}

/* HEADER */

header{
position:sticky;
top:0;
background:#fff;
z-index:999;
border-bottom:1px solid var(--border);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
height:85px;
}

.logo{
font-size:28px;
font-weight:800;
color:var(--primary);
}

.nav-menu{
display:flex;
gap:30px;
}

.nav-menu a{
font-weight:500;
color:var(--primary);
transition:.3s;
}

.nav-menu a:hover{
color:var(--accent);
}

/* HERO */

.hero{
background:
linear-gradient(
rgba(15,23,42,.92),
rgba(15,23,42,.92)
),
url('images/industrial-bg.jpg');

background-size:cover;
background-position:center;

min-height:90vh;

display:flex;
align-items:center;

color:#fff;
}

.hero-content{
max-width:760px;
}

.hero h1{
font-size:64px;
line-height:1.15;
margin-bottom:25px;
font-weight:800;
}

.hero p{
font-size:21px;
color:#cbd5e1;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

/* BUTTONS */

.btn{
display:inline-block;
padding:14px 28px;
border-radius:8px;
font-weight:600;
transition:.3s;
}

.btn-primary{
background:var(--accent);
color:#fff;
}

.btn-primary:hover{
background:var(--accent-dark);
}

.btn-outline{
border:1px solid #fff;
color:#fff;
}

.btn-outline:hover{
background:#fff;
color:var(--primary);
}

/* SECTION */

.section{
padding:100px 0;
}

.section-title{
text-align:center;
max-width:850px;
margin:auto auto 60px;
}

.section-title h2{
font-size:42px;
color:var(--primary);
margin-bottom:15px;
}

.section-title p{
color:var(--muted);
}

/* CARDS */

.grid-3{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.card{
padding:35px;
background:#fff;
border:1px solid var(--border);
border-radius:16px;
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:var(--shadow);
}

.card h3{
margin-bottom:15px;
color:var(--primary);
font-size:24px;
}

.card p{
color:var(--muted);
}

/* STATS */

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.stat-box{
padding:40px;
border-radius:16px;
text-align:center;
background:#fff;
border:1px solid var(--border);
}

.stat-box h3{
font-size:46px;
color:var(--accent);
margin-bottom:10px;
}

.stat-box p{
color:var(--muted);
}

/* FRAMEWORK */

.framework{
background:#f8fafc;
}

.step{
padding:30px;
border-left:4px solid var(--accent);
background:#fff;
margin-bottom:20px;
}

/* INSIGHTS */

.insight-box{
padding:50px;
background:var(--primary);
color:#fff;
border-radius:16px;
}

.insight-box h3{
font-size:34px;
margin-bottom:20px;
}

.insight-box p{
color:#cbd5e1;
}

/* CTA */

.cta{
background:var(--primary);
color:#fff;
text-align:center;
}

.cta h2{
font-size:42px;
margin-bottom:20px;
}

.cta p{
max-width:700px;
margin:auto auto 30px;
color:#cbd5e1;
}

/* FOOTER */

footer{
background:#020617;
color:#cbd5e1;
padding:80px 0 30px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;
}

.footer-grid h4{
margin-bottom:20px;
color:#fff;
}

.footer-grid a{
display:block;
margin-bottom:12px;
color:#cbd5e1;
}

.footer-grid a:hover

.footer-bottom{
margin-top:50px;
padding-top:25px;
border-top:1px solid #334155;
text-align:center;
}

/* RESPONSIVE */

@media(max-width:992px){

.hero h1{
font-size:48px;
}

.grid-3{
grid-template-columns:1fr;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

.footer-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.nav-menu{
display:none;
}

.hero h1{
font-size:38px;
}

.stats{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr;
}

.section{
padding:70px 0;
}

}
