/* =======================
   Banner Section
======================= */

.leadership-banner {
    background: url('../images/lea.png') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    position: relative; /* IMPORTANT for overlay */
}


/* Dark overlay for text readability */
.leadership-banner::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* Ensure banner text stays above overlay */
.leadership-banner * {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 20px;
    margin-top: 10px;
}


/* =======================
   Content Section
======================= */

.content-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.content-section h2 {
    color: #1a237e;
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.intro-text {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #444;
}


/* =======================
   Leader Cards
======================= */

.leader-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.leader-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

/* Hover effect */
.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Image handling */
.leader-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

/* Text styling */
.leader-card h3 {
    margin-top: 15px;
    font-size: 22px;
    color: #1a237e;
    font-weight: 700;
}

.position {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    font-weight: 600;
}

.description {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}


/* =======================
   Responsive Design
======================= */

@media (max-width: 768px) {

    .banner-content h1 {
        font-size: 34px;
    }

    .banner-content p {
        font-size: 17px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .intro-text {
        font-size: 16px;
    }

    .leader-card img {
        height: 220px;
    }
}

@media (max-width: 480px) {

    .leadership-banner {
        padding: 80px 15px;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .leader-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .leader-card img {
        height: 200px;
    }
}
