/* ==========================================================================
   Kimaya Hero Section — Mobile Responsive Restructuring
   ========================================================================== */

/* Pull the hero section closer to the navbar */
.banner-section-ten {
    padding-top: 30px !important;
}

/* Push the Book Consultation button down */
.banner-section-ten .banner-btns {
    margin-top: 42px !important;
}

/* ── Circular Hero Image on Mobile ── */
/* Hidden by default on desktop viewports */
.banner-header-circle {
    display: none;
}

/* Desktop styles */
@media (min-width: 992px) {
    .banner-img-desktop {
        display: block;
    }
}

/* Mobile & Tablet styles (under 992px width) */
@media (max-width: 991px) {
    /* Hide the large desktop banner image container */
    .banner-img-desktop {
        display: none !important;
    }

    /* Display the circular mobile banner image */
    .banner-header-circle {
        display: block;
        flex-shrink: 0;
    }

    /* Flex wrapper to display heading and circle side-by-side */
    .banner-header-group {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 24px;
    }

    .banner-header-text {
        flex: 1;
    }

    /* The oval view for the pregnant woman image */
    .hero-circle-img {
        width: 130px;
        height: 290px; /* Increased height to reach down */
        border-radius: 100px; /* Beautiful capsule/oval shape */
        overflow: hidden;
        border: none !important;
        box-shadow: none !important;
        background-color: transparent !important;
    }

    .hero-circle-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    /* Keep the Book Consultation button sitting cleanly at the bottom */
    .banner-btns {
        margin-top: 36px !important;
        width: 100%;
    }
}

/* Smaller mobile viewports (under 576px width) */
@media (max-width: 575px) {
    .banner-header-group {
        gap: 12px;
    }

    .hero-circle-img {
        width: 110px;
        height: 240px;
    }

    .banner-section-ten h1 {
        font-size: 26px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }

    .banner-desc {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
}
