/* -------------------- GENERAL -------------------- */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Apply clean, modern font to whole site */
body,
button,
input,
select,
textarea {
    font-family: 'Poppins', 'Nunito', Arial, sans-serif;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', 'Nunito', Arial, sans-serif;
    font-weight: 600;
}

/* Buttons */
.btn,
.learn-more-btn {
    font-family: 'Poppins', 'Nunito', Arial, sans-serif;
    font-weight: 600;
}


h2.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

p.section-subtitle {
    font-size: 1.1rem;
    color: #555;
}

/* -------------------- HEADER / MEGA MENU -------------------- */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #2e73b9;
    z-index: 9999;
}

.header-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.logo img {
    max-height: 60px;
}

/* Main nav */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
    display: inline-block;
    transition: background 0.3s, color 0.3s;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
    background: #fff;
    color: #2e73b9;
    border-radius: 4px;
}

/* -------------------- MEGA MENU (FULL WIDTH + SHRUNK COLUMNS) -------------------- */
.has-mega {
    position: relative;
}

.has-mega .mega-menu {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 100vw;
    /* full width */
    background: linear-gradient(135deg, #ffffff, #f0f4f8);
    display: none;
    padding: 30px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    z-index: 999;
}

.has-mega:hover .mega-menu {
    display: flex;
    justify-content: center;
    opacity: 1;
}

/* Mega Menu Row */
.mega-row {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    gap: 30px;
    padding: 0 20px;
}

/* Shrink each column width */
.mega-col {
    flex: 0 0 240px;
    /* ← SHRUNK COLUMN WIDTH */
    max-width: 240px;
    /* ← SHRUNK COLUMN WIDTH */
    transition: transform 0.3s ease;
}

/* Hover animation */
.mega-col:hover {
    transform: translateY(-3px) scale(1.02);
}

/* Mega menu headings */
.mega-col h4 {
    color: #2e73b9;
    margin-bottom: 15px;
    font-size: 1.15rem;
    font-weight: 600;
    position: relative;
}

.mega-col h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #2e73b9;
    left: 0;
    bottom: -5px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.mega-col h4:hover::after {
    width: 60px;
}

/* Links inside mega menu */
.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col ul li {
    margin-bottom: 8px;
}

.mega-col ul li a {
    display: block;
    color: #1c4e8b;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mega-col ul li a:hover {
    background: #2e73b9;
    color: #fff;
    transform: translateX(3px);
}

/* -------------------- MOBILE MEGA MENU -------------------- */
@media (max-width: 991px) {
    .has-mega .mega-menu {
        flex-direction: column;
        width: 100%;
        transform: none;
        left: 0;
        padding: 20px 10px;
        border-radius: 0;
    }

    .mega-row {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    .mega-col {
        max-width: 100%;
        flex: none;
    }

    .mega-col ul li a {
        padding: 10px;
    }
}


/* -------------------- VIDEO SECTION -------------------- */
.video-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    text-align: center;
}

.video-overlay h1,
.video-overlay p {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.video-overlay .btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    margin-top: 15px;
}

/* ================= NEW CONTENT SECTIONS ================= */

/* GENERAL SECTION STYLING */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2e73b9;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

/* ================= ABOUT US ================= */
.about-section {
    background-color: #f7f8fa;
    padding: 60px 20px;
    width: 100vw;
}

.about-cards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cards container */
.about-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

/* Each card */
.about-card {
    flex: 1 1 280px;
    min-width: 220px;
    max-width: 360px;
    text-align: center;
    background: #f7f8fa;
    padding: 25px 15px;
    border-radius: 12px;
    cursor: default;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px) scale(1.02);
}

/* Icon styling */
.about-card .icon {
    font-size: 3rem;
    color: #2e73b9;
    margin-bottom: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.about-card:hover .icon {
    transform: scale(1.1);
    color: #154075;
}

/* Card title */
.about-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Card description */
.about-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .about-cards {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .about-card {
        max-width: 90%;
    }
}

/* ================= KEY FACTS / STATISTICS ================= */
/* Highlight Section - Vibrant Blue Theme */
.lis-highlight-section {
    background: linear-gradient(to right, #dfa730, #2e73b9);
    padding: 70px 20px;
    border-radius: 20px;
    margin: 40px auto;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

/* Text Styling */
.lis-highlight-text {
    max-width: 850px;
    color: #f1f7ff;
    font-size: 1.15rem;
    line-height: 1.75;
}

/* Icon Boxes */
.lis-icon-box {
    background: rgba(255, 255, 255, 0.12);
    padding: 25px 20px;
    border-radius: 18px;
    transition: 0.35s ease;
    color: #ffffff;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.lis-icon-box i {
    font-size: 2.7rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.lis-icon-box h4 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.lis-icon-box p {
    color: #dce9ff;
    font-size: 1rem;
}

/* Hover Effects */
.lis-icon-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .lis-highlight-section {
        padding: 50px 20px;
    }

    .lis-highlight-text {
        font-size: 1.05rem;
    }

    .lis-icon-box i {
        font-size: 2.2rem;
    }
}

/* ================= PROGRAMS ================= */
.programs-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    padding: 60px 0 40px;
}

.programs-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.programs-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

/* Slider container */
.programs-slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

/* Slides wrapper */
.programs-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Each slide */
.program-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.program-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Slide image */
.program-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay text */
.program-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 5;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.program-overlay h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.program-overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Learn More button */
.program-overlay .learn-more-btn {
    display: inline-block;
    background: #1c4e8b;
    color: #fff;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.program-overlay .learn-more-btn:hover {
    background: #154075;
}

/* Dots */
.program-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.program-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #fff;
}

.program-dots .dot.active {
    background: #1c4e8b;
}

/* Fade Animation (Optional for cross-fade) */
@keyframes fadeSlide {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .program-slide {
        height: 400px;
    }

    .program-overlay h2 {
        font-size: 1.6rem;
    }

    .program-overlay p {
        font-size: 1rem;
    }

    .program-overlay .learn-more-btn {
        padding: 8px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .program-slide {
        height: 300px;
    }

    .program-overlay h2 {
        font-size: 1.4rem;
    }

    .program-overlay p {
        font-size: 0.95rem;
    }

    .program-overlay .learn-more-btn {
        padding: 6px 16px;
        font-size: 0.9rem;
    }
}

/* ================= WEDNESDAY UPDATE - ENHANCED CARDS ================= */
.wednesday-update-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.wednesday-update-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2e73b9;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    display: block;
}

.wednesday-update-section .section-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: #2e73b9;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.wednesday-update-section .section-title:hover::after {
    width: 120px;
}

.wednesday-update-section .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

.update-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.update-card {
    background: #fff;
    flex: 1 1 calc(33% - 25px);
    min-width: 280px;
    max-width: 370px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 380px;
    display: flex;
    flex-direction: column;
}

.update-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

/* Larger image container with overlay */
.update-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.update-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.update-card-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(46, 115, 185, 0.15),
            rgba(46, 115, 185, 0.45));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.update-card:hover .update-card-img::after {
    opacity: 1;
}

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

.update-card h5 {
    font-size: 1.35rem;
    margin: 15px 12px 10px;
    color: #1c4e8b;
    text-align: center;
}

.update-card a {
    display: inline-block;
    margin: 0 auto 16px;
    color: #2e73b9;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #2e73b9;
}

.update-card a:hover {
    background: #2e73b9;
    color: #fff;
    border-color: #2e73b9;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .update-card {
        flex: 1 1 45%;
        height: auto;
    }

    .update-card-img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .update-card {
        flex: 1 1 100%;
        height: auto;
    }

    .update-card-img {
        height: 180px;
    }
}

/* ================= ACCREDITATIONS ================= */
.accreditations-section {
    background: #f5f8fc;
    padding: 100px 20px;
    border-radius: 20px;
    margin: 50px auto;
}

.accreditations-section .section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2e73b9;
    letter-spacing: 0.5px;
}

.accreditations-section .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto 60px auto;
    line-height: 1.7;
}

.accreditation-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 70px;
}

.accreditation-logo {
    flex: 0 0 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accreditation-logo img {
    max-height: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.accreditation-logo:hover {
    transform: translateY(-7px);
}

@media (max-width: 768px) {
    .accreditations-section {
        padding: 70px 15px;
    }

    .accreditations-section .section-title {
        font-size: 2rem;
    }

    .accreditations-section .section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 40px;
    }

    .accreditation-logos {
        gap: 40px;
    }

    .accreditation-logo {
        flex: 0 0 160px;
    }

    .accreditation-logo img {
        max-height: 100px;
    }
}

/* ================= JOIN OUR COMMUNITY ================= */
.community-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.community-section h2 {
    margin-bottom: 15px;
}

.community-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.community-section .btn {
    padding: 12px 28px;
    background: #2e73b9;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.community-section .btn:hover {
    background: #1c4e8b;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px) {

    .about-cards,
    .programs-cards,
    .news-cards {
        flex-direction: column;
        align-items: center;
    }

    .about-card,
    .program-card,
    .news-card {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .accreditation-logos {
        gap: 20px;
    }

    .community-section .btn {
        width: 80%;
        max-width: 300px;
    }
}

/* ================= ALUMNI MAP ===================== */

/* -------------------- MAP CONTAINER -------------------- */
/* Ensure the map container has a defined height */
#alumniMap {
    width: 100%;
    height: 500px;
    /* Adjust as needed */
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Container to keep the hover area stable */
.alumni-pin-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* The Classic Pin (Normal State) */
.pin-droplet {
    width: 36px;
    height: 36px;
    background: #4AA3F0;
    border: 3px solid #fff;
    /* This creates the 'arrow' at the bottom right before rotation */
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* The Logo inside the pin */
.pin-droplet img {
    width: 0;
    height: 0;
    opacity: 0;
    transform: rotate(45deg);
    /* Counter-rotate to keep logo upright */
    transition: all 0.2s ease;
    object-fit: contain;
    background: white;
}

/* ================= HOVER STATES (No Arrow) ================= */

.alumni-pin-wrapper:hover .pin-droplet {
    width: 75px;
    height: 75px;
    /* Removes the 'arrow' point by making all corners rounded */
    border-radius: 50% !important;
    background: white;
    border-color: #4AA3F0;
    /* Removes the tilt and lifts the circle slightly */
    transform: rotate(0deg) translateY(-10px);
    z-index: 9999;
}

.alumni-pin-wrapper:hover img {
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: rotate(0deg);
}

@media (max-width: 767px) {
    #alumniMap {
        height: 350px;
    }
}

/* -------------------- DARK THEME -------------------- */
.alumni-map-section {
    background: #121212;
    color: #fff;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}



/* -------------------- PULSING MARKER -------------------- */
.pulse-marker {
    width: 18px;
    height: 18px;
    background: #4AA3F0;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 8px rgba(74, 163, 240, 0.8);
    z-index: 1;
}

.pulse-marker::after {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(74, 163, 240, 0.4);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.8);
        opacity: 0.4;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* -------------------- POPUPS -------------------- */
.alumni-popup {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    background: #1f1f1f;
    color: #fff;
    padding: 6px;
    border-radius: 12px;
    width: 160px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin: 0;
    border: none;
}

.leaflet-popup-content-wrapper {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.leaflet-popup-tip {
    background: #1f1f1f;
}

.alumni-popup img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4AA3F0;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.alumni-popup img:hover {
    transform: scale(1.1);
}

.alumni-popup h4 {
    font-size: 1.05rem;
    color: #4AA3F0;
    margin: 4px 0;
}

.alumni-popup p {
    font-size: 0.9rem;
    color: #ccc;
    margin: 2px 0;
}

/* -------------------- CLUSTERS -------------------- */
.marker-cluster-small {
    background-color: rgba(74, 163, 240, 0.5);
    color: #fff;
    border: 2px solid #4AA3F0;
}

.marker-cluster-medium {
    background-color: rgba(74, 163, 240, 0.7);
    color: #fff;
    border: 2px solid #4AA3F0;
}

.marker-cluster-large {
    background-color: #4AA3F0;
    color: #fff;
    border: 2px solid #fff;
}

/* ================= ALUMNI LEGEND ================= */
.alumni-legend-container {
    margin-top: 2rem;
    background: #1f1f1f;
    padding: 1.5rem;
    border-radius: 12px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.alumni-legend-container h3 {
    color: #4AA3F0;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Filter buttons container */
.legend-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.legend-filter-btn {
    background: #222;
    color: #fff;
    border: 1px solid #4AA3F0;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.legend-filter-btn.active,
.legend-filter-btn:hover {
    background: #4AA3F0;
    color: #fff;
}

/* Flex grid for legend cards */
#alumniLegend {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Individual legend card */
.alumni-legend-item {
    display: flex;
    align-items: center;
    background: #222;
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.alumni-legend-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 163, 240, 0.4);
}

/* Fixed size images */
.alumni-legend-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
    border: 2px solid #4AA3F0;
    flex-shrink: 0;
}

/* Info block */
.alumni-legend-info {
    flex: 1;
}

.alumni-legend-info h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4AA3F0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.alumni-legend-info p {
    margin: 2px 0;
    font-size: 0.85rem;
    color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Scrollbar customization */
#alumniLegend::-webkit-scrollbar {
    width: 8px;
}

#alumniLegend::-webkit-scrollbar-thumb {
    background-color: rgba(74, 163, 240, 0.4);
    border-radius: 4px;
}

#alumniLegend::-webkit-scrollbar-track {
    background: transparent;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 767px) {
    #alumniLegend {
        grid-template-columns: 1fr;
        max-height: none;
        overflow: visible;
    }
}

/* ================= SECTION TITLE UNDERLINE ================= */
.section-title {
    position: relative;
    display: block;
    margin-bottom: 35px;
    text-align: center;
    cursor: default;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #2e73b9;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    border-radius: 2px;
    transition: width 0.3s ease, background 0.3s ease;
}

.section-title:hover::after {
    width: 120px;
    background: #1b5a95;
}

/* -------------------- FOOTER -------------------- */
.lis-footer {
    background: #2e73b9;
    color: #fff;
    padding: 50px 20px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-col {
    flex: 0 0 20%;
    min-width: 0;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-col a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffd700;
}

.footer-col.center {
    text-align: center;
}

.footer-col.center .social-row {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-col.center .social-row a {
    margin: 0 5px;
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-col.center .social-row a:hover {
    color: #ffd700;
}

.footer-col.center .footer-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    display: block;
    margin: 10px auto 0;
}

.footer-copy {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #e6e6e6;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 1200px) {
    .footer-container {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 45%;
        margin: 10px 0;
        text-align: center;
    }

    .footer-col.center {
        flex: 1 1 100%;
    }
}

@media (max-width: 992px) {

    .about-cards,
    .stats-container,
    .wednesday-update-section .update-cards,
    .accreditations-section .accreditation-logos {
        flex-direction: column;
        align-items: center;
    }

    .program-overlay {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .video-overlay h1 {
        font-size: 2rem;
    }

    .video-overlay p {
        font-size: 1rem;
    }
}

/* ----------------------- Child Protection Page -----------------------------*/

.quick-link-card {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.quick-link-card .card-body {
    padding: 1rem 1.5rem;
}

.quick-link-card .icon-badge {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.quick-link-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.quick-link-card span {
    font-size: 1rem;
}