*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Roboto, Arial;
background:#ffffff;
color:#111;
}

h1,h2,h3{
font-family:Poppins, Arial;
}

header{
background:#0A2540;
color:#fff;
padding:18px 60px;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:26px;
font-weight:700;
}

nav a{
color:#fff;
margin-left:25px;
text-decoration:none;
font-weight:500;
}

.hero{
padding:120px 60px;
background:linear-gradient(135deg,#0A2540,#2E86DE);
color:white;
}

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

.hero p{
font-size:20px;
margin-bottom:30px;
max-width:650px;
}

.btn{
padding:14px 28px;
background:#FF7A00;
color:white;
border:none;
border-radius:6px;
font-size:16px;
margin-right:15px;
cursor:pointer;
}

.section{
padding:90px 60px;
}

.title{
font-size:34px;
margin-bottom:20px;
text-align:center;
}

.subtitle{
text-align:center;
color:#555;
margin-bottom:50px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
margin-bottom:12px;
color:#0A2540;
}

.industry{
background:#f6f9fc;
}

.contact{
background:#0A2540;
color:white;
text-align:center;
padding:70px 20px;
}

footer{
background:#071726;
color:#aaa;
text-align:center;
padding:20px;
margin-top:40px;
}


.demo-form{
max-width:500px;
margin:0 auto;
display:flex;
flex-direction:column;
gap:15px;
}

.demo-form input,
.demo-form select,
.demo-form textarea{
padding:14px;
font-size:16px;
border:1px solid #ccc;
border-radius:6px;
}
