/* ============================================================
   KV CLEANING – BLOG DETAILS CSS  (v2)
   Scoped only. No body / * / font-family overrides.
   ============================================================ */

/* ===== Page wrapper ===== */
.tj-blog-details {
    padding-top: 0;
    padding-bottom: 70px;
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) { .tj-blog-details { padding-bottom: 50px; } }
@media (max-width: 575px) { .tj-blog-details { padding-bottom: 36px; } }

/* ===== Fluid inner padding ===== */
.bd-fluid-inner {
    padding: 48px 60px 0;
}
@media (max-width: 1399px) { .bd-fluid-inner { padding: 40px 40px 0; } }
@media (max-width: 1199px) { .bd-fluid-inner { padding: 36px 28px 0; } }
@media (max-width: 991px)  { .bd-fluid-inner { padding: 28px 20px 0; } }
@media (max-width: 767px)  { .bd-fluid-inner { padding: 22px 16px 0; } }
@media (max-width: 575px)  { .bd-fluid-inner { padding: 16px 12px 0; } }

/* ===== Hero image ===== */
.bd-hero-wrap {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #0a1a2e;
    margin-bottom: 0;
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
}
.bd-hero-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.45s ease;
}
.bd-hero-wrap:hover img { transform: scale(1.025); }

/* Gradient + badges */
.bd-hero-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 24px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, transparent 100%);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.bd-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}
.bd-meta-badge.date  { background: #077cea; color: #fff; }
.bd-meta-badge.author{ background: rgba(255,255,255,0.18); color: #fff; backdrop-filter: blur(6px); }
.bd-meta-badge i     { font-size: 13px; }

@media (max-width: 991px) { .bd-hero-wrap img { height: 320px; } }
@media (max-width: 767px) { .bd-hero-wrap img { height: 240px; } }
@media (max-width: 575px) {
    .bd-hero-wrap img { height: 200px; border-radius: 10px; }
    .bd-hero-wrap     { border-radius: 10px; }
    .bd-hero-meta     { padding: 36px 14px 14px; }
    .bd-meta-badge    { font-size: 11px; padding: 4px 10px; }
}

/* ===== Content card ===== */
.bd-content-card {
    background: #fff;
    border-radius: 0 0 14px 14px;
    padding: 40px 44px 44px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.07);
    margin-bottom: 32px;
}
@media (max-width: 1199px) { .bd-content-card { padding: 32px 32px 36px; } }
@media (max-width: 991px)  { .bd-content-card { padding: 28px 24px 30px; } }
@media (max-width: 767px)  { .bd-content-card { padding: 22px 18px 26px; } }
@media (max-width: 575px)  { .bd-content-card { padding: 18px 14px 22px; border-radius: 0 0 10px 10px; } }

/* Article title */
.bd-article-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.38;
    margin: 0 0 28px;
    color: var(--tj-color-heading-primary, #111);
}
@media (max-width: 991px) { .bd-article-title { font-size: 24px; margin-bottom: 22px; } }
@media (max-width: 767px) { .bd-article-title { font-size: 21px; margin-bottom: 18px; } }
@media (max-width: 575px) { .bd-article-title { font-size: 18px; margin-bottom: 14px; } }

/* Title divider */
.bd-title-divider {
    width: 52px;
    height: 3px;
    background: #077cea;
    border-radius: 2px;
    margin-bottom: 28px;
}
@media (max-width: 575px) { .bd-title-divider { margin-bottom: 18px; } }

/* ===== Post body typography ===== */
.post_excerpt { text-align: justify; }
.post_excerpt h1 { font-size: 30px; line-height: 1.3;  margin: 28px 0 16px; }
.post_excerpt h2 { font-size: 24px; line-height: 1.35; margin: 24px 0 14px; }
.post_excerpt h3 { font-size: 20px; line-height: 1.4;  margin: 20px 0 12px; }
.post_excerpt h4 { font-size: 17px; line-height: 1.45; margin: 18px 0 10px; }
.post_excerpt p  { font-size: 15.5px; line-height: 1.78; margin-bottom: 16px; color: #333; }
.post_excerpt ul,
.post_excerpt ol { margin: 14px 0 14px 22px; }
.post_excerpt li { font-size: 15.5px; line-height: 1.65; margin-bottom: 8px; color: #333; }
.post_excerpt a  { color: #077cea; text-decoration: underline; }
.post_excerpt a:hover { color: #0560b8; }
.post_excerpt img { max-width: 100%; height: auto; border-radius: 10px; margin: 14px 0; display: block; }
.post_excerpt table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.post_excerpt table th,
.post_excerpt table td { border: 1px solid #dde3ea; padding: 10px 14px; font-size: 15px; }
.post_excerpt table th { background: #f0f5fb; font-weight: 700; }
.post_excerpt blockquote {
    border-left: 4px solid #077cea;
    background: #f0f7ff;
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
    font-style: italic;
    color: #444;
}
.post_excerpt strong { font-weight: 700; color: #111; }

/* ===== FAQ ===== */
.faq-section {
    margin-bottom: 8px;
    padding: 40px 0;
}
.faq-header {
    text-align: center;
    margin-bottom: 28px;
}
.faq-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--tj-color-heading-primary, #111);
    margin-bottom: 0;
}
@media (max-width: 575px) { .faq-header h2 { font-size: 20px; } }

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 6px 24px rgba(7,124,234,0.10); }
.faq-item.active { box-shadow: 0 6px 24px rgba(7,124,234,0.13); }

.faq-question {
    width: 100%;
    padding: 17px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--tj-color-heading-primary, #111);
    gap: 12px;
    transition: color 0.2s;
}
.faq-item.active .faq-question { color: #077cea; }

.faq-icon {
    font-size: 20px;
    font-weight: 400;
    color: #077cea;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer p {
    padding: 0 20px 18px;
    color: #555;
    line-height: 1.72;
    font-size: 14.5px;
    text-align: justify;
    margin: 0;
}
@media (max-width: 575px) {
    .faq-question { font-size: 13.5px; padding: 14px 15px; }
    .faq-answer p  { font-size: 13.5px; padding: 0 15px 15px; }
}

/* ===== SIDEBAR ===== */
.sticky-se{
    position:relative;
}

.sticky-se{
    position:sticky;
    top:120px;
    z-index:99;
}
@media (max-width: 991px) {
    .sticky-se {
        position: relative;
        top: 0;
        margin-top: 12px;
    }
}

/* Enquiry form */
.bd-enquiry-form {
    background: #077cea;
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(7,124,234,0.22);
    margin-bottom: 24px;
}
.bd-enquiry-form h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
}
.bd-enquiry-form .bd-form-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bd-enquiry-form input,
.bd-enquiry-form textarea {
    width: 100%;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    outline: none;
    background: rgba(255,255,255,0.96);
    color: #111;
    transition: border-color 0.25s, background 0.25s;
    box-sizing: border-box;
}
.bd-enquiry-form input::placeholder,
.bd-enquiry-form textarea::placeholder { color: #999; }
.bd-enquiry-form input:focus,
.bd-enquiry-form textarea:focus {
    border-color: #fee766;
    background: #fff;
    outline: none;
}
.bd-enquiry-form textarea { resize: none; min-height: 100px; }

.bd-recaptcha-wrap { width: 100%; overflow: hidden; }
.bd-recaptcha-wrap .g-recaptcha {
    transform: scale(0.87);
    transform-origin: 0 0;
    -webkit-transform: scale(0.87);
    -webkit-transform-origin: 0 0;
}
@media (max-width: 400px) {
    .bd-recaptcha-wrap .g-recaptcha {
        transform: scale(0.75);
        -webkit-transform: scale(0.75);
    }
}

.bd-submit-btn {
    width: 100%;
    background: #fee766;
    color: #111;
    border: none;
    border-radius: 10px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.25s, color 0.25s, transform 0.15s;
}
.bd-submit-btn:hover {
    background: #fff;
    color: #077cea;
    transform: translateY(-1px);
}
.bd-submit-btn:active { transform: translateY(0); }

/* Service area widget */
.bd-service-widget {
    background: #f2f6fb;
    border-radius: 14px;
    padding: 26px 22px;
    margin-bottom: 24px;
}
.bd-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--tj-color-heading-primary, #111);
    margin: 0 0 20px;
    padding-bottom: 12px;
    position: relative;
}
.bd-widget-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 3px;
    background: #077cea;
    border-radius: 2px;
}
.bd-service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.bd-service-list li {
    border-bottom: 1px solid #dde6f0;
}
.bd-service-list li:last-child { border-bottom: none; }
.bd-service-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.bd-service-list li a::after {
    content: "→";
    font-size: 13px;
    color: #077cea;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.2s, transform 0.2s;
}
.bd-service-list li a:hover {
    background: rgba(7,124,234,0.06);
    color: #077cea;
    padding-left: 16px;
}
.bd-service-list li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Recent posts widget */
.bd-recent-widget {
    background: #f2f6fb;
    border-radius: 14px;
    padding: 26px 22px;
}
.bd-recent-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
}
.bd-recent-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dde6f0;
}
.bd-recent-item:last-child { border-bottom: none; padding-bottom: 0; }

.bd-recent-thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    display: block;
}
.bd-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.3s ease;
}
.bd-recent-item:hover .bd-recent-thumb img { transform: scale(1.07); }

.bd-recent-info { flex: 1; min-width: 0; }
.bd-recent-date {
    font-size: 11.5px;
    color: #777;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
    line-height: 1;
}
.bd-recent-date i { color: #077cea; font-size: 12px; }
.bd-recent-title {
    margin: 0;
    line-height: 1.45;
}
.bd-recent-title a {
    font-size: 13.5px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s;
}
.bd-recent-title a:hover { color: #077cea; }

/* ===== Responsive sidebar stacking ===== */
@media (max-width: 991px) {
    .bd-enquiry-form  { padding: 22px 18px; }
    .bd-service-widget,
    .bd-recent-widget { padding: 22px 18px; }
    .bd-recent-thumb  { width: 64px; height: 64px; }
}
@media (max-width: 575px) {
    .bd-enquiry-form  { padding: 18px 14px; border-radius: 12px; }
    .bd-service-widget,
    .bd-recent-widget { padding: 18px 14px; border-radius: 12px; }
    .bd-recent-thumb  { width: 58px; height: 58px; border-radius: 8px; }
    .bd-recent-title a{ font-size: 13px; }
}

/* ===== Breadcrumb (unchanged) ===== */
.tj-breadcrumb-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 230px 0 120px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.tj-breadcrumb-area::before {
    content: "";
    position: absolute; width: 100%; height: 100%; top: 0; left: 0;
    background: rgb(7 124 234 / .5); z-index: -2;
}
.tj-breadcrumb-area::after {
    content: "";
    position: absolute; width: 100%; height: 100%; top: 0; left: 0;
    background: rgb(1 15 52 / .3); z-index: -1;
}
@media only screen and (min-width:768px) and (max-width:991px) { .tj-breadcrumb-area { padding: 200px 0 100px; } }
@media only screen and (min-width:576px) and (max-width:767px) { .tj-breadcrumb-area { padding: 180px 0 80px; } }
@media (max-width:575px) { .tj-breadcrumb-area { padding: 180px 0 80px; } }
.tj-breadcrumb-bg-shape {
    position: absolute; top: 50%; left: 0;
    transform: translate(4%, -30%); z-index: -1;
}
.tj-breadcrumb-title { color: var(--tj-color-common-white); font-weight: var(--tj-fw-bold); margin-bottom: 12px; }
.tj-breadcrumb-body  { font-family: var(--tj-ff-heading); font-weight: var(--tj-fw-medium); font-size: 18px; color: var(--tj-color-common-white); margin-bottom: 0; }
.tj-breadcrumb-body .spacing { margin: 0 10px; }

/* ===== Utility ===== */
.tj-clearfix::after { content: ""; display: table; clear: both; }



    .bd-help-card{
display:flex;
align-items:stretch;
gap:30px;
margin-bottom:30px;
}

.bd-help-image{
width:48%;
}

.bd-help-image img{
width:100%;
height:100%;
min-height:420px;
object-fit:cover;
border-radius:20px;
}

.bd-help-content{
width:52%;
background:#1f252d;
border-radius:20px;
padding:50px;
color:#fff;
}

.bd-help-content h3{
color:#fff;
font-size:42px;
margin-bottom:20px;
}

.bd-help-content p{
color:#d6d6d6;
margin-bottom:35px;
}

.bd-help-list{
list-style:none;
padding:0;
margin:0;
}

.bd-help-list li{
display:flex;
align-items:center;
gap:15px;
margin-bottom:25px;
}

.bd-help-list li a{
color:#fff;
text-decoration:none;
}

@media(max-width:991px){

.bd-help-card{
    flex-direction:column;
}

.bd-help-image,
.bd-help-content{
    width:100%;
}

.bd-help-content{
    padding:30px;
}

.bd-help-image img{
    min-height:250px;
}


}

.bd-help-image{
    width:300px;
    flex-shrink:0;
}

.bd-help-image img{
    width:300px;
    height:248px;
    object-fit:cover;
    border-radius:15px;
    display:block;
}@media(max-width:767px){

    .bd-help-card{
        flex-direction:column;
    }

    .bd-help-image,
    .bd-help-image img{
        width:100%;
        height:auto;
    }

}
.bd-post-meta{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:space-around;
    margin:15px 0 25px;
}

.bd-post-meta span{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:15px;
    color:#666;
}

.bd-post-meta i{
    color:#077cea;
}

@media(max-width:767px){
    .bd-post-meta{
        gap:12px;
    }

    .bd-post-meta span{
        font-size:14px;
    }
}