* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
/* ================= HERO SECTION ================= */
.healthcare-hero {
    width: 100%;
    height: 90vh;
    background: url('./Assets/Healthcare/Hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center; /* desktop: centered */
}

/* Rectangle overlay behind text */
.hero-text-overlay {
    position: relative;
    background: rgba(187, 187, 187, 0.85); /* semi-transparent white */
    display: inline-block;
    padding: 40px 30px;
    border-radius: 12px;
    max-width: 700px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0657A3;
    margin-bottom: 15px;
}

.hero-text-overlay p {
    font-size: 18px;
    line-height: 1.6;
    color: #222;
}

/* =====================================
   RESPONSIVE (Mobile)
   Align content LEFT + adjust spacing
===================================== */
@media (max-width: 600px) {

    .healthcare-hero {
        height: auto;          /* flexible height */
        padding: 40px 20px;    /* spacing for mobile */
        text-align: left;      /* align section content left */
    }

    .hero-text-overlay {
        max-width: 100%;       /* full width block */
        padding: 25px 20px;    /* reduced padding */
        text-align: left;      /* align text left */
    }

    .hero-text-overlay h1 {
        font-size: 28px;       /* smaller heading */
        line-height: 1.3;
    }

    .hero-text-overlay p {
        font-size: 16px;       /* mobile-friendly text */
    }
}






/* Innovation Section */
.innovation-section {
    padding: 60px 20px;
    background-color: #f4f7fb;
}

.innovation-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Left Content */
.innovation-section .content-side {
    flex: 1;
    min-width: 300px;
}

.innovation-section h2 {
    font-size: 2rem;
    color: #0657A3;
    margin-bottom: 20px;
}

.innovation-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.innovation-section .benefits-list {
    list-style-type: disc;
    padding-left: 20px;
}

.innovation-section .benefits-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Right Image */
.innovation-section .image-side {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.innovation-section .image-side img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .innovation-section .container {
        flex-direction: column-reverse;
    }

    .innovation-section h2 {
        font-size: 2rem;
    }
}


/* MAIN SECTION */
.healthcare-section {
    display: flex;
    justify-content: space-between;
    padding: 80px 5%;
    gap: 50px;
    background: #E8F7FB;
}

/* LEFT SIDE */
.healthcare-left {
    width: 45%;
}

.healthcare-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
}

.healthcare-left p {
    font-size: 18px;
    line-height: 26px;
    color: #333;
    margin-bottom: 40px;
}

/* Illustration with Soft Shape */
.healthcare-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.healthcare-bg-shape {
    position: absolute;
    width: 380px;
    height: 380px;
    background: #c3f0e9;
    border-radius: 50% 40% 60% 50%;
    top: 20px;
    left: 0;
    right: 25;
    margin: auto;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.healthcare-illustration img {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
}

/* RIGHT SIDE */
.healthcare-right {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.healthcare-item img {
    width: 45px;
    margin-bottom: 10px;
}

.healthcare-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #003366;
}

.healthcare-item p {
    color: #444;
    line-height: 24px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .healthcare-section {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .healthcare-left, .healthcare-right {
        width: 100%;
    }

    .healthcare-right {
        grid-template-columns: 1fr;
    }

    .healthcare-bg-shape {
        width: 260px;
        height: 260px;
        top: 10px;
    }

    .healthcare-illustration {
        justify-content: flex-start;
    }

    .healthcare-illustration img {
        max-width: 280px;
    }
}

@media (max-width: 600px) {
    .healthcare-bg-shape {
        width: 220px;
        height: 220px;
        top: 0;
    }

    .healthcare-illustration img {
        max-width: 240px;
    }
}


/* .healthcare-marketing */
.healthcare-marketing {
    padding: 60px 20px;
    background: #ffffff;
    font-family: Poppins, sans-serif;
}

.hm-container {
    max-width: 900px;
    margin: auto;
    text-align: center;  /* Default desktop: centered */
}

.hm-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0657A3;
}

.hm-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hm-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.hm-item {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background: #f9fbff;
}

.hm-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0657A3;
}

.hm-item p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* ================================
   RESPONSIVE: MOBILE VIEW
   Align all content LEFT
================================ */
@media (max-width: 600px) {
    .hm-container {
        text-align: left;   /* All content left aligned */
    }

    .hm-heading {
        font-size: 24px;
    }

    .hm-desc {
        font-size: 15px;
    }

    .hm-points {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
}
