
/*Body*/

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}
body{
background:#f4f4f4;
}

/*Header tag*/

.header{
background:linear-gradient(90deg,#0f4c81,#0b8f55);
padding:15px;
color:#fff;
box-shadow:0 3px 10px rgba(0,0,0,.2);
}

/*Logo*/

.header-top{
display:flex;
align-items:center;
justify-content:center;
}

.logo-area{
display:flex;
align-items:center;
text-decoration:none;
color:white;
gap:15px;
}

.logo{
width:80px;
height:80px;
border-radius:50%;
background:#fff;
padding:4px;
}

/*Site title and page*/

.site-title h2{
font-size:30px;
margin:0;
}

.site-title p{
margin-top:4px;
font-size:15px;
}

.page-title{
margin-top:15px;
font-size:28px;
text-align:center;
line-height:1.4;
}

/*mobile respons*/

@media (max-width:720px){
      .container{grid-template-columns:1fr;}
      nav{order:2}
      main{order:1}
      .next-right{position:static;margin-top:14px;}
    }

/*Search Bar*/

.search-container{
    display:flex;
    justify-content:center;
    align-items:center;
    max-width:750px;
    margin:20px auto;
}

#searchInput{
    width:100%;
    padding:12px 15px;
    font-size:16px;
    border:2px solid #0d6efd;
    border-right:none;
    border-radius:8px 0 0 8px;
    outline:none;
}

#searchBtn{
    width:55px;
    height:46px;
    border:none;
    background:#0d6efd;
    color:#fff;
    cursor:pointer;
    font-size:18px;
    border-radius:0 8px 8px 0;
}

#searchBtn:hover{
    background:#084298;
}

@media(max-width:768px){

.search-container{
    width:95%;
}

#searchBtn{
    width:50px;
}

}

/*Home Navigation*/

.navigation{
margin-top:20px;
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
}

.navigation a{
color:white;
text-decoration:none;
padding:10px 18px;
border-radius:25px;
background:rgba(255,255,255,.15);
transition:.3s;
}

.navigation a:hover{
background:white;
color:#0b8f55;
}

/* Mobile*/
@media(max-width:768px){

.logo{
width:60px;
height:60px;
}

.site-title h2{
font-size:22px;
}

.site-title p{
font-size:13px;
}

.page-title{
font-size:20px;
}

.search-box input{
width:95%;
}

.navigation{
gap:10px;
}

.navigation a{
padding:8px 14px;
font-size:15px;
}

}

.search-box{
margin-top:15px;
}

.search-box input{
width:60%;
padding:10px;
border:none;
border-radius:5px;
}

/*main artical*/

.container{
width:90%;
max-width:1200px;
margin:auto;
padding:20px 0;
display:grid;
grid-template-columns:2fr 1fr;
gap:20px;
}

.main-content{
display:flex;
flex-direction:column;
gap:20px;
}

.article{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.article img{
width:100%;
height:350px;
object-fit:cover;
border-radius:10px;
}

.article h2{
margin:15px 0;
}

.article p{
line-height:1.8;
color:#444;
}

.btn{
display:inline-block;
margin-top:15px;
padding:10px 20px;
background:#e63946;
color:white;
text-decoration:none;
border-radius:5px;
}

.sidebar{
display:flex;
flex-direction:column;
gap:20px;
}

.widget{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.widget h3{
margin-bottom:15px;
}

.widget ul{
list-style:none;
}

.widget ul li{
padding:8px 0;
border-bottom:1px solid #ddd;
}

.widget ul li a{
text-decoration:none;
color:#333;
}

/*Adsense*/
.adsense{
background:#fff;
padding:30px;
text-align:center;
border:2px dashed #ccc;
font-size:20px;
}
 /*Footer*/
 
footer{
background:#111;
color:white;
text-align:center;
padding:20px;
margin-top:20px;
}
  @media (max-width:820px){
      .container{grid-template-columns:1fr;}
      nav{order:2}
      main{order:1}
      .next-right{position:static;margin-top:14px;}
    }
	
/*Body*/



/*Body*/
/*Body*/
/*Body*/
/*Body*/
/*Body*/