/* 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(135deg,#0a6cff,#003f9e);
color:white;
text-align:center;
padding:90px 20px;
}

header h1{
font-size:40px;
margin-bottom:10px;
}

header p{
font-size:18px;
opacity:0.9;
}

/* 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%;
}

/* Blog Section */

section{
max-width:900px;
margin:40px auto;
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

/* Blog hover effect */

section:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* Blog Titles */

section h2{
color:#0a6cff;
margin-bottom:12px;
font-size:24px;
}

/* Paragraph */

section p{
margin-bottom:15px;
}

/* Read More Button */

section a{
display:inline-block;
background:#0a6cff;
color:white;
padding:10px 22px;
border-radius:25px;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

section a:hover{
background:#003f9e;
}

/* Footer */

footer{
background:#111;
color:white;
text-align:center;
padding:30px;
margin-top:50px;
}

/* Responsive */

@media(max-width:768px){

header h1{
font-size:28px;
}

nav{
flex-direction:column;
gap:12px;
}

section{
margin:25px 15px;
padding:25px;
}

}