/* ================= HEADER ================= */
.about-header {
    padding: 3px 0 3px;
}

.about-header small {
    font-size: 14px;
    color: #000;
    letter-spacing: 1px;
}

.about-header-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    margin-top: 15px;
}

.about-header h1 {
    font-size: 44px;
    font-weight: 600;
    color: #000;
}

/* ================= LEADERSHIP SECTION ================= */
.leadership-section {
    padding: 60px 0 90px;
}

/* GRID */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ================= CARD ================= */
.leader-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ================= IMAGE ================= */
.leader-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}



.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: scale(0.92);
    transition: 0.4s ease;
}

.leader-image:hover img {
    transform: scale(1); /* zoom in on hover */
}
/* ================= INFO ================= */

/* HOVER ZOOM */
.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

/* INFO */
.leader-info {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* TEXT */
.leader-info h3 {
    font-size: 16px;
    margin: 0 0 5px;
    color: #111;
}

.leader-info span {
    font-size: 13px;
    color: #777;
}

/* VIEW BIO */
.view-bio {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #2e8fbf;
    text-decoration: none;
    border-left: 1px solid #ddd;
    padding-left: 12px;
}

.view-bio i {
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .gm-card {
        padding: 25px;
    }

    .gm-header h2 {
        font-size: 22px;
    }

    .signature-text {
        font-size: 26px;
    }

    .gm-footer {
        text-align: center;
    }
}


.about-section {
    width: 100%;
    padding: 60px 20px;
    background: #f9fbfd;
}

/* Title */
.about-title {
    text-align: center;
    margin-bottom: 40px;
}

.about-title h1 {
    font-size: 36px;
    font-weight: 700;
}

/* Card container (centered) */
.about-card {
    max-width: 1100px;
    margin: auto;
}

/* Card design */
.about-content {
    background: #eef3f7;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #2ea3c8; /* nice highlight */
}

/* Text */
.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.about-section {
    padding: 60px 20px;
    background: #f9fbfd;
}

/* SAME container */
.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Title */
.about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-left: 0; /* important */
}

/* Card */
.about-card {
    background: #eef3f7;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #2ea3c8;
}

/* Text */
.about-card p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #444;
}

