.leadership-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.leadership-card:hover {
    transform: scale(1.05);
}

#imageModal .modal-content {
    background: transparent;
    border: none;
}

#imageModal .modal-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#modalImage {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    right: -40px;
    top: -40px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1060;
}

@media (max-width: 768px) {
    .close-modal {
        right: 10px;
        top: -60px;
    }
}

/* Initiatives Slider Styles */
.initiatives-slider-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.initiatives-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.initiative-slide {
    flex: 0 0 33.333%;
    padding: 0 12px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .initiative-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .initiative-slide {
        flex: 0 0 100%;
    }
}

.initiative-card {
    height: 100%;
    transition: transform 0.3s ease;
}

.initiative-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    margin-right: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.initiative-card:hover {
    transform: translateY(-5px);
}

.custom-card {
    border-radius: 12px;
    transition: 0.3s;
    color: #ffffff;
}

/* new */
/* Remove underline only inside this section */
.dashboard-section a,
.dashboard-section a:hover,
.dashboard-section a:focus {
    text-decoration: none !important;
    color: inherit !important;
}

/* Specifically for headings */
.dashboard-section h5 {
    text-decoration: none !important;
    color: inherit;
}

.custom-card {
    border-radius: 14px;
    transition: 0.3s;
    color: #fff;
    height: 100%;
    padding: 12px !important;
}

.custom-card p {
    color: #ffffff;
    font-size: 9px;
    margin-bottom: .5rem !important;
}

.custom-card img {
    width: 50px;
    height: 45px;
    object-fit: contain;
}

.custom-card h5 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 4px;
    margin-bottom: 0;
}

.custom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Live Streaming Card */
.livestream-card {
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

/* Header */
.livestream-header {
    background: linear-gradient(45deg, #1d3557, #457b9d);
    color: #fff;
    padding: 12px 15px;
    font-weight: 600;
}

/* LIVE badge */
.live-badge {
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 20px;
    animation: blink 1s infinite;
}

/* Body */
.livestream-body {
    padding: 5px;
    background: #000;
}

/* Footer */
.livestream-footer {
    font-size: 13px;
    color: #666;
    padding: 10px 15px;
}
