/* GLOBAL RESET */

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

body{
font-family: 'Inter', sans-serif;
line-height:1.6;
color:#333;
background:#ffffff;
}

/* HOVER ANIMATION */

.card:hover{
transform:translateY(-5px);
transition:0.2s;
}

/* NAVBAR */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
position:sticky;
top:0;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

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

.logo{
font-weight:700;
font-size:20px;
color:#0b63ce;
}

/* HERO */

.hero{
padding:120px 8%;
background:linear-gradient(120deg,#f3f8ff,#ffffff);
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

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

.hero p{
margin-bottom:30px;
font-size:18px;
color:#555;
}

.btn{
background:#0b63ce;
color:white;
padding:14px 24px;
border-radius:6px;
text-decoration:none;
display:inline-block;
font-weight:600;
}

/* SECTION */

.section{
padding:90px 8%;
}

.section h2{
font-size:32px;
margin-bottom:40px;
}

/* SERVICES GRID */

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

.card{
padding:30px;
border-radius:10px;
background:white;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* TRUST SECTION */

.trust{
background:#f6f9fc;
}

.trust li{
margin-bottom:10px;
}

/* CTA */

.cta{
background:#0b63ce;
color:white;
text-align:center;
padding:80px 8%;
}

.cta h2{
margin-bottom:20px;
}

/* CONTACT */

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

#form-success{
display:none;
padding:10px;
background:#e6ffe6;
color:#0a7a0a;
border:1px solid #0a7a0a;
border-radius:4px;
margin-bottom:15px;
}

#form-error{
display:none;
padding:10px;
background:#ffe6e6;
color:#b30000;
border:1px solid #b30000;
border-radius:4px;
margin-bottom:15px;
}

#form-error,
#form-success{
text-align:center;
}

form input,
form textarea{
width:100%;
padding:12px;
margin-bottom:12px;
border:1px solid #ddd;
border-radius:4px;
}

button{
background:#0b63ce;
color:white;
border:none;
padding:14px;
width:100%;
border-radius:6px;
font-weight:600;
cursor:pointer;
}

/* FOOTER */

footer{
background:#111;
color:#aaa;
padding:40px 8%;
font-size:14px;
}

/* MOBILE */

@media(max-width:800px){

.hero{
grid-template-columns:1fr;
}

.contact-grid{
grid-template-columns:1fr;
}

}