
.about-hero {
    height: 85vh;
    background: url("../images/about-bg.png") center bottom/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;

        width: 90%;
    margin: 20px auto;
    border-radius: 30px;
}

.about-inner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-inner p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.4;
}

.primary-btn {
    background: #1db4ff;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    color: white;
}
.excellence {
    padding: 60px 60px;
}

.excellence h2 {
    font-size: 26px;
}

.sub-text {
    font-size: 15px;
    color: #bbb;
    margin-top: 8px;
    margin-bottom: 35px;
}

.excellence-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.excellence-box {
    width: 32%;
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #1d3c40;
}

.excellence-box h3 {
    margin-top: 8px;
    margin-bottom: 10px;
}

.excellence-images {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.excellence-images img {
    width: 33%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
}

.icon-big {
    font-size: 38px;
    color: #25befc;
}


.journey {
    padding: 60px 60px;
}

.journey-row {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.journey-card {
    width: 23%;
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #1d3c40;
    text-align: left;
}

.journey-card h3 {
    margin: 10px 0;
}
.simple-footer {
    width: 100%;
    padding: 25px 60px;
    border-top: 1px solid #1d3c40;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.02);
}

.footer-left h3 {
    color: white;
    font-size: 18px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
}

.footer-links a:hover {
    color: #25befc;
}

.footer-right p {
    color: #aaa;
    font-size: 14px;
}


/* /================================= */



/* ===== ABOUT HERO RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-hero {
        height: 70vh;
    }

    .about-inner h1 {
        font-size: 36px;
    }

    .about-inner p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 60vh;
        width: 95%;
    }

    .about-inner h1 {
        font-size: 28px;
    }

    .about-inner p {
        font-size: 14px;
    }

    .primary-btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}

/* ===== EXCELLENCE SECTION RESPONSIVE ===== */
@media (max-width: 1024px) {
    .excellence-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .excellence-box {
        width: 48%;
        margin-bottom: 20px;
    }

    .excellence-images {
        flex-wrap: wrap;
    }

    .excellence-images img {
        width: 48%;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .excellence-row {
        flex-direction: column;
    }

    .excellence-box {
        width: 100%;
    }

    .excellence-images img {
        width: 100%;
        height: auto;
    }

    .excellence h2 {
        font-size: 22px;
    }

    .sub-text {
        font-size: 14px;
    }
}

/* ===== JOURNEY SECTION RESPONSIVE ===== */
@media (max-width: 1024px) {
    .journey-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .journey-card {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .journey-row {
        flex-direction: column;
    }

    .journey-card {
        width: 100%;
    }

    .journey h2 {
        font-size: 22px;
    }

    .sub-text {
        font-size: 14px;
    }
}

/* ===== SIMPLE FOOTER RESPONSIVE ===== */
@media (max-width: 1024px) {
    .simple-footer {
        flex-wrap: wrap;
        text-align: center;
        padding: 25px 40px;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .simple-footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-links, .footer-right {
        width: 100%;
        margin-bottom: 15px;
    }

    .footer-left h3 {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-right p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .about-inner h1 {
        font-size: 24px;
    }

    .about-inner p {
        font-size: 13px;
    }

    .primary-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .excellence h2, .journey h2 {
        font-size: 20px;
    }

    .sub-text {
        font-size: 13px;
    }

    .icon-big {
        font-size: 32px;
    }
}
