.lt-wrapper-0023 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    min-height: 100vh;
    padding: 60px 0;
}

.lt-section-title-0023 {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.lt-section-title-0023 h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.lt-section-title-0023 p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.lt-team-card-0023 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    transition: all 0.3s linear;
}

/* .lt-team-card-0023:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
} */

.lt-card-image-wrapper-0023 {
    position: relative;
    overflow: hidden;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.lt-card-image-wrapper-0023::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.lt-card-image-0023 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

/* .lt-team-card-0023:hover .lt-card-image-0023 {
    transform: scale(1.1);
} */

.lt-designation-badge-0023 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
    z-index: 2;
}

.lt-chairman-badge-0023 {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    animation: lt-pulse-0023 2s infinite;
}

@keyframes lt-pulse-0023 {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.lt-card-content-0023 {
    padding: 30px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.lt-member-name-0023 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.lt-designation-text-0023 {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.lt-social-links-0023 {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.lt-social-links-0023 a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .lt-section-title-0023 h1 {
        font-size: 2rem;
    }

    .lt-card-image-wrapper-0023 {
        height: 300px;
    }
}