/* Glassmorphism Trustees Section */
.trustees-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(240, 244, 248, 0.8) 0%, rgba(226, 232, 240, 0.6) 100%);
    position: relative;
    overflow: hidden;
}

.trustees-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.trustees-section .container {
    position: relative;
    z-index: 1;
}

.trustee-card.glass-morphism {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.trustee-card.glass-morphism:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(37, 99, 235, 0.3);
}

.trustee-card.featured {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 249, 255, 0.85) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 40px;
    text-align: center;
}

.trustee-card.featured .trustee-content {
    flex-direction: column;
    align-items: center;
}

.trustee-card.featured .trustee-icon {
    width: 90px;
    height: 90px;
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 36px;
    background: linear-gradient(135deg, var(--thm-primary), #1e40af);
    color: white;
}

.trustee-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trustee-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    color: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trustee-card.glass-morphism:hover .trustee-icon {
    background: var(--thm-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.trustee-info {
    text-align: left;
}

.trustee-card.featured .trustee-info {
    text-align: center;
}

.trustee-info h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--thm-black);
    font-family: 'Outfit', sans-serif;
}

.trustee-card.featured .trustee-info h3 {
    font-size: 28px;
}

.trustee-info .designation {
    font-size: 14px;
    color: var(--thm-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.trustee-card.featured .trustee-info .designation {
    color: var(--thm-primary);
    font-size: 16px;
}

.pt-4 { padding-top: 2rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
