.section-cardiac-banner{
    background: linear-gradient(to right, #f7fbff, #ffffff);
    overflow: hidden;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

/* Left Content */

.section-main-heading{
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    color: #082b61;
    margin-bottom: 20px;
}

.section-main-heading span{
    color: #e11d2e;
}

.section-sub-heading{
    font-size: 24px;
    font-weight: 600;
    color: #082b61;
    margin-bottom: 12px;
}

.section-description{
    font-size: 17px;
    line-height: 1.8;
    color: #5b6472;
    max-width: 600px;
    margin-bottom: 35px;
}

/* Services */

.section-service-wrapper{
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.section-service-box{
    width: 140px;
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.section-service-box:hover{
    transform: translateY(-5px);
}

.section-service-icon{
    font-size: 34px;
    margin-bottom: 14px;
    color: #0d3d91;
}

.section-service-box h6{
    font-size: 17px;
    font-weight: 600;
    color: #0d2f69;
    margin: 0;
}

/* Features */

.section-feature-wrapper{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.section-feature-item{
    font-size: 16px;
    color: #475569;
    font-weight: 500;
    line-height: 1.6;
}

/* Buttons */

.section-btn-wrapper{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.section-btn-book{
    background: #e11d2e;
    color: #fff;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
}

.section-btn-book:hover{
    background: #c81020;
    color: #fff;
}

.section-btn-call{
    background: #082b61;
    color: #fff;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
}

.section-btn-call:hover{
    background: #041c42;
    color: #fff;
}

/* Right Side */

.section-image-wrapper{
    position: relative;
    text-align: center;
}

.section-main-image{
    max-width: 100%;
    position: relative;
    z-index: 2;
}

/* Badge */

.section-badge{
    position: absolute;
    bottom: 60px;
    left: 50px;
    width: 180px;
    height: 180px;
    background: #ffffff;
    border-radius: 50%;
    border: 6px solid #dce8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #082b61;
    font-size: 20px;
    font-weight: 500;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    z-index: 3;
}

.section-badge strong{
    font-weight: 700;
}

/* Responsive */

@media(max-width:991px){

    .section-main-heading{
        font-size: 40px;
    }

    .section-content-wrapper{
        margin-bottom: 50px;
    }

    .section-service-wrapper{
        justify-content: center;
    }

    .section-feature-wrapper{
        justify-content: center;
    }

    .section-btn-wrapper{
        justify-content: center;
    }

    .section-badge{
        width: 140px;
        height: 140px;
        font-size: 16px;
        left: 20px;
        bottom: 20px;
    }
}

@media(max-width:576px){

    .section-main-heading{
        font-size: 32px;
    }

    .section-sub-heading{
        font-size: 20px;
    }

    .section-description{
        font-size: 15px;
    }

    .section-service-box{
        width: 100%;
    }

    .section-btn-book,
    .section-btn-call{
        width: 100%;
        text-align: center;
    }
}
