/* --- BACKGROUND GLOBE (Far Background - Very Subtle) --- */
        .globe-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            z-index: 0;
            pointer-events: none;
            opacity: 0.4; /* Kam kar diya taake main globe highlight ho */
        }
        .sphere {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 1px solid rgba(0, 86, 179, 0.05);
            box-shadow: 0 0 40px rgba(0, 86, 179, 0.02);
            animation: spin 40s linear infinite;
        }
        .sphere::before {
            content: '';
            position: absolute;
            top: 15%; left: 15%;
            width: 70%; height: 70%;
            border-radius: 50%;
            border: 1px dashed rgba(0, 86, 179, 0.03);
            animation: spin-reverse 60s linear infinite;
        }
        @keyframes spin { 100% { transform: rotate(360deg); } }
        @keyframes spin-reverse { 100% { transform: rotate(-360deg); } }


        /* --- SVG CONNECTIONS (Lines from PC to Cards) --- */
        .connections-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }
        .connector-line {
            stroke: #e2e8f0;
            stroke-width: 2;
            transition: all 0.4s ease;
        }
        .connector-line.active {
            stroke: #0056b3;
            stroke-width: 3;
        }


        /* --- HEADER --- */
        .sol-section-header {
    text-align: center;
    max-width: 900px;
    margin: 15px auto 10px;
    padding: 10px 20px;
}

.sol-section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0b5ed7; /* HealthDoor primary blue */
    line-height: 1.2;
    margin-bottom: 1px;
}

.sol-section-header p {
    font-size: 1.05rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.6;
}


        /* --- MAIN CONTAINER --- */
        .platform-container {
            position: relative;
            width: 1000px;
            height: 750px;
            max-width: 100%;
            margin: 0 auto;
            z-index: 5;
        }


        /* --- CARDS --- */
        .module-card {
            position: absolute;
            background: #ffffff;
            padding: 25px;
            border-radius: 15px;
            border: 1px solid #edf2f7;
            width: 220px;
            text-align: center;
            z-index: 20;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        }
        .module-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 86, 179, 0.15);
            border-color: #0056b3;
        }
        .module-card i { font-size: 2rem; margin-bottom: 15px; color: #0056b3; }
        .module-card h3 { font-size: 1rem; margin-bottom: 8px; color: #2d3748; font-weight: 600; }
        .module-card p { font-size: 0.75rem; color: #718096; line-height: 1.5; }

        /* Card Positions */
        .card-1 { top: 5%; left: 5%; border-left: 4px solid #4facfe; }
        .card-2 { top: 5%; right: 5%; border-right: 4px solid #00f2fe; }
        .card-3 { top: 40%; left: -2%; border-left: 4px solid #43e97b; }
        .card-4 { top: 40%; right: -2%; border-right: 4px solid #fa709a; }
        .card-5 { bottom: 5%; left: 5%; border-left: 4px solid #fee140; }
        .card-6 { bottom: 5%; right: 5%; border-right: 4px solid #8fd3f4; }


        /* --- PC MONITOR --- */
        .pc-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            z-index: 15;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* --- COMPLEX BACKGROUND ANIMATION (Nodes + Globe) --- */
        .tech-bg-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 480px;
            height: 480px;
            z-index: -1; 
            pointer-events: none;
            animation: slowRotate 80s linear infinite;
        }

        /* 1. Inner 3D Globe (The requested animated globe) */
        .inner-3d-globe {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 280px;
            height: 280px;
            border-radius: 50%;
            /* White Circle Outline */
            border: 1px solid rgba(0, 168, 255, 0.2);
            box-shadow: 0 0 20px rgba(0, 168, 255, 0.1);
            transform-style: preserve-3d;
            /* Rotate in opposite direction to wrapper */
            animation: globeSpin 20s linear infinite;
        }

        /* Globe Rings (Latitudes/Longitudes) */
        .globe-ring {
            position: absolute;
            top: 50%; left: 50%;
            border-radius: 50%;
            border: 1px dashed rgba(0, 168, 255, 0.3);
            transform: translate(-50%, -50%);
        }
        .ring-1 { width: 100%; height: 100%; border-color: rgba(0, 168, 255, 0.1); }
        .ring-2 { width: 70%; height: 70%; border: 1px solid rgba(0, 168, 255, 0.15); }
        .ring-3 { width: 40%; height: 40%; border-color: rgba(0, 168, 255, 0.2); }

        /* Rotating Equator / Axis */
        .globe-axis {
            position: absolute;
            top: 50%; left: 50%;
            width: 100%; height: 10px;
            background: rgba(0, 168, 255, 0.1);
            transform: translate(-50%, -50%);
            animation: axisSpin 10s linear infinite;
        }
        .globe-axis::before {
            content: '';
            position: absolute;
            top: -45%; left: 0;
            width: 100%; height: 190%;
            border-left: 1px solid rgba(0, 168, 255, 0.1);
            transform: rotate(90deg);
        }

        /* Dots on Globe Surface */
        .globe-dot {
            position: absolute;
            width: 4px; height: 4px;
            background: #00a8ff;
            border-radius: 50%;
            opacity: 0.8;
            box-shadow: 0 0 5px #00a8ff;
        }

        /* 2. Outer Technology Nodes */
        .nodes-svg {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            overflow: visible;
        }
        .node-link {
            stroke: #00a8ff;
            stroke-width: 1;
            stroke-opacity: 0.4;
            fill: none;
        }

        .node {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #0056b3;
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(0, 86, 179, 0.5);
            z-index: 2;
        }

        /* Node Positions (Hexagon around the inner globe) */
        .n1 { top: 5%; left: 50%; }
        .n2 { top: 20%; left: 90%; }
        .n3 { top: 80%; left: 90%; }
        .n4 { top: 95%; left: 50%; }
        .n5 { top: 80%; left: 10%; }
        .n6 { top: 20%; left: 10%; }

        /* Animations */
        @keyframes slowRotate {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        @keyframes globeSpin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(-360deg); }
        }
        @keyframes axisSpin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }


        /* Monitor Styles */
        .monitor-frame {
            width: 100%;
            background: #2d3748;
            padding: 12px;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            border: 1px solid #cbd5e0;
            position: relative;
            z-index: 5;
        }

        .monitor-screen {
            width: 100%;
            height: 210px;
            background: #051122;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
        }

        /* --- SLIDESHOW CSS --- */
        .slide {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            display: flex;
            flex-direction: column;
            pointer-events: none;
        }
        .slide.active { opacity: 1; pointer-events: auto; z-index: 2; }

        .dash-header { 
            height: 40px; 
            background: #0a192f; 
            display: flex; 
            align-items: center; 
            padding: 0 15px; 
            border-bottom: 1px solid #1a2f4d;
            justify-content: space-between;
        }
        .dash-title { color: #fff; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
        .dash-body { flex: 1; padding: 15px; display: flex; flex-direction: column; gap: 10px; }
        
        .slide-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 10;
        }
        .dot { width: 6px; height: 6px; background: rgba(255,255,255,0.3); border-radius: 50%; transition: background 0.3s; }
        .dot.active { background: #00a8ff; }

        /* Slide Content Styles */
        .cal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
        .cal-box { background: rgba(255,255,255,0.05); border-radius: 4px; height: 30px; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: #a0aec0; }
        .cal-box.active { background: #4facfe; color: #fff; }

        .profile-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .avatar { width: 40px; height: 40px; background: #4facfe; border-radius: 50%; }
        .vitals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
        .vital-box { background: rgba(255,255,255,0.05); padding: 8px; border-radius: 4px; }
        .v-label { font-size: 0.6rem; color: #718096; }
        .v-val { font-size: 0.9rem; color: #fff; font-weight: bold; }

        .lab-item { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.05); padding: 8px; border-radius: 4px; font-size: 0.7rem; margin-bottom: 5px; }
        .badge { padding: 2px 6px; border-radius: 4px; font-size: 0.6rem; }
        .badge.done { background: rgba(67, 233, 123, 0.2); color: #43e97b; }
        .badge.pending { background: rgba(254, 225, 64, 0.2); color: #fee140; }

        .med-row { display: flex; align-items: center; margin-bottom: 8px; }
        .med-name { width: 60%; font-size: 0.7rem; color: #cbd5e0; }
        .stock-bar-bg { flex: 1; height: 6px; background: #1a2f4d; border-radius: 3px; overflow: hidden; }
        .stock-fill { height: 100%; background: #fa709a; }

        .chart-container { height: 100px; display: flex; align-items: flex-end; justify-content: space-around; padding-bottom: 10px; }
        .bar-chart { width: 15%; background: #00f2fe; border-radius: 3px 3px 0 0; opacity: 0.8; }

        .user-list { display: flex; flex-direction: column; gap: 8px; }
        .user-row { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); padding: 8px; border-radius: 4px; }
        .u-av { width: 24px; height: 24px; background: #8fd3f4; border-radius: 50%; }
        .u-name { flex: 1; font-size: 0.7rem; color: #fff; }
        .u-role { font-size: 0.6rem; color: #a0aec0; }

        .monitor-stand { width: 50px; height: 30px; background: #cbd5e0; margin-top: -2px; }
        .monitor-base { width: 120px; height: 8px; background: #cbd5e0; border-radius: 10px 10px 0 0; }
        .brand-text { margin-top: 15px; color: #0056b3; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px; }


        /* Responsive Mobile */
        @media (max-width: 768px) {
            .platform-container { height: auto; display: flex; flex-direction: column; padding: 20px 0; }
            .globe-container { transform: translate(-50%, -50%) scale(0.6); }
            .connections-svg { display: none; } 
            .module-card { position: relative; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; width: 90%; margin-bottom: 15px; }
            .pc-wrapper { position: relative; top: auto; left: auto; transform: none; width: 90%; order: -1; margin-bottom: 30px; }
            .monitor-screen { height: 160px; }
            header h1 { font-size: 1.5rem; }
        }