/*=========================================
WHY PINAKA
=========================================*/

.why-pinaka{

    padding:120px 0;

    /*background:#081426;*/

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#FFC928;

    font-weight:700;

    letter-spacing:2px;

}

.section-title h2{

    color:white;

    font-size:48px;

    margin:20px 0;

}

.section-title h2 span{

    color:#FFC928;

}

.section-title p{

    color:#c9d3df;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    backdrop-filter:blur(10px);

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#FFC928;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

}

.icon{

    width:90px;

    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    background:linear-gradient(135deg,#2F80ED,#6C63FF);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:white;

}

.why-card h3{

    color:white;

    margin-bottom:18px;

    font-size:24px;

}

.why-card p{

    color:#c9d3df;

    line-height:1.8;

}

/* Responsive */

@media(max-width:1100px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-pinaka{

padding:80px 0;

}

.section-title h2{

font-size:36px;

}

.why-grid{

grid-template-columns:1fr;

}

}