.elementor-4354 .elementor-element.elementor-element-ba89ca3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-f51c49f *//* ============================================
   KARAULI DIAGNOSTICS OPD CASE STUDY PAGE – CUSTOM STYLES
   Inherits global variables and resets from site theme
   ============================================ */

@import url('../../global-header-footer.css');
@import url('../../style.css');

/* ---------- OPD Case Study Core Styles (Light Mode Theme) ---------- */

:root {
    --opd-accent-glow: rgba(108, 99, 255, 0.04);
    --opd-cyan-glow: rgba(0, 212, 255, 0.03);
    
    /* Override root variables to force light mode */
    --color-bg-dark: #f8fafc;
    --color-text: #0f172a;
    --color-text-secondary: #334155;
    --color-text-muted: #64748b;
    --color-border: #cbd5e1;
    --color-border-hover: #94a3b8;
}

body {
    background-color: #f8fafc !important;
    color: #334155 !important;
    overflow-x: hidden;
    padding-top: 0 !important; /* Remove top spacing since header is removed */
}

/* ---------- Case Study Hero ---------- */
#cs-hero {
    position: relative;
    padding: 100px 0 80px;
    background: radial-gradient(circle at top right, rgba(108, 99, 255, 0.06) 0%, transparent 60%),
                radial-gradient(circle at bottom left, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
                #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.cs-hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #475569;
    margin-bottom: 24px;
}

.cs-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00c896;
    box-shadow: 0 0 8px rgba(0, 200, 150, 0.4);
}

.cs-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.cs-desc {
    font-size: var(--text-lg);
    color: #475569;
    max-width: 760px;
    margin: 0 auto 48px;
    line-height: 1.75;
}

/* ---------- Metrics Grid ---------- */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.glass-metric-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.glass-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.glass-metric-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: #94a3b8;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 10px 10px -5px rgba(0, 0, 0, 0.06);
}

.glass-metric-card.accent:hover {
    box-shadow: 0 20px 25px -5px rgba(108, 99, 255, 0.15);
}

.glass-metric-card.accent::before {
    background: var(--gradient-accent);
}

.glass-metric-card.green::before {
    background: #00c896;
}

.glass-metric-card.cyan::before {
    background: #00d4ff;
}

.glass-metric-card.orange::before {
    background: #ff6b35;
}

.metric-val {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

.metric-lbl {
    font-size: var(--text-xs);
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------- Content Container Layout ---------- */
.cs-main {
    padding: 80px 0;
}

.cs-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ---------- Sections ---------- */
.cs-sec {
    margin-bottom: 80px;
}

.cs-sec-title {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 24px;
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
}

.cs-sec-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

.cs-sec p {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.cs-sec-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.cs-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cs-meta-lbl {
    font-size: var(--text-xs);
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cs-meta-val {
    font-size: var(--text-base);
    font-weight: 600;
    color: #0f172a;
}

/* ---------- Grid Layouts ---------- */
.cs-grid-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 40px;
}

.cs-grid-split.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.cs-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
}

.cs-visual:hover {
    border-color: #cbd5e1;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
}

.cs-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Strategy Pillars ---------- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.pillar-card {
    grid-column: span 2;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.pillar-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.04), 0 8px 8px -6px rgba(0, 0, 0, 0.04);
}

/* For the 4th and 5th items, center them on the bottom row on desktop */
.pillars-grid .pillar-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.pillars-grid .pillar-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.pillar-num {
    width: 44px;
    height: 44px;
    background: rgba(108, 99, 255, 0.1);
    border: 1.5px solid rgba(108, 99, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--color-accent-light);
    font-family: var(--font-heading);
}

.pillar-body h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.pillar-body p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .pillar-card {
        grid-column: span 2 !important;
    }
    .pillars-grid .pillar-card:nth-child(5) {
        grid-column: 2 / span 2 !important;
    }
}

@media (max-width: 768px) {
    .pillars-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .pillar-card {
        width: 100%;
        grid-column: auto !important;
    }
}

/* ---------- Results Table Section ---------- */
.table-wrapper {
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    margin: 32px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: var(--text-sm);
}

.results-table th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
}

.results-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.results-table tbody tr:last-child td {
    border-bottom: none;
}

.results-table tbody tr:hover td {
    background: #f1f5f9;
    color: #0f172a;
}

.results-table tr.total-row td {
    background: rgba(108, 99, 255, 0.04) !important;
    font-weight: 700;
    color: #0f172a;
    border-top: 2px solid rgba(108, 99, 255, 0.1);
}

.doc-name {
    font-weight: 600;
    color: #0f172a;
}

.doc-spec {
    display: block;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

/* ---------- Highlights Bullets ---------- */
.highlights-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.highlights-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.highlights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: rgba(0, 200, 150, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00c896;
    font-size: 10px;
    font-weight: bold;
}

/* ---------- CTA Banner Overlay ---------- */
.cs-cta-banner {
    position: relative;
    padding: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.96) 100%),
                url('https://www.cognitivemarketing.in/wp-content/uploads/2026/07/healthcare-marketing-cta.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 60px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03);
}

.cs-cta-content {
    max-width: 580px;
}

.cs-cta-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.cs-cta-desc {
    font-size: var(--text-base);
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 992px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .cs-grid-split,
    .cs-grid-split.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cs-grid-split .cs-visual {
        order: -1;
    }
    
    .cs-cta-banner {
        padding: 40px 24px;
        text-align: center;
    }
    
    .cs-cta-content {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    #cs-hero {
        padding: 120px 0 60px;
    }

    .pillar-card {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .pillar-num {
        margin: 0 auto;
    }
    
    .cs-sec-meta {
        flex-direction: column;
        gap: 16px;
    }
}

/* ============================================
   LEAD POPUP STYLES (from header.html)
   ============================================ */
.cm-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.cm-popup-overlay.active {
    display: flex;
}

.cm-popup {
    background: #fff;
    border-radius: 20px;
    padding: 44px 36px;
    max-width: 480px;
    width: 92%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: popSlide 0.35s ease;
}

@keyframes popSlide {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cm-popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cm-popup-close:hover {
    background: #e5e7eb;
    color: #111;
}

.cm-popup h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f1335;
    margin-bottom: 6px;
    text-align: center;
}

.cm-popup .popup-sub {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 24px;
}

.cm-popup .form-row {
    margin-bottom: 14px;
}

.cm-popup label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.cm-popup input,
.cm-popup select,
.cm-popup textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: #1f2937;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.cm-popup input:focus,
.cm-popup select:focus,
.cm-popup textarea:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.cm-popup textarea {
    resize: vertical;
    min-height: 70px;
}

.cm-popup .submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6c63ff, #00d4ff);
    color: #fff !important;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.cm-popup .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.35);
}

.cm-popup .submit-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cm-popup .form-note {
    font-size: 0.72rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 12px;
}

.cm-popup-success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.cm-popup-success .check-icon {
    font-size: 52px;
    margin-bottom: 14px;
}

.cm-popup-success h3 {
    color: var(--color-green);
    margin-bottom: 8px;
}

.cm-popup-success p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* ---------- Exit Popup & Form Input Overrides for Light Theme ---------- */
.exit-popup-card {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.12) !important;
}

.exit-popup-card h3 {
    color: #0f172a !important;
}

.exit-popup-card p {
    color: #475569 !important;
}

.exit-form input {
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #0f172a !important;
}

.exit-form input:focus {
    border-color: #6c63ff !important;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1) !important;
}

.exit-form input::placeholder {
    color: #94a3b8 !important;
}

.exit-popup-note {
    color: #64748b !important;
}

/* Explicit background overrides for lead popup form inputs */
.cm-popup input,
.cm-popup select,
.cm-popup textarea {
    background-color: #ffffff !important;
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
}

.cm-popup input:focus,
.cm-popup select:focus,
.cm-popup textarea:focus {
    border-color: #6c63ff !important;
}

/* --- Elementor-specific Heading & Text Contrast Overrides --- */
#cs-hero h1.cs-title,
.cs-sec h2.cs-sec-title,
.cs-sec h2,
.cs-sec h3,
.pillar-body h3,
.cs-cta-content h2.cs-cta-title,
.cm-popup h3,
.exit-popup-card h3 {
    color: #0f172a !important;
}

.cs-desc,
.cs-sec p,
.highlights-list li,
.cs-cta-desc,
.exit-popup-card p {
    color: #475569 !important;
}

.cs-badge {
    color: #475569 !important;
    border-color: #cbd5e1 !important;
}

.metric-val {
    color: #0f172a !important;
}

.metric-lbl {
    color: #64748b !important;
}/* End custom CSS */