/* GLOBAL SETTINGS */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f4f6fb;
color:#222;
line-height:1.6;
}


/* NAVBAR */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:#0b1f3a;
color:white;
position:sticky;
top:0;
z-index:1000;
}

nav h2{
font-size:22px;
font-weight:600;
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-size:15px;
transition:0.3s;
}

nav a:hover{
color:#2e7df6;
}


/* HERO SECTION */

.hero{
background:linear-gradient(120deg,#0b1f3a,#142f5d);
color:white;
padding:140px 20px;
text-align:center;
}

.hero h1{
font-size:48px;
margin-bottom:15px;
}

.hero p{
font-size:18px;
opacity:0.9;
margin-bottom:25px;
}

.hero button{
background:#2e7df6;
border:none;
padding:14px 30px;
color:white;
font-size:16px;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}

.hero button:hover{
background:#1a5fd0;
}


/* SECTION */

.section{
padding:80px 60px;
text-align:center;
}

.section h2{
font-size:32px;
margin-bottom:20px;
}


/* GRID SERVICES */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}


/* SERVICE CARDS */

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.card h3{
margin-bottom:10px;
}

.card:hover{
transform:translateY(-6px);
}


/* ABOUT SECTION */

.about{
background:#eef2f7;
padding:80px 60px;
text-align:center;
}

.about p{
max-width:800px;
margin:auto;
font-size:18px;
margin-top:20px;
}


/* CONTACT */

.contact{
padding:80px 60px;
text-align:center;
}

form{
max-width:500px;
margin:auto;
margin-top:20px;
}

input,textarea{
width:100%;
padding:12px;
margin:10px 0;
border-radius:5px;
border:1px solid #ddd;
font-size:15px;
}

button.submit{
background:#2e7df6;
border:none;
padding:12px 25px;
color:white;
font-size:16px;
border-radius:5px;
cursor:pointer;
transition:0.3s;
}

button.submit:hover{
background:#1a5fd0;
}


/* FOOTER */

footer{
background:#0b1f3a;
color:white;
text-align:center;
padding:25px;
margin-top:40px;
font-size:14px;
}


/* MOBILE RESPONSIVE */

@media(max-width:768px){

nav{
flex-direction:column;
}

nav div{
margin-top:10px;
}

.hero h1{
font-size:32px;
}

.section{
padding:60px 30px;
}

}
.logo-bg{
height:15px;
background:white;
padding:4px 8px;
border-radius:6px;
display:flex;
align-items:center;
}
.logo{
height:20px;
}
.logo{
height:50px;
width:auto;
}