/* .banner {
    margin-top: 30px;
    width: 100%;
    height: 184px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.banner {
    position: relative;
    max-height: 180px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    top: 48px;
}

.banner img {
    width: 85%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

/* ===================================
   ABOUT HERO
=================================== */

.about-hero {
    text-align: center;
    padding-top: 160px;
    background: linear-gradient(to bottom, #fafafa, #ffffff);
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.about-hero p {
    max-width: 920px;
    margin: auto;
    color: var(--muted);
}

.about-description {
    max-width: 720px;
    margin: auto;
    line-height: 1.7;
}

.more-text {
    display: none;
}

.about-description.expanded .more-text {
    display: inline;
}

.read-more-btn {
    margin-top: 10px;
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
}


/* ===================================
   MISSION VISION
=================================== */
.mission-vision {
    background-color: #fff7f7;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    transition: .3s;
}

.mv-card img {
    height: 80px;
    margin: auto;
    object-fit: contain;
}

.mv-card:hover {
    transform: translateY(-6px);
}


/* ===================================
   EXPERIENCE
=================================== */

.exp-wrapper {
    display: flex;
    padding: 54px;
    /* background-color: #f4c8c8; */
    align-items: center;
    gap: 60px;
}

.exp-badge {
    background: var(--primary);
    color: #fff;
    padding: 40px;
    border-radius: 50%;
    text-align: center;
    min-width: 200px;
}

.exp-badge span {
    font-size: 48px;
    font-weight: 700;
}

.exp-content p {
    color: var(--muted);
    margin-top: 12px;
}

.exp-logos {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.exp-logos img {
    height: 64px;
    opacity: .7;
}


/* ===================================
   CORE VALUES
=================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.value-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 14px;
}


/* ===================================
   ACHIEVEMENTS - RED GLASS SECTION
=================================== */

.achievements {
    padding-top: 40px;
}

.achievements-glass {
    position: relative;
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;

    /* RED GLASS BACKGROUND */
    background:
        linear-gradient(135deg,
            rgba(255, 0, 8, 0.85),
            rgba(255, 24, 24, 0.85));

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 20px 45px rgba(219, 30, 36, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, .25);
}


/* glowing animated texture */
.achievements-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 40%, rgba(255, 255, 255, .25), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, .18), transparent 45%);

    opacity: .6;
    pointer-events: none;
}


/* GRID */
.achievements-grid {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 60px 40px;
}


/* ITEM */
.achievement-item {
    text-align: center;
    color: #fff;
    flex: 1;
}

.achievement-item h3 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
}

.achievement-item p {
    margin-top: 8px;
    font-size: 16px;
    opacity: .95;
}


/* DIVIDER */
.achievement-divider {
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, .35);
}


/* ===================================
   LEADERS MESSAGE
=================================== */

.message-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.leader-card {
    text-align: center;
}

.leader-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: auto;
    object-fit: cover;
}

.leader-card span {
    color: var(--primary);
    font-size: 14px;
}


/* ===================================
   TEAM
=================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: auto;
}


/* ===================================
   CTA
=================================== */

.about-cta {
    /* background: linear-gradient(135deg, #ff2a2f, #c5161b);  */
    text-align: center;
    color: #fff;
}

.cta-box h2 {
    margin-bottom: 20px;
}


/* ===================================
   RESPONSIVE
=================================== */


/* ===================================
   ABOUT BANNER — DESKTOP SIZE CONTROL
=================================== */

/* @media (min-width: 1200px) {

    .banner {
        position: relative;
        max-height: 180px;        
        overflow: hidden;
        display: flex;
        justify-content: center;
        top: 48px;
    }

    .banner img {
        width: 85%;               
        height: auto;
        object-fit: contain;
        margin: 0 auto;
    }

} */



@media(max-width:992px) {

    .mv-grid,
    .message-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .achievements-grid {
        flex-direction: column;
        gap: 30px;
    }

    .achievement-divider {
        width: 60%;
        height: 1px;
    }

    .achievement-item h3 {
        font-size: 36px;
    }
}

@media(max-width:576px) {

    /* .banner {
        padding-top: 90px;
    } */

    .about-hero h1 {
        font-size: 28px;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .exp-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .exp-logos img {
        height: 52px;
    }
}