/* ==========================
   ABOUT US SECTION
========================== */

.about-section{
    padding:120px 0;
    background:#050505;
    position:relative;
    overflow:hidden;
}

.about-section::before{
    content:'';
    position:absolute;
    top:-200px;
    left:-150px;
    width:450px;
    height:450px;
    border-radius:50%;
    background:#1f2937;
    filter:blur(150px);
    opacity:.25;
}

.about-section::after{
    content:'';
    position:absolute;
    bottom:-200px;
    right:-150px;
    width:450px;
    height:450px;
    border-radius:50%;
    background:#374151;
    filter:blur(150px);
    opacity:.20;
}

.about-section .container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

/* CONTENT */

.section-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#d1d5db;
    font-size:14px;
    margin-bottom:20px;
}

.about-content h2{
    color:#fff;
    font-size:58px;
    line-height:1.15;
    font-weight:800;
    margin-bottom:25px;
}

.about-content h2 span{
    display:block;
    color:#9ca3af;
}

.about-content p{
    color:#9ca3af;
    line-height:1.9;
    margin-bottom:20px;
    font-size:16px;
}

/* FEATURES */

.about-features{
    margin:35px 0;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
}

.feature-item i{
    width:35px;
    height:35px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#111;

    color:#fff;

    font-size:14px;
}

.feature-item span{
    color:#d1d5db;
    font-size:15px;
}

/* BUTTON */

.about-btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:12px;
    background:#fff;
    color:#000;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.about-btn:hover{
    transform:translateY(-3px);
}

/* STATS */

.about-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.stat-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:30px;
    backdrop-filter:blur(20px);
    transition:.4s;
}

.stat-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.05);
}

.stat-icon{
    width:70px;
    height:70px;

    border-radius:18px;

    background:#111;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:28px;

    margin-bottom:20px;
}

.stat-card h3{
    color:#fff;
    font-size:34px;
    margin-bottom:10px;
}

.stat-card p{
    color:#9ca3af;
}

/* TABLET */

@media(max-width:992px){

    .about-wrapper{
        grid-template-columns:1fr;
    }

    .about-content{
        text-align:center;
    }

    .about-features{
        max-width:500px;
        margin:35px auto;
    }

    .about-content h2{
        font-size:44px;
    }

}

@media(max-width:768px){

    .about-section{
        padding:80px 0;
    }

    .about-content h2{
        font-size:34px;
    }

    .about-stats{
        grid-template-columns:1fr;
    }

}

@media(max-width:480px){

    .about-content h2{
        font-size:28px;
    }

    .stat-card{
        padding:25px;
    }

}