/*==================================================
    DEEP WEB SOLUTION - SINGLE BLOG CSS
    PART 1
==================================================*/

:root{
    --primary:#1842B6;
    --secondary:#26D48C;
    --dark:#111827;
    --text:#555;
    --white:#fff;
    --light:#f8fbff;
    --border:#e8edf5;
    --shadow:0 20px 50px rgba(0,0,0,.08);
    --radius:22px;
    --transition:.35s ease;
}

body{
    background:#fafcff;
    color:var(--text);
    overflow-x:hidden;
}

/*=====================================
READING BAR
=====================================*/

#readingProgress{
    position:fixed;
    top:0;
    left:0;
    width:0;
    height:4px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    z-index:999999;
}

/*=====================================
HERO
=====================================*/

.singleHero{
    position:relative;
    overflow:hidden;
    padding:120px 0 80px;
    background:linear-gradient(135deg,#1842B6,#26D48C);
}

.singleHero::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    border-radius:50%;
    background:rgba(255,255,255,.07);
    right:-180px;
    top:-220px;
}

.singleHero::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    left:-90px;
    bottom:-90px;
}

.breadcrumbArea{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:25px;
    font-size:14px;
}

.breadcrumbArea a{
    color:#fff;
    opacity:.85;
}

.breadcrumbArea span{
    color:#fff;
}

.categoryBadge{
    display:inline-block;
    background:#fff;
    color:var(--primary);
    padding:10px 22px;
    border-radius:40px;
    font-weight:600;
    font-size:14px;
    margin-bottom:25px;
}

.singleHero h1{
    color:#fff;
    font-size:58px;
    line-height:1.2;
    font-weight:700;
    max-width:850px;
    margin-bottom:30px;
}

.heroMeta{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
}

.heroMeta div{
    color:#fff;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
}

.heroMeta i{
    color:#fff;
}

/*=====================================
BLOG AREA
=====================================*/

.singleBlog{
    padding:90px 0;
}

.singleBlog .row{
    row-gap:50px;
}

/*=====================================
FEATURED IMAGE
=====================================*/

.featuredImage{
    border-radius:25px;
    overflow:hidden;
    box-shadow:var(--shadow);
    margin-bottom:40px;
    background:#fff;
}

.featuredImage img{
    width:100%;
    transition:.6s;
}

.featuredImage:hover img{
    transform:scale(1.05);
}

/*=====================================
TABLE OF CONTENTS
=====================================*/

.toc{
    background:#fff;
    border-radius:20px;
    box-shadow:var(--shadow);
    padding:35px;
    margin-bottom:45px;
}

.toc h4{
    color:var(--dark);
    font-size:26px;
    margin-bottom:20px;
    font-weight:700;
}

.toc ul{
    list-style:none;
    margin:0;
    padding:0;
}

.toc li{
    border-bottom:1px solid #edf1f7;
}

.toc li:last-child{
    border:none;
}

.toc a{
    display:block;
    padding:15px 0;
    color:#555;
    font-weight:500;
    transition:.3s;
}

.toc a:hover{
    color:var(--primary);
    padding-left:12px;
}

/*=====================================
BLOG CONTENT
=====================================*/

.blogContent{
    font-size:18px;
    line-height:2;
}

.blogContent h2{
    color:var(--dark);
    font-size:40px;
    font-weight:700;
    margin:60px 0 25px;
}

.blogContent h3{
    color:var(--dark);
    font-size:30px;
    margin-top:45px;
    margin-bottom:20px;
}

.blogContent p{
    margin-bottom:24px;
}

.blogContent img{
    width:100%;
    border-radius:20px;
    margin:45px 0;
    box-shadow:var(--shadow);
}

.blogContent ul{
    padding-left:20px;
    margin:25px 0;
}

.blogContent li{
    margin-bottom:15px;
}

.blogContent a{
    color:var(--primary);
}

.blogContent strong{
    color:var(--dark);
}

.blogContent .intro:first-letter{
    float:left;
    font-size:70px;
    line-height:1;
    padding-right:12px;
    color:var(--primary);
    font-weight:700;
}

/*=====================================
QUOTE BOX
=====================================*/

.quoteBox{
    margin:50px 0;
    background:linear-gradient(135deg,#1842B6,#26D48C);
    color:#fff;
    padding:45px;
    border-radius:25px;
    position:relative;
    overflow:hidden;
}

.quoteBox::before{
    content:"“";
    position:absolute;
    top:-35px;
    left:25px;
    font-size:120px;
    color:rgba(255,255,255,.15);
    font-family:serif;
}

.quoteBox i{
    font-size:38px;
    opacity:.5;
    margin-bottom:20px;
    display:block;
}

.quoteBox{
    font-size:24px;
    line-height:1.8;
    font-weight:500;
}

/*=====================================
SIDEBAR START
=====================================*/

.sidebar{
    position:relative;
}

.stickySidebar{
    position:sticky;
    top:120px;
}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:991px){

.singleHero{
    padding:90px 0 60px;
}

.singleHero h1{
    font-size:42px;
}

.heroMeta{
    gap:20px;
}

.stickySidebar{
    position:relative;
    top:0;
}

.blogContent{
    font-size:17px;
}

.blogContent h2{
    font-size:32px;
}

}

@media(max-width:767px){

.singleHero h1{
    font-size:34px;
}

.categoryBadge{
    font-size:13px;
}

.heroMeta{
    flex-direction:column;
    gap:12px;
}

.blogContent h2{
    font-size:28px;
}

.blogContent{
    font-size:16px;
}

.toc{
    padding:25px;
}

.quoteBox{
    padding:30px;
    font-size:20px;
}

}

/*==================================================
    DEEP WEB SOLUTION - SINGLE BLOG CSS
    PART 2
==================================================*/

/*==========================
SIDEBAR WIDGET
==========================*/

.widget{
    background:#fff;
    border-radius:22px;
    padding:30px;
    margin-bottom:30px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    border:1px solid #eef2f8;
    transition:.35s;
}

.widget:hover{
    transform:translateY(-6px);
}

.widget h4{
    font-size:24px;
    font-weight:700;
    color:#111827;
    margin-bottom:25px;
    position:relative;
}

.widget h4::after{
    content:"";
    width:60px;
    height:4px;
    background:#26D48C;
    display:block;
    border-radius:20px;
    margin-top:10px;
}

/*==========================
LATEST POST
==========================*/

.latestPost{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
    padding-bottom:20px;
    border-bottom:1px solid #edf2f7;
}

.latestPost:last-child{
    margin-bottom:0;
    border:none;
    padding-bottom:0;
}

.latestPost img{
    width:95px;
    height:80px;
    object-fit:cover;
    border-radius:15px;
    transition:.4s;
}

.latestPost:hover img{
    transform:scale(1.05);
}

.latestPost a{
    color:#111827;
    font-size:16px;
    font-weight:600;
    line-height:1.5;
    transition:.3s;
}

.latestPost a:hover{
    color:#1842B6;
}

.latestPost span{
    display:block;
    margin-top:8px;
    color:#888;
    font-size:13px;
}

/*==========================
SIDEBAR BUTTON
==========================*/

.sidebarBtn{
    display:inline-block;
    background:#1842B6;
    color:#fff;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.sidebarBtn:hover{
    background:#26D48C;
    color:#fff;
    transform:translateY(-3px);
}

/*==========================
BLOG TAGS
==========================*/

.blogTags{
    margin:60px 0 40px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.blogTags a{
    background:#f4f8ff;
    color:#1842B6;
    padding:12px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    transition:.35s;
}

.blogTags a:hover{
    background:#1842B6;
    color:#fff;
    transform:translateY(-3px);
}

/*==========================
SHARE SECTION
==========================*/

.shareArea{
    background:#fff;
    border-radius:22px;
    padding:30px;
    margin-bottom:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.shareArea h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    color:#111827;
}

.shareIcons{
    display:flex;
    gap:15px;
}

.shareIcons a{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#1842B6;
    color:#fff;
    font-size:18px;
    transition:.35s;
}

.shareIcons a:hover{
    background:#26D48C;
    transform:translateY(-5px) rotate(8deg);
}

/*==========================
AUTHOR CARD
==========================*/

.authorCard{
    background:#fff;
    border-radius:25px;
    padding:35px;
    display:flex;
    gap:25px;
    align-items:center;
    margin:50px 0;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.authorImage img{
    width:110px;
    height:110px;
    border-radius:50%;
    border:5px solid #26D48C;
    object-fit:cover;
}

.authorCard h4{
    font-size:26px;
    color:#111827;
    margin-bottom:10px;
}

.authorCard p{
    margin:0;
    line-height:1.8;
}

/*==========================
FAQ
==========================*/

.faqSection{
    margin-top:70px;
}

.faqSection h3{
    font-size:36px;
    color:#111827;
    margin-bottom:30px;
    font-weight:700;
}

.accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius:18px !important;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.accordion-button{
    padding:22px 25px;
    font-weight:600;
    font-size:17px;
    background:#fff;
}

.accordion-button:not(.collapsed){
    background:#1842B6;
    color:#fff;
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-body{
    padding:25px;
    line-height:1.9;
}

/*==========================
CTA
==========================*/

.blogCTA{
    margin-top:70px;
    padding:70px 50px;
    text-align:center;
    border-radius:30px;
    background:linear-gradient(135deg,#1842B6,#26D48C);
    color:#fff;
    overflow:hidden;
    position:relative;
}

.blogCTA::before{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    right:-70px;
    top:-70px;
}

.blogCTA h2{
    font-size:42px;
    margin-bottom:15px;
    font-weight:700;
}

.blogCTA p{
    font-size:18px;
    opacity:.95;
    margin-bottom:30px;
}

.ctaBtn{
    display:inline-block;
    padding:16px 40px;
    background:#fff;
    color:#1842B6;
    font-weight:700;
    border-radius:50px;
    transition:.35s;
}

.ctaBtn:hover{
    background:#111827;
    color:#fff;
    transform:translateY(-5px);
}

/*==========================
POST NAVIGATION
==========================*/

.postNavigation{
    margin-top:60px;
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.postNavigation a{
    flex:1;
    background:#fff;
    padding:22px 28px;
    border-radius:18px;
    color:#111827;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,.07);
    transition:.35s;
}

.postNavigation a:last-child{
    text-align:right;
}

.postNavigation a:hover{
    background:#1842B6;
    color:#fff;
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.authorCard{
    flex-direction:column;
    text-align:center;
}

.blogCTA{
    padding:50px 25px;
}

.blogCTA h2{
    font-size:32px;
}

.postNavigation{
    flex-direction:column;
}

}

@media(max-width:576px){

.shareIcons{
    flex-wrap:wrap;
}

.blogTags{
    gap:10px;
}

.blogTags a{
    font-size:13px;
}

.widget{
    padding:25px;
}

.authorCard{
    padding:25px;
}

}