.breadcrumbs {
  font-size: 14px;
  padding: 15px 0;
  color: #333;
}

.breadcrumbs a {
    color: #0B1222;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.breadcrumbs a:hover {
  color: #000;
}

.breadcrumbs span {
  color: #333;
}

/* Style the separator */
.breadcrumbs .breadcrumb_last {
  color: #333;
  font-weight: 400;
}

/* Spacing between breadcrumb items */
.breadcrumbs span {
  margin: 0 8px;
}

.single .site-main {
    max-width: 1600px !important;
    padding: 0 20px;
}

.single .entry-title {
    font-size: 37px !important;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0B1222;
    text-transform: capitalize;
    margin-left: 0;
}


/* ================= TOC LAYOUT ================= */
.toc-layout {
    display: flex;
    gap: 30px;
}

/* TOC Sidebar */
.toc-sidebar {
    width: 260px;
    flex-shrink: 0;
}

/* Sticky TOC */
.toc-box {
    position: sticky;
    top: 160px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
}

/* TOC Title */
.toc-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

/* TOC List */
#toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#toc-list li {
    margin-bottom: 8px;
}

#toc-list a {
    text-decoration: none;
    font-size: 14px;
    color: #333;
}

#toc-list a:hover {
    color: #0073aa;
}

/* Heading Levels */
.toc-h3 { margin-left: 15px; }
.toc-h4 { margin-left: 30px; }

/* Content Area */
.toc-content {
    flex: 1;
    min-width: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .toc-layout {
        flex-direction: column;
    }

    .toc-sidebar {
        width: 100%;
    }

    .toc-box {
        position: relative;
        top: auto;
    }
}


.toc-content h2::before,
.toc-content h3::before,
.toc-content h4::before {
    content: "";
    display: block;
    height: 120px;
    margin-top: -120px;
    visibility: hidden;
}


/* ================= ACTIVE TOC ITEM ================= */

#toc-list a.active {
    color: #0073aa;
    font-weight: 600;
    position: relative;
}

#toc-list a.active::before {
    content: "›";
    position: absolute;
    left: -12px;
    color: #0073aa;
}



/* ================= RIGHT SIDEBAR ================= */

.right-sidebar {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 160px;
    height: 100%;
}

/* Common Box Style */
.sidebar-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
}

/* Contact Box */
.contact-box {
    background: #f3efe6;
}

.contact-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-box .underline {
    display: block;
    width: 40px;
    height: 3px;
    background: #d6cbb5;
    margin: 0 auto 15px;
}

.contact-box p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.btn-contact {
    display: inline-block;
    padding: 10px 22px;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.btn-contact:hover {
    background: #000;
    color: #fff;
}

/* Share Box */
.share-box h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.share-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

/* Icon Colors */
.share-icons a:nth-child(1) { background: #1877f2; } /* Facebook */
.share-icons a:nth-child(2) { background: #e60023; } /* Pinterest */
.share-icons a:nth-child(3) { background: #777; }    /* Email */


.single h2,
.single h3,
.single li,
.single p {
    color: #0B1222 !important;
}

.single li,
.single p {
    line-height: 1.6;
}

.single h2 {
    font-weight: 500 !important;
}



/* ================= FAQ SECTION ================= */

.faq-section {
    max-width: 800px;
    margin: 60px auto;
}

.faq-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* FAQ Item */

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

/* Question */
.faq-question {
    width: 100%;
    background: none !important;
    border: none;
    padding: 22px 0;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer !important;
    color: #1a1a1a;
    text-transform: capitalize !important;
}

.faq-question:hover{
    color: #000 !important;
}

/* Icon */
.faq-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Link */
.faq-link {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
}

.faq-link i {
    font-size: 12px;
    margin-left: 4px;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(-135deg);
}


button.faq-question:focus {
    border: none;
    outline: none;
    color: #000;
}




.single .main-conatiner-of-author-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 0 20px #ccc5;
}

.author-avatar .avatar {
    object-fit: cover !important;
    width: 100%;
    height: 100%;
}
.author-avatar {
    height: 150px;
    width: 120px;
    border-radius: 10px;
    overflow: hidden;
}

.single .main-conatiner-of-author-content .right-content-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.single .author-container .author-name {
    font-size: 26px;
    color: #1a1a1a;
    text-transform: uppercase;
    font-weight: 600 !important;
    margin-top: 0;
    margin-bottom: 5px;
}

.single .author-container .author-title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 36px;
}

.single .author-description {
    font-size: 14px;
    text-align: left !important;
    margin-bottom: 0;
}

.author-bio-section h3::before,
.faq-section h2::before {
    display: none;
}

p.author-tag-line {
    margin-bottom: 6px;
}
p.author-designation {
    font-size: 16px;
    color: #414447 !important;
    text-transform: uppercase;
    font-weight: 500 !important;
    margin-top: 0;
    margin-bottom: 5px;
}
.author-bio-section {
    font-family: 'Poppins', sans-serif;
}




.author-social {
    margin-top: 16px;
}

.author-social-list {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.author-social-list li {
    display: inline-flex;
}

.author-social-list a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 15px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.author-social-list a:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}
.author-social-list i.fab {
    color: #1a1a1a;
}
.author-social-list a:hover i.fab {
    color: #ffffff !important;
}

@media(max-width: 991px){
    aside.toc-sidebar {
        display: none;
    }
    .single .entry-title{
        font-size: 26px !important;
    }
    .single h2{
        font-size: 22px !important;
    }
    .single .site-main{
        padding: 0 15px !important;
    }
    .single .main-conatiner-of-author-content {
        flex-direction: column;
    }
    .single .author-container .author-name {
        font-size: 20px;
    }
    p.author-designation {
        font-size: 12px;
    }
    .author-avatar {
        height: 100px;
        width: 100px;
    }
    .faq-question {
        white-space: normal;
    }
}

@media(max-width: 767px){
    .right-sidebar {
        width: 100%;
    }
}