
/* SECTION */
.ppa-why-section{
    background:
    linear-gradient(180deg,#ffffff 0%,#f6f7ff 100%);
    position:relative;
    overflow:hidden;
}

/* TAG */
.ppa-why-tag{
    background:#4228c915;
    color:#4228c9;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

/* TITLE */
.ppa-why-title{
    font-size:40px;
    font-weight:800;
    line-height:1.1;
    color:#111827;
    font-family: 'Montserrat', sans-serif;
}

.ppa-why-title span{
    color:#4228c9;
}

/* TEXT */
.ppa-why-text{
    font-size:17px;
    line-height:1.9;
    color:#64748b;
    font-family: sans-serif;
}

/* CARD */
.ppa-why-card{
    position:relative;
    background:#fff;
    border-radius:30px;
    padding:40px 35px;
    overflow:hidden;
    height:100%;
    transition:0.5s ease;
    border:1px solid rgba(66,40,201,0.08);
    box-shadow:0 15px 40px rgba(66,40,201,0.06);
}

.ppa-why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 70px rgba(66,40,201,0.15);
}

/* ACTIVE CARD */
.active-card{
    background:
    linear-gradient(135deg,#4228c9,#6d55ff);
}

.active-card h4,
.active-card p,
.active-card .ppa-card-number{
    color:#fff;
}

.active-card .ppa-why-icon{
    background:rgba(255,255,255,0.15);
}

.active-card .ppa-why-icon i{
    color:#fff;
}

/* ICON */
.ppa-why-icon{
    width:80px;
    height:80px;
    border-radius:24px;
    background:#4228c912;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
    transition:0.4s ease;
}

.ppa-why-icon i{
    color:#4228c9;
    font-size:32px;
}

/* CARD TITLE */
.ppa-why-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
    color:#111827;
    font-family: 'Montserrat', sans-serif;
}

/* CARD TEXT */
.ppa-why-card p{
    color:#64748b;
    line-height:1.9;
    font-size:15px;
    margin-bottom:0;
    font-family: sans-serif;
}

/* NUMBER */
.ppa-card-number{
    position:absolute;
    top:20px;
    right:25px;
    font-size:70px;
    font-weight:800;
    color:#4228c90d;
    line-height:1;
}

/* HOVER EFFECT */
.ppa-why-card::before{
    content:"";
    position:absolute;
    width:0;
    height:0;
    background:#4228c9;
    border-radius:50%;
    top:-50px;
    right:-50px;
    opacity:0.04;
    transition:0.6s ease;
}

.ppa-why-card:hover::before{
    width:220px;
    height:220px;
}

/* RESPONSIVE */
@media(max-width:991px){

    .ppa-why-title{
        font-size:42px;
    }

}

@media(max-width:767px){

    .ppa-why-title{
        font-size:34px;
    }

    .ppa-why-card{
        padding:30px 25px;
    }

    .ppa-card-number{
        font-size:50px;
    }

}

