/*=========================================
        ABOUT HERO
=========================================*/

.about-hero{

    position:relative;

    min-height:100vh;

    background:#0B0B0B;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding-top:120px;

    border-bottom-left-radius: 70px;
     border-bottom-right-radius: 70px;

}

.about-hero-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    position:relative;

    z-index:2;

}

/* Grid */

.hero-grid{

    position:absolute;

    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);

    background-size:60px 60px;

    opacity:.25;

}

/* Glow */

.hero-glow{

    position:absolute;

    width:550px;

    height:550px;

    border-radius:50%;

    filter:blur(130px);

    opacity:.25;

}

.glow-left{

    background:#990011;

    left:-180px;

    top:-150px;

}

.glow-right{

    background:#2563EB;

    right:-180px;

    bottom:-150px;

}

/* Left */

.about-hero-content h1{

    font-size:72px;

    color:#fff;

    line-height:1.05;

    margin:25px 0;

}

.about-hero-content h1 span{

    background:linear-gradient(135deg,#2563EB,#990011);

     -webkit-background-clip:text; 

    -webkit-text-fill-color:transparent;

}

.about-hero-content p{

    color:rgba(255,255,255,.75);

    font-size:18px;

    line-height:1.9;

    margin-bottom:40px;

}

/* Right */

.about-hero-image{

    position:relative;

}

.about-hero-image img{

    width:100%;

    border-radius:28px;

    box-shadow:0 35px 80px rgba(0,0,0,.45);

}

/* Floating Cards */

.hero-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:16px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    padding:18px 22px;

    border-radius:20px;

    color:#fff;

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

}

.hero-card i{

    width:55px;

    height:55px;

    border-radius:16px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#990011,#2563EB);

}

.card-one{

    top:40px;

    left:-40px;

}

.card-two{

    right:-30px;

    top:180px;

}

.card-three{

    bottom:40px;

    left:30px;

}

@keyframes floatCard{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

}
/* 
/*=========================================
            VISION
=========================================*/
/* 
.vision{

    padding:140px 0;

    background:#fff;

}

.vision-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;
    

}
.vision-header h2{

    font-size:35px;

    color:#080808;

    line-height:1.2;

    margin-top:20px;

}
.vision-header p{

    font-size:14px;

    line-height:1.9;

    color:#666;

    margin-top:20px;

}

.vision-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.vision-card{

    background:#fff;

    border-radius:28px;

    padding:50px;

    border:1px solid #ececec;

    box-shadow:0 20px 60px rgba(0,0,0,.05);

    transition:.4s;

}

.vision-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 80px rgba(0,0,0,.10);

}

.vision-icon{

    width:80px;

    height:80px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#990011,#2563EB);

    color:#fff;

    font-size:32px;

    margin-bottom:30px;

}

.vision-card h3{

    font-size:30px;

    margin-bottom:18px;

    color:#111;

}

.vision-card p{

    font-size:17px;

    line-height:1.9;

    color:#666;

}
.vision-card{

    opacity:0;

    transform:translateY(60px);

}

.vision-card.show{

    opacity:1;

    transform:translateY(0);

    transition:all .8s ease;

} */ 