/*=====================================
ABOUT HERO
======================================*/

.about-hero{

    position:relative;

    min-height:85vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding:120px 0 90px;

}

.about-hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.about-hero-content{

    position:relative;

    z-index:2;

}

.about-hero-content h1{

    max-width:700px;

    margin:22px 0 28px;

}

.about-hero-content p{

    max-width:620px;

    margin-bottom:38px;

    line-height:1.8;

}
.about-hero-visual{

    position:relative;

    width:560px;

    height:560px;

    margin:auto;

}

.about-core{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:180px;

    height:180px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:14px;

    text-align:center;

    border-radius:50%;

    background:

        linear-gradient(

            135deg,

            var(--primary),

            var(--secondary)

        );

    box-shadow:

        0 0 60px rgba(0,212,255,.3);

    z-index:5;

}

.about-core i{

    font-size:44px;

}

.about-core span{

    font-weight:700;

    line-height:1.3;

}
.about-orbit{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    border:1px solid rgba(255,255,255,.12);

    border-radius:50%;

}

.about-orbit-one{

    width:350px;

    height:350px;

}

.about-orbit-two{

    width:500px;

    height:500px;

}
.about-floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 20px;

    border-radius:16px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.1);

    backdrop-filter:blur(18px);

    z-index:4;

}

.about-floating-card i{

    color:var(--secondary);

}

.card-one{

    top:70px;

    left:30px;

}

.card-two{

    top:230px;

    right:0;

}

.card-three{

    bottom:70px;

    left:80px;

}
/*=====================================
ABOUT EXPERTISE
======================================*/

.expertise-grid{

    display:grid;

    grid-template-columns:repeat(4, 1fr);

    gap:24px;

    margin-top:70px;

}

.expertise-card{

    position:relative;

    min-height:380px;

    padding:32px;

    display:flex;

    flex-direction:column;

    border-radius:26px;

    overflow:hidden;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.09);

    backdrop-filter:blur(18px);

    transition:.4s ease;

}

.expertise-card:hover{

    transform:translateY(-10px);

    border-color:rgba(0,212,255,.4);

    box-shadow:

        0 25px 60px rgba(0,0,0,.2);

}
.expertise-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    top:-100px;

    right:-100px;

    border-radius:50%;

    background:radial-gradient(

        circle,

        rgba(0,212,255,.18),

        transparent 70%

    );

    pointer-events:none;

}
.expertise-icon{

    width:64px;

    height:64px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.1);

    margin-bottom:28px;

}

.expertise-icon i{

    font-size:26px;

}
.expertise-number{

    position:absolute;

    top:34px;

    right:32px;

    font-size:13px;

    letter-spacing:2px;

    color:var(--secondary);

}

.expertise-card h3{

    margin-bottom:16px;

}

.expertise-card p{

    line-height:1.7;

    color:var(--text-light);

}
.expertise-tags{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

    margin-top:auto;

    padding-top:28px;

}

.expertise-tags span{

    padding:7px 12px;

    border-radius:20px;

    font-size:12px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

}
/*=====================================
ABOUT APPROACH
======================================*/

.approach-timeline{

    position:relative;

    max-width:1000px;

    margin:80px auto 0;

}

.approach-line{

    position:absolute;

    top:0;

    bottom:0;

    left:50%;

    width:2px;

    transform:translateX(-50%);

    background:linear-gradient(

        to bottom,

        transparent,

        rgba(0,212,255,.45),

        transparent

    );

}

.approach-step{

    position:relative;

    display:grid;

    grid-template-columns:1fr 100px 1fr;

    align-items:center;

    min-height:180px;

    margin-bottom:45px;

}

.approach-step:last-child{

    margin-bottom:0;

}

.approach-number{

    grid-column:2;

    grid-row:1;

    width:70px;

    height:70px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:18px;

    font-weight:700;

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--secondary)

    );

    box-shadow:

        0 0 35px rgba(0,212,255,.25);

    z-index:2;

}

.approach-content{

    padding:28px 32px;

    border-radius:22px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.35s ease;

}

.approach-content:hover{

    transform:translateY(-6px);

    border-color:rgba(0,212,255,.35);

}

.approach-content span{

    display:block;

    margin-bottom:8px;

    font-size:13px;

    letter-spacing:1.5px;

    color:var(--secondary);

    text-transform:uppercase;

}

.approach-content h3{

    margin-bottom:12px;

}

.approach-content p{

    margin:0;

    line-height:1.7;

    color:var(--text-light);

}
.approach-step:nth-child(odd) .approach-content{

    grid-column:1;

    grid-row:1;

}

.approach-step:nth-child(even) .approach-content{

    grid-column:3;

    grid-row:1;

}
/*=====================================
ABOUT CTA
======================================*/

.about-cta-section{

    padding-top:40px;

}

.about-cta-box{

    position:relative;

    overflow:hidden;

    text-align:center;

    padding:100px 70px;

    border-radius:32px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.09);

    backdrop-filter:blur(24px);

}

.about-cta-glow{

    position:absolute;

    width:600px;

    height:600px;

    top:-320px;

    left:50%;

    transform:translateX(-50%);

    border-radius:50%;

    background:radial-gradient(

        circle,

        rgba(0,212,255,.2),

        transparent 70%

    );

    pointer-events:none;

}

.about-cta-box h2{

    position:relative;

    z-index:1;

    max-width:800px;

    margin:24px auto;

}

.about-cta-box p{

    position:relative;

    z-index:1;

    max-width:700px;

    margin:0 auto 42px;

    font-size:18px;

    line-height:1.8;

    color:var(--text-light);

}

.about-cta-box .hero-buttons{

    position:relative;

    z-index:1;

    justify-content:center;

}