/*
Theme Name: TechndSoft Theme
Version: 2.0
*/

body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#f5f7fb;
}

.container{
width:1200px;
max-width:95%;
margin:auto;
}

/* HEADER */

.header{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
padding:15px 0;
position:sticky;
top:0;
z-index:999;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:28px;
font-weight:bold;
color:#0073aa;
}

.menu ul{
list-style:none;
display:flex;
margin:0;
padding:0;
}

.menu li{
margin-left:25px;
}

.menu a{
text-decoration:none;
color:#333;
font-weight:600;
}

/* HERO */

.hero{
background:linear-gradient(120deg,#0073aa,#00c6ff);
color:white;
padding:80px 20px;
text-align:center;
border-radius:10px;
margin-top:30px;
}

/* BLOG GRID */

.blog-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:40px;
}

.post-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:.3s;
}

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

.post-card img{
width:100%;
height:240px;
object-fit:cover;
}

.post-content{
padding:20px;
}

.post-content h2{
font-size:22px;
margin-bottom:10px;
}

.read-btn{
display:inline-block;
background:#0073aa;
color:white;
padding:8px 18px;
border-radius:6px;
text-decoration:none;
margin-top:10px;
}

/* PAGINATION */

.pagination{
text-align:center;
margin:50px 0;
}

.pagination .page-numbers{
display:inline-block;
padding:10px 15px;
background:white;
margin:5px;
border-radius:6px;
text-decoration:none;
box-shadow:0 3px 8px rgba(0,0,0,0.1);
}

.pagination .current{
background:#0073aa;
color:white;
}

/* FOOTER */

.footer{
background:#111;
color:white;
padding:40px 0;
margin-top:50px;
text-align:center;
}

/* MOBILE */

@media(max-width:768px){

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

.menu ul{
flex-direction:column;
}

}
.logo img{
height:100px;
width:300px;
}
/* FORCE Heading Design */

.single-content h2{
color:#0b5ed7 !important;
background:#eef4ff !important;
padding:12px 15px !important;
border-left:5px solid #0b5ed7 !important;
border-radius:6px !important;
margin-top:30px !important;
}

.single-content h3{
color:#0b5ed7 !important;
background:#f5f8ff !important;
padding:10px 14px !important;
border-left:4px solid #0b5ed7 !important;
border-radius:6px !important;
margin-top:25px !important;
}
/* Next Prev Post Design */

.post-navigation{
display:flex;
justify-content:space-between;
margin-top:40px;
gap:20px;
}

.post-navigation a{
display:block;
background:#f1f5ff;
padding:20px;
border-radius:10px;
text-decoration:none;
color:#333;
flex:1;
transition:.3s;
}

.post-navigation a:hover{
background:#e1ebff;
}

.post-navigation span{
color:#0b5ed7;
font-weight:bold;
}

.post-navigation h4{
margin-top:8px;
font-size:18px;
}