/* Import Modern Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Reset */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

/* Body */

body{
font-family:'Poppins',sans-serif;
background:#f4f6fb;
color:#333;
line-height:1.6;
}

/* Header */

header{
background:linear-gradient(120deg,#0a6cff,#0040a8);
color:white;
text-align:center;
padding:100px 20px;
}

header h1{
font-size:42px;
font-weight:600;
margin-bottom:10px;
}

header p{
font-size:18px;
opacity:0.9;
margin-bottom:25px;
}

/* Call Button */

.call-btn{
background:#ff3b3b;
color:white;
padding:14px 35px;
border-radius:40px;
text-decoration:none;
font-weight:600;
box-shadow:0 6px 18px rgba(0,0,0,0.2);
transition:all .3s ease;
}

.call-btn:hover{
background:#e02727;
transform:translateY(-3px);
}

/* Navigation */

nav{
background:white;
display:flex;
justify-content:center;
gap:40px;
padding:18px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:1000;
}

nav a{
text-decoration:none;
color:#333;
font-weight:500;
position:relative;
}

/* Nav underline animation */

nav a::after{
content:'';
width:0;
height:2px;
background:#0a6cff;
position:absolute;
left:0;
bottom:-5px;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}

/* Sections */

section{
padding:80px 10%;
}

/* Section Titles */

section h2{
font-size:32px;
text-align:center;
margin-bottom:25px;
color:#0a6cff;
}

/* Services text */

.services p{
text-align:center;
max-width:750px;
margin:auto;
margin-bottom:25px;
}

/* Feature Cards */

.features ul{
list-style:none;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:40px;
}

.features li{
background:white;
padding:30px;
border-radius:12px;
text-align:center;
font-weight:500;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.features li:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* Contact Section */

.contact{
background:white;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;
padding:50px;
}

.contact p{
margin-bottom:20px;
}

.contact a{
margin:10px;
display:inline-block;
}

/* Email Button */

.email{
background:#0a6cff;
color:white;
padding:12px 28px;
border-radius:30px;
text-decoration:none;
font-weight:500;
}

.email:hover{
background:#003f9e;
}

/* Footer */

footer{
background:#111;
color:white;
text-align:center;
padding:35px;
margin-top:60px;
font-size:14px;
}

/* Responsive */

@media(max-width:768px){

header h1{
font-size:30px;
}

nav{
flex-direction:column;
gap:15px;
}

section{
padding:60px 6%;
}

}