/* =====================================================================
   INDUSTRIES PAGE STYLESHEET — TABLE OF CONTENTS
   =====================================================================
   01. Root Variables & Base Setup
   02. Ambient Background (Glow Orbs & Floating Particles)
   03. Section Header Pattern & Typography Alignment
   04. Hero Section
   05. Scan-Doc Illustration (OCR Card)
   06. Stat Cards (Client Results)
   07. Industries Served Grid
   08. Core Expertise Slider
   09. Legacy Tiles & Chips
   10. Stepper Timeline (Legacy)
   11. "What Makes Us Different" Cards
   12. Delivery Standards Flowchart
   13. Team & Founder Cards
   14. Testimonials Carousel
   15. FAQ Accordion (Dark Theme Setup — Bootstrap-based)
   16. Final CTA Banner
   17. Global Colour & Heading Overrides
   18. Responsive Breakpoints & Mobile Adjustments
   19. "Who We Are" Python Logo & Badge
   20. Healthcare Challenge Cards (Dark Navy Theme)
   21. Healthcare Transformation Section (Before / After Comparison)
   22. Healthcare Why Choose Section & Light/Dark Cards
   23. Healthcare Solutions Accordion Section
   24. Pipeline Section (Process Steps)
   25. FAQ Section (Custom <details> Accordion — SEO/AEO/GEO Optimized)
   26. Section Separation Fix (Hairline Dividers Between Sections)
   27. Lead Copy Text Justification
   ===================================================================== */


/* =====================================================================
   01. ROOT VARIABLES & BASE SETUP
   ===================================================================== */

#industries-page {
    /* --- Color Palette Definitions --- */
    --paper: #ffffff;
    --paper-soft: #f8fbff;
    --navy: #091e3e;
    --navy-2: #071233;
    --navy-card: #0c2854;
    --ink: #1d2433;
    --ink-soft: #64748b;
    --sky: #06A3DA;
    --sky-light: #0dcaf0;
    --sky-deep: #0b7ea8;
    --sky-glow: rgba(6, 163, 218, 0.25);
    --line: #e2e8f0;

    /* --- Typography Standards --- */
    --font-display: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* --- Base Heading Typography & Global Reset Overrides --- */
#industries-page h1,
#industries-page h2,
#industries-page h3,
#industries-page h4 {
    color: var(--navy);
    font-weight: 700;
    letter-spacing: -0.02em;
}

#industries-page a {
    color: var(--sky-deep);
    text-decoration: none;
    transition: all 0.3s ease;
}

#industries-page a:hover {
    color: var(--sky);
}

/* --- Common Layout Spacing Classes --- */
#industries-page .section-pad {
    padding: 5.5rem 0;
}

#industries-page .section-pad.soft {
    background: var(--paper-soft);
}

#industries-page .lead-copy {
    font-size: 1.12rem;
    color: var(--ink-soft);
    line-height: 1.75;
    text-align: justify;
}

#industries-page .divider {
    height: 1px;
    background: var(--line);
    border: 0;
    margin: 0 0 3.5rem 0;
}


/* =====================================================================
   02. AMBIENT BACKGROUND (GLOW ORBS & FLOATING PARTICLES)
   ===================================================================== */

#industries-page .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

#industries-page .glow-orb.o1 {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(6,163,218,0.55), transparent 70%);
    top: -120px;
    right: -80px;
    animation: driftA 14s ease-in-out infinite;
}

#industries-page .glow-orb.o2 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(13,202,240,0.4), transparent 70%);
    bottom: -100px;
    left: 12%;
    animation: driftB 18s ease-in-out infinite;
}

#industries-page .glow-orb.o3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(6,163,218,0.3), transparent 70%);
    top: 30%;
    right: 22%;
    animation: driftA 20s ease-in-out infinite reverse;
}

@keyframes driftA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 25px) scale(1.12); }
}

@keyframes driftB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, -20px) scale(1.08); }
}

#industries-page .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(6, 163, 218, 0.55);
    filter: blur(0.5px);
    pointer-events: none;
    opacity: 0.7;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-220px) translateX(12px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    #industries-page .glow-orb,
    #industries-page .particle {
        animation: none !important;
        display: none;
    }
}


/* =====================================================================
   03. SECTION HEADER PATTERN & TYPOGRAPHY ALIGNMENT
   ===================================================================== */

#industries-page .section-head {
    text-align: center;
    max-width: 46rem;
    margin: 0 auto 3.5rem auto;
}

#industries-page .section-head h2 {
    font-size: 2.35rem;
    color: var(--navy);
    font-weight: 800;
    margin: 0.8rem 0;
    line-height: 1.25;
}

#industries-page .section-head h2 span {
    color: var(--sky);
}

#industries-page .section-head p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 0.5rem;
}

#industries-page .eyebrow {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sky);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#industries-page .dot {
    width: 8px;
    height: 8px;
    background: var(--sky);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(6, 163, 218, 0.7);
    animation: pulseDot 1.8s infinite ease-in-out;
}

#industries-page .dot::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(6, 163, 218, 0.25);
    animation: pulseRing 1.8s infinite ease-out;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

@keyframes pulseRing {
    0% { transform: scale(0.7); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

#industries-page .accent-bar {
    display: block;
    width: 60px;
    height: 4px;
    background: var(--sky);
    border-radius: 20px;
    margin: 1.2rem auto 0 auto;
}


/* =====================================================================
   04. HERO SECTION
   ===================================================================== */

#industries-page .ais-hero {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
    padding: 6rem 0 4.5rem 0;
    position: relative;
    overflow: hidden;
}

#industries-page .ais-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 22px 22px;
    opacity: 0.5;
    pointer-events: none;
}

#industries-page .ais-hero .crumb {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4rem;
    margin-bottom: 2rem;
}

#industries-page .ais-hero .crumb a {
    color: rgba(255, 255, 255, 0.85);
}

#industries-page .ais-hero .crumb a:hover {
    color: var(--sky-light);
}

#industries-page .ais-hero h1 {
    color: #ffffff !important;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    margin-top: 0.5rem;
    line-height: 1.2;
}

#industries-page .ais-hero h1 .glint {
    background: linear-gradient(90deg, #ffffff 0%, var(--sky-light) 25%, #ffffff 50%, var(--sky-light) 75%, #ffffff 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    animation: glintMove 6s linear infinite;
}

@keyframes glintMove {
    0% { background-position: 0% 0; }
    100% { background-position: 250% 0; }
}

#industries-page .ais-hero p.sub {
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 42rem;
    font-size: 1.1rem;
    line-height: 1.7;
}


/* =====================================================================
   05. SCAN-DOC ILLUSTRATION (OCR CARD)
   ===================================================================== */

#industries-page .scan-doc {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
    padding: 1.6rem;
    max-width: 360px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--line);
}

#industries-page .scan-doc .doc-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
}

#industries-page .scan-doc .line {
    height: 8px;
    border-radius: 4px;
    background: var(--line);
    margin-bottom: 0.6rem;
    position: relative;
    overflow: hidden;
}

#industries-page .scan-doc .line.blur { filter: blur(0.3px); opacity: 0.55; }
#industries-page .scan-doc .line.w-90 { width: 90%; }
#industries-page .scan-doc .line.w-75 { width: 75%; }
#industries-page .scan-doc .line.w-60 { width: 60%; }
#industries-page .scan-doc .line.w-40 { width: 40%; }

#industries-page .scan-doc .line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.45), transparent);
    transform: translateX(-120%);
    animation: sweep 3.2s ease-in-out infinite;
}

#industries-page .scan-doc .scanbar {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sky-deep), transparent);
    box-shadow: 0 0 12px 1px rgba(56, 189, 248, 0.8);
    animation: scandown 3.2s ease-in-out infinite;
}

#industries-page .scan-doc .tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    background: rgba(56, 189, 248, 0.14);
    color: var(--sky-deep);
    border-radius: 6px;
    padding: 0.2rem 0.5rem;
    margin: 0.2rem 0.3rem 0.2rem 0;
}

@keyframes sweep {
    0% { transform: translateX(-120%); }
    45%, 100% { transform: translateX(120%); }
}

@keyframes scandown {
    0% { top: 6%; opacity: 0; }
    8% { opacity: 1; }
    50% { top: 88%; opacity: 1; }
    58%, 100% { top: 88%; opacity: 0; }
}


/* =====================================================================
   06. STAT CARDS (CLIENT RESULTS)
   ===================================================================== */

#industries-page .stat-card {
    position: relative;
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    height: 100%;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 14px 34px -18px rgba(9, 30, 62, 0.55);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

#industries-page .stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: skewX(-18deg);
    transition: left 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

#industries-page .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(6, 163, 218, 0.3);
    border-color: rgba(6, 163, 218, 0.55);
}

#industries-page .stat-card:hover::before {
    left: 120%;
}

#industries-page .stat-card .num {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 2.4rem;
    color: #ffffff !important;
}

#industries-page .stat-card .num span.suffix { color: var(--sky-light); }

#industries-page .stat-card .label {
    font-weight: 700;
    color: #ffffff !important;
    margin-top: 0.3rem;
    font-size: 1.05rem;
}

#industries-page .stat-card .ctx {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    margin-top: 0.35rem;
    line-height: 1.5;
}


/* =====================================================================
   07. INDUSTRIES SERVED GRID
   ===================================================================== */

#industries-page .industries-section {
    padding: 6rem 1.5rem;
    background: var(--paper-soft);
    position: relative;
    overflow: hidden;
}

#industries-page .industry-grid {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

#industries-page .industry-card {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    border-radius: 22px;
    padding: 2.2rem 1.8rem;
    overflow: hidden;
    border: 1px solid rgba(6, 163, 218, 0.25);
    box-shadow: 0 15px 40px rgba(9, 30, 62, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

#industries-page .industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(6, 163, 218, 0.25);
    border-color: rgba(6, 163, 218, 0.6);
}

#industries-page .ind-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 16px;
    background: rgba(6, 163, 218, 0.15);
    color: var(--sky);
    margin-bottom: 1.3rem;
    transition: transform 0.4s ease, background 0.4s ease;
}

#industries-page .industry-card:hover .ind-icon {
    transform: scale(1.1) rotate(6deg);
    background: var(--sky);
    color: var(--navy);
}

#industries-page .industry-card h4 {
    color: #ffffff !important;
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

#industries-page .industry-card p {
    color: #94a3b8;
    line-height: 1.65;
    font-size: 0.94rem;
    margin-bottom: 1.3rem;
}

#industries-page .industry-tag {
    display: inline-flex;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    background: rgba(6, 163, 218, 0.15);
    color: #38bdf8;
    font-size: 0.78rem;
    font-weight: 700;
}


/* =====================================================================
   08. CORE EXPERTISE SLIDER
   ===================================================================== */

#industries-page .expertise-section {
    padding: 6rem 1.5rem;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

#industries-page .expertise-slider {
    margin-top: 3.5rem;
    overflow: hidden;
    position: relative;
}

#industries-page .expertise-track {
    display: flex;
    gap: 1.8rem;
    width: max-content;
    animation: expertiseMove 25s linear infinite;
}

#industries-page .expertise-slider:hover .expertise-track {
    animation-play-state: paused;
}

@keyframes expertiseMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

#industries-page .expertise-card {
    width: 320px;
    flex-shrink: 0;
    padding: 2.2rem 1.8rem;
    border-radius: 22px;
    text-decoration: none;
    background: linear-gradient(145deg, var(--navy), var(--navy-2));
    border: 1px solid rgba(6, 163, 218, 0.25);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(9, 30, 62, 0.15);
}

#industries-page .expertise-card:hover {
    transform: translateY(-8px);
    border-color: var(--sky);
    box-shadow: 0 20px 45px rgba(6, 163, 218, 0.25);
}

#industries-page .service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    border-radius: 16px;
    background: rgba(6, 163, 218, 0.15);
    color: var(--sky);
    margin-bottom: 1.2rem;
}

#industries-page .expertise-card h4 {
    color: #ffffff !important;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

#industries-page .expertise-card p {
    color: #94a3b8;
    line-height: 1.65;
    font-size: 0.92rem;
    min-height: 72px;
}

#industries-page .expertise-card span {
    color: #38bdf8;
    font-weight: 600;
    font-size: 0.9rem;
}


/* =====================================================================
   09. LEGACY TILES & CHIPS
   ===================================================================== */

#industries-page .tile {
    display: block;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.6rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#industries-page .tile:hover {
    border-color: var(--sky);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -18px rgba(6, 163, 218, 0.3);
}

#industries-page .tile h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--navy) !important;
}

#industries-page .tile p {
    color: var(--ink-soft);
    font-size: 0.92rem;
    margin-bottom: 0;
}

#industries-page .industry-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    background: var(--paper-soft);
    border: 1px solid var(--line);
    color: var(--navy);
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    margin: 0.3rem 0.4rem 0.3rem 0;
}


/* =====================================================================
   10. STEPPER TIMELINE (LEGACY)
   ===================================================================== */

#industries-page .step {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 2.5rem;
}

#industries-page .step .idx {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1rem;
    color: var(--sky);
    background: #ffffff;
    border: 2px solid var(--sky);
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 5px rgba(6, 163, 218, 0.12);
}

#industries-page .step h4 {
    margin-bottom: 0.35rem;
    font-size: 1.15rem;
    color: var(--navy) !important;
}

#industries-page .step p {
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.65;
}


/* =====================================================================
   11. "WHAT MAKES US DIFFERENT" CARDS
   ===================================================================== */

#industries-page .difference-card {
    position: relative;
    height: 100%;
    padding: 2.2rem 1.8rem;
    background: #ffffff;
    border: 1px solid rgba(6, 163, 218, 0.18);
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

#industries-page .difference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(9, 30, 62, 0.08);
    border-color: var(--sky);
}

#industries-page .icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--sky), var(--navy));
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
}

#industries-page .difference-card h4 {
    color: var(--navy) !important;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

#industries-page .difference-card p {
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 0.95rem;
}

#industries-page .card-line {
    display: block;
    width: 45px;
    height: 3px;
    background: var(--sky);
    margin-top: 1.5rem;
    border-radius: 20px;
    transition: width 0.3s ease;
}

#industries-page .difference-card:hover .card-line {
    width: 85px;
}


/* =====================================================================
   12. DELIVERY STANDARDS FLOWCHART
   ===================================================================== */

#industries-page .flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
    margin-top: 1.5rem;
}

#industries-page .flow-item {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

#industries-page .flow-item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 32px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(6, 163, 218, 0.2), var(--sky-light) 50%, rgba(6, 163, 218, 0.2));
    z-index: 1;
}

#industries-page .flow-node {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 1.3rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #ffffff;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 22px -8px rgba(9, 30, 62, 0.55);
    z-index: 2;
}

#industries-page .flow-card {
    position: relative;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-card) 100%);
    border: 1px solid rgba(6, 163, 218, 0.25);
    border-radius: 18px;
    padding: 1.8rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 12px 26px -16px rgba(9, 30, 62, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

#industries-page .flow-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(6, 163, 218, 0.25);
    border-color: var(--sky);
}

#industries-page .flow-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem auto;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 163, 218, 0.15);
    color: var(--sky);
    flex-shrink: 0;
}

#industries-page .flow-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

#industries-page .flow-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: #ffffff !important;
}

#industries-page .flow-card p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0 0 1.2rem 0;
    line-height: 1.6;
}

#industries-page .flow-tag {
    margin-top: auto;
    align-self: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #38bdf8;
    background: rgba(6, 163, 218, 0.15);
    border: 1px solid rgba(6, 163, 218, 0.3);
    border-radius: 99px;
    padding: 0.35rem 0.85rem;
}


/* =====================================================================
   13. TEAM & FOUNDER CARDS
   ===================================================================== */

#industries-page .team-card {
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 100%);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(6, 163, 218, 0.25);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(9, 30, 62, 0.25);
}

#industries-page .team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 163, 218, 0.6);
    box-shadow: 0 30px 80px rgba(6, 163, 218, 0.3);
}

#industries-page .team-img-wrap {
    width: 190px;
    height: 190px;
    margin: 0 auto 1.8rem auto;
    position: relative;
}

#industries-page .team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--sky);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(6, 163, 218, 0.45);
}

#industries-page .team-content h3 {
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

#industries-page .team-content .role {
    color: #38bdf8;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#industries-page .team-content p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 380px;
    margin: 0 auto 1.8rem auto;
}

#industries-page .team-skills {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

#industries-page .team-skills span {
    font-size: 0.78rem;
    color: #38bdf8;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(6, 163, 218, 0.35);
    transition: all 0.3s ease;
    font-weight: 500;
}

#industries-page .team-skills span:hover {
    background: var(--sky);
    color: #ffffff;
    border-color: var(--sky);
    transform: translateY(-2px);
}

/* --- Developer Grid Sub-Cards --- */
#industries-page .team-card-sm {
    padding: 2.5rem 1.6rem;
    height: 100%;
}

#industries-page .team-img-wrap-sm {
    width: 130px;
    height: 130px;
    margin: 0 auto 1.4rem auto;
}

#industries-page .team-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(6, 163, 218, 0.15);
    border: 3px solid var(--sky);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(6, 163, 218, 0.4);
}

#industries-page .team-icon i {
    font-size: 2.8rem;
    color: #38bdf8;
}

#industries-page .team-card-sm .team-content h3 {
    font-size: 1.15rem;
}

#industries-page .team-card-sm .team-content p {
    font-size: 0.88rem;
    max-width: none;
}


/* =====================================================================
   14. TESTIMONIALS CAROUSEL
   ===================================================================== */

#industries-page .testimonial-card {
    background: var(--paper-soft);
    border: 1px solid var(--line);
    padding: 1.8rem;
    border-radius: 16px;
    max-width: 34rem;
    margin: 0 auto;
}

#industries-page .testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--ink);
    line-height: 1.7;
}

#industries-page .testimonial-card em {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.8rem;
    color: var(--ink-soft);
    text-align: right;
    font-style: normal;
    font-family: var(--font-mono);
    font-weight: 600;
}


/* =====================================================================
   15. FAQ ACCORDION (DARK THEME SETUP — BOOTSTRAP-BASED)
   ===================================================================== */

#industries-page .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
    max-width: 48rem;
    margin: 0 auto;
}

#industries-page .faq-grid .accordion-item {
    border: 1px solid rgba(6, 163, 218, 0.2) !important;
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    box-shadow: 0 10px 26px -12px rgba(9, 30, 62, 0.25);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

#industries-page .faq-grid .accordion-item:hover {
    box-shadow: 0 18px 36px -14px rgba(6, 163, 218, 0.3);
    transform: translateY(-2px);
    border-color: rgba(6, 163, 218, 0.5) !important;
}

#industries-page .faq-grid .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    background: transparent;
    color: #ffffff !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.4;
    text-align: left;
    border: none;
    padding: 1.3rem 3.5rem 1.3rem 1.4rem;
    transition: background 0.3s ease;
}

#industries-page .faq-grid .accordion-button:not(.collapsed) {
    background: rgba(6, 163, 218, 0.15);
    color: #38bdf8 !important;
    box-shadow: none;
}

#industries-page .faq-grid .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

#industries-page .faq-grid .accordion-button::after {
    display: none;
}

#industries-page .faq-num {
    flex: 0 0 auto;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--sky-light);
}

#industries-page .faq-icon {
    position: absolute;
    right: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

#industries-page .faq-icon::before,
#industries-page .faq-icon::after {
    content: "";
    position: absolute;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

#industries-page .faq-icon::before { left: 0; top: 50%; width: 100%; height: 2px; transform: translateY(-50%); }
#industries-page .faq-icon::after { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); }

#industries-page .faq-grid .accordion-button:not(.collapsed) .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

#industries-page .faq-grid .accordion-body {
    background: rgba(7, 18, 51, 0.95);
    color: #cbd5e1;
    line-height: 1.75;
    font-size: 0.96rem;
    padding: 1.3rem 1.5rem 1.6rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* =====================================================================
   16. FINAL CTA BANNER
   ===================================================================== */

#industries-page .ais-cta {
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    color: #ffffff;
    text-align: center;
    border: 1px solid rgba(6, 163, 218, 0.3);
    box-shadow: 0 20px 50px rgba(9, 30, 62, 0.3);
}

#industries-page .ais-cta h2 {
    color: #ffffff !important;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

#industries-page .ais-cta p {
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 38rem;
    margin: 0 auto 1.8rem auto;
    line-height: 1.7;
}

#industries-page .btn-sky {
    background: linear-gradient(90deg, var(--sky), var(--sky-light));
    border: none;
    color: #ffffff !important;
    font-weight: 700;
    padding: 0.85rem 2.2rem;
    border-radius: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#industries-page .btn-sky:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -10px rgba(6, 163, 218, 0.6);
}

#industries-page .btn-outline-light-2 {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff !important;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

#industries-page .btn-outline-light-2:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
}

#industries-page .ais-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}


/* =====================================================================
   17. GLOBAL COLOUR & HEADING OVERRIDES
   ===================================================================== */

#industries-page .expertise-card h4,
#industries-page .industry-card h4,
#industries-page .stat-card .num,
#industries-page .stat-card .label,
#industries-page .ais-hero h1,
#industries-page .ais-hero p.sub,
#industries-page .challenge-card h4,
#industries-page .after-box h4 {
    color: #ffffff !important;
}

#industries-page .section-head h2,
#industries-page .dark-head h2,
#industries-page .tile h4,
#industries-page .difference-card h4,
#industries-page .why-choose-content-col h2,
#industries-page .left-col h2,
#industries-page .healthcare-transform .section-head h2 {
    color: var(--navy) !important;
}


/* =====================================================================
   18. RESPONSIVE BREAKPOINTS & MOBILE ADJUSTMENTS
   ===================================================================== */

@media (max-width: 991px) {
    #industries-page .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #industries-page .flow-grid {
        grid-template-columns: 1fr;
        gap: 2.6rem;
        max-width: 26rem;
        margin: 0 auto;
    }

    #industries-page .flow-item:not(:first-child)::before {
        top: -2.6rem;
        left: 50%;
        width: 2px;
        height: 2.6rem;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    #industries-page .section-pad { padding: 3.5rem 0; }
    #industries-page .ais-hero { padding: 4.5rem 0 3.5rem 0; }
    #industries-page .ais-cta .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 576px) {
    #industries-page .industry-grid { grid-template-columns: 1fr; }
    #industries-page .section-head h2 { font-size: 1.85rem; }
    #industries-page .expertise-card { width: 280px; }
}


/* =====================================================================
   19. "WHO WE ARE" PYTHON LOGO & BADGE
   ===================================================================== */

#industries-page .futuristic-python-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 3rem 0;
}

#industries-page .python-glow-wrap {
    position: relative;
    width: 280px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#industries-page .python-icon-elem {
    font-size: 8rem;
    color: var(--sky);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 35px rgba(6, 163, 218, 0.9));
    animation: pythonFloat 4s ease-in-out infinite;
}

@keyframes pythonFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

#industries-page .founder-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: fit-content;
    margin: 2rem auto 0 auto;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.1), rgba(9, 30, 62, 0.04));
    border: 1px solid rgba(6, 163, 218, 0.35);
}

#industries-page .founder-caption-text {
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--navy);
}


/* =====================================================================
   20. HEALTHCARE CHALLENGE CARDS (DARK NAVY THEME)
   ===================================================================== */

.challenge-card {
    position: relative;
    height: 100%;
    padding: 1.6rem 1.5rem;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-card) 100%);
    border-radius: 18px;
    border: 1px solid rgba(6, 163, 218, 0.25);
    box-shadow: 0 10px 28px rgba(9, 30, 62, 0.22);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.challenge-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--sky);
    transition: width 0.35s ease;
}

.challenge-card:hover::after {
    width: 100%;
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(6, 163, 218, 0.25);
    border-color: var(--sky);
}

.challenge-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 163, 218, 0.15);
    border-radius: 14px;
    margin-bottom: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.challenge-icon i {
    font-size: 1.35rem;
    color: var(--sky);
    transition: color 0.3s ease;
}

.challenge-card:hover .challenge-icon {
    background: var(--sky);
}

.challenge-card:hover .challenge-icon i {
    color: var(--navy);
}

.challenge-card h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0.6rem;
}

.challenge-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 1.1rem;
    text-align: justify;
}

.challenge-tag {
    display: inline-flex;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    background: rgba(6, 163, 218, 0.15);
    color: #38bdf8;
    font-size: 0.76rem;
    font-weight: 600;
    border: 1px solid rgba(6, 163, 218, 0.3);
    transition: all 0.3s ease;
}

.challenge-card:hover .challenge-tag {
    background: var(--sky);
    color: #ffffff;
    border-color: var(--sky);
}


/* =====================================================================
   21. HEALTHCARE TRANSFORMATION SECTION (BEFORE / AFTER COMPARISON)
   ===================================================================== */

.healthcare-transform {
    padding: 5.5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.transform-box {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(9, 30, 62, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.transform-header {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    margin-bottom: 2rem;
    gap: 20px;
}

.transform-header .header-pill {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    width: fit-content;
}

.transform-header .header-pill.before-pill {
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.transform-header .header-pill.after-pill {
    color: #38bdf8;
    background: rgba(6, 163, 218, 0.15);
    border: 1px solid rgba(6, 163, 218, 0.3);
    margin-left: auto;
}

.transform-row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 20px;
    margin-bottom: 1.25rem;
}

.before-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 1.1rem 1.4rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.before-box .icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.before-box h4 {
    margin: 0;
    color: #e2e8f0 !important;
    font-size: 1rem;
    font-weight: 500;
}

.arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(6, 163, 218, 0.15);
    color: var(--sky);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.transform-row:hover .arrow {
    background: var(--sky);
    color: #ffffff;
    transform: scale(1.1);
}

.after-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 1.1rem 1.4rem;
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.2) 0%, rgba(16, 54, 107, 0.6) 100%);
    border-radius: 16px;
    border: 1px solid rgba(6, 163, 218, 0.4);
}

.after-box .icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sky);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
}

.after-box h4 {
    margin: 0;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .transform-header { display: none; }
    .transform-row { grid-template-columns: 1fr; gap: 10px; margin-bottom: 1.5rem; }
    .arrow { transform: rotate(90deg); }
}


/* =====================================================================
   22. HEALTHCARE WHY CHOOSE SECTION & LIGHT/DARK CARDS
   ===================================================================== */

.healthcare-why-choose {
    padding: 5.5rem 0;
    background: #ffffff;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.why-choose-image-col .image-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(9, 30, 62, 0.1);
    border: 1px solid var(--line);
}

.why-choose-image-col img {
    width: 100%;
    height: 100%;
    max-height: 580px;
    object-fit: cover;
    display: block;
}

.why-choose-image-col .image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(9, 30, 62, 0.88);
    backdrop-filter: blur(10px);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.why-choose-image-col .image-badge h4 {
    margin: 0 0 4px 0;
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 700;
}

.why-choose-image-col .image-badge p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.88rem;
}

.why-choose-content-col h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy) !important;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.why-choose-content-col .section-desc {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: justify;
}

.feature-cards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* --- Updated Feature Card for Contrast & Hover Readability --- */
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 1.4rem 1.6rem;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-card) 100%);
    border: 1px solid rgba(6, 163, 218, 0.25);
    border-radius: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--sky);
    box-shadow: 0 12px 30px rgba(6, 163, 218, 0.2);
}

.feature-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--sky);
    line-height: 1;
    min-width: 36px;
    font-family: var(--font-mono);
}

.feature-info h3 {
    margin: 0 0 6px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff !important;
}

.feature-info p {
    margin: 0;
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-choose-wrapper { grid-template-columns: 1fr; gap: 40px; }
}


/* =====================================================================
   22.5 RELATED SERVICES SECTION (INDUSTRY PAGES)
   ===================================================================== */

.related-services-section {
    position: relative;
    padding: 4.5rem 0;
    background: var(--paper-soft);
    overflow: hidden;
}

.related-services-section .section-head {
    margin-bottom: 2.75rem;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.related-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.6rem 1.5rem 1.5rem;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-card) 100%);
    border: 1px solid rgba(6, 163, 218, 0.25);
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(9, 30, 62, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.related-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    border-radius: 18px 18px 0 0;
    background: var(--sky);
    transition: width 0.35s ease;
}

.related-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(6, 163, 218, 0.3);
    border-color: var(--sky);
}

.related-service-card:hover::before {
    width: 100%;
}

.rsc-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 163, 218, 0.15);
    border-radius: 13px;
    margin-bottom: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.rsc-icon i {
    font-size: 1.25rem;
    color: var(--sky);
    transition: color 0.3s ease;
}

.related-service-card:hover .rsc-icon {
    background: var(--sky);
    transform: scale(1.06);
}

.related-service-card:hover .rsc-icon i {
    color: var(--navy);
}

.related-service-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
}

.related-service-card p {
    font-size: 0.86rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 1.1rem;
    flex-grow: 1;
}

.rsc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #38bdf8;
    font-family: var(--font-mono);
}

.rsc-link i {
    font-size: 0.72rem;
    transition: transform 0.3s ease;
}

.related-service-card:hover .rsc-link i {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .related-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .related-services-grid { grid-template-columns: 1fr; }
    .related-services-section { padding: 3.5rem 0; }
}


/* =====================================================================
   23. HEALTHCARE SOLUTIONS ACCORDION SECTION
   ===================================================================== */

.healthcare-solutions-acc {
    padding: 5.5rem 0;
    background: var(--paper-soft);
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: start;
}

.left-col h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy) !important;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.left-col h2 span { color: var(--sky); }

.left-col .desc {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.left-col .image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(9, 30, 62, 0.1);
    margin-bottom: 1.8rem;
    border: 1px solid var(--line);
}

.left-col .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.compliance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.compliance-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--navy);
    padding: 0.6rem 1.1rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid var(--line);
}

.compliance-tags span i {
    color: var(--sky);
}

/* --- Solutions Dark Accordion Container --- */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.accordion-container .accordion-item {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    border: 1px solid rgba(6, 163, 218, 0.2);
    border-radius: 18px !important;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion-container .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    user-select: none;
}

.accordion-container .header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.accordion-container .acc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(6, 163, 218, 0.15);
    color: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.accordion-container .accordion-header h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff !important;
}

.accordion-container .toggle-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(6, 163, 218, 0.2);
    color: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-container .accordion-item.active {
    border-color: var(--sky);
    box-shadow: 0 10px 25px rgba(6, 163, 218, 0.2);
}

.accordion-container .accordion-item.active .toggle-btn {
    background: var(--sky);
    color: #ffffff;
}

.accordion-container .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.accordion-container .accordion-item.active .accordion-body {
    max-height: 300px;
    padding: 0 1.5rem 1.4rem 1.5rem;
}

.accordion-container .accordion-body ul {
    margin: 0;
    padding-left: 1.2rem;
}

.accordion-container .accordion-body li {
    color: #cbd5e1;
    font-size: 0.94rem;
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

@media (max-width: 992px) {
    .solutions-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Healthcare Hero Image Container --- */
.healthcare-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--navy);
    box-shadow: 0 20px 50px rgba(6, 163, 218, 0.15);
    border: 1px solid rgba(6, 163, 218, 0.3);
}

.healthcare-image-box img {
    width: 100%;
    height: auto;
    display: block;
}


/* =====================================================================
   24. PIPELINE SECTION (PROCESS STEPS)
   ===================================================================== */

.pipeline-section {
    position: relative;
    overflow: hidden;
}

.pipeline-wrapper {
    position: relative;
}

/* --- Background animated tracking line for desktop --- */
@media (min-width: 992px) {
    .pipeline-track {
        position: absolute;
        top: 130px;
        left: 5%;
        width: 90%;
        height: 3px;
        background: rgba(6, 163, 218, 0.15);
        z-index: 1;
        border-radius: 10px;
    }

    .pipeline-pulse {
        width: 120px;
        height: 100%;
        background: linear-gradient(90deg, transparent, var(--sky), transparent);
        position: absolute;
        animation: pulseTrack 4s linear infinite;
    }

    @keyframes pulseTrack {
        0% { left: -10%; }
        100% { left: 100%; }
    }
}

.pipeline-card {
    position: relative;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-card) 100%);
    border: 1px solid rgba(6, 163, 218, 0.25);
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(9, 30, 62, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pipeline-card:hover {
    transform: translateY(-10px);
    border-color: var(--sky);
    box-shadow: 0 20px 45px rgba(6, 163, 218, 0.3);
}

.card-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--sky-light);
    background: rgba(6, 163, 218, 0.12);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(6, 163, 218, 0.3);
    letter-spacing: 0.05em;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

.pipeline-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(6, 163, 218, 0.12);
    border: 1px solid rgba(6, 163, 218, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sky);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.pipeline-card:hover .pipeline-icon-box {
    background: var(--sky);
    color: var(--navy);
    transform: scale(1.08) rotate(-4deg);
}

.pipeline-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0.7rem;
}

.pipeline-card p {
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: justify;
}

.pipeline-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.tech-tag {
    font-size: 0.78rem;
    color: #38bdf8;
    font-weight: 600;
}


/* =====================================================================
   25. FAQ SECTION (CUSTOM <details> ACCORDION — SEO/AEO/GEO OPTIMIZED)
   ===================================================================== */

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Accordion Container (Card) --- */
.faq-card {
    background: linear-gradient(145deg, var(--navy, #0f172a) 0%, var(--navy-card, #1e293b) 100%);
    border: 1px solid rgba(6, 163, 218, 0.2);
    border-radius: 16px;
    padding: 1.2rem 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(9, 30, 62, 0.15);
    overflow: hidden;
}

.faq-card:hover {
    border-color: var(--sky, #06a3da);
    box-shadow: 0 15px 35px rgba(6, 163, 218, 0.2);
}

/* --- Clickable Header/Summary --- */
.faq-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    cursor: pointer;
    list-style: none; /* Default arrow hiding */
    user-select: none;
}

.faq-card-header::-webkit-details-marker {
    display: none; /* Safari/Chrome default marker hide */
}

/* --- Question Header Content Wrapper --- */
.faq-header-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.faq-num {
    font-family: var(--font-mono, monospace);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--sky-light, #38bdf8);
    background: rgba(6, 163, 218, 0.12);
    padding: 0.3rem 0.7rem;
    border-radius: 8px;
    border: 1px solid rgba(6, 163, 218, 0.3);
    flex-shrink: 0;
}

/* --- Question Title Styling & Color Fix --- */
.faq-card-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff !important; /* Visible high-contrast white text */
    margin: 0;
    line-height: 1.4;
}

/* --- Toggle Cross Button Icon (+ / ✕) --- */
.faq-toggle-icon {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--sky, #06a3da);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

/* --- Automatic Cross Icon Change when Open --- */
.faq-card[open] .faq-toggle-icon {
    transform: rotate(45deg); /* Plus icon transforms to Cross (✕) */
    color: #ef4444; /* Cross color turns Red */
}

.faq-card[open] {
    transform: translateY(-2px);
}

/* --- Hidden Answer Body (Opens on Click) --- */
.faq-card-body {
    margin-top: 1rem;
    padding-left: 3.2rem; /* Aligns with question text */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.faq-card-body p {
    color: #cbd5e1; /* Clear visible slate text */
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

/* --- Mobile Responsive Adjustments --- */
@media (max-width: 768px) {
    .faq-card {
        padding: 1rem 1.2rem;
    }
    .faq-card-header {
        align-items: flex-start;
    }
    .faq-header-content {
        gap: 0.8rem;
    }
    .faq-card-header h3 {
        font-size: 1.05rem;
    }
    .faq-card-body {
        padding-left: 0;
        margin-top: 0.8rem;
    }
}


/* =====================================================================
   26. SECTION SEPARATION FIX (HAIRLINE DIVIDERS BETWEEN SECTIONS)
   ===================================================================== */

#industries-page .section-pad,
.healthcare-transform,
.healthcare-why-choose,
.healthcare-solutions-acc {
    border-top: 1px solid rgba(9, 30, 62, 0.07);
}

/* --- No divider directly after the hero (dark → white transition already visible) --- */
#industries-page .ais-hero + .section-pad {
    border-top: none;
}


/* =====================================================================
   27. LEAD COPY TEXT JUSTIFICATION
   ===================================================================== */
/* NOTE: This duplicates/overrides the .lead-copy rule already defined in
   Section 01 (text-align: justify has been merged into that original
   rule above). Kept here as a placeholder marker only if you want to
   split it out again later. */