@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0b0b0b;
    color:white;
}

/* HERO */

.about-hero{

    width:100%;

    background:radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.08) 0%, #09090b 100%);

    display:flex;

    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 20px 40px;
}

.about-content{

    max-width:850px;
}

.about-content h1{

    font-size:75px;

    margin-bottom:25px;

    font-weight:800;
}

.about-content p{

    font-size:20px;

    color:#ccc;

    line-height:36px;
}

/* ABOUT SECTION */

.about-section{

    width:90%;

    max-width:1400px;
    margin:80px auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

/* IMAGE */

.about-image img{

    width:100%;

    border-radius:30px;

    box-shadow:
    0 20px 40px rgba(0,255,153,0.15);
}

/* TEXT */

.about-text h2{

    font-size:55px;

    margin-bottom:25px;
}

.about-text p{

    color:#bdbdbd;

    line-height:34px;

    margin-bottom:25px;

    font-size:17px;
}

/* FEATURES */

.about-features{

    display:flex;

    gap:25px;

    margin-top:40px;

    flex-wrap:wrap;
}

.feature-box{

    flex:1;

    min-width:180px;

    background:#151515;

    padding:35px 20px;

    border-radius:25px;

    text-align:center;

    border:1px solid #222;

    transition:0.3s;
}

.feature-box:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 30px rgba(0,255,153,0.15);
}

.feature-box i{

    font-size:40px;

    color:#00ff99;

    margin-bottom:18px;
}

.feature-box h3{

    font-size:20px;
}

/* STATS */

.stats-section{

    width:90%;

    margin:100px auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;
}

.stat-box{

    background:#151515;

    padding:50px 30px;

    border-radius:25px;

    text-align:center;

    border:1px solid #222;
}

.stat-box h2{

    font-size:55px;

    color:#00ff99;

    margin-bottom:15px;
}

.stat-box p{

    color:#bbb;

    font-size:18px;
}

/* FOOTER */

.footer{

    background:#111;

    padding:60px 20px;

    text-align:center;

    margin-top:100px;

    border-top:1px solid #222;
}

.footer h2{

    color:#00ff99;

    margin-bottom:15px;

    font-size:34px;
}

.footer p{

    color:#aaa;
}

/* MOBILE */

@media(max-width:992px){

    .about-section{

        grid-template-columns:1fr;
    }

    .about-content h1{

        font-size:55px;
    }

    .about-text h2{

        font-size:42px;
    }
}

@media(max-width:768px){

    .header{

        padding:0 25px;
    }

    .logo{

        font-size:22px;
    }

    .about-content h1{

        font-size:40px;
    }

    .about-content p{

        font-size:16px;

        line-height:30px;
    }

    .about-text h2{

        font-size:34px;
    }

    .stats-section{

        gap:20px;
    }
}
.back-btn{

    position:absolute;

    left:20px;

    width:42px;
    height:42px;

    border:none;

    border-radius:50%;

    background:#7c3aed;

    color:white;

    font-size:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    box-shadow:
    0 6px 18px rgba(124,58,237,.25);
}
.back-btn:hover{
    background:#334155;
    transform:scale(1.05);
}
/* ==================================
   PREMIUM WHITE ABOUT PAGE THEME
================================== */

/* BODY */
body{
    background:#ffffff !important;
    color:#111111 !important;
}

/* HEADER */
.header{
    background:#ffffff !important;
    border-bottom:1px solid #e5e7eb !important;

    box-shadow:
    0 2px 15px rgba(0,0,0,0.05);
}

/* LOGO */
.logo{
    color:#000000 !important;

    font-weight:900;

    text-shadow:
    0 1px 0 rgba(0,0,0,.05),
    0 2px 8px rgba(0,0,0,.05);
}

/* HOME BUTTON */
.home-btn{

    background:#7c3aed !important;

    color:#ffffff !important;

    border:none;

    box-shadow:
    0 8px 20px rgba(124,58,237,.20);
}

.home-btn:hover{

    background:#6d28d9 !important;

    box-shadow:
    0 12px 25px rgba(124,58,237,.30);
}

/* HERO SECTION */
.about-hero{

    width:100%;

    min-height:85vh; /* use min-height instead */

    background:
    linear-gradient(
        135deg,
        #1f2937,
        #374151,
        #4b5563
    );

    display:flex;

    justify-content:center;

    align-items:flex-start;

    padding-top:120px;

    padding-bottom:80px;

    padding-left:20px;
    padding-right:20px;
}

.about-content{

    width:100%;

    max-width:820px;

    background:
    rgba(17,24,39,.92);

    padding:60px 45px;

    border-radius:40px;

    margin-top:-10px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.25);
}

.about-content h1{
    color:#ffffff;
}

.about-content p{
    color:#e5e7eb;
}

/* ABOUT IMAGE */

.about-image img{

    box-shadow:
    0 20px 40px rgba(124,58,237,.15);
}

/* ABOUT TEXT */

.about-text h2{
    color:#111111;
}

.about-text p{
    color:#555555;
}

/* FEATURES */

.feature-box{

    background:#ffffff !important;

    border:1px solid #e5e7eb !important;

    box-shadow:
    0 8px 20px rgba(0,0,0,.06);
}

.feature-box:hover{

    box-shadow:
    0 15px 30px rgba(124,58,237,.12);
}

.feature-box i{

    color:#7c3aed !important;
}

.feature-box h3{
    color:#111111;
}

/* STATS SECTION */

.stat-box{

    background:
    linear-gradient(
        135deg,
        #f8f5ff,
        #f3efff
    ) !important;

    border:1px solid #e9ddff;

    box-shadow:
    0 10px 25px rgba(124,58,237,.08);
}

.stat-box h2{

    color:#7c3aed !important;
}

.stat-box p{

    color:#555555;
}

/* FOOTER */

.footer{

    background:#ffffff !important;

    border-top:1px solid #e5e7eb !important;
}

.footer h2{

    color:#8B5E2B !important;
}

.footer p{

    color:#555555 !important;
}

/* TOP BAR */

.top-nav{

    background:#ffffff !important;

    border-bottom:1px solid #e5e7eb;
}

/* BACK BUTTON */

.back-btn{

    background:#7c3aed !important;

    color:#ffffff !important;

    box-shadow:
    0 8px 20px rgba(124,58,237,.20);
}

.back-btn:hover{

    background:#6d28d9 !important;
}

/* PAGE TITLE */

.page-title{

    color:#111111;
}