/* ================================================================
   HPCI BLOG PAGE — PROFESSIONAL UI
   Green: #068131   Red: #D81112
================================================================ */
:root {
    --onpoint-base: #D81112 !important;
    --onpoint-primary: #068131 !important;
}

.page-header { padding-top: 130px !important; padding-bottom: 130px !important; }

.blog-page { padding: 70px 0 80px; background: #f4f7f4; }

/* ══════════════════════════
   BLOG GRID
══════════════════════════ */
.hpci-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}
@media (max-width: 767px) { .hpci-blog-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════
   CARD BASE
══════════════════════════ */
.hpci-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8efe8;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.hpci-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(6,129,49,0.13);
    border-color: #068131;
}

/* Image */
.hpci-card__img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    height: 220px;
    flex-shrink: 0;
}
.hpci-card__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.hpci-card:hover .hpci-card__img-wrap img { transform: scale(1.06); }

/* Category badge */
.hpci-card__cat {
    position: absolute;
    top: 14px; left: 14px; z-index: 2;
    display: inline-flex; align-items: center; gap: 5px;
    background: #068131;
    color: #fff;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 30px;
    font-family: var(--onpoint-font);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Date strip */
.hpci-card__date-strip {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(26,35,50,0.85), transparent);
    padding: 20px 16px 12px;
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.9);
    font-size: 12px; font-weight: 600;
    font-family: var(--onpoint-font);
}
.hpci-card__date-strip i { font-size: 11px; color: #68c97e; }

/* Card body */
.hpci-card__body {
    display: flex; flex-direction: column; flex: 1;
    padding: 22px 22px 24px;
}

/* Meta row */
.hpci-card__meta {
    display: flex; align-items: center;
    gap: 14px; margin-bottom: 12px; flex-wrap: wrap;
}
.hpci-card__meta-item {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; color: #888;
    font-family: var(--onpoint-font);
}
.hpci-card__meta-item i { color: #068131; font-size: 11px; }

/* Title */
.hpci-card__title {
    font-size: 18px; font-weight: 700;
    line-height: 1.4; margin: 0 0 8px;
    font-family: var(--onpoint-font-two);
}
.hpci-card__title::after {
    content: '';
    display: block;
    width: 36px; height: 3px;
    background: #D81112;
    border-radius: 2px;
    margin-top: 10px;
}
.hpci-card__title a {
    color: #1a2332; text-decoration: none;
    transition: color 0.3s;
}
.hpci-card__title a:hover { color: #068131; }

/* Excerpt */
.hpci-card__excerpt {
    font-size: 14px; line-height: 1.75;
    color: #777; margin-bottom: 20px; flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer */
.hpci-card__footer {
    display: flex; align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f5f0;
    gap: 10px;
}

/* Read More btn */
.hpci-card__btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700;
    font-family: var(--onpoint-font-two);
    color: #068131;
    background: transparent;
    border: 2px solid #068131;
    padding: 9px 20px; border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    white-space: nowrap;
}
.hpci-card__btn i { font-size: 11px; transition: transform 0.3s; }
.hpci-card__btn:hover {
    background: #068131; color: #fff;
}
.hpci-card__btn:hover i { transform: translateX(4px); }

/* Social */
.hpci-card__social { display: flex; align-items: center; gap: 8px; }
.hpci-card__social a {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    font-size: 13px; color: #555;
    border: 1px solid #dde8dd; border-radius: 50%;
    text-decoration: none; transition: all 0.3s;
}
.hpci-card__social a:hover {
    background: #068131; border-color: #068131; color: #fff;
}

/* ══════════════════════════
   FEATURED CARD (first card)
══════════════════════════ */
.hpci-card--featured {
    grid-column: 1 / -1;
    flex-direction: row;
}
.hpci-card--featured .hpci-card__img-wrap {
    width: 46%; flex-shrink: 0;
    height: auto; min-height: 320px;
    border-radius: 0;
}
.hpci-card--featured .hpci-card__body {
    padding: 32px 32px 28px;
    justify-content: center;
}
.hpci-card--featured .hpci-card__title {
    font-size: 26px; line-height: 1.3;
}
.hpci-card--featured .hpci-card__excerpt {
    -webkit-line-clamp: 4;
}

/* Featured badge */
.hpci-card--featured .hpci-card__featured-badge {
    display: inline-flex;
    align-items: center; gap: 6px;
    background: #D81112; color: #fff;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 30px;
    margin-bottom: 14px;
    font-family: var(--onpoint-font);
    width: fit-content;
}

@media (max-width: 767px) {
    .hpci-card--featured { flex-direction: column; }
    .hpci-card--featured .hpci-card__img-wrap { width: 100%; height: 220px; }
    .hpci-card--featured .hpci-card__body { padding: 22px; }
    .hpci-card--featured .hpci-card__title { font-size: 20px; }
}

/* ══════════════════════════
   FILTER BAR
══════════════════════════ */
.hpci-filter-bar {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 10px;
    background: #fff;
    border-left: 4px solid #068131;
    border-radius: 10px;
    padding: 13px 20px; margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.hpci-filter-bar p { margin: 0; font-size: 14px; color: #333; }
.hpci-filter-bar p strong { color: #068131; }
.hpci-filter-bar a {
    font-size: 13px; font-weight: 700; color: #D81112;
    text-decoration: none; background: #fff0f0;
    padding: 5px 14px; border-radius: 20px;
    border: 1px solid rgba(217,17,18,0.2); transition: all 0.3s;
}
.hpci-filter-bar a:hover { background: #D81112; color: #fff; }

/* ══════════════════════════
   PAGINATION
══════════════════════════ */
.blog-page__pagination { margin-top: 10px; padding-top: 20px; border-top: 1px solid #e0e8e0; }
.pg-pagination { display: flex; gap: 8px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.pg-pagination li a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; font-size: 14px; font-weight: 600;
    color: #333; background: #fff; border: 1px solid #dde8dd;
    border-radius: 8px; text-decoration: none; transition: all 0.3s;
}
.pg-pagination li a:hover,
.pg-pagination li.active a {
    background: #068131 !important; color: #fff !important; border-color: #068131 !important;
}
.pg-pagination li.disabled a { opacity: 0.4; pointer-events: none; }
.pg-pagination li a i { font-size: 11px; color: #068131; }
.pg-pagination li a:hover i, .pg-pagination li.active a i { color: #fff; }

/* ══════════════════════════
   SIDEBAR
══════════════════════════ */
.sidebar { display: flex; flex-direction: column; gap: 0 !important; }

.sidebar__single {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 24px 20px !important;
    margin-bottom: 22px !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05) !important;
    border: 1px solid #e8efe8 !important;
}

.sidebar__title {
    font-size: 16px !important; font-weight: 700 !important;
    color: #1a2332 !important; text-transform: uppercase !important;
    letter-spacing: 0.5px !important; margin-bottom: 16px !important;
    padding-bottom: 12px !important; border-bottom: 2px solid #D81112 !important;
    font-family: var(--onpoint-font-two) !important;
}

/* Search */
.sidebar__search-form {
    display: flex; border: 1.5px solid #dde8dd;
    border-radius: 8px; overflow: hidden; transition: border-color 0.3s;
}
.sidebar__search-form:focus-within { border-color: #068131; }
.sidebar__search-form input {
    flex: 1; border: none !important; outline: none !important;
    padding: 11px 14px !important; font-size: 14px !important;
    background: transparent !important;
}
.sidebar__search-form button {
    background: #068131 !important; color: #fff !important;
    border: none !important; padding: 0 16px !important;
    cursor: pointer !important; transition: background 0.3s !important;
}
.sidebar__search-form button:hover { background: #D81112 !important; }

/* Latest posts */
.sidebar__post-list { padding: 0 !important; margin: 0 !important; }
.sidebar__post-list li {
    display: flex !important; align-items: center !important;
    gap: 12px !important; padding: 12px 0 !important;
    border-bottom: 1px solid #f0f5f0 !important;
}
.sidebar__post-list li:last-child { border-bottom: none !important; padding-bottom: 0 !important; }
.sidebar__post-image {
    width: 64px !important; height: 56px !important;
    min-width: 64px !important; border-radius: 8px !important; overflow: hidden !important;
}
.sidebar__post-image img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
.sidebar__post-content h3 {
    font-size: 13px !important; font-weight: 600 !important;
    line-height: 1.5 !important; margin: 0 !important;
}
.sidebar__post-content h3 a {
    color: #333 !important; text-decoration: none !important; transition: color 0.3s !important;
}
.sidebar__post-content h3 a:hover { color: #068131 !important; }
.sidebar__post-date {
    font-size: 11px !important; color: #D81112 !important;
    margin-bottom: 4px !important; font-weight: 600 !important;
}

/* Categories */
.sidebar__category-list { padding: 0 !important; margin: 0 !important; }
.sidebar__category-list li {
    border-bottom: 1px solid #f0f5f0 !important; padding: 0 !important;
    background: transparent !important;
}
.sidebar__category-list li:last-child { border-bottom: none !important; }
.sidebar__category-list li a {
    display: flex !important; align-items: center !important;
    justify-content: space-between !important;
    padding: 11px 4px !important; font-size: 14px !important;
    color: #555 !important; text-decoration: none !important;
    font-weight: 500 !important; transition: all 0.3s !important;
    background: transparent !important;
}
.sidebar__category-list li a:hover,
.sidebar__category-list li.active a {
    color: #ffffff !important; font-weight: 700 !important;
    padding-left: 8px !important; background: transparent !important;
}
.sidebar__category-list li a span {
    background: #f0f5f0; color: #666;
    font-size: 11px; font-weight: 700;
    padding: 2px 9px; border-radius: 20px; transition: all 0.3s;
}
.sidebar__category-list li a:hover span,
.sidebar__category-list li.active a span {
    background: #068131 !important; color: #fff !important;
}
.sidebar__category-list li .icon { display: none !important; }

/* ── CTA ── */
.cta-one__title,
.cta-one__contact-box .content h3 a,
.cta-one__contact-box .content p { color: #fff !important; }
.cta-one__contact-box .content h3 a:hover { color: #fff !important; text-decoration: none !important; }

/* ── Empty state ── */
.hpci-empty { grid-column: 1 / -1; text-align: center; padding: 60px 20px; }
.hpci-empty i { font-size: 48px; color: #c8dfc8; display: block; margin-bottom: 16px; }
.hpci-empty p { font-size: 15px; color: #888; margin: 0; line-height: 1.7; }

/* Scroll to top */
.scroll-to-top { background: #068131 !important; }
.scroll-to-top:hover { background: #D81112 !important; }

@media (max-width: 768px) {
    .blog-page { padding: 40px 0 50px; }
    .sidebar__single { padding: 18px 16px !important; }
}




   /* ── Critical above-fold styles to prevent CLS ── */
        *,
        *::before,
        *::after {
            box-sizing: border-box
        }

        img,
        video {
            max-width: 100%;
            height: auto;
            display: block
        }

        /* Reserve space for LCP image to prevent CLS */
        .hpci-card--featured .hpci-card__img-wrap {
            overflow: hidden;
            background: #f0f4f0;
        }

        .hpci-card__img-wrap {
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #f0f4f0;
        }

        .hpci-card__img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            will-change: transform;
            transition: transform .4s ease;
        }

        .hpci-card__img-wrap img:hover {
            transform: scale(1.04)
        }

        /* Sidebar image CLS prevention */
        .sidebar__post-image {
            flex-shrink: 0;
            width: 80px;
            height: 60px;
            overflow: hidden;
            border-radius: 4px;
            background: #f0f4f0;
        }

        .sidebar__post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Page header min-height to prevent CLS */
        .page-header {
            min-height: 180px;
            contain: layout style;
        }

        /* Blog grid: CSS Grid for CLS stability */
        .hpci-blog-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        @media(min-width:768px) {
            .hpci-blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            /* Featured card: full-width horizontal layout */
            .hpci-blog-grid .hpci-card--featured {
                grid-column: 1/-1;
                display: grid;
                grid-template-columns: 40% 1fr;
                align-items: stretch;
                overflow: hidden;
            }

            /* Featured image wrapper: stretch full height of card */
            .hpci-blog-grid .hpci-card--featured .hpci-card__img-wrap {
                aspect-ratio: unset !important;
                height: auto !important;
                min-height: 100% !important;
                width: 100% !important;
                position: relative;
                overflow: hidden;
                border-radius: 0 !important;
            }

            /* Image itself: cover the entire left column */
            .hpci-blog-grid .hpci-card--featured .hpci-card__img-wrap img {
                position: absolute !important;
                top: 0 !important;
                left: 0 !important;
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
                object-position: center center !important;
            }
        }

        /* INP: touch-action on interactive elements */
        a,
        button,
        [role="button"] {
            touch-action: manipulation
        }

        /* Accessibility: focus-visible */
        :focus-visible {
            outline: 3px solid #2e7d32;
            outline-offset: 3px;
            border-radius: 2px;
        }

        /* Non-blocking font render */
        @font-face {
            font-display: swap
        }

        /* Sidebar CTA */
        .hpci-sidebar-cta {
            background: linear-gradient(160deg, #1b5e20, #388e3c);
            color: #fff;
            border-radius: 10px;
            padding: 20px 18px;
            text-align: center;
            margin-top: 14px;
        }

        .hpci-sidebar-cta .hpci-sidebar-cta__icon {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }

        .hpci-sidebar-cta h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0 0 8px;
            color: #fff;
        }

        .hpci-sidebar-cta p {
            font-size: .88rem;
            opacity: .9;
            margin: 0 0 16px;
        }

        .hpci-sidebar-cta a {
            display: block;
            background: #fff;
            color: #1b5e20;
            font-weight: 700;
            padding: 10px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-size: .92rem;
            transition: background .2s;
        }

        .hpci-sidebar-cta a:hover {
            background: #e8f5e9
        }

        .hpci-sidebar-cta .hpci-sidebar-cta__tel {
            display: block;
            margin-top: 10px;
            color: rgba(255, 255, 255, .85);
            font-size: .88rem;
            text-decoration: none;
        }

        .hpci-sidebar-cta .hpci-sidebar-cta__tel:hover {
            color: #fff
        }

        /* Trust bar */
        .hpci-trust-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
            align-items: center;
            padding: 20px 0;
            margin: 0 0 32px;
        }

        .hpci-trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.98rem !important;
            font-weight: 600;
            color: #000000 !important;
        }

        .hpci-trust-icon {
            width: 35px;
            height: 35px;
            min-width: 35px;
            background: #1b5e20;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Skip link (Accessibility) */
        .skip-link {
            position: absolute;
            top: -9999px;
            left: -9999px;
            z-index: 9999;
            padding: 10px 16px;
            background: #1b5e20;
            color: #fff;
            font-weight: 700;
            border-radius: 0 0 6px 6px;
            text-decoration: none;
        }

        .skip-link:focus {
            top: 0;
            left: 0
        }

        /* Filter bar */
        .hpci-filter-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
            background: #f8faf8;
            border: 1px solid #e0e8e0;
            border-radius: 8px;
            padding: 12px 16px;
            margin-bottom: 20px;
            font-size: .93rem;
        }

        .hpci-filter-bar a {
            color: #c0392b;
            text-decoration: none;
            font-weight: 600;
            font-size: .88rem;
        }

        .hpci-filter-bar a:hover {
            text-decoration: underline
        }

        /* ── Sidebar box spacing: tighter gaps between widgets ── */
        .sidebar .sidebar__single {
            margin-bottom: 16px !important;
            padding-bottom: 16px !important;
        }

        .sidebar .sidebar__single.sidebar__search,
        .sidebar .sidebar__single.sidebar__post,
        .sidebar .sidebar__single.sidebar__category {
            padding: 20px 22px !important;
        }

        .sidebar .sidebar__title {
            margin-bottom: 12px !important;
        }

        .sidebar .sidebar__single:not(.sidebar__search):not(.sidebar__post):not(.sidebar__category) {
            padding: 18px 22px !important;
        }

        .sidebar__post-list li {
            margin-bottom: 10px !important;
            padding-bottom: 10px !important;
        }

        .sidebar__category-list li {
            margin-bottom: 6px !important;
            padding-bottom: 6px !important;
        }

        /* ── Popular Topics: Pill Badge Tags ── */
        .tagcloud {
            display: flex !important;
            flex-wrap: wrap !important;
            gap: 8px !important;
            margin-top: 4px;
        }

        .tagcloud .tag-cloud-link {
            display: inline-flex !important;
            align-items: center;
            gap: 5px;
            padding: 6px 13px !important;
            border-radius: 20px !important;
            font-size: .78rem !important;
            font-weight: 600 !important;
            text-decoration: none !important;
            line-height: 1.3;
            letter-spacing: .02em;
            transition: all .22s ease !important;
            border: 1.5px solid transparent;
        }

        /* Alternating green styles for visual rhythm */
        .tagcloud .tag-cloud-link:nth-child(3n+1) {
            background: #e8f5e9;
            color: #1b5e20 !important;
            border-color: #a5d6a7;
        }

        .tagcloud .tag-cloud-link:nth-child(3n+2) {
            background: #fff;
            color: #2e7d32 !important;
            border-color: #66bb6a;
        }

        .tagcloud .tag-cloud-link:nth-child(3n+3) {
            background: #1b5e20;
            color: #fff !important;
            border-color: #1b5e20;
        }

        /* Hover states */
        .tagcloud .tag-cloud-link:nth-child(3n+1):hover {
            background: #2e7d32;
            color: #fff !important;
            border-color: #2e7d32;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(46, 125, 50, .2);
        }

        .tagcloud .tag-cloud-link:nth-child(3n+2):hover {
            background: #2e7d32;
            color: #fff !important;
            border-color: #2e7d32;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(46, 125, 50, .2);
        }

        .tagcloud .tag-cloud-link:nth-child(3n+3):hover {
            background: #388e3c;
            border-color: #388e3c;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(46, 125, 50, .3);
        }

        /* Small leaf icon before each tag via pseudo */
        .tagcloud .tag-cloud-link::before {
            content: '#';
            font-size: .72rem;
            opacity: .7;
            font-weight: 700;
        }

        /* ============================================================
   HPCI FAQ SECTION — Reusable Stylesheet
   Usage: <link rel="stylesheet" href="hpci-faq.css">
   Fonts needed: Rajdhani, Jost (Google Fonts)
   ============================================================ */

        /* ── Section Wrapper ─────────────────────────────────────── */
        .hpci-faq-section {
            padding: 60px 0 20px;
            background: #f8f9f4;
            font-family: 'Jost', sans-serif;
        }

        .hpci-faq-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ── Two-column layout ───────────────────────────────────── */
        .hpci-faq-wrap {
            display: flex;
            align-items: flex-start;
            gap: 60px;
            flex-wrap: wrap;
        }

        /* ── LEFT COLUMN ─────────────────────────────────────────── */
        .hpci-faq-left {
            flex: 1;
            min-width: 280px;
        }

        /* Eyebrow tag */
        .hpci-faq-eyebrow {
            display: inline-block;
            background: #D71112;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            padding: 7px 22px;
            border-radius: 30px;
            letter-spacing: 2px;
            margin-bottom: 16px;
            text-transform: uppercase;
            font-family: 'Jost', sans-serif;
        }

        /* Heading */
        .hpci-faq-heading {
            font-size: 50px;
            font-weight: 700;
            color: #111;
            line-height: 1.1;
            margin: 0 0 12px;
            font-family: 'Rajdhani', sans-serif;
        }

        .hpci-faq-heading .hpci-faq-heading-accent {
            color: #098231;
        }

        /* Red divider */
        .hpci-faq-divider {
            width: 55px;
            height: 4px;
            background: #D71112;
            border-radius: 2px;
            margin-bottom: 20px;
        }

        /* Subtext */
        .hpci-faq-subtext {
            color: #555;
            font-size: 17px;
            line-height: 1.8;
            margin: 0 0 28px;
            font-family: 'Jost', sans-serif;
        }

        /* Image card with phone overlay */
        .hpci-faq-img-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
        }

        .hpci-faq-img-card img {
            width: 100%;
            display: block;
            border-radius: 16px;
            min-height: 280px;
            object-fit: cover;
        }

        .hpci-faq-img-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(9, 130, 49, 0.95));
            padding: 50px 28px 28px;
            border-radius: 0 0 16px 16px;
        }

        .hpci-faq-phone-row {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .hpci-faq-phone-icon {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: #D71112;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hpci-faq-phone-label {
            color: rgba(255, 255, 255, 0.75);
            font-size: 14px;
            margin: 0 0 3px;
            font-family: 'Jost', sans-serif;
        }

        .hpci-faq-phone-number {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            margin: 0;
            font-family: 'Rajdhani', sans-serif;
            text-decoration: none;
            letter-spacing: 1px;
            display: block;
        }

        .hpci-faq-phone-number:hover {
            color: #fff;
            text-decoration: underline;
        }

        /* ── RIGHT COLUMN — Accordion ────────────────────────────── */
        .hpci-faq-right {
            flex: 1.3;
            min-width: 280px;
            padding-top: 10px;
        }

        /* Single FAQ item */
        .hpci-faq-item {
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
        }

        /* Question header */
        .hpci-faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 22px;
            cursor: pointer;
            background: #fff;
            transition: background 0.2s;
        }

        .hpci-faq-item.active .hpci-faq-question {
            background: #098231;
        }

        .hpci-faq-question h3,
        .hpci-faq-question .hpci-faq-q-text {
            margin: 0;
            font-size: 17px;
            font-weight: 700;
            color: #111;
            font-family: 'Rajdhani', sans-serif;
            transition: color 0.2s;
        }

        .hpci-faq-item.active .hpci-faq-question h3,
        .hpci-faq-item.active .hpci-faq-question .hpci-faq-q-text {
            color: #fff;
        }

        /* +/- toggle button */
        .hpci-faq-toggle {
            width: 30px;
            height: 30px;
            min-width: 30px;
            border-radius: 50%;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 12px;
            font-size: 20px;
            font-weight: 700;
            color: #098231;
            line-height: 1;
            transition: background 0.2s, color 0.2s;
            user-select: none;
        }

        .hpci-faq-item.active .hpci-faq-toggle {
            background: rgba(255, 255, 255, 0.25);
            color: #fff;
        }

        /* Answer body */
        .hpci-faq-answer {
            padding: 0 22px;
            background: #fff;
            display: none;
            overflow: hidden;
        }

        .hpci-faq-item.active .hpci-faq-answer {
            display: block;
            padding: 20px 22px;
        }

        .hpci-faq-answer p {
            margin: 0;
            color: #444;
            font-size: 15px;
            line-height: 1.9;
            font-family: 'Jost', sans-serif;
        }

        /* ── RESPONSIVE ──────────────────────────────────────────── */
        @media (max-width: 768px) {
            .hpci-faq-wrap {
                flex-direction: column;
                gap: 30px;
            }

            .hpci-faq-container {
                padding: 0 16px;
            }

            .hpci-faq-heading {
                font-size: 34px;
            }

            .hpci-faq-section {
                padding: 40px 0 20px;
            }
        }

        /* ── Trust Bar Override ── */
        .hpci-trust-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            padding: 24px 0;
            margin: 0 0 32px;
        }

        .hpci-trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.2rem;
            /* was .88rem */
            font-weight: 700;
            /* was 600 */
            color: #1b5e20;
        }

        .hpci-trust-item svg {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
            color: #2e7d32;
        }
   /* ── Trust badges band ───────────────────────── */
    .hpci-trust-band {
        background: #f8fdf9;
        border-top: 2px solid #e8f5ec;
        border-bottom: 2px solid #e8f5ec;
        padding: 20px 0;
        font-family: 'Jost', sans-serif;
    }

    .hpci-trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        font-weight: 600;
        color: #222;
    }

    .hpci-trust-item span.dot {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #098231;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    /* ── Book CTA strip ──────────────────────────── */
    .hpci-book-strip {
        background: linear-gradient(135deg, #098231 0%, #065f24 100%);
        padding: 50px 0;
        text-align: center;
        font-family: 'Jost', sans-serif;
    }
@media (max-width: 768px) {
    .hpci-trust-band .row {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 6px !important;
    }
    
    .hpci-trust-item {
        justify-content: center !important;
        text-align: center !important;
        font-size: 12px !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    .hpci-trust-item .dot {
        width: 24px !important;
        height: 24px !important;
    }

    .hpci-trust-item .dot svg {
        width: 13px !important;
        height: 13px !important;
    }
}
    .hpci-book-strip h2 {
        font-family: 'Rajdhani', sans-serif;
        font-size: clamp(24px, 4vw, 40px);
        font-weight: 700;
        color: #fff;
        margin: 0 0 10px;
    }

    .hpci-book-strip p {
        color: rgba(255, 255, 255, 0.85);
        font-size: 16px;
        margin: 0 0 24px;
    }

    .hpci-book-strip .hpci-btn-primary {
        font-size: 17px;
        padding: 15px 36px;
    }

    .hpci-book-strip .hpci-btn-wa {
        background: #25D366;
        color: #fff;
        box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
        font-family: 'Jost', sans-serif;
        font-size: 17px;
        font-weight: 700;
        padding: 15px 36px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.2s;
    }

    .hpci-book-strip .hpci-btn-wa:hover {
        background: #1da851;
        color: #fff;
        transform: translateY(-2px);
    }
    
        /* ══════════════════════════════════════════════════════════
   HPCI BLOG PAGE — MOBILE RESPONSIVENESS OVERRIDES
   Add this AFTER all existing styles inside <style> tag
   Breakpoints: 576px (xs), 768px (md), 992px (lg)
══════════════════════════════════════════════════════════ */

        /* ── 1. TRUST BAR ─────────────────────────────────────── */
        @media (max-width: 991px) {
            .hpci-trust-bar {
                gap: 10px 14px;
                padding: 16px 12px;
                margin: 0 0 20px;
                background: #f0f7f0;
                border-radius: 10px;
                border: 1px solid #c8e6c9;
            }

            .hpci-trust-item {
                font-size: .82rem;
                gap: 7px;
                flex: 0 0 calc(50% - 10px);
                /* 2 items per row */
                justify-content: flex-start;
            }

            .hpci-trust-item svg {
                width: 18px;
                height: 18px;
                flex-shrink: 0;
            }
        }

        @media (max-width: 480px) {
            .container:has(.hpci-trust-bar) {
                padding-left: 14px !important;
                padding-right: 14px !important;
            }

            .hpci-trust-bar {
                flex-direction: column !important;
                align-items: flex-start !important;
                flex-wrap: nowrap !important;
                gap: 0 !important;
                padding: 6px 16px !important;
                background-color: #e8f5ee !important;
                border-radius: 16px !important;
                border: none !important;
                margin: 0 0 20px !important;
            }

            .hpci-trust-item {
                width: 100% !important;
                padding: 10px 0 !important;
                border-bottom: 1px solid rgba(26, 110, 60, 0.15) !important;
                white-space: normal !important;
                font-size: 14px !important;
                font-weight: 600 !important;
                color: #000000 !important;
                background: transparent !important;
                border-radius: 0 !important;
                box-shadow: none !important;
                margin: 0 !important;
                gap: 12px !important;
                flex: unset !important;
                justify-content: flex-start !important;
            }

            .hpci-trust-item:last-child {
                border-bottom: none !important;
                padding-bottom: 10px !important;
            }

            .hpci-trust-icon {
                width: 40px !important;
                height: 40px !important;
                min-width: 40px !important;
                background: #1b5e20 !important;
                border-radius: 50% !important;
                flex-shrink: 0 !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }

            .hpci-trust-icon svg {
                width: 18px !important;
                height: 18px !important;
            }
        }

        /* ── 2. PAGE HEADER ───────────────────────────────────── */
        @media (max-width: 767px) {
            .page-header {
                min-height: 130px;
            }

            .page-header__inner h1 {
                font-size: 1.6rem !important;
                margin-bottom: 6px;
            }

            .thm-breadcrumb {
                font-size: .8rem;
                flex-wrap: wrap;
                gap: 4px;
            }
        }

        /* ── 3. BLOG GRID (mobile: single column always) ─────── */
        @media (max-width: 767px) {
            .hpci-blog-grid {
                grid-template-columns: 1fr !important;
                gap: 16px;
            }

            /* Featured card: stack vertically on mobile */
            .hpci-blog-grid .hpci-card--featured {
                grid-column: 1 / -1 !important;
                display: block !important;
                /* override grid layout */
            }

            .hpci-blog-grid .hpci-card--featured .hpci-card__img-wrap {
                aspect-ratio: 16/9 !important;
                height: auto !important;
                min-height: unset !important;
                position: relative !important;
                border-radius: 10px 10px 0 0 !important;
            }

            .hpci-blog-grid .hpci-card--featured .hpci-card__img-wrap img {
                position: relative !important;
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
            }

            /* Card body padding */
            .hpci-card__body {
                padding: 14px 14px 16px !important;
            }

            .hpci-card__title {
                font-size: 1rem !important;
                line-height: 1.4;
                margin-bottom: 8px !important;
            }

            .hpci-card__excerpt {
                font-size: .85rem !important;
                line-height: 1.6;
                margin-bottom: 12px !important;
            }

            .hpci-card__footer {
                flex-wrap: wrap;
                gap: 8px;
            }

            .hpci-card__btn {
                font-size: .82rem !important;
                padding: 8px 14px !important;
            }
        }

        /* ── 4. SIDEBAR — push below blog grid on mobile ─────── */
        @media (max-width: 991px) {

            /* sidebar comes after blog grid naturally in HTML,
       just fix spacing and widths */
            .sidebar {
                margin-top: 30px;
            }

            .sidebar .sidebar__single {
                margin-bottom: 14px !important;
                padding-bottom: 14px !important;
            }

            .sidebar .sidebar__single.sidebar__search,
            .sidebar .sidebar__single.sidebar__post,
            .sidebar .sidebar__single.sidebar__category {
                padding: 16px 16px !important;
            }

            .sidebar .sidebar__title {
                font-size: 1rem !important;
                margin-bottom: 10px !important;
            }
        }

        /* ── 5. SIDEBAR: Latest Posts image+text row ─────────── */
        @media (max-width: 575px) {
            .sidebar__post-list li {
                display: flex;
                align-items: flex-start;
                gap: 10px;
                margin-bottom: 12px !important;
                padding-bottom: 12px !important;
            }

            .sidebar__post-image {
                width: 70px !important;
                height: 54px !important;
                flex-shrink: 0;
            }

            .sidebar__post-content h3 {
                font-size: .82rem !important;
                line-height: 1.4;
            }

            .sidebar__post-date {
                font-size: .75rem !important;
                margin-bottom: 3px !important;
            }
        }

        /* ── 6. POPULAR TOPICS tags ──────────────────────────── */
        @media (max-width: 575px) {
            .tagcloud {
                gap: 6px !important;
            }

            .tagcloud .tag-cloud-link {
                font-size: .72rem !important;
                padding: 5px 10px !important;
            }
        }

        /* ── 7. CATEGORY LIST ────────────────────────────────── */
        @media (max-width: 575px) {
            .sidebar__category-list li a {
                font-size: .85rem !important;
            }
        }

        /* ── 8. FILTER BAR ───────────────────────────────────── */
        @media (max-width: 575px) {
            .hpci-filter-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
                padding: 10px 12px;
                font-size: .82rem;
            }
        }

        /* ── 9. PAGINATION ───────────────────────────────────── */
        @media (max-width: 575px) {
            .pg-pagination {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 6px;
                padding: 0;
                margin-top: 20px;
            }

            .pg-pagination li a {
                width: 36px;
                height: 36px;
                font-size: .82rem;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        /* ── 10. FAQ SECTION ─────────────────────────────────── */
        @media (max-width: 767px) {
            .hpci-faq-section {
                padding: 36px 0 16px;
            }

            .hpci-faq-container {
                padding: 0 14px;
            }

            .hpci-faq-wrap {
                flex-direction: column;
                gap: 24px;
            }

            .hpci-faq-left,
            .hpci-faq-right {
                min-width: unset;
                width: 100%;
            }

            .hpci-faq-heading {
                font-size: 28px;
                line-height: 1.15;
            }

            .hpci-faq-subtext {
                font-size: 14px;
                margin-bottom: 18px;
            }

            .hpci-faq-img-card img {
                min-height: 200px;
            }

            .hpci-faq-question h3,
            .hpci-faq-question .hpci-faq-q-text {
                font-size: 14px !important;
                line-height: 1.4;
            }

            .hpci-faq-question {
                padding: 14px 16px;
            }

            .hpci-faq-item.active .hpci-faq-answer {
                padding: 14px 16px !important;
            }

            .hpci-faq-answer p {
                font-size: 13px !important;
                line-height: 1.7;
            }

            .hpci-faq-toggle {
                width: 26px;
                height: 26px;
                min-width: 26px;
                font-size: 16px;
            }

            .hpci-faq-phone-number {
                font-size: 18px;
            }

            .hpci-faq-img-overlay {
                padding: 30px 16px 18px;
            }
        }

        /* ── 11. BLOG SECTION container padding ──────────────── */
        @media (max-width: 575px) {
            .blog-page .container {
                padding-left: 14px;
                padding-right: 14px;
            }

            .blog-page {
                padding-top: 24px;
            }
        }

        /* ── 12. GENERAL: prevent horizontal overflow ────────── */
        @media (max-width: 767px) {

            html,
            body {
                overflow-x: hidden;
            }

            .page-wrapper {
                overflow-x: hidden;
            }

            img {
                max-width: 100%;
                height: auto;
            }
        }


        .hpci-banner-img{
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    object-position: top;
    display: block;
}

@media (max-width: 767px){
    .hpci-banner-img{
        width: 100%;
        height: 280px;
        max-height: none;
        object-fit: cover;
        object-position: top;
        margin-top: 70px;
    }
}


     /* ================================================================
   HPCI BLOG DETAILS — GREEN #058131 + RED #D81111 THEME
================================================================ */
:root {
    --onpoint-base:    #058131 !important;
    --onpoint-primary: #058131 !important;
}

/* ── Page Section BG ── */
.blog-details { padding: 80px 0 100px; background: #f4f7f4; }

/* ── Page Header ── */
.page-header { position: relative; min-height: 400px; display: flex; align-items: flex-end; overflow: hidden; }
.page-header__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(5,129,49,.88) 0%, rgba(10,20,40,.70) 60%, rgba(10,20,40,.40) 100%);
    z-index: 1;
}
.page-header::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 100%; height: 4px; background: #D81111; z-index: 2;
}
.page-header .container { position: relative; z-index: 3; padding-bottom: 52px; }
.page-header__inner h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(26px, 5vw, 50px); font-weight: 700;
    color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.thm-breadcrumb__box {
    display: inline-flex;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.20); border-radius: 30px; padding: 7px 18px;
}
.thm-breadcrumb { display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; list-style: none; }
.thm-breadcrumb li { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.80); }
.thm-breadcrumb li a { color: rgba(255,255,255,.90); text-decoration: none; transition: color .25s; }
.thm-breadcrumb li a:hover { color: #fff; }
.thm-breadcrumb li span { font-size: 10px; opacity: .6; }
.thm-breadcrumb li:last-child { color: #fff; font-weight: 700; }

/* ── Blog Main Image ── */
.blog-details__img {
    border-radius: 14px; overflow: hidden;
    border: 3px solid #058131;
    margin-bottom: 28px;
}
.blog-details__img img { width: 100%; height: auto; max-height: 460px; object-fit: cover; display: block; }

/* ── Blog Content Card ── */
.blog-details__left {
    background: #fff; border-radius: 14px;
    box-shadow: 0 4px 32px rgba(0,0,0,.08);
    border: 1px solid #e4ede4;
    overflow: hidden;
}
.blog-details__content { padding: 32px 32px 28px; }

/* ── Meta Row ── */
.blog-details__meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.blog-details__meta-item { display: flex; align-items: center; gap: 5px; font-size: 13px; color: #6b7280; }
.blog-details__meta-item i { color: #058131; font-size: 12px; }

/* ── Category Badge ── */
.hpci-cat-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: #058131; color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 30px; text-decoration: none; transition: all .25s;
    margin-bottom: 14px; width: fit-content;
}
.hpci-cat-badge:hover { background: #D81111; color: #fff; }

/* ── Titles ── */
.blog-details__title-1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(24px, 4vw, 38px); font-weight: 700;
    color: #111827; line-height: 1.18; margin-bottom: 6px;
}
.blog-details__title-1::after {
    content: ''; display: block;
    width: 48px; height: 4px;
    background: #D81111; border-radius: 2px;
    margin-top: 12px; margin-bottom: 18px;
}
.blog-details__title-2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(18px, 3vw, 24px); font-weight: 700;
    color: #111827; margin: 28px 0 10px;
    position: relative; padding-left: 18px;
}
.blog-details__title-2::before {
    content: ''; position: absolute; left: 0; top: 3px;
    width: 5px; height: calc(100% - 6px);
    background: #058131; border-radius: 3px;
}
.blog-details__text-1 { font-size: 15px; line-height: 1.80; color: #6b7280; margin-bottom: 22px; }
.blog-details__text-2 { font-size: 14.5px; line-height: 1.80; color: #6b7280; margin-bottom: 14px; }

/* ── Tag & Social ── */
.blog-details__tag-and-social {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
    padding-top: 22px; margin-top: 26px; border-top: 1px solid #e8efe8;
}
.blog-details__tag-box { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.blog-details__tag-box span {
    font-size: 13px; font-weight: 700; color: #111827;
    font-family: 'Rajdhani', sans-serif; letter-spacing: .5px; text-transform: uppercase;
}
.blog-details__tag-box a {
    display: inline-block; padding: 5px 14px; font-size: 12px; font-weight: 600;
    color: #058131; background: #eef7f2; border: 1px solid #c8e6d4;
    border-radius: 30px; text-decoration: none; transition: all .25s;
}
.blog-details__tag-box a:hover { background: #058131; color: #fff; border-color: #058131; }

/* ── Social Icons ── */
.blog-details__social { display: flex; align-items: center; gap: 10px; }
.blog-details__social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; font-size: 14px;
    color: #058131; border: 1.5px solid #c8e6d4;
    border-radius: 50%; text-decoration: none; transition: all .3s;
}
.blog-details__social a:hover { background: #058131; border-color: #058131; color: #fff; }

/* ── Prev / Next ── */
.blog-details__pagenation-box {
    margin-top: 26px; border-radius: 12px; overflow: hidden;
    border: 1px solid #dceade;
}
.blog-details__pagenation { display: flex; align-items: stretch; margin: 0; padding: 0; }
.blog-details__pagenation li {
    display: flex; align-items: center; gap: 14px; flex: 1;
    padding: 18px 22px; background: #fff; transition: background .25s; list-style: none;
}
.blog-details__pagenation li:hover { background: #f0faf4; }
.blog-details__pagenation li + li { border-left: 1px solid #dceade; justify-content: flex-end; text-align: right; }
.blog-details__pagenation li p { margin: 0; font-size: 14px; font-weight: 600; color: #111827; line-height: 1.35; }
.blog-details__pagenation .icon a {
    width: 40px; height: 40px; background: #eef7f2; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #058131; font-size: 13px; text-decoration: none; transition: all .25s;
}
.blog-details__pagenation li:hover .icon a { background: #058131; color: #fff; }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 0; }

.sidebar__single {
    background: #fff !important;
    border-radius: 12px !important;
    padding: 22px 20px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 2px 16px rgba(0,0,0,.05) !important;
    border: 1px solid #e4ede4 !important;
}

.sidebar__title {
    font-size: 16px !important; font-weight: 700 !important;
    color: #111827 !important; text-transform: uppercase !important;
    letter-spacing: .5px !important; margin-bottom: 16px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #D81111 !important;
    font-family: 'Rajdhani', sans-serif !important;
    display: block !important;
}

/* Search */
.sidebar__search-form {
    display: flex; border: 1.5px solid #dde8dd;
    border-radius: 8px; overflow: hidden; transition: border-color .3s;
}
.sidebar__search-form:focus-within { border-color: #058131; }
.sidebar__search-form input {
    flex: 1; border: none !important; outline: none !important;
    padding: 11px 14px !important; font-size: 14px !important; background: transparent !important;
}
.sidebar__search-form button {
    background: #058131 !important; color: #fff !important;
    border: none !important; padding: 0 16px !important; cursor: pointer !important; transition: background .3s !important;
}
.sidebar__search-form button:hover { background: #D81111 !important; }

/* Latest Posts */
.sidebar__post-list { padding: 0 !important; margin: 0 !important; }
.sidebar__post-list li {
    display: flex !important; align-items: center !important;
    gap: 12px !important; padding: 12px 0 !important;
    border-bottom: 1px solid #f0f5f0 !important;
}
.sidebar__post-list li:last-child { border-bottom: none !important; padding-bottom: 0 !important; }
.sidebar__post-image {
    width: 64px !important; height: 56px !important;
    min-width: 64px !important; border-radius: 8px !important; overflow: hidden !important;
}
.sidebar__post-image img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
.sidebar__post-content h3 { font-size: 13px !important; font-weight: 600 !important; line-height: 1.5 !important; margin: 0 !important; }
.sidebar__post-content h3 a { color: #333 !important; text-decoration: none !important; transition: color .3s !important; }
.sidebar__post-content h3 a:hover { color: #058131 !important; }
.sidebar__post-date { font-size: 11px !important; color: #D81111 !important; margin-bottom: 4px !important; font-weight: 600 !important; }

/* Categories */
.sidebar__category-list { padding: 0 !important; margin: 0 !important; }
.sidebar__category-list li {
    border-bottom: 1px solid #f0f5f0 !important;
    padding: 0 !important; background: transparent !important;
}
.sidebar__category-list li:last-child { border-bottom: none !important; }
.sidebar__category-list li a {
    display: flex !important; align-items: center !important;
    justify-content: space-between !important;
    padding: 11px 4px !important; font-size: 14px !important;
    color: #555 !important; text-decoration: none !important;
    font-weight: 500 !important; transition: all .3s !important; background: transparent !important;
}
.sidebar__category-list li a:hover,
.sidebar__category-list li.active a {
    color: #fff !important; font-weight: 700 !important;
    padding-left: 10px !important;
    background: #058131 !important;
    border-radius: 6px !important;
}
.sidebar__category-list li a span {
    background: #f0f5f0; color: #666;
    font-size: 11px; font-weight: 700;
    padding: 2px 9px; border-radius: 20px; transition: all .3s;
}
.sidebar__category-list li a:hover span,
.sidebar__category-list li.active a span {
    background: #D81111 !important; color: #fff !important;
}
.sidebar__category-list li .icon { display: none !important; }

/* ── CTA Section ── */
.cta-one.cta-two { padding: 0 0 80px; background: #f4f7f4; }
.cta-one__inner {
    position: relative; border-radius: 16px; overflow: hidden;
    padding: 48px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.cta-one__bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-one__inner::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(5,129,49,.97) 0%, rgba(3,90,35,.95) 100%); z-index: 1;
}
.cta-one__content-box { position: relative; z-index: 2; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.cta-one__icon {
    flex-shrink: 0; width: 70px; height: 70px; background: #D81111;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #fff; border: 3px solid rgba(255,255,255,.20);
}
.cta-one__shape-1 { display: none; }
.cta-one__title { font-family: 'Rajdhani', sans-serif; font-size: clamp(22px, 3vw, 34px); font-weight: 700; color: #fff !important; line-height: 1.2; margin: 0; }
.cta-one__contact-box {
    display: flex; align-items: center; gap: 14px; margin-left: auto;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25); border-radius: 50px; padding: 12px 24px 12px 14px;
}
.cta-one__contact-box .icon {
    width: 46px; height: 46px; background: #D81111;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff;
}
.cta-one__contact-box .content p { font-size: 12px; color: rgba(255,255,255,.70) !important; margin: 0 0 2px; }
.cta-one__contact-box .content h3 { margin: 0; font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; }
.cta-one__contact-box .content h3 a { color: #fff !important; text-decoration: none; }
.cta-one__contact-box .content h3 a:hover { color: #D81111 !important; }

/* ── Responsive ── */
@media (max-width: 767px) {
    .blog-details { padding: 40px 0 50px; }
    .blog-details__content { padding: 22px 18px; }
    .blog-details__pagenation { flex-direction: column; }
    .blog-details__pagenation li + li { border-left: none; border-top: 1px solid #dceade; justify-content: flex-start; text-align: left; }
    .cta-one__contact-box { margin-left: 0; }
    .cta-one__inner { padding: 32px 24px; }
}