/* =========================
   HERO SECTION
========================= */

.hero{

    min-height: 100vh;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding:
    140px 10% 100px;

    gap: 80px;

    position: relative;
}

.hero-content{

    flex: 1;
}

.hero-subtitle{

    color: var(--primary-color);

    font-size: 18px;

    font-weight: 500;

    margin-bottom: 20px;
}

.hero-content h1{

    font-size: 72px;

    line-height: 1.1;

    margin-bottom: 20px;

    color: var(--text-color);

    white-space: nowrap;
}

.hero-content h1 span{

    color: var(--primary-color);
}

.typing-text{

    font-size: 32px;

    color: var(--secondary-color);

    margin-bottom: 20px;
}

.hero-description{

    max-width: 600px;

    font-size: 18px;

    line-height: 1.8;

    color: var(--text-secondary);

    margin-bottom: 40px;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons{

    display: flex;

    gap: 20px;

    margin-bottom: 40px;
}

.btn{

    padding: 14px 32px;

    border-radius: 14px;

    font-weight: 600;

    position: relative;

    overflow: hidden;

    transition: 0.4s ease;
}

/* PRIMARY */

.primary-btn{

    background:
    linear-gradient(
        to right,
        var(--primary-color),
        var(--secondary-color)
    );

    color: white;

    box-shadow:
    0 0 20px var(--glow-color);
}

/* SECONDARY */

.secondary-btn{

    border:
    2px solid var(--primary-color);

    color: var(--text-color);

    background:
    rgba(255,255,255,0.03);
}

/* BUTTON HOVER */

.btn:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 0 25px var(--glow-color);
}

/* =========================
   SOCIAL ICONS
========================= */

.social-icons{

    display: flex;

    gap: 20px;
}

.social-icons a{

    width: 50px;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    border:
    1px solid var(--border-color);

    background:
    var(--card-bg);

    backdrop-filter: blur(10px);

    font-size: 20px;

    transition: 0.4s ease;
}

.social-icons a:hover{

    color: var(--primary-color);

    background:
    rgba(103,232,249,0.08);

    transform:
    translateY(-8px) scale(1.1);

    box-shadow:
    0 0 15px var(--glow-color);
}

/* =========================
   HERO IMAGE
========================= */

.hero-image{

    flex: 1;

    display: flex;

    justify-content: center;
}

.image-wrapper{

    width: 400px;
    height: 400px;

    border-radius: 50%;

    overflow: hidden;

    position: relative;

    border:
    4px solid var(--primary-color);

    box-shadow:
    0 0 20px var(--glow-color),
    0 0 60px rgba(103,232,249,0.2);

    animation:
    floatImage 4s ease-in-out infinite;

    transition: 0.4s ease;
}

.image-wrapper::before{

    content: '';

    position: absolute;

    inset: -10px;

    border-radius: 50%;

    background:
    linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color)
    );

    z-index: -1;

    filter: blur(20px);

    opacity: 0.6;
}

.image-wrapper img{

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.image-wrapper:hover{

    transform: scale(1.03);

    box-shadow:
    0 0 30px var(--glow-color),
    0 0 80px rgba(103,232,249,0.25);
}

/* FLOAT */

@keyframes floatImage{

    0%{

        transform:
        translateY(0px);
    }

    50%{

        transform:
        translateY(-15px);
    }

    100%{

        transform:
        translateY(0px);
    }
}

/* =========================
   ABOUT SECTION
========================= */

.about-section{

    padding: 120px 10%;
}

/* SECTION TITLE */

.section-title{

    text-align: center;

    margin-bottom: 80px;
}

.section-title h2{

    font-size: 52px;

    margin-bottom: 20px;

    background:
    linear-gradient(
        to right,
        var(--primary-color),
        var(--secondary-color)
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.section-title p{

    color: var(--text-secondary);

    font-size: 18px;
}

/* ABOUT CONTAINER */

.about-container{

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;
}

/* IMAGE */

.about-image{

    flex: 1;

    display: flex;

    justify-content: center;
}

.about-image-wrapper{

    width: 350px;
    height: 350px;

    border-radius: 24px;

    overflow: hidden;

    border:
    2px solid rgba(103,232,249,0.3);

    box-shadow:
    0 0 20px rgba(103,232,249,0.2);

    transition: 0.4s ease;
}

.about-image-wrapper img{

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-image-wrapper:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 0 30px var(--glow-color);
}

/* CONTENT */

.about-content{

    flex: 1;
}

.about-content h3{

    font-size: 38px;

    margin-bottom: 25px;

    color: var(--primary-color);
}

.about-content p{

    font-size: 18px;

    line-height: 1.9;

    color: var(--text-secondary);

    margin-bottom: 25px;
}

/* =========================
   MISSION BOX
========================= */

.mission-box{

    background:
    var(--card-bg);

    border:
    1px solid var(--border-color);

    border-radius: 20px;

    padding: 30px;

    backdrop-filter: blur(10px);

    transition: 0.4s ease;
}

.mission-box:hover{

    transform:
    translateY(-8px);

    border-color:
    var(--primary-color);

    box-shadow:
    0 0 20px var(--glow-color);
}

.mission-box h4{

    font-size: 24px;

    margin-bottom: 20px;

    color: var(--primary-color);
}

.mission-box ul{

    display: flex;

    flex-direction: column;

    gap: 15px;
}

.mission-box ul li{

    position: relative;

    padding-left: 28px;

    color: var(--text-secondary);
}

.mission-box ul li::before{

    content: '▹';

    position: absolute;

    left: 0;

    color: var(--primary-color);
}

/* =========================
   STATS SECTION
========================= */

.stats-section{

    padding: 120px 10%;
}

.stats-grid{

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(250px,1fr));

    gap: 30px;

    margin-top: 70px;
}

/* CARD */

.stat-card{

    background:
    var(--card-bg);

    border:
    1px solid var(--border-color);

    border-radius: 24px;

    padding: 50px 30px;

    text-align: center;

    backdrop-filter: blur(12px);

    transition: 0.4s ease;
}

.stat-card:hover{

    transform:
    translateY(-12px)
    scale(1.02);

    border-color:
    var(--primary-color);

    box-shadow:
    0 0 30px var(--glow-color);
}

.stat-card h3{

    font-size: 52px;

    margin-bottom: 15px;

    color: var(--primary-color);
}

.stat-card p{

    color: var(--text-secondary);

    font-size: 18px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .hero{

        flex-direction: column;

        text-align: center;
    }

    .hero-content h1{

        font-size: 54px;

        white-space: normal;
    }

    .typing-text{

        font-size: 26px;
    }

    .hero-description{

        margin: auto;

        margin-bottom: 40px;
    }

    .hero-buttons{

        justify-content: center;
    }

    .social-icons{

        justify-content: center;
    }

    .about-container{

        flex-direction: column;
    }

    .about-content{

        text-align: center;
    }

    .mission-box{

        text-align: left;
    }
}

/* MOBILE */

@media(max-width:768px){

    .hero{

        padding:
        120px 8% 80px;
    }

    .hero-content h1{

        font-size: 42px;
    }

    .typing-text{

        font-size: 22px;
    }

    .hero-description{

        font-size: 16px;
    }

    .image-wrapper{

        width: 300px;
        height: 300px;
    }

    .section-title h2{

        font-size: 42px;
    }

    .about-content h3{

        font-size: 30px;
    }

    .stat-card{

        padding: 40px 20px;
    }

    .stat-card h3{

        font-size: 42px;
    }
}