/* ===== ABOUT PAGE ===== */

.about-story,
.about-leadership {
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
}


/* Container */

.container {
    max-width: 1200px;
    margin: auto;
}


/* ===== STORY SECTION ===== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


/* Headings */

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.about-text h3 {
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.about-text h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #222;
}


/* Paragraphs */

.about-text p {
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 1rem;
    color: #444;
}


/* ===== CORE VALUES LIST ===== */

.about-text ul {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

.about-text ul li {
    background: #ffffff;
    margin-bottom: 12px;
    padding: 14px 18px;
    border-left: 4px solid var(--gold);
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform .2s ease;
}

.about-text ul li:hover {
    transform: translateX(6px);
}

.about-text ul li strong {
    color: var(--primary-green);
}


/* ===== IMAGE ===== */

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform .4s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}


/* ===== LEADERSHIP SECTION ===== */

.about-leadership {
    background: #f7f7f7;
    text-align: center;
}


/* Title */

.section-title {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.section-subtitle {
    max-width: 650px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 1.6;
}


/* ===== LEADERSHIP GRID ===== */

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}


/* ===== LEADER CARD ===== */

.leader-card {
    background: white;
    padding: 30px 25px;
    border-radius: 14px;
    text-align: center;
    transition: all .35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.leader-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid var(--primary-green);
}

.leader-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #222;
}

.leader-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


/* ===== SCROLL ANIMATION ===== */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}


/* ===== TABLET ===== */

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .about-story,
    .about-leadership {
        padding: 90px 20px 60px;
    }
    .about-text h2 {
        font-size: 2rem;
        margin-top: 10px;
    }
    .section-title {
        font-size: 2rem;
        padding-top: 0;
    }
    .about-image img {
        max-width: 420px;
        margin: auto;
        display: block;
    }
}


/* ===== MOBILE ===== */

@media (max-width: 600px) {
    .about-story,
    .about-leadership {
        padding: 80px 18px 50px;
    }
    .about-text h2 {
        font-size: 1.7rem;
        margin-top: 5px;
    }
    .about-text h3 {
        font-size: 1.4rem;
    }
    .about-text h4 {
        font-size: 1.1rem;
    }
    .about-text p {
        font-size: 0.95rem;
    }
    .about-text ul li {
        font-size: 0.9rem;
        padding: 12px 14px;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
    .leader-card {
        padding: 25px 20px;
    }
    .leader-card img {
        width: 95px;
        height: 95px;
    }
}