/* --- LEADERSHIP HEADER --- */
.leadership-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('leadership-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.leadership-header h1 {
    font-size: 3rem;
}

/* --- LEADERS GRID --- */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

/* --- LEADER CARD --- */
.leader-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    border: 1px solid #eee;
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-img-container {
    height: 250px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.leader-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-img-container img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.leader-info {
    padding: 25px;
}

.leader-info h3 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.designation {
    display: block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.bio {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.social-icons a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
    font-weight: bold;
}

.social-icons a:hover {
    color: var(--primary);
}

/* --- ORG STRUCTURE SECTION --- */
.org-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.org-text {
    flex: 1;
    min-width: 300px;
}

.org-list {
    list-style: none;
    margin: 20px 0;
}

.org-list li {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

.org-list strong {
    color: var(--primary);
    font-size: 1.5rem;
}

.org-map {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: #e0f7fa;
    border: 2px dashed var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00838f;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .org-layout {
        flex-direction: column;
    }
}