.footer__links ul li {
    margin-bottom: 10px;
}

    .footer__links ul li a {
        color: #ccc;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .footer__links ul li a:hover {
            color: #f39c12;
            padding-left: 5px;
        }
<style >
.dept-card {
    background: #fff;
    padding: 30px 15px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    height: 100%;
}

/* Orange top line accent */
.dept-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f39c12;
}

/* Hover effect */
.dept-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.25);
}

/* Circular orange background */
.dept-img {
    background: linear-gradient(135deg, #f39c12, #ffb347);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

    /* Bigger image */
    .dept-img img {
        width: 50px;
        height: auto;
    }

/* Icon zoom on hover */
.dept-card:hover .dept-img {
    transform: scale(1.1) rotate(5deg);
}

.dept-card h6 {
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s ease;
}

.dept-card:hover h6 {
    color: #f39c12;
}

/* Slight spacing adjustment for mobile */
@media (max-width: 576px) {
    .dept-card {
        padding: 20px 10px;
    }
}

.read-more-btn {
    background-color: #f39c12;
    color: #fff;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.3s ease;
}

    .read-more-btn:hover {
        background-color: #d68910;
        color: #000;
    }

.section-divider-gradient {
    height: 1px;
    width: 100%;
    margin: 1px 0;
    background: linear-gradient(to right, transparent, #f39c12, transparent);
}
/* Wrapper - Center Alignment */
.gallery-load-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;   /* Center horizontally */
    margin-top: 30px;
}

/* Button Styling */
.gallery-load-btn {
    background: linear-gradient(45deg, #f39c12, #ffb347);
    color: #fff;
    text-decoration: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.35);
    position: relative;
    overflow: hidden;
}

    /* Shine Effect */
    .gallery-load-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: rgba(255,255,255,0.3);
        transform: skewX(-25deg);
        transition: 0.5s;
    }

    /* Hover Effect */
    .gallery-load-btn:hover {
        background: linear-gradient(45deg, #e67e22, #f39c12);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 18px rgba(243, 156, 18, 0.45);
        color: #000 !important;
    }

        /* Shine Animation on Hover */
        .gallery-load-btn:hover::before {
            left: 125%;
        }


/* Inner Page Header */
.inner-page-header {
    background-color: #e3e7e8; /* Updated background */
    padding: 55px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

    /* Subtle Pattern Overlay */
    .inner-page-header::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(rgba(243,156,18,0.05) 1px, transparent 1px);
        background-size: 22px 22px;
        top: 0;
        left: 0;
    }

/* Title */
.inner-page-title {
    position: relative;
    font-size: 38px;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .inner-page-header {
        padding: 40px 0;
    }

    .inner-page-title {
        font-size: 26px;
    }
}




.legacy-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.legacy-intro h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.legacy-intro p {
    max-width: 750px;
    margin: auto;
    color: #666;
}

/* Timeline */
.legacy-timeline {
    margin-top: 60px;
    position: relative;
}

    .legacy-timeline::before {
        content: "";
        position: absolute;
        left: 50%;
        width: 3px;
        height: 100%;
        background: #f39c12;
        transform: translateX(-50%);
    }

.legacy-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

    .legacy-item:nth-child(even) {
        flex-direction: row-reverse;
    }

.legacy-year {
    width: 120px;
    height: 120px;
    background: #f39c12;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.legacy-content {
    width: 60%;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

    .legacy-content h4 {
        margin-bottom: 10px;
        font-weight: 600;
    }

    .legacy-content ul {
        padding-left: 18px;
    }

        .legacy-content ul li {
            margin-bottom: 8px;
        }

.legacy-closing {
    margin-top: 15px;
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 992px) {

    .legacy-timeline::before {
        left: 20px;
    }

    .legacy-item {
        flex-direction: column;
        margin-left: 40px;
    }

        .legacy-item:nth-child(even) {
            flex-direction: column;
        }

    .legacy-year {
        margin-bottom: 20px;
    }

    .legacy-content {
        width: 100%;
    }
}





.department-page {
    padding: 80px 0;
    background: #f8f9fa;
}

.dept-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.dept-header p {
    color: #555;
}

.dept-category {
    margin: 60px 0 30px;
    font-weight: 600;
    border-left: 4px solid #f39c12;
    padding-left: 10px;
}

.dept-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .dept-card:hover {
        transform: translateY(-5px);
    }

    .dept-card img {
        width: 90px;
        margin-bottom: 15px;
    }

    .dept-card h5 {
        font-weight: 600;
        margin-bottom: 10px;
    }

.dept-approach {
    margin-top: 70px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
}




.profile-frame {
    aspect-ratio: 3/4;
    max-width: 180px;
    background-color: #f8f9fa;
    overflow: hidden;
}

    .profile-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

:root {
    --primary-saffron: #f39c12;
    --light-saffron: #fff7ea;
}

/* Section headings */
h4.fw-semibold {
    border-left: 4px solid var(--primary-saffron);
    padding-left: 10px;
    margin-top: 40px;
}

/* Founder / Trustee section titles */
h3.fw-bold {
    color: var(--primary-saffron);
}

/* Profile Card */
.profile-card {
    transition: all 0.35s ease;
}

    .profile-card:hover {
        transform: translateY(-8px);
    }

/* 4:3 Frame */
.profile-frame {
    width: 180px;
    aspect-ratio: 3/4;
    background-color: var(--light-saffron);
    border: 2px solid var(--primary-saffron) !important;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Center frame */
.profile-frame {
    margin-left: auto;
    margin-right: auto;
}

    /* Image */
    .profile-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

/* Hover effects */
.profile-card:hover .profile-frame {
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

    .profile-card:hover .profile-frame img {
        transform: scale(1.08);
    }

/* Role text styling */
.profile-card p:last-child {
    color: var(--primary-saffron);
    font-weight: 500;
    margin-bottom: 0;
}
.department-card {
    transition: all 0.3s ease;
}

    .department-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

.department-card {
    transition: all 0.3s ease;
}

    .department-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

.department-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f39c12;
}