

    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

    .hospital-stats-area {
        padding: 100px 0;
        background-color: #ffffff;
        font-family: 'Inter', sans-serif;
    }

    /* Image Wrapper with Branding */
    .hospital-image-box {
        position: relative;
        border-radius: 40px;
        overflow: hidden;
        height: 100%;
        min-height: 400px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    }

    .hospital-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Vertical Sidebar Border on the Image */
    .hospital-image-box::after {
        content: "";
        position: absolute;
        left: 0;
        top: 10%;
        bottom: 10%;
        width: 8px;
        background: var(--brand-blue);
        border-radius: 0 4px 4px 0;
    }

    /* Stats Column */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        height: 100%;
    }

    .stat-box-modern {
        padding: 40px 30px;
        background: #f8fafc;
        border-radius: 30px;
        transition: all 0.4s ease;
        border: 1px solid transparent;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .stat-box-modern:hover {
        background: #ffffff;
        border-color: var(--brand-blue);
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(62, 102, 149, 0.08);
    }

    .stat-box-modern h2 {
        font-weight: 900;
        font-size: 3rem;
        color: var(--brand-blue);
        margin: 0;
        letter-spacing: -2px;
    }

    .stat-box-modern h4 {
        font-weight: 700;
        font-size: 0.9rem;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 10px;
    }

    @media (max-width: 991px) {
        .hospital-image-box {
            margin-bottom: 40px;
        }
    }

