/* ============================================================
   surbhiv-custom.css — Extended styles for SurbhivDesigner
   Extends main.css without overriding existing selectors.
   Uses CSS variables defined in main.css:
     --theme: #6A47ED  --theme2: #C6F806  --header: #17012C
     --bg: #F6F3FE     --text: #504E4E    --border: #E5E5E5
     --box-shadow: 0px 4px 25px 0px rgba(0,0,0,0.06)
   ============================================================ */

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar-section {
    background: var(--bg);
    padding: 45px 0;
    border-bottom: 1px solid var(--border);
}
.trust-stat-item {
    text-align: center;
    padding: 14px 8px;
}
.trust-stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--theme);
    line-height: 1;
    margin-bottom: 0;
}
.trust-stat-item p {
    font-weight: 600;
    color: var(--header);
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 13px;
}

/* ── Growth Process (About Preview) ───────────────────────── */
.growth-process-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 24px;
}
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.process-step .step-num {
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--theme);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.process-step .step-content h5 {
    margin-bottom: 2px;
    font-size: 14px;
}
.process-step .step-content p {
    margin-bottom: 0;
    font-size: 13px;
    color: var(--text);
}

/* ── Industries Badges ─────────────────────────────────────── */
.industries-section {
    background: var(--bg);
}
.industries-badges-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.industry-badge {
    display: inline-block;
    padding: 9px 20px;
    border-radius: 100px;
    border: 2px solid var(--border);
    font-weight: 700;
    color: var(--header);
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: default;
    background: #fff;
}
.industry-badge:hover {
    background: var(--theme);
    border-color: var(--theme);
    color: #fff;
    transform: translateY(-3px);
}

/* ── Service Cards — Icon-Only Layout ─────────────────────── */
.service-card-items.style-2 {
    padding: 24px 22px 22px;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card-items.style-2:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(106, 71, 237, 0.15);
}

/* Icon wrap */
.service-card-items.style-2 .svc-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--theme);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    flex-shrink: 0;
    transition: background 0.3s ease;
    box-shadow: 0 4px 14px rgba(106, 71, 237, 0.3);
}
.service-card-items.style-2:hover .svc-icon-wrap {
    background: var(--theme2);
    color: var(--header);
}

/* Content area */
.service-card-items.style-2 .content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-items.style-2 .content .title-2 {
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 7px;
    line-height: 1.4;
}
.service-card-items.style-2 .content .title-2 a {
    color: var(--header);
    transition: color 0.3s ease;
}
.service-card-items.style-2 .content .title-2 a:hover {
    color: var(--theme);
}
.service-card-items.style-2 .content p {
    font-size: 12.5px;
    text-align: left;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.65;
    flex: 1;
}

/* Learn More link */
.svc-learn-more {
    font-size: 12px;
    font-weight: 700;
    color: var(--theme);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.3px;
    transition: gap 0.2s ease, color 0.2s ease;
    margin-top: auto;
}
.svc-learn-more:hover {
    color: var(--header);
    gap: 9px;
}
.svc-learn-more i {
    font-size: 11px;
    transition: transform 0.2s ease;
}
.svc-learn-more:hover i {
    transform: translateX(2px);
}

/* ── CTA Banner Section ────────────────────────────────────── */
.cta-banner-section {
    background: linear-gradient(135deg, var(--header) 0%, #3a1a6e 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner-section .section-title h2 {
    color: #fff;
}
.cta-banner-section p {
    color: rgba(255, 255, 255, 0.82);
}
.cta-banner-section .main-button .theme-btn {
    background: var(--theme2);
    color: var(--header);
    border-color: var(--theme2);
}
.cta-banner-section .main-button .arrow-btn {
    background: var(--theme2);
    color: var(--header);
    border-color: var(--theme2);
}
.cta-banner-section .main-button:hover .theme-btn,
.cta-banner-section .main-button:hover .arrow-btn {
    background: #fff;
    color: var(--header);
    border-color: #fff;
}
.cta-banner-section .cta-rocket {
    position: absolute;
    right: 8%;
    bottom: -10px;
    opacity: 0.15;
    width: 180px;
    pointer-events: none;
}

/* ── Breadcrumb Page Banner ────────────────────────────────── */
.page-breadcrumb-section {
    background-size: cover;
    background-position: center;
    padding: 90px 0 60px;
    position: relative;
    text-align: center;
}
.page-breadcrumb-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(23, 1, 44, 0.72);
}
.page-breadcrumb-section .container {
    position: relative;
    z-index: 2;
}
.page-breadcrumb-section h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}
.breadcrumb-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.breadcrumb-nav li {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
}
.breadcrumb-nav li a {
    color: var(--theme2);
    text-decoration: none;
}
.breadcrumb-nav li a:hover {
    text-decoration: underline;
}
.breadcrumb-nav li i {
    font-size: 12px;
}

/* ── About Page: Story Timeline ───────────────────────────── */
.story-section {
    background: var(--bg);
}
.timeline-wrap {
    position: relative;
    padding-left: 36px;
    max-width: 720px;
    margin: 36px auto 0;
}
.timeline-wrap::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline-item {
    position: relative;
    margin-bottom: 32px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -38px;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--theme);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--theme);
}
.timeline-year {
    font-size: 12px;
    font-weight: 800;
    color: var(--theme);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.timeline-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
}
.timeline-item p {
    margin-bottom: 0;
    font-size: 13px;
}

/* ── Vision / Mission Cards ────────────────────────────────── */
.vision-mission-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    background: #fff;
    transition: all 0.4s ease;
}
.vision-mission-card:hover {
    border-color: var(--theme);
    box-shadow: var(--box-shadow);
    transform: translateY(-4px);
}
.vision-mission-card .card-icon {
    font-size: 32px;
    color: var(--theme);
    margin-bottom: 14px;
    display: block;
}

/* ── Core Values Cards ─────────────────────────────────────── */
.value-card {
    background: var(--bg);
    border-radius: 20px;
    padding: 26px 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}
.value-card:hover {
    background: var(--theme);
    transform: translateY(-4px);
}
.value-card:hover h4,
.value-card:hover p,
.value-card:hover .value-icon {
    color: #fff !important;
}
.value-icon {
    font-size: 28px;
    color: var(--theme);
    margin-bottom: 12px;
    display: block;
    transition: all 0.4s ease;
}
.value-card h4 {
    transition: color 0.4s ease;
}
.value-card p {
    font-size: 13px;
    margin-bottom: 0;
    transition: color 0.4s ease;
}

/* ── Why Different Cards ───────────────────────────────────── */
.differentiator-card {
    border-left: 4px solid var(--theme);
    padding: 22px 22px 22px 28px;
    background: #fff;
    border-radius: 0 16px 16px 0;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: transform 0.3s ease;
}
.differentiator-card:hover {
    transform: translateX(4px);
}
.diff-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--bg);
    line-height: 1;
    margin-bottom: 10px;
}
.differentiator-card h4 {
    margin-bottom: 8px;
}
.differentiator-card p {
    margin-bottom: 0;
    font-size: 13px;
}

/* ── Contact Page: Trust Points ────────────────────────────── */
.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.trust-point .tp-icon {
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(106, 71, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--theme);
    flex-shrink: 0;
}
.trust-point h5 {
    margin-bottom: 4px;
    font-size: 14px;
}
.trust-point p {
    margin-bottom: 0;
    font-size: 13px;
}

/* ── Contact Info Block ────────────────────────────────────── */
.contact-info-block {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.contact-info-block .ci-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.contact-info-block .ci-item i {
    font-size: 20px;
    color: var(--theme);
    width: 24px;
    text-align: center;
}
.contact-info-block .ci-item a,
.contact-info-block .ci-item span {
    font-weight: 600;
    color: var(--header);
    text-decoration: none;
    font-size: 15px;
}
.contact-info-block .ci-item a:hover {
    color: var(--theme);
}
.contact-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.contact-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme);
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.contact-social-links a:hover {
    background: var(--theme);
    color: #fff;
}
.geo-text {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text);
    font-style: italic;
}

/* ── Contact Form Area ─────────────────────────────────────── */
.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--box-shadow);
}
.contact-form-wrap .form-group {
    margin-bottom: 20px;
}
.contact-form-wrap .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--header);
    margin-bottom: 8px;
    display: block;
}
.contact-form-wrap input,
.contact-form-wrap textarea,
.contact-form-wrap select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: var(--header);
    outline: none;
    transition: border-color 0.3s ease;
    background: #fff;
    appearance: none;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus,
.contact-form-wrap select:focus {
    border-color: var(--theme);
}
.contact-form-wrap textarea {
    resize: vertical;
    min-height: 110px;
}
.contact-form-wrap .theme-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
    border: none;
    cursor: pointer;
}
.form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    display: none;
}
.form-message.success {
    display: block;
    background: #e6f4ea;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.form-message.error {
    display: block;
    background: #fdecea;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* ── Services Page: Detail Sections ───────────────────────── */
.service-detail-section {
    padding: 75px 0;
}
.service-detail-section.alt-bg {
    background: var(--bg);
}
.service-detail-img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0px 16px 48px rgba(106, 71, 237, 0.12);
    display: block;
}
.service-icon-hero {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(106, 71, 237, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--theme);
    margin: 0 auto;
}
.service-icon-hero img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}
.service-includes-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}
.service-includes-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text);
}
.service-includes-list li:last-child {
    border-bottom: none;
}
.service-includes-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--theme);
    font-size: 13px;
    flex-shrink: 0;
}

/* ── Pricing Hint Section ──────────────────────────────────── */
.pricing-hint-section {
    background: var(--bg);
    text-align: center;
    padding: 60px 0;
}
.pricing-hint-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
}
.pricing-hint-section p {
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 14px;
}

/* ── Testimonials Stars ────────────────────────────────────── */
.testimonial-stars {
    margin-bottom: 12px;
}
.testimonial-stars i {
    color: #F59E0B;
    font-size: 15px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
    .service-icon-hero {
        width: 100px;
        height: 100px;
        font-size: 44px;
        margin-bottom: 40px;
    }
    .service-icon-hero img {
        width: 62px;
        height: 62px;
    }
    .contact-form-wrap {
        padding: 28px 20px;
        margin-top: 40px;
    }
    .vision-mission-card {
        padding: 24px 20px;
    }
}
@media (max-width: 767px) {
    .trust-stat-item h3 {
        font-size: 28px;
    }
    .page-breadcrumb-section h1 {
        font-size: 28px;
    }
    .diff-num {
        font-size: 30px;
    }
    .service-detail-section {
        padding: 45px 0;
    }
}
@media (max-width: 575px) {
    .contact-form-wrap {
        padding: 20px 16px;
    }
    .trust-point .tp-icon {
        min-width: 36px;
        height: 36px;
        font-size: 15px;
    }
    .industry-badge {
        padding: 7px 14px;
        font-size: 12px;
    }
}

/* ── Blog Detail Sidebar — text-only recent posts ────────────── */
.main-sidebar .recent-post-area .recent-post-items {
    display: block;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border);
    gap: 0;
}
.main-sidebar .recent-post-area .recent-post-items.mb-0,
.main-sidebar .recent-post-area .recent-post-items:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.main-sidebar .recent-post-area .recent-post-items .content .post-date {
    margin-bottom: 3px;
}
.main-sidebar .recent-post-area .recent-post-items .content .post-date li {
    color: var(--text);
    font-size: 11.5px;
}
.main-sidebar .recent-post-area .recent-post-items .content h6 {
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
}
.main-sidebar .recent-post-area .recent-post-items .content h6 a {
    color: var(--header);
    text-decoration: none;
}
.main-sidebar .recent-post-area .recent-post-items .content h6 a:hover {
    color: var(--theme);
}

/* ── Blog List — Text-Only Cards (no image) ─────────────────── */
.blog-text-card {
    border-top: 3px solid var(--theme);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-text-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(106, 71, 237, 0.12);
}
.blog-text-card .news-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 20px;
}
.blog-text-card .post-cat {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}
.blog-text-card .post-cat li {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--theme);
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-text-card .post-cat li i {
    font-size: 11px;
}
.blog-text-card .news-content h5 {
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 10px;
}
.blog-text-card .news-content h5 a {
    color: var(--header);
    text-decoration: none;
    transition: color 0.3s ease;
}
.blog-text-card .news-content h5 a:hover {
    color: var(--theme);
}
.blog-text-card .news-content p {
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--text);
    flex: 1;
    margin-bottom: 18px;
}
.blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--theme);
    color: #fff;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease;
    align-self: flex-start;
    margin-top: auto;
    letter-spacing: 0.2px;
}
.blog-read-btn:hover {
    background: var(--header);
    color: #fff;
}
.blog-read-btn i {
    font-size: 10px;
    transition: transform 0.2s ease;
}
.blog-read-btn:hover i {
    transform: translateX(2px);
}

/* ── Blog Detail Page ───────────────────────────────────────── */
.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.blog-post-meta span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-post-meta span i {
    color: var(--theme);
}
.blog-post-meta .cat-badge {
    background: var(--bg);
    color: var(--theme);
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 0.3px;
}
.blog-detail-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--header);
    margin-bottom: 28px;
}
@media (max-width: 767px) {
    .blog-detail-title { font-size: 20px; }
}
.blog-featured-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
    display: block;
}
.blog-body h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--header);
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg);
}
.blog-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    margin: 28px 0 12px;
}
.blog-body p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 20px;
}
.blog-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.blog-body ul li {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text);
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.blog-body ul li:last-child { border-bottom: none; }
.blog-body ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--theme);
    position: absolute;
    left: 0;
    top: 9px;
    font-size: 13px;
}
.blog-blockquote {
    border-left: 4px solid var(--theme);
    background: var(--bg);
    border-radius: 0 12px 12px 0;
    padding: 18px 24px;
    margin: 28px 0;
}
.blog-blockquote p {
    font-size: 14px !important;
    font-style: italic;
    color: var(--header) !important;
    font-weight: 600;
    margin: 0 !important;
    line-height: 1.7 !important;
}
.blog-code-block {
    background: #17012C;
    color: #C6F806;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 24px 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13.5px;
    line-height: 1.8;
    overflow-x: auto;
    white-space: pre;
}
.blog-inline-code {
    background: var(--bg);
    color: var(--theme);
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    padding: 2px 8px;
    border-radius: 4px;
}
.blog-highlight-box {
    background: linear-gradient(135deg, var(--theme) 0%, #8B5CF6 100%);
    color: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    margin: 32px 0;
}
.blog-highlight-box p {
    color: #fff !important;
    font-size: 14px !important;
    font-style: italic;
    font-weight: 500;
    margin: 0 !important;
    line-height: 1.7 !important;
}
.blog-highlight-box::before {
    content: "\201C";
    font-size: 64px;
    line-height: 1;
    opacity: 0.3;
    display: block;
    margin-bottom: -20px;
    font-style: normal;
}
.blog-tags-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 48px;
}
.blog-tags-share .blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.blog-tags-share .blog-tags span {
    font-weight: 700;
    color: var(--header);
    font-size: 15px;
}
.blog-tags-share .blog-tags a {
    padding: 7px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    color: var(--text);
    transition: all 0.3s ease;
}
.blog-tags-share .blog-tags a:hover {
    background: var(--theme);
    color: #fff;
    border-color: var(--theme);
}
.blog-tags-share .blog-share {
    display: flex;
    align-items: center;
    gap: 12px;
}
.blog-tags-share .blog-share span {
    font-weight: 700;
    color: var(--header);
    font-size: 15px;
}
.blog-tags-share .blog-share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 14px;
    transition: all 0.3s ease;
}
.blog-tags-share .blog-share a:hover {
    background: var(--theme);
    color: #fff;
    border-color: var(--theme);
}
.blog-author-box {
    background: var(--bg);
    border-radius: 20px;
    padding: 32px;
    margin-top: 40px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
@media (max-width: 575px) {
    .blog-author-box { flex-direction: column; }
}
.blog-author-box .author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--theme);
}
.blog-author-box .author-info h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--header);
}
.blog-author-box .author-info .author-role {
    font-size: 13px;
    color: var(--theme);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.blog-author-box .author-info p {
    font-size: 14px;
    color: var(--text);
    margin: 0;
    line-height: 1.7;
}

/* ── Featured Case Study Detail ─────────────────────────────── */
.cs-detail-section {
    background: var(--bg);
}
.cs-detail-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}
.cs-meta-box {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 28px 20px;
    margin-top: 28px;
    box-shadow: var(--box-shadow);
}
.cs-meta-box .cs-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text);
}
.cs-meta-box .cs-meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.cs-meta-box .cs-meta-item .cs-meta-label {
    font-weight: 700;
    color: var(--header);
    min-width: 90px;
    flex-shrink: 0;
}
.cs-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cs-results-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text);
}
.cs-results-list li:last-child {
    border-bottom: none;
}
.cs-results-list li .cs-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--theme);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
}
.cs-section-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--theme);
    margin-bottom: 8px;
}
.cs-challenge-box {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--box-shadow);
    margin-bottom: 28px;
}
.cs-challenge-box ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}
.cs-challenge-box ul li {
    padding: 7px 0 7px 22px;
    position: relative;
    font-size: 15px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.cs-challenge-box ul li:last-child { border-bottom: none; }
.cs-challenge-box ul li::before {
    content: "\f111";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 7px;
    color: var(--theme);
    position: absolute;
    left: 0;
    top: 11px;
}
.cs-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 0;
}
@media (max-width: 575px) {
    .cs-feature-grid { grid-template-columns: 1fr; }
}
.cs-feature-card {
    background: var(--white);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    border-top: 3px solid var(--theme);
}
.cs-feature-card .cs-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg);
    color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}
.cs-feature-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--header);
    margin-bottom: 6px;
}
.cs-feature-card p {
    font-size: 13px;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}
.cs-quote {
    background: var(--theme);
    color: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    margin-top: 28px;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.7;
    position: relative;
}
.cs-quote::before {
    content: "\201C";
    font-size: 80px;
    line-height: 1;
    opacity: 0.25;
    position: absolute;
    top: 10px;
    left: 20px;
    font-style: normal;
}

/* ── FAQ — smaller fonts & Show More button ─────────────────── */
.accordion-button {
    font-size: 13.5px;
    font-weight: 700;
    padding: 14px 18px;
    line-height: 1.45;
}
.accordion-body {
    font-size: 13px;
    line-height: 1.75;
    padding: 12px 18px 16px;
}
.faq-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--theme);
    color: var(--theme);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    letter-spacing: 0.3px;
}
.faq-more-btn:hover {
    background: var(--theme);
    color: #fff;
}
.faq-more-btn i {
    font-size: 11px;
    transition: transform 0.25s ease;
}
.faq-more-btn:hover i {
    transform: translateY(2px);
}

/* ── Contact — submit button ────────────────────────────────── */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--theme);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 18px rgba(106, 71, 237, 0.3);
}
.contact-submit-btn:hover {
    background: var(--header);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(106, 71, 237, 0.35);
}
.contact-submit-btn .btn-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

/* ── Responsive Fixes ───────────────────────────────────── */
@media (max-width: 767px) {
    .header-1.style-2 .container-fluid { padding: 0 16px; }
    .cta-rocket { display: none; }
}
@media (max-width: 575px) {
    .section-padding { padding: 48px 0; }
    .hero-3 .hero-content .hero-button { gap: 12px; }
    .contact-submit-btn { width: 100%; justify-content: center; }
    .main-sidebar .single-sidebar-widget { padding: 28px 18px; }
    .blog-code-block { padding: 16px; font-size: 12px; }
    .page-breadcrumb-section { padding: 60px 0 40px; }
}
@media (max-width: 480px) {
    .trust-stat-item h3 { font-size: 24px; }
    .blog-detail-title { font-size: 18px; }
    .vision-mission-card { padding: 20px 16px; }
    .value-card { padding: 20px 16px; }
}
@media (max-width: 400px) {
    .hero-3 .hero-content .hero-button { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 375px) {
    .contact-form-wrap { padding: 18px 12px; }
}
