
.hero {
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
}
.about-page {
    background: #08111f;
    padding: 140px 0 80px;
}

.about-page .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-left {
    width: 55%;
}

.about-left h5 {
    color: #25a7ff;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-left h1 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 25px;
}

.about-left p {
    color: #cfcfcf;
    line-height: 32px;
    margin-bottom: 25px;
}

.about-left ul {
    list-style: none;
}

.about-left ul li {
    color: #fff;
    margin-bottom: 15px;
}

.about-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: #25a7ff;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
}

.about-right {
    width: 45%;
}

.about-right img {
    width: 100%;
}

.mission {
    background: #0b1628;
    padding: 80px 0;
}

.mission .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mission-box {
    background: #111c2e;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
}

.mission-box h2 {
    color: #25a7ff;
    margin-bottom: 15px;
}

.mission-box p {
    color: #ccc;
    line-height: 28px;
}

/* ===========================
   About Responsive
=========================== */

@media (max-width: 992px) {

    .about-page .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-left h5 {
        text-align: center;
        font-size: 16px;
    }

    .about-left h1 {
        font-size: 42px;
        line-height: 55px;
        text-align: center;
    }

    .about-left p {
        text-align: center;
    }

    .about-left ul {
        padding: 0;
    }

    .about-left ul li {
        text-align: center;
    }

    .about-btn {
        display: inline-block;
    }

    .about-right img {
        width: 100%;
        max-width: 500px;
        display: block;
        margin: auto;
    }

    .mission .container {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width:768px) {

    .about-page {
        padding: 130px 0 60px;
    }

    .about-left h5 {
        text-align: center;
        letter-spacing: 2px;
    }

    .about-left h1 {
        font-size: 34px;
        line-height: 46px;
        text-align: center;
    }

    .about-left p {
        font-size: 16px;
        line-height: 28px;
        text-align: center;
    }

    .about-left ul li {
        font-size: 16px;
        margin-bottom: 12px;
        text-align: center;
    }

    .about-btn {
        margin: auto;
        display: inline-block;
    }

    .mission .container {
        grid-template-columns: 1fr;
    }

    .mission-box {
        padding: 25px;
    }

}


@media (max-width:480px) {

    .about-left h5 {
        font-size: 14px;
        text-align: center;
    }

    .about-left h1 {
        font-size: 28px;
        line-height: 40px;
        text-align: center;
    }

    .about-left p {
        font-size: 15px;
        line-height: 26px;
        text-align: center;
    }

    .about-left ul li {
        font-size: 15px;
        text-align: center;
    }

    .about-btn {
        width: 220px;
        text-align: center;
    }

    .about-right img {
        width: 100%;
    }

}