/*==========================
BLOG HERO
===========================*/

.blog-banner{
    background:linear-gradient(135deg,#0d47a1,#1e88e5);
    padding: 31px 0;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.blog-banner::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    right:-150px;
    top:-150px;
}

.blog-banner::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    left:-100px;
    bottom:-120px;
}

.tagline{
    display:inline-block;
    background:#ff9800;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.blog-banner h1{
    font-size:48px;
    font-weight:700;
    line-height:1.2;
    color: #f0f0f0;
}

.blog-banner p{
    color:#f2f2f2;
    margin-top:20px;
    max-width:600px;
}

.blog-search{
    margin-top:35px;
    display:flex;
    overflow:hidden;
    border-radius:60px;
    background:#fff;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.blog-search input{
    flex:1;
    border:none;
    padding:18px 25px;
    outline:none;
}

.blog-search button{
    width:70px;
    border:none;
    background:#ff9800;
    color:#fff;
}

/*==========================
BLOG CARD
===========================*/

.blog-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.blog-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.blog-image{

    position:relative;

    overflow:hidden;

}

.blog-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.blog-card:hover img{

    transform:scale(1.08);

}

.blog-image span{

    position:absolute;

    top:18px;

    left:18px;

    background:#ff9800;

    color:#fff;

    padding:7px 15px;

    border-radius:25px;

    font-size:13px;

    font-weight:600;

}

.blog-content{

    padding:28px;

}

.blog-date{color: #ffffff;font-size:14px;margin-bottom:12px;}

.blog-content h4{

    font-size:24px;

    margin-bottom:15px;

}

.blog-content h4 a{

    color:#123c91;

    text-decoration:none;

}

.blog-content h4 a:hover{

    color:#ff9800;

}

.blog-content p{

    color:#666;

    line-height:1.8;

}

.read-btn{

display:inline-flex;

align-items:center;

gap:10px;

margin-top:18px;

color:#123c91;

font-weight:600;

text-decoration:none;

}

.read-btn:hover{

color:#ff9800;

}

/*==========================
PAGINATION
===========================*/

.pagination{

justify-content:center;

margin-top:60px;

}

.page-link{

border:none;

width:46px;

height:46px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%!important;

margin:0 5px;

color:#123c91;

font-weight:600;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.page-item.active .page-link{

background:#ff9800;

}

.page-link:hover{

background:#123c91;

color:#fff;

}

/*==========================
BLOG DETAILS BANNER
===========================*/

.blog-details-banner{
    background:linear-gradient(135deg,#0d47a1,#1976d2);
    padding:100px 0;
    color:#fff;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.blog-details-banner::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-150px;
    left:-120px;
}

.blog-details-banner::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-150px;
    right:-120px;
}

.blog-details-banner h1{
    font-size:48px;
    font-weight:700;
    margin:20px 0;
}

.blog-details-banner p{
    color:#e6e6e6;
    font-size:16px;
}

.blog-details-banner .badge{
    font-size:14px;
    padding:10px 20px;
    border-radius:30px;
}


/*==========================
MAIN BLOG
===========================*/

.blog-content{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    line-height:1.9;
    font-size:17px;
}

.blog-content img{
    max-width:100%;
    height:auto;
    border-radius:12px;
    margin:25px 0;
}

.blog-content h2,
.blog-content h3,
.blog-content h4{
    color:#123c91;
    margin-top:30px;
    margin-bottom:15px;
}

.blog-content ul{
    padding-left:20px;
}

.blog-content li{
    margin-bottom:10px;
}


/*==========================
FEATURE IMAGE
===========================*/

.feature-image{
    width:100%;
    border-radius:18px;
    margin-bottom:30px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}


/*==========================
SIDEBAR
===========================*/

.sidebar-card{

    background:#fff;

    padding:25px;

    border-radius:18px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    margin-bottom:30px;

}

.sidebar-card h4{

    color:#123c91;

    font-weight:700;

    margin-bottom:20px;

}

.sidebar-card a{

    display:block;

    color:#333;

    text-decoration:none;

    padding:12px 0;

    border-bottom:1px solid #eee;

    transition:.3s;

}

.sidebar-card a:hover{

    color:#ff9800;

    padding-left:10px;

}


/*==========================
SHARE BUTTONS
===========================*/

.share-buttons{

margin-top:40px;

}

.share-buttons a{

width:48px;

height:48px;

display:inline-flex;

align-items:center;

justify-content:center;

border-radius:50%;

margin-right:10px;

font-size:18px;

transition:.3s;

color:#fff;

text-decoration:none;

}

.facebook{

background:#1877f2;

}

.whatsapp{

background:#25D366;

}

.linkedin{

background:#0a66c2;

}

.share-buttons a:hover{

transform:translateY(-5px);

}


/*==========================
RELATED BLOGS
===========================*/

.related-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 35px rgba(0,0,0,.08);

transition:.3s;

height:100%;

}

.related-card:hover{

transform:translateY(-8px);

}

.related-card img{

width:100%;

height:220px;

object-fit:cover;

}

.related-card .content{

padding:25px;

}

.related-card h5{

font-size:20px;

margin-bottom:15px;

}

.related-card a{

color:#123c91;

text-decoration:none;

font-weight:600;

}

.related-card a:hover{

color:#ff9800;

}


/*==========================
BUTTON
===========================*/

.theme-btn{

display:inline-block;

padding:12px 28px;

background:#ff9800;

color:#fff;

border-radius:40px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.theme-btn:hover{

background:#123c91;

color:#fff;

}


/*==========================
RESPONSIVE
===========================*/

@media(max-width:991px){

.blog-details-banner{

padding:70px 0;

}

.blog-details-banner h1{

font-size:34px;

}

.blog-content{

padding:25px;

margin-bottom:30px;

}

}

@media(max-width:576px){

.blog-details-banner h1{

font-size:28px;

}

.blog-content{

font-size:15px;

}

.sidebar-card{

padding:20px;

}

}

.blog-item{
    height:100%;
    display:flex;
    flex-direction:column;
    border-radius:15px;
    overflow:hidden;
}

.blog-item-img{
    height:250px;
    overflow:hidden;
}.blog-area {
    position: relative;
    padding: 50px 0px;
}.blog-item-info h4 a {
    color: #2e41aa;
    font-weight: 500;
}.blog-item-info p {
    margin-bottom: 16px;
    font-size: 15px;
    color: #6a6a6a;
}form {
    padding: 0px;
}

.blog-item-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.blog-item:hover .blog-item-img img{
    transform:scale(1.08);
}

.blog-item-info{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:25px;
}

.blog-title{
    min-height:60px;
    line-height:30px;
    overflow:hidden;
}

.blog-desc{
    min-height:72px;
    color:#666;
    margin-bottom:20px;
}

.theme-btn{
    margin-top:auto;
}