
body{
    margin: 0;
    padding: 0;
}

.page-banner{
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    background: #f6fff9;
     margin-top: 50px;   /* small clean gap from navbar */
}

.page-banner img{
    width: 95%;
    height: auto;
    display: block;

    border-radius: 12px;
    border: 4px solid #0b3d2e;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
/* =========================
   ABOUT WRAPPER
========================= */
.about-main{
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    background: #f6fff9;
}

/* =========================
   MISSION VISION OBJECTIVE
========================= */
.mvo-container{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.mvo-box{
    background: #fff;
    border: 2px solid #0b3d2e;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.mvo-box:hover{
    transform: translateY(-5px);
    transition: 0.3s ease;
}

/* =========================
   ABOUT CONTENT (CENTER + BACKGROUND)
========================= */

/* =========================
   ABOUT CONTENT (CLEAN PRO BG)
========================= */
.about-content{
    max-width: 1100px;
    margin: auto;
    padding: 50px 40px;
    border-radius: 16px;
    margin-bottom: 60px;

    /* clean professional background */
    background: linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    text-align: center;
}

/* TITLE */
.about-title{
    font-size: 28px;
    color: #0b3d2e;
    margin-bottom: 20px;
}

/* PARAGRAPHS */
.about-content p{
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;

    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* LIST */
.about-list{
    list-style: none;
    padding: 0;
    max-width: 650px;
    margin: 25px auto 0;
}

/* CLEAN LIST ITEMS */
.about-list li{
    background: #ffffff;
    margin-bottom: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    border-left: 4px solid #0b3d2e;

    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.about-list li:hover{
    transform: translateX(5px);
}
/* =========================
   TEAM SECTION
========================= */
.team-hierarchy{
    padding: 40px 20px 60px;
}

.team-container{
    max-width: 1100px;
    margin: auto;
}

.team-title{
    text-align: center;
    font-size: 32px;
    color: #0b3d2e;
    margin-bottom: 40px;
}

/* CEO */
.team-level.ceo{
    background: linear-gradient(135deg, #0b3d2e, #146b4d);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
}

/* GROUP */
.team-level.group{
    background: #fff;
    border-left: 5px solid #0b3d2e;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.team-grid{
    display: grid;
    grid-template-columns: repeat(3, 280px);
    gap: 25px;
    justify-content: center; /* 👈 THIS is the key */
    align-items: stretch;
}

.team-card{
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.team-card:hover{
    transform: translateY(-5px);
}

.team-card.ceo{
    background: linear-gradient(135deg, #0b3d2e, #146b4d);
    color: white;
    border: none;
}

.team-card.management{
    background: #f1f8f4;
    border: 2px solid #0b3d2e;
}

.team-grid .team-card:nth-child(1){
    background: #e8f5ff;
    border-color: #1e88e5;
}

.team-grid .team-card:nth-child(2){
    background: #fff3e0;
    border-color: #fb8c00;
}

.team-grid .team-card:nth-child(3){
    background: #f3e5f5;
    border-color: #8e24aa;
}

@media(max-width: 768px){

    .team-grid{
        grid-template-columns: 1fr;
        justify-content: center;
    }

    .team-card{
        width: 100%;
    }
}










/* =========================
   MOBILE
========================= */
@media(max-width:768px){

    .mvo-container{
        grid-template-columns: 1fr;
    }

    .about-content{
        padding: 20px;
    }

    .team-title{
        font-size: 24px;
    }
}