/* =====================
   HERO SECTION STARTS
===================== */


.healthcare-hero {
    width: 100%;
    background: #fff;
}

/* TEXT AREA */
.healthcare-hero-content {
    text-align: center;
    padding: 80px 20px 30px;
}

.healthcare-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: #000;
}

.healthcare-hero-content h1 span {
    color: #0069c8;
    /* Healthcare blue */
}

/* IMAGE WRAPPER */
.healthcare-hero-image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #f0f0f0;
}

.healthcare-hero-image::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 3px solid rgba(0, 105, 200, 0.1);
    border-top: 3px solid #0069C8;
    border-radius: 50%;
    animation: imageLoaderSpin 1s linear infinite;
    z-index: 0;
}

/* IMAGE */
.healthcare-hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
}

/* DARK OVERLAY (same like screenshot) */
.healthcare-hero-image .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.55));
    z-index: 2;
}

@keyframes imageLoaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 1024px) {
    .healthcare-hero-content h1 {
        font-size: 34px;
    }

    .healthcare-hero-image {
        height: auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .healthcare-hero-content {
        padding: 60px 16px 20px;
    }

    .healthcare-hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .healthcare-hero-image {
        height: auto;
    }
}

/* =====================
   HERO SECTION ENDS
===================== */