/* /*=================================
        NPS HERO SECTION
=================================

.nps-hero{

    padding:60px 0;
    background:#ffffff;

}

.hero-tag{

    display:inline-block;
    background:#e8f2ff;
    color:#0d6efd;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;

}

.nps-title{

    font-size:48px;
    font-weight:700;
    color:#173f7a;
    line-height:1.2;
    margin-bottom:20px;

}

.nps-hero p{

    font-size:16px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;

}

.nps-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:15px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    padding:15px 38px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.35s;

}

.nps-btn:hover{

    background:#084fc7;
    color:#fff;
    transform:translateY(-3px);

}

.nps-btn i{

    font-size:18px;

}

.nps-image{

    max-width:100%;
    width:700px;

}
=========================
      NPS HERO IMAGE
=========================
.nps-image{
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    border-radius:30px;
}

.nps-image img{
    width:100%;
    max-width:650px;
    height:480px;
    object-fit:cover;
    display:block;
    border-radius:30px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
    transition:all .4s ease;
}





=========================
       Responsive
=========================

@media(max-width:992px){

.nps-hero{

    text-align:center;

}

.nps-title{

    font-size:36px;

}

.nps-image{
    margin-top:35px;
}

.nps-image img{
    max-width:500px;
    height:380px;
    border-radius:25px;
}

}

@media(max-width:768px){

.nps-hero{

    padding:60px 0;

}

.nps-title{

    font-size:30px;

}

.nps-hero p{

    font-size:15px;

}

.nps-btn{

    padding:14px 32px;
    font-size:15px;

}
.nps-image img{
    width:100%;
    max-width:100%;
    height:280px;
    border-radius:20px;
}

} */
/*====================================
        NPS BENEFITS
====================================*/

.nps-benefits{

    padding:90px 0;
    background:#ffffff;

}

.nps-benefits .container{

    max-width:1200px;
    margin:auto;
    padding:0 15px;

}

/* Heading */

.section-heading{

    text-align:center;
    margin-bottom:60px;

}

.section-heading h2{

    font-size:42px;
    font-weight:700;
    color:#123a74;
    margin-bottom:15px;

}

.section-heading p{

    color:#666;
    font-size:17px;
    max-width:700px;
    margin:auto;
    line-height:1.8;

}

/* Grid */

.benefit-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;

}

/* Card */

.benefit-card{

    background:#f8fbff;
    border:1px solid #d8e8ff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.benefit-card:hover{

    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(37,99,235,.15);

}

/* Icon */

.benefit-icon{

    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#0d6efd;
    display:flex;
    align-items:center;
    justify-content:center;

}

.benefit-icon i{

    color:#fff;
    font-size:30px;

}

/* Title */

.benefit-card h4{

    font-size:24px;
    color:#123a74;
    margin-bottom:15px;
    font-weight:700;

}

/* Text */

.benefit-card p{

    font-size:15px;
    color:#666;
    line-height:1.8;

}

/*=========================
      Tablet
=========================*/

@media(max-width:992px){

.section-heading h2{

    font-size:34px;

}

.benefit-grid{

    gap:20px;

}

}

/*=========================
      Mobile
=========================*/

@media(max-width:768px){

.benefit-grid{

    grid-template-columns:1fr;

}

.section-heading h2{

    font-size:28px;

}

.section-heading p{

    font-size:15px;

}

.benefit-card{

    padding:25px;

}

.benefit-card h4{

    font-size:21px;

}

.benefit-card p{

    font-size:14px;

}

.benefit-icon{

    width:60px;
    height:60px;

}

.benefit-icon i{

    font-size:26px;

}

}
/*====================================
        NPS ASPECTS
====================================*/

.nps-aspects{

    padding:90px 0;
    background:#ffffff;

}

.nps-tabs{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin:45px 0;

}

.tab-btn{

    background:#f4f8ff;
    border:1px solid #d9e7ff;
    border-radius:14px;
    padding:16px 30px;
    font-size:18px;
    font-weight:600;
    color:#123a74;
    cursor:pointer;
    transition:.3s;

}

.tab-btn.active,
.tab-btn:hover{

    background:#0d6efd;
    color:#fff;

}

.tab-content{

    display:none;
    max-width:1000px;
    margin:auto;
    background:#f8fbff;
    border:1px solid #dbe8ff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.tab-content.active{

    display:block;

}

.tab-content h3{

    color:#123a74;
    font-size:24px;
    margin:25px 0 12px;
    font-weight:700;

}

.tab-content p{

    color:#555;
    line-height:1.9;
    font-size:16px;
    margin-bottom:18px;

}

.tab-content ul{

    padding-left:22px;
    margin-bottom:20px;

}

.tab-content ul li{

    margin-bottom:12px;
    color:#555;
    line-height:1.8;

}

/*=========================
      Mobile
=========================*/

@media (max-width:768px){

.nps-tabs{

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;

}

.tab-btn{

    width:auto;          /* Remove full width */
    min-width:140px;
    padding:12px 18px;
    font-size:14px;
    border-radius:12px;

}

.tab-content{

    padding:22px;

}

.tab-content h3{

    font-size:20px;

}

.tab-content p,
.tab-content li{

    font-size:14px;
    line-height:1.8;

}

}
/*====================================
      WHO CAN INVEST IN NPS
====================================*/

.nps-investors{

    padding:90px 0;
    background:#ffffff;

}

.nps-investors .section-heading{

    text-align:center;
    margin-bottom:45px;

}

.nps-investors .section-heading h2{

    font-size:42px;
    font-weight:700;
    color:#123a74;

}

.nps-invest-box{

    max-width:950px;
    margin:0 auto;
    background:#f8fbff;
    border:1px solid #dbe8ff;
    border-radius:20px;
    padding:40px 45px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.nps-invest-box ul{

    margin:0;
    padding-left:25px;

}

.nps-invest-box li{

    font-size:17px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;

}

.nps-invest-box li:last-child{

    margin-bottom:0;

}

.nps-invest-box li::marker{

    color:#0d6efd;

}

/*=========================
        Tablet
=========================*/

@media(max-width:992px){

.nps-invest-box{

    padding:35px;

}

.nps-investors .section-heading h2{

    font-size:36px;

}

}

/*=========================
        Mobile
=========================*/

@media(max-width:768px){

.nps-investors{

    padding:70px 0;

}

.nps-investors .section-heading h2{

    font-size:28px;

}

.nps-invest-box{

    padding:25px 20px;
    border-radius:16px;

}

.nps-invest-box li{

    font-size:15px;
    line-height:1.8;

}

}