/*=========================================
        WHY SECTION PREMIUM
=========================================*/


.why{

    padding:120px 8%;

    background:
        radial-gradient(circle at 80% 20%, rgba(0,198,255,.16), transparent 35%),
        radial-gradient(circle at 10% 80%, rgba(0,140,255,.12), transparent 30%),
        linear-gradient(180deg,#06101f,#081325 55%,#050914);

    overflow:hidden;

}



.why-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}



/* IMAGE */

.why-image{

    width:45%;

    position:relative;

    display:flex;

    justify-content:center;

}



.why-image img{

    width:100%;

    max-width:450px;

    position:relative;

    z-index:2;

    animation:whyFloat 5s infinite ease-in-out;

}



.why-glow{

    position:absolute;

    width:350px;

    height:350px;

    background:#0066ff;

    filter:blur(130px);

    opacity:.25;

}



@keyframes whyFloat{

    0%,100%{

        transform:translateY(0);

    }


    50%{

        transform:translateY(-25px);

    }

}




/* CONTENT */


.why-content{

    width:55%;

}



.why-subtitle{

    color:#0066ff;

    font-weight:700;

    letter-spacing:2px;

    font-size:14px;

}



.why-content h2{

    font-size:45px;

    color:#ffffff;

    line-height:1.2;

    margin:20px 0;

}



.why-content h2 span{

    color:#0066ff;

}



.why-content>p{

    color:#b8c5d8;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}



/* ITEMS */


.why-item{

    display:flex;

    gap:20px;

    background:rgba(255,255,255,.05); border:1px solid rgba(0,140,255,.18); backdrop-filter:blur(18px);

    padding:20px;

    border-radius:20px;

    margin-bottom:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

    transition:.4s;

}



.why-item:hover{

    transform:translateX(12px) scale(1.02);

    box-shadow:

    0 28px 70px rgba(0,140,255,.35);

}



.check{

    min-width:55px;

    height:55px;

    border-radius:50%;

    background:

    linear-gradient(
        135deg,
        #0066ff,
        #00c6ff
    );

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}



.why-item h3{

    margin-bottom:8px;

    color:#ffffff;

    font-size:20px;

}



.why-item p{

    color:#b8c5d8;

    line-height:1.6;

}




/* BUTTON */


.why .btn{

    display:inline-block;

    margin-top:20px;

    padding:16px 35px;

    border-radius:50px;

    background:

    linear-gradient(
        135deg,
        #0066ff,
        #00c6ff
    );

    color:white;

    text-decoration:none;

    font-weight:700;

    box-shadow:

    0 15px 35px rgba(0,102,255,.35);

    transition:.4s;

}



.why .btn:hover{

    transform:translateY(-6px);

}



/* MOBILE */


@media(max-width:900px){


.why-container{

    flex-direction:column;

    text-align:center;

}


.why-image,
.why-content{

    width:100%;

}



.why-content h2{

    font-size:35px;

}


.why-item{

    text-align:left;

}


}