.career-path-section{
    padding:90px 0;
    background:#f7f9fc;
    /* font-family:'Poppins',sans-serif; */
}
.career-path-section p{
    font-size: 16px;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.tag{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:8px 22px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:18px;
}

.section-heading h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:18px;
    color:#1d2d44;
}

.section-heading p{
    max-width:720px;
    margin:auto;
    color: #000;
    line-height:1.8;
}

.path-cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;

}

.path-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.45s;
    position:relative;
    opacity:0;
    transform:translateY(70px);

}

.path-card.show{

    opacity:1;
    transform:translateY(0);

}

.path-card:hover{

    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.card-top{

    text-align:center;
    padding:40px 30px 25px;
        background: linear-gradient(var(--rr-theme-primary2), var(--rr-common-white));
    color: var(--rr-common-white) !important;

}

.icon{

    width:90px;
    height:90px;
    background:white;
    color:#0066ff;
    border-radius:50%;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
    margin-bottom:18px;

}

.card-top h3{

    font-size:28px;
    margin:0;

}

.narayni-card-body{

    padding:35px;

}

.info-box{

    margin-bottom:28px;

}

.info-box h5{

    color:#000;
    margin-bottom:12px;
    font-size:20px;
    font-weight:600;

}

.info-box p{

    color:#000;
    line-height:1.8;

}

.info-box ul{

    padding-left:20px;
    margin:0;

}

.info-box li{

    margin-bottom:12px;
    color:#000;
    font-size: 16px;

}

.featured{

    transform:scale(1.04);
    border:3px solid #0d6efd;

}

.badge{

    position:absolute;
    top:20px;
    right:-40px;
    background:#ff9800;
    color:#fff;
    padding:8px 50px;
    transform:rotate(45deg);
    font-size:13px;
    font-weight:600;

}

.bottom-note{

    margin-top:55px;
    background:#fff;
    border-left:6px solid #0d6efd;
    padding:25px;
    border-radius:12px;
    color:#000;
    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

@media(max-width:991px){

.section-heading h2{

font-size:34px;

}

.featured{

transform:none;

}

}

@media(max-width:576px){

.section-heading h2{

font-size:28px;

}

.card-top h3{

font-size:22px;

}

.narayni-card-body{

padding:25px;

}

}