        /* ============================================
           BLOG DETAILS PAGE STYLES
        ============================================ */

        .blog-detail-section {
            padding: 70px 0 100px;
            background: #f7f8fc;
        }

        /* ==============================
           LEFT — MAIN CONTENT AREA
        ============================== */

        .blog-detail-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 4px 28px rgba(13,95,249,0.07);
            margin-bottom: 28px;
        }

        /* Hero image */
        
      

        /* Card inner padding */
        .blog-detail-inner {
            padding: 38px 40px 42px;
        }
        @media (max-width: 767px) {
            .blog-detail-inner { padding: 26px 22px 32px; }
        }

        /* Meta row */
        .blog-detail-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
            margin-bottom: 22px;
        }
        .blog-meta-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #e8f0fe;
            color: #0D5FF9;
            font-size: 13px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 50px;
            font-family: 'Urbanist', sans-serif;
        }
        .blog-meta-badge i { font-size: 13px; }
        .blog-meta-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: #0D5FF9;
            font-family: 'Urbanist', sans-serif;
            font-weight: 500;
        }
        .blog-meta-item i { color: #0D5FF9; font-size: 13px; }

        /* Title */
        .blog-detail-title {
            font-size: 28px;
            font-weight: 800;
            color: #0a1628;
            line-height: 1.35;
            margin-bottom: 20px;
            font-family: 'Urbanist', sans-serif;
            letter-spacing: -0.4px;
        }
        @media (max-width: 767px) {
            .blog-detail-title { font-size: 22px; }
        }

        /* Body content typography */
        .blog-detail-content {
            font-size: 16px;
            line-height: 1.85;
            font-family: 'Urbanist', sans-serif;
        }
        .blog-detail-content p {
            margin-bottom: 20px;
            text-align:justify;
        }
        .blog-detail-content h3 {
            font-size: 20px;
            font-weight: 700;
            color: #0a1628;
            margin: 32px 0 14px;
            font-family: 'Urbanist', sans-serif;
        }
        .blog-detail-content h4 {
            font-size: 17px;
            font-weight: 700;
            color: #0a1628;
            margin: 24px 0 10px;
            font-family: 'Urbanist', sans-serif;
        }
        .blog-detail-content ul {
            padding-left: 0;
            list-style: none;
            margin-bottom: 20px;
        }
        .blog-detail-content ul li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 15px;
            color: #555;
        }
        .blog-detail-content ul li::before {
            content: '';
            width: 8px;
            height: 8px;
            min-width: 8px;
            background: #0D5FF9;
            border-radius: 50%;
            margin-top: 7px;
        }
        .blog-detail-content ol {
            padding-left: 0;
            list-style: none;
            counter-reset: ol-counter;
            margin-bottom: 20px;
        }
        .blog-detail-content ol li {
            counter-increment: ol-counter;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 15px;
            color: #555;
        }
        .blog-detail-content ol li::before {
            content: counter(ol-counter);
            width: 26px;
            height: 26px;
            min-width: 26px;
            background: #0D5FF9;
            color: #fff;
            border-radius: 50%;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1px;
        }

        /* Blockquote */
        .blog-detail-content blockquote {
            background: #f0f5ff;
            border-left: 4px solid #0D5FF9;
            border-radius: 0 12px 12px 0;
            padding: 20px 24px;
            margin: 28px 0;
            font-size: 16px;
            font-style: italic;
            color: #444;
        }
        .blog-detail-content blockquote cite {
            display: block;
            margin-top: 10px;
            font-size: 13px;
            font-style: normal;
            font-weight: 700;
            color: #0D5FF9;
        }

        /* Inline highlight box */
        .blog-highlight-box {
            background: linear-gradient(135deg, #f0f5ff, #e8f0fe);
            border-radius: 12px;
            padding: 22px 24px;
            margin: 24px 0;
            border: 1.5px solid #dbeafe;
        }
        .blog-highlight-box h5 {
            font-size: 15px;
            font-weight: 700;
            color: #0D5FF9;
            margin-bottom: 10px;
            font-family: 'Urbanist', sans-serif;
        }
        .blog-highlight-box p {
            font-size: 14px;
            color: #555;
            margin: 0;
            line-height: 1.7;
        }

        /* Tags section */
        .blog-tags-row {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid #f0f3fa;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }
        .blog-tags-label {
            font-size: 13px;
            font-weight: 700;
            color: #888;
            font-family: 'Urbanist', sans-serif;
        }
        .blog-tag-pill {
            display: inline-block;
            padding: 5px 14px;
            background: #f0f3fa;
            color: #555;
            font-size: 12px;
            font-weight: 600;
            border-radius: 50px;
            font-family: 'Urbanist', sans-serif;
            transition: all 0.2s;
            cursor: pointer;
        }
        .blog-tag-pill:hover {
            background: #0D5FF9;
            color: #fff;
        }

        /* Back button */
        .blog-back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 22px;
            background: #f0f3fa;
            color: #0a1628;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            font-family: 'Urbanist', sans-serif;
            transition: all 0.2s;
            border: 1.5px solid #e0e7ff;
        }
        .blog-back-btn:hover {
            background: #0D5FF9;
            border-color: #0D5FF9;
            color: #fff;
        }

        /* ==============================
           RIGHT — SIDEBAR
        ============================== */

        .blog-sidebar-right {
            position: sticky;
            top: 100px;
        }
        @media (max-width: 991px) {
            .blog-sidebar-right { position: static; margin-top: 32px; }
        }

        /* Sidebar widget base */
        .sidebar-widget {
            background: #fff;
            border-radius: 16px;
            padding: 28px 26px;
            box-shadow: 0 4px 20px rgba(13,95,249,0.07);
            margin-bottom: 24px;
        }
        .widget-title {
            font-size: 16px;
            font-weight: 800;
            color: #0a1628;
            margin-bottom: 20px;
            font-family: 'Urbanist', sans-serif;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-title i {
            color: #002935;
            font-size: 18px;
        }

        /* Quick Links widget */
        .quick-links-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .quick-links-list li {
            border-bottom: 1px solid #f5f6fa;
        }
        .quick-links-list li:last-child { border-bottom: none; }
        .quick-links-list li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 0;
            font-size: 14px;
            font-weight: 600;
            color: #444;
            text-decoration: none;
            font-family: 'Urbanist', sans-serif;
            transition: all 0.2s;
        }
        .quick-links-list li a i {
            font-size: 12px;
            color: #0D5FF9;
            transition: transform 0.2s;
        }
        .quick-links-list li a:hover {
            color: #0D5FF9;
            padding-left: 6px;
        }
        .quick-links-list li a:hover i {
            transform: translateX(3px);
        }

        /* Recent Blogs widget */
        .recent-blog-item {
            display: flex;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid #f5f6fa;
        }
        .recent-blog-item:last-child { border-bottom: none; padding-bottom: 0; }
        .recent-blog-item:first-child { padding-top: 0; }
        .recent-blog-thumb {
            width: 68px;
            height: 52px;
            min-width: 68px;
            border-radius: 8px;
            overflow: hidden;
        }
        .recent-blog-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .recent-blog-thumb div {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0D5FF9, #3b82f6);
        }
        .recent-blog-thumb div i { font-size: 18px; color: rgba(255,255,255,0.6); }
        .recent-blog-info { flex: 1; }
        .recent-blog-info .rb-date {
            font-size: 11px;
            color: #0D5FF9;
            font-weight: 600;
            font-family: 'Urbanist', sans-serif;
            margin-bottom: 4px;
        }
        .recent-blog-info h6 {
            font-size: 13px;
            font-weight: 700;
            color: #0a1628;
            margin: 0;
            line-height: 1.4;
            font-family: 'Urbanist', sans-serif;
        }
        .recent-blog-info a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s;
        }
        .recent-blog-info a:hover h6 { color: #0D5FF9; }

        /* Join Platform widget */
        .join-widget {
            background: linear-gradient(135deg, #0D5FF9 0%, #1a3a6b 100%);
            border-radius: 16px;
            padding: 32px 26px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(13,95,249,0.25);
            margin-bottom: 24px;
            position: relative;
            overflow: hidden;
        }
        .join-widget::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 140px;
            height: 140px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }
        .join-widget::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 100px;
            height: 100px;
            background: rgba(255,255,255,0.04);
            border-radius: 50%;
        }
        .join-widget h5 {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
            font-family: 'Urbanist', sans-serif;
        }
        .join-widget p {
            font-size: 13px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 22px;
            line-height: 1.6;
        }
        .join-widget-btns {
            display: flex;
            gap: 10px;
            justify-content: center;
        }
        .join-btn-primary {
            padding: 10px 22px;
            background: #002935;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Urbanist', sans-serif;
            text-decoration: none;
            transition: all 0.2s;
        }
        .join-btn-primary:hover {
            color: #fff;
        }
        .join-btn-secondary {
            padding: 10px 22px;
            background: rgba(255,255,255,0.15);
            color: #fff;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Urbanist', sans-serif;
            text-decoration: none;
            transition: all 0.2s;
        }
        .join-btn-secondary:hover {
            background: rgba(255,255,255,0.25);
            color: #fff;
        }

        /* FAQ Section Styling */
        .faq-section {
         
            background: #fff;
            border-radius: 18px;
            padding: 32px 36px;
            box-shadow: 0 4px 20px rgba(13,95,249,0.06);
        }
        .faq-header h2 {
            font-size: 22px;
            font-weight: 800;
            color: #0a1628;
            margin-bottom: 25px;
            font-family: 'Urbanist', sans-serif;
        }
        .faq-accordion .faq-item {
            border-bottom: 1px solid #eef2ff;
            margin-bottom: 0;
        }
        .faq-accordion .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 18px 0;
            font-size: 16px;
            font-weight: 600;
            color: #1a2c3e;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Urbanist', sans-serif;
        }
        .faq-icon {
            font-size: 20px;
            font-weight: 600;
            color: #0D5FF9;
            transition: transform 0.3s ease;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-bottom: 18px;
        }
        .faq-answer p {
            margin: 0;
            color: #666;
            text-align:justify;
            line-height: 1.7;
            font-size: 14px;
        }
.faq-con {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-badge {
    display: inline-block;
    background: rgba(13, 95, 249, 0.1);
    color: #0D5FF9;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
    background: #0D5FF9;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(13, 95, 249, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #eef2ff;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Question Button */
.faq-question-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 28px;
    font-size: 17px;
    font-weight: 600;
    color: #1a2c3e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: all 0.25s ease;
}

.faq-question-btn:hover {
    background: #fafcff;
    color: #0D5FF9;
}

.faq-item.active .faq-question-btn {
    color: #0D5FF9;
    background: #fafcff;
}

/* Question Text */
.question-text {
    flex: 1;
    padding-right: 20px;
    line-height: 1.4;
}

/* Icon */
.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #f0f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 14px;
    color: #0D5FF9;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: #0D5FF9;
}

.faq-item.active .faq-icon i {
    color: #fff;
    transform: rotate(45deg);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 15px 28px 24px 28px;
    color: #555;
    font-size: 15px;
    line-height: 1.75;
    border-top: 1px solid #0D5FF9;
    margin-top: 4px;
}

.faq-answer-content p {
    margin-bottom: 0;
}

/* Contact Box */
.faq-contact-box {
    background: linear-gradient(135deg, #0D5FF9, #3b82f6);
    border-radius: 20px;
    padding: 32px 40px;
    text-align: center;
    color: #fff;
}

.faq-contact-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-contact-box p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0D5FF9;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.faq-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #0D5FF9;
}
/* ===== ADD GAP BETWEEN FAQ ITEMS ===== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px; /* 🔥 spacing between items */
}

/* make each item look like card */
.faq-item {
    border: none !important;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(13,95,249,0.06);
}
/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-question-btn {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
    
    .question-text {
        padding-right: 12px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }
    
    .faq-icon i {
        font-size: 12px;
    }
    
    .faq-contact-box {
        padding: 24px 20px;
    }
    
    .faq-contact-box h3 {
        font-size: 20px;
    }
}
.faq-item {
    cursor: pointer;
}