/* Leadership & Academic Roles Section */
.leadership-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa; /* Neutral background */
}

.leadership-section .container {
    position: relative;
    z-index: 2;
}

.leadership-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #333; /* Dark text */
}

.leadership-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.leadership-glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.leadership-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.leadership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: linear-gradient(145deg, #ffffff, #f0f4f8); /* Subtle gradient on hover */
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4c666f, #c5d89d); /* Brand colors */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leadership-card:hover::before {
    opacity: 1;
}

.leadership-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(76, 102, 111, 0.1); /* Primary color low opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    color: #4c666f;
}

.leadership-card:hover .leadership-card-icon {
    background: #4c666f;
    color: #ffffff;
    transform: scale(1.1);
}

.leadership-card-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

.leadership-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.leadership-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1; /* Pushes button to bottom */
}

.leadership-btn {
    align-self: flex-start;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: #4c666f;
    border: 2px solid #4c666f;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.leadership-btn:hover {
    background-color: #4c666f;
    color: #ffffff;
}

.leadership-btn i {
    transition: transform 0.3s ease;
}

.leadership-btn:hover i {
    transform: translateX(5px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .leadership-glass-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-card {
        margin-bottom: 1rem;
    }
}

.leadership-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1;
    position: relative;
}
