/*=========================================
        ABOUT PREMIUM
=========================================*/


.about{

    padding:120px 8%;

    background:
        radial-gradient(circle at 20% 20%, rgba(0,140,255,.18), transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(0,198,255,.12), transparent 30%),
        linear-gradient(180deg,#050914,#081325 50%,#050914);
    position:relative;

    overflow:hidden;

}



.about-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}



/* IMAGE */

.about-image{

    width:45%;

    position:relative;

    display:flex;

    justify-content:center;

}



.about-image img{

    width:100%;

    max-width:450px;

    border-radius:30px;

    position:relative;

    z-index:2;

    box-shadow:

    0 25px 60px rgba(0,0,0,.15);

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

}



.about-glow{

    position:absolute;

    width:300px;

    height:300px;

    background:linear-gradient(135deg,#0066ff,#00c6ff); box-shadow:0 25px 60px rgba(0,140,255,.35);

    filter:blur(120px);

    opacity:.25;

}



@keyframes aboutFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

}



/* CONTENU */


.about-content{

    width:55%;

}



.about-subtitle{

    color:#0066ff;

    font-weight:700;

    letter-spacing:2px;

    font-size:14px;

}



.about-content h2{

    font-size:45px;

    color:#ffffff;

    margin:20px 0;

    line-height:1.2;

}



.about-content h2 span{

    color:#0066ff;

}



.about-content p{

    color:#b8c5d8;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}



/* FEATURES */


.about-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:40px;

}



.feature{

    padding:18px;

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

    border-radius:15px;

    color:#ffffff;

    font-weight:600;

    transition:.4s;

}



.feature i{

    color:#0066ff;

    margin-right:10px;

}



.feature:hover{

    transform:translateY(-8px);

    background:linear-gradient(135deg,#0066ff,#00c6ff); box-shadow:0 25px 60px rgba(0,140,255,.35);

    color:white;

}



.feature:hover i{

    color:white;

}



/* BUTTON */


.about .btn{

    display:inline-block;

    padding:16px 35px;

    background:

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

    color:white;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    box-shadow:

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

    transition:.4s;

}


.about .btn:hover{

    transform:translateY(-6px);

}



/* RESPONSIVE */


@media(max-width:900px){


.about-container{

    flex-direction:column;

    text-align:center;

}


.about-image,
.about-content{

    width:100%;

}


.about-features{

    grid-template-columns:1fr;

}


.about-content h2{

    font-size:35px;

}

}

.about::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, transparent 0%, rgba(255,255,255,.03) 50%, transparent 100%);
    animation:aboutShine 8s linear infinite;
    pointer-events:none;
}

@keyframes aboutShine{
    from{transform:translateX(-100%);}
    to{transform:translateX(100%);}
}
