

/* ===================================== */
/* CARD */
/* ===================================== */

.nabh-card{
    background:#ffffff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,0.07);
    overflow:hidden;
    position:relative;
}

/* TOP DESIGN */

.nabh-card::before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:180px;
    height:180px;
    background:rgba(38,52,137,0.05);
    border-radius:0 0 0 100%;
}

/* ===================================== */
/* TITLE */
/* ===================================== */

.nabh-title{
    font-size:42px;
    font-weight:700;
    color:var(--primary-blue);
    margin-bottom:24px;
    position:relative;
    padding-bottom:14px;
}

/* UNDERLINE */

.nabh-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:90px;
    height:4px;
    background:var(--accent-red);
    border-radius:10px;
}

/* ===================================== */
/* TEXT */
/* ===================================== */

.nabh-text{
    font-size:16px;
    line-height:1.9;
    color:#444;
    text-align:justify;
    margin-bottom:0;
}

/* ===================================== */
/* IMAGE */
/* ===================================== */

.nabh-image{
    text-align:center;
}

.nabh-image img{
    width:100%;
    max-width:300px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    transition:0.4s ease;
}

.nabh-image img:hover{
    transform:translateY(-6px) scale(1.03);
}

/* ===================================== */
/* BENEFITS BOX */
/* ===================================== */

.nabh-benefits-box{
    margin-top:40px;
    background:var(--bg-light);
    border-radius:22px;
    padding:35px;
    border-left:5px solid var(--accent-red);
    position:relative;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

/* LIGHT DESIGN */

.nabh-benefits-box::before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:120px;
    height:120px;
    background:rgba(38,52,137,0.06);
    border-radius:0 0 0 100%;
}

/* ===================================== */
/* HEADING */
/* ===================================== */

.nabh-heading{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:var(--primary-blue);
    color:#ffffff;
    padding:12px 24px;
    border-radius:50px;
    font-size:22px;
    font-weight:700;
    margin-bottom:24px;
    box-shadow:0 8px 20px rgba(38,52,137,0.20);
}

.nabh-heading span{
    width:34px;
    height:34px;
    border-radius:50%;
    background:var(--accent-red);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

/* ===================================== */
/* LIST */
/* ===================================== */

.nabh-list{
    margin:0;
    padding-left:24px;
}

.nabh-list li{
    font-size:16px;
    color:#333;
    line-height:1.9;
    margin-bottom:14px;
    text-align:justify;
}

.nabh-list li::marker{
    color:var(--accent-red);
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:992px){

    .nabh-title{
        font-size:34px;
    }

    .nabh-image{
        margin-top:35px;
    }

}

@media(max-width:768px){

    .nabh-modern-section{
        padding:40px 0;
    }

    .nabh-card{
        padding:25px;
    }

    .nabh-title{
        font-size:28px;
    }

    .nabh-text{
        font-size:15px;
    }

    .nabh-heading{
        font-size:17px;
        padding:10px 18px;
        line-height:1.5;
    }

    .nabh-benefits-box{
        padding:22px;
    }

    .nabh-list li{
        font-size:15px;
    }

}