/* ================= BANNER ================= */
.about-banner{
    height:85vh;
    /* background:url('/images/about-banner.jpg') center/cover no-repeat; */
    position:relative;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

.overlay{
    background:rgba(0,0,0,0.65);
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}

.overlay h1{
    font-size:48px;
    font-weight:700;
}

.overlay p{
    margin-top:10px;
    font-size:18px;
}

/* ================= INTRO ================= */
.about-intro{
    padding:20px 0;
    background:#f9fbff;
}

.about-flex{
    display:flex;
    align-items:center;
    gap:50px;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:34px;
    margin-bottom:15px;
    color:#2f7d6b;
}

.about-text p{
    font-size:15px;
    line-height:1.8;
    margin-bottom:15px;
    color:#444;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* ================= MISSION ================= */
.mission-section{
    padding:40px 0;
    background:#ffffff;
}

.mission-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.mission-box{
    background:#d3d3d3;
    padding:30px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
}

.mission-box:hover{
    transform:translateY(-10px);
}

.mission-box .icon{
    font-size:45px;
    margin-bottom:10px;
}

.mission-box h3{
    font-size:22px;
    margin-bottom:10px;
    color:#2f7d6b;
}

.mission-box p{
    font-size:14px;
    color:#555;
    line-height:1.7;
}

/* ================= STATS ================= */
.stats-section{
    background:linear-gradient(135deg,#2f7d6b,#1abc9c);
    color:#fff;
    padding:70px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
    text-align:center;
}

.stat-box{
    padding:30px 20px;
    position: relative;
}

.stat-box:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:50%;
    background:rgba(255,255,255,0.4);
}

.stat-box h2{
    font-size:34px;
    font-weight:700;
}

.stat-box p{
    margin-top:5px;
    font-size:14px;
}

/* ================= WHY ================= */
.why-us{
    padding:80px 0;
    background:#f8fafc;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2{
    font-size:34px;
    color:#2f7d6b;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card h3{
    font-size:18px;
    margin-bottom:10px;
    color:#2f7d6b;
}

.why-card p{
    font-size:14px;
    color:#555;
}

/* ================= TRAINER ================= */
.about-trainer{
    padding:80px 0;
    background:#ffffff;
}

.trainer-wrapper{
    display:flex;
    align-items:center;
    gap:50px;
}

.trainer-img{
    flex:1;
}

.trainer-img img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.trainer-text{
    flex:1;
}

.trainer-text h2{
    font-size:30px;
    color:#2f7d6b;
    margin-bottom:10px;
}

.trainer-text h4{
    margin-bottom:10px;
    color:#666;
}

.trainer-text p{
    font-size:15px;
    line-height:1.8;
    color:#444;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){

    .about-flex{
        flex-direction:column;
    }

    .mission-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .why-grid{
        grid-template-columns:1fr 1fr;
    }

    .trainer-wrapper{
        flex-direction:column;
    }
      .stat-box::after{
        display:none; /* remove lines on tablet */
    }
}

@media(max-width:600px){

    .overlay h1{
        font-size:28px;
    }

    .overlay p{
        font-size:14px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .why-grid{
        grid-template-columns:1fr;
    }
    .stat-box::after{
        display:none; /* remove lines on tablet */
    }
}