/*==================================================
BLOG PAGE
SRK CONSULTANTS
==================================================*/

:root{

    --primary:#011538;
    --secondary:#C8A04D;
    --white:#fff;
    --black:#1E293B;
    --gray:#64748B;
    --light:#F8FAFC;
    --border:#E5E7EB;

}

/*==================================================
BLOG HERO
==================================================*/

.blog-hero{

    padding:110px 0 90px;

    background:
    linear-gradient(rgba(1,21,56,.88),rgba(1,21,56,.88)),
    url("../images/blog-bg.jpg") center/cover;

    color:#fff;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.blog-hero::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(200,160,77,.08);

    top:-160px;

    left:-130px;

}

.blog-hero::after{

    content:"";

    position:absolute;

    width:340px;

    height:340px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    bottom:-140px;

    right:-100px;

}

.blog-hero .container{

    position:relative;

    z-index:5;

}

.blog-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    color:#FDDD73;

    font-size:14px;

    margin-bottom:25px;

}

.blog-tag i{

    color:#FDDD73;

}

.blog-hero h1{

    font-size:60px;

    line-height:1.15;

    margin-bottom:25px;

    font-family:'Playfair Display',serif;

}

.blog-hero h1 span{

    color:#FDDD73;

}

.blog-hero p{

    max-width:760px;

    margin:auto;

    font-size:18px;

    color:#d9e2ff;

    line-height:1.9;

}

/*==================================================
SEARCH
==================================================*/

.blog-search-section{

    margin-top:-42px;

    position:relative;

    z-index:10;

}

.blog-search-wrapper{

    display:flex;

    justify-content:center;

}

.blog-search-box{

    width:100%;

    max-width:760px;

    background:#fff;

    display:flex;

    align-items:center;

    gap:15px;

    padding:20px 28px;

    border-radius:70px;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

}

.blog-search-box i{

    color:var(--secondary);

    font-size:20px;

}

.blog-search-box input{

    width:100%;

    border:none;

    outline:none;

    background:none;

    font-size:17px;

    color:#222;

}

.blog-search-box input::placeholder{

    color:#94A3B8;

}

/*==================================================
FEATURED BLOG
==================================================*/

.featured-blog{

    padding:90px 0 70px;

}

.featured-wrapper{

    display:grid;

    grid-template-columns:56% 44%;

    align-items:center;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    transition:.35s;

}

.featured-wrapper:hover{

    transform:translateY(-6px);

    box-shadow:0 35px 80px rgba(0,0,0,.12);

}

.featured-image{

    height:520px;

    overflow:hidden;

}

.featured-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.featured-wrapper:hover .featured-image img{

    transform:scale(1.05);

}

.featured-info{

    padding:55px;

}

.featured-category{

    display:inline-block;

    padding:8px 18px;

    border-radius:30px;

    background:var(--secondary);

    color:#fff;

    font-size:14px;

    font-weight:600;

    margin-bottom:22px;

}

.featured-info h2{

    font-size:42px;

    color:var(--primary);

    line-height:1.25;

    margin-bottom:20px;

    font-family:'Playfair Display',serif;

}

.featured-info p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:30px;

}

.featured-meta{

    display:flex;

    align-items:center;

    gap:20px;

    color:#64748B;

    margin-bottom:35px;

    font-size:15px;

}

.featured-meta i{

    color:var(--secondary);

}

.featured-info .primary-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.blog-hero{

padding:90px 0 70px;

}

.blog-hero h1{

font-size:42px;

}

.featured-wrapper{

grid-template-columns:1fr;

}

.featured-image{

height:340px;

}

.featured-info{

padding:35px;

}

.featured-info h2{

font-size:30px;

}

}

@media(max-width:767px){

.blog-hero h1{

font-size:34px;

}

.blog-hero p{

font-size:16px;

}

.blog-search-box{

padding:16px 22px;

}

.featured-image{

height:260px;

}

.featured-info{

padding:25px;

}

.featured-info h2{

font-size:26px;

}

}

/*==================================================
LATEST BLOGS
==================================================*/

.blogs-section{

    padding:30px 0 100px;

    background:#F8FAFC;

}

.blogs-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/*==================================================
BLOG CARD
==================================================*/

.blog-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    transition:.4s;

    border:1px solid #eef2f7;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

    display:flex;

    flex-direction:column;

    height:100%;

}

.blog-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.blog-image{

    position:relative;

    height:250px;

    overflow:hidden;

}

.blog-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.blog-card:hover .blog-image img{

    transform:scale(1.08);

}

.blog-category{

    position:absolute;

    top:18px;

    left:18px;

    background:rgba(1,21,56,.95);

    color:#fff;

    padding:8px 18px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

    letter-spacing:.3px;

}

.blog-content{

    padding:30px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.blog-meta{

    display:flex;

    align-items:center;

    gap:18px;

    color:#64748B;

    font-size:14px;

    margin-bottom:18px;

}

.blog-meta i{

    color:#C8A04D;

}

.blog-content h3{

    font-size:24px;

    color:#011538;

    line-height:1.45;

    margin-bottom:15px;

    transition:.3s;

}

.blog-card:hover h3{

    color:#C8A04D;

}

.blog-content p{

    color:#64748B;

    line-height:1.9;

    margin-bottom:25px;

    flex:1;

}

.blog-read{

    display:inline-flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:#011538;

    transition:.3s;

}

.blog-read i{

    transition:.3s;

}

.blog-card:hover .blog-read{

    color:#C8A04D;

}

.blog-card:hover .blog-read i{

    transform:translateX(8px);

}

/*==================================================
EMPTY STATE
==================================================*/

.no-blog{

    grid-column:1/-1;

    text-align:center;

    padding:120px 20px;

}

.no-blog i{

    font-size:70px;

    color:#C8A04D;

    margin-bottom:25px;

}

.no-blog h2{

    color:#011538;

    margin-bottom:15px;

}

.no-blog p{

    color:#64748B;

}

/*==================================================
LOAD ANIMATION
==================================================*/

.blog-card{

    animation:fadeUp .6s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
TABLET
==================================================*/

@media(max-width:1100px){

.blogs-grid{

grid-template-columns:repeat(2,1fr);

gap:30px;

}

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

.blogs-section{

padding:20px 0 70px;

}

.blogs-grid{

grid-template-columns:1fr;

gap:25px;

}

.blog-image{

height:220px;

}

.blog-content{

padding:22px;

}

.blog-content h3{

font-size:22px;

}

.blog-content p{

font-size:15px;

}

}

/*==================================================
SINGLE BLOG
==================================================*/

.single-blog-section{

    padding:80px 0;

    background:#F8FAFC;

}

.single-blog{

    max-width:950px;

    margin:auto;

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 20px 70px rgba(0,0,0,.08);

}

/*==================================================
BLOG HERO IMAGE
==================================================*/

.single-blog-image{

    width:100%;

    height:520px;

    overflow:hidden;

}

.single-blog-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

/*==================================================
BLOG BODY
==================================================*/

.single-blog-body{

    padding:60px;

}

.single-blog-category{

    display:inline-block;

    background:#C8A04D;

    color:#fff;

    padding:8px 20px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.single-blog-title{

    font-size:46px;

    line-height:1.25;

    color:#011538;

    margin-bottom:20px;

    font-family:'Playfair Display',serif;

}

.single-blog-meta{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

    color:#64748B;

    margin-bottom:35px;

    font-size:15px;

}

.single-blog-meta i{

    color:#C8A04D;

    margin-right:8px;

}

/*==================================================
CONTENT
==================================================*/

.single-blog-content{

    color:#334155;

    font-size:17px;

    line-height:2;

}

.single-blog-content h1{

    font-size:42px;

    color:#011538;

    margin:45px 0 20px;

}

.single-blog-content h2{

    font-size:34px;

    color:#011538;

    margin:40px 0 18px;

}

.single-blog-content h3{

    font-size:28px;

    color:#011538;

    margin:35px 0 18px;

}

.single-blog-content h4{

    font-size:24px;

    color:#011538;

    margin:30px 0 15px;

}

.single-blog-content p{

    margin-bottom:22px;

    color:#475569;

}

.single-blog-content strong{

    color:#011538;

}

.single-blog-content ul{

    margin:20px 0 25px 22px;

}

.single-blog-content ol{

    margin:20px 0 25px 22px;

}

.single-blog-content li{

    margin-bottom:10px;

}

.single-blog-content img{

    width:100%;

    border-radius:18px;

    margin:35px 0;

}

.single-blog-content blockquote{

    border-left:5px solid #C8A04D;

    background:#FFF8E8;

    padding:25px 30px;

    margin:35px 0;

    border-radius:15px;

    font-style:italic;

}

.single-blog-content table{

    width:100%;

    border-collapse:collapse;

    margin:30px 0;

}

.single-blog-content table th{

    background:#011538;

    color:#fff;

    padding:15px;

}

.single-blog-content table td{

    border:1px solid #E5E7EB;

    padding:15px;

}

.single-blog-content a{

    color:#C8A04D;

    font-weight:600;

}

.single-blog-content hr{

    margin:40px 0;

    border:none;

    border-top:1px solid #E5E7EB;

}

/*==================================================
BLOG TAGS
==================================================*/

.blog-tags{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:45px;

}

.blog-tags a{

    padding:10px 18px;

    background:#F8FAFC;

    border-radius:30px;

    color:#011538;

    transition:.3s;

}

.blog-tags a:hover{

    background:#011538;

    color:#fff;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.single-blog-body{

padding:40px;

}

.single-blog-image{

height:380px;

}

.single-blog-title{

font-size:36px;

}

}

@media(max-width:768px){

.single-blog-section{

padding:50px 0;

}

.single-blog{

border-radius:20px;

}

.single-blog-body{

padding:25px;

}

.single-blog-image{

height:240px;

}

.single-blog-title{

font-size:28px;

}

.single-blog-meta{

gap:15px;

font-size:14px;

}

.single-blog-content{

font-size:16px;

line-height:1.9;

}

.single-blog-content h1{

font-size:32px;

}

.single-blog-content h2{

font-size:28px;

}

.single-blog-content h3{

font-size:24px;

}

}
/*==================================================
RELATED BLOGS
==================================================*/

.related-blogs{

    padding:90px 0;

    background:#fff;

}

.related-blogs .section-title{

    text-align:center;

    margin-bottom:60px;

}

.related-blogs .section-title h2{

    font-size:42px;

    color:#011538;

    margin-bottom:15px;

    font-family:'Playfair Display',serif;

}

.related-blogs .section-title p{

    color:#64748B;

    max-width:700px;

    margin:auto;

}

/* .related-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}
.related-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

} */
.related-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

gap:35px;

}

/*==================================================
BLOG SHARE
==================================================*/

.blog-share{

    margin-top:60px;

    padding-top:35px;

    border-top:1px solid #E5E7EB;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.blog-share h4{

    font-size:20px;

    color:#011538;

}

.share-icons{

    display:flex;

    gap:15px;

}

.share-icons a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#F8FAFC;

    color:#011538;

    transition:.35s;

    font-size:18px;

}

.share-icons a:hover{

    background:#C8A04D;

    color:#fff;

    transform:translateY(-4px);

}

/*==================================================
PREVIOUS NEXT
==================================================*/

.blog-navigation{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-top:70px;

}

.blog-nav-card{

    background:#fff;

    border:1px solid #E5E7EB;

    border-radius:20px;

    padding:25px;

    transition:.35s;

}

.blog-nav-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.blog-nav-card span{

    color:#64748B;

    font-size:14px;

}

.blog-nav-card h4{

    margin-top:12px;

    color:#011538;

    line-height:1.5;

}

/*==================================================
PAGINATION
==================================================*/

.blog-pagination{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-top:70px;

}

.blog-pagination a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    border:1px solid #E5E7EB;

    color:#011538;

    transition:.3s;

}

.blog-pagination a.active,

.blog-pagination a:hover{

    background:#C8A04D;

    color:#fff;

    border-color:#C8A04D;

}

/*==================================================
SCROLL PROGRESS BAR
==================================================*/

#readingProgress{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:#C8A04D;

    z-index:99999;

}

/*==================================================
BACK TO TOP
==================================================*/

.back-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:#011538;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.back-top.active{

    opacity:1;

    visibility:visible;

}

.back-top:hover{

    background:#C8A04D;

    transform:translateY(-6px);

}

/*==================================================
SECTION SPACING
==================================================*/

.section-space{

    padding:100px 0;

}

/*==================================================
TABLET
==================================================*/

@media(max-width:991px){

.related-grid{

grid-template-columns:repeat(2,1fr);

}

.blog-navigation{

grid-template-columns:1fr;

}

.blog-share{

flex-direction:column;

align-items:flex-start;

}

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

.related-blogs{

padding:70px 0;

}

.related-grid{

grid-template-columns:1fr;

}

.related-blogs .section-title h2{

font-size:30px;

}

.blog-pagination{

gap:10px;

}

.blog-pagination a{

width:42px;

height:42px;

}

.back-top{

width:48px;

height:48px;

right:18px;

bottom:18px;

}

}


/*======================================
SECTION HEADING
======================================*/

.section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 60px;

}

.section-heading span{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#FFF7E3;

    color:#C8A04D;

    padding:10px 22px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.section-heading h2{

    font-size:46px;

    color:#011538;

    margin-bottom:18px;

    font-family:'Playfair Display',serif;

}

.section-heading p{

    color:#64748B;

    line-height:1.9;

}

@media(max-width:768px){

.section-heading h2{

font-size:32px;

}

}