
    /* Sidebar Toggle Button */
    #publication .section-heading h1 {
    letter-spacing: 1px;
}

#publication img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#publication img:hover {
    transform: scale(1.03);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

    .dept-title {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: #dc3545; /* Red tone */
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 8px;
}



/* Responsive */
@media (max-width: 768px) {
  .dept-title {
    font-size: 1.5rem;
  }
}
    .toggle-btn {
        background: none;
        border: none;
        font-size: 22px;
        color: #c82333;
        cursor: pointer;
        float: right;
        transition: transform 0.3s;
    }

    .toggle-btn:hover {
        transform: scale(1.1);
    }

    /* Reopen Button (appears when sidebar hidden) */
    .reopen-btn {
        position: fixed;
        top: 120px;
        left: 10px;
        background-color: #dc3545;
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 20px;
        padding: 10px 12px;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        display: none;
        z-index: 9999;
        transition: background 0.3s, transform 0.3s;
    }

    .reopen-btn:hover {
        background-color: #b02a37;
        transform: scale(1.1);
    }

    /* Sidebar slide animation for mobile */
    @media (max-width: 768px) {
        .dept-container {
            position: relative;
        }

        .dept-sidebar {
            position: fixed;
            left: 0;
            width: 250px;
            height: 100%;
            z-index: 1000;
            transition: transform 0.3s ease-in-out;
        }

        .dept-sidebar.hidden {
            transform: translateX(-100%);
        }

        .dept-content {
            flex: 1;
            width: 100%;
        }
    }

    .dept-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin: 40px auto;
        max-width: 1362px;
    }

    .dept-sidebar {
        flex: 0 0 250px;
        background: #f8f9fa;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        height: fit-content;
        position: sticky;
        top: 10px;
    }

    .dept-sidebar h5 {
        color: #c82333;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .dept-sidebar ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .dept-sidebar ul li {
        margin: 8px 0;
    }

    .dept-sidebar ul li a {
        text-decoration: none;
        color: #333;
        display: block;
        padding: 8px 12px;
        border-radius: 6px;
        transition: all 0.3s;
    }

    .dept-sidebar ul li a:hover,
    .dept-sidebar ul li a.active {
        background-color: #dc3545;
        color: #fff;
    }

    .dept-content {
        flex: 1;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 25px;
        min-height: 500px;
    }

    .dept-section {
        display: none;
        animation: fadeIn 0.5s ease-in-out;
    }

    .dept-section.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .banner img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        object-position: top;
        /* Focus image on the top */
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .lab-box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 25px;
        gap: 20px;
    }

    .lab-box img {
        width: 300px;
        border-radius: 8px;
        object-fit: cover;
    }

    @media (max-width: 768px) {

        /* 1. Ensure the container doesn't force space for the sidebar */
        .dept-container {
            display: block;
            /* Change from flex to block on mobile */
        }

        /* 2. Sidebar is fixed and off-screen when hidden */
        .dept-sidebar {
            position: fixed;
            top: 10px;
            left: 0;
            width: 250px;
            height: 100%;
            z-index: 1000;
            transition: transform 0.3s ease-in-out;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
            /* Add shadow for floating effect */
        }

        .dept-sidebar.hidden {
            transform: translateX(-100%);
        }

        /* 3. Main Content takes full width on mobile, and no margins */
        .dept-content {
            flex: 1;
            width: 100%;
            padding: 10px;
            /* Adjust padding for mobile */
        }

        /* 4. Hide the menu toggle button when sidebar is collapsed on mobile */
        .dept-sidebar.hidden #toggleMenu {
            display: none;
        }

        /* 5. Ensure the Reopen button is shown when the sidebar is hidden */
        .dept-sidebar.hidden+.reopen-btn {
            display: block;
        }
    }


    .dept-section {
        max-width: 1200px;
        padding: 2rem;
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        animation: fadeInUp 0.8s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .section-heading {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 3rem 0 2rem 0;
        position: relative;
    }

    .section-heading h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0;
        padding: 0 2rem;
        background: white;
        position: relative;
        z-index: 2;
    }

    .line {
        flex: 1;
        height: 3px;
        background: linear-gradient(90deg, #667eea, #764ba2);
        border-radius: 2px;
    }

    .about-content>p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 2rem;
        text-align: justify;
        padding: 1.5rem;
        background: #f8f9fa;
        border-radius: 12px;
        border-left: 4px solid #667eea;
    }

    .hod-section {
        display: flex;
        gap: 2rem;
        align-items: flex-start;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 2rem;
        border-radius: 16px;
        margin: 2rem 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .hod-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .hod-section img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
        border: 6px solid white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
    }

    .hod-section img:hover {
        transform: scale(1.05);
    }

    .hod-details {
        flex: 1;
    }

    .hod-details h3 {
        font-size: 1.8rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .hod-details p {
        font-size: 1rem;
        line-height: 1.7;
        color: #666;
    }

    .testimonial-section {
        margin-top: 4rem;
    }

    .testimonial-section h2 {
        text-align: center;
        font-size: 2.2rem;
        color: #2c3e50;
        margin-bottom: 3rem;
        position: relative;
    }

    .testimonial-section h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #667eea, #764ba2);
        border-radius: 2px;
    }

    .testimonial-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .testimonial-card {
        background: white;
        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        position: relative;
        overflow: hidden;
        animation: slideInUp 0.6s ease-out forwards;
        opacity: 0;
        transform: translateY(30px);
    }

    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea, #764ba2);
    }

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .testimonial-card img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1rem;
        border: 3px solid #667eea;
        transition: transform 0.3s ease;
    }

    .testimonial-card:hover img {
        transform: scale(1.1);
    }

    .testimonial-card p {
        font-style: italic;
        color: #555;
        margin-bottom: 1rem;
        font-size: 1rem;
        line-height: 1.6;
        position: relative;
    }

    .testimonial-card p::before {
        content: '"';
        font-size: 3rem;
        color: #667eea;
        position: absolute;
        top: -10px;
        left: -10px;
        font-family: serif;
    }

    .testimonial-card span {
        font-weight: 600;
        color: #2c3e50;
        font-size: 0.95rem;
    }

    .no-testimonials {
        text-align: center;
        width: 100%;
        padding: 3rem;
        color: #666;
        font-size: 1.1rem;
        background: #f8f9fa;
        border-radius: 12px;
        border: 2px dashed #dee2e6;
    }

    @media (max-width: 768px) {
        .dept-section {
            margin: 1px;
            padding: 10px
        }

        .section-heading h1 {
            font-size: 2rem;
        }

        .hod-section {
            flex-direction: column;
            text-align: center;
        }

        .hod-section img {
            width: 150px;
            height: 150px;
            align-self: center;
        }

        .testimonial-container {
            grid-template-columns: 1fr;
        }
    }

    /* === Laboratories Section === */
    .lab-title {
        font-size: 28px;
        font-weight: 600;
        color: #000;
        margin-bottom: 25px;
        position: relative;
        text-align: center;
    }

    .lab-title::after {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background: #e74c3c;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
    }

    .labs-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .lab-card {
        display: flex;
        align-items: center;
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .lab-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .lab-card.reverse {
        flex-direction: row-reverse;
    }

    .lab-image {
        flex: 1 1 45%;
        overflow: hidden;
    }

    .lab-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .lab-card:hover .lab-image img {
        transform: scale(1.05);
    }

    .lab-content {
        flex: 1 1 55%;
        padding: 25px 30px;
    }

    .lab-name {
        font-size: 22px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 15px;
        position: relative;
    }

    .lab-name::after {
        content: "";
        position: absolute;
        width: 50px;
        height: 3px;
        background: #e74c3c;
        bottom: -8px;
        left: 0;
        border-radius: 2px;
    }

    .lab-details p {
        margin: 8px 0;
        color: #444;
        font-size: 15px;
        line-height: 1.6;
    }

    .lab-details b {
        color: #000;
    }

    .no-data {
        text-align: center;
        color: #777;
        font-size: 16px;
        margin-top: 10px;
    }

    /* === Responsive Design === */
    @media (max-width: 992px) {
        .lab-card {
            flex-direction: column;
        }

        .lab-card.reverse {
            flex-direction: column;
        }

        .lab-image {
            height: 250px;
        }

        .lab-content {
            padding: 20px;
        }

        .lab-name {
            text-align: center;
        }

        .lab-name::after {
            left: 50%;
            transform: translateX(-50%);
        }
    }

    /* Swiper Container */
    .menu-swiper {
        /*width: 100%;*/
        position: relative;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.6s ease;
        overflow: hidden;
    }

    .menu-swiper.swiper-initialized {
        visibility: visible;
        opacity: 1;
    }

    .menu-swiper .swiper-slide {
        opacity: 0.6;
        transform: scale(0.9);
        transition: all 0.3s ease;
        cursor: grab;
    }

    .menu-swiper .swiper-slide.swiper-slide-active {
        opacity: 1;
        transform: scale(1);
    }

    .menu-swiper .swiper-slide:not(.swiper-slide-active) a {
        pointer-events: none;
    }

    .menu-swiper .swiper-controls-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-top: 20px;
    }

    .menu-swiper .swiper-pagination {
        position: static;
        font-size: 14px;
        color: #444;
    }

    /* CARD STYLE */
    figure.menu-card {
        background: #f9f9f9;
        color: #222;
        border-radius: 12px;
        overflow: hidden;
        height: 350px;
        /* Fixed square-like card */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    figure.menu-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    figure.menu-card img {
        width: 100%;
        height: 180px;
        /* Uniform image height */
        object-fit: cover;
        border-bottom: 3px solid #ddd;
        transition: transform 0.4s ease;
    }

    figure.menu-card figcaption {
        padding: 15px;
        flex: 1;
    }

    .menu-card .date {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: rgba(60, 59, 110, 0.8);
        color: #fff;
        padding: 5px 10px;
        font-size: 13px;
        border-radius: 5px;
    }

    .menu-card h2 {
        font-size: 18px;
        font-weight: 600;
        margin: 5px 0;
        color: #333;
    }

    .menu-card h3 {
        font-size: 15px;
        color: #666;
        margin-bottom: 8px;
    }

    .menu-card p {
        font-size: 14px;
        color: #444;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .menu-card button {
        width: 100%;
        padding: 8px;
        background-color: #3c3b6e;
        color: #fff;
        border: none;
        border-radius: 5px;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
    }

    .menu-card button:hover {
        background-color: #b22234;
    }

    /* --- Syllabus Section --- */
    .syllabus-title {
        font-size: 28px;
        font-weight: 600;
        color: #000;
        margin-bottom: 20px;
        position: relative;
    }

    .syllabus-title::after {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background: #f39c12;
        bottom: -8px;
        left: 0;
        border-radius: 2px;
    }

    .syllabus-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .syllabus-item {
        display: flex;
        align-items: center;
        background: #f7f7f7;
        padding: 15px 20px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        transition: 0.3s ease;
    }

    .syllabus-item:hover {
        background: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .syllabus-item .icon img {
        width: 45px;
        height: 45px;
        margin-right: 20px;
    }

    .syllabus-item .content h5 {
        font-size: 20px;
        margin: 0;
        color: #000;
        font-weight: 600;
    }

    .syllabus-item .content p {
        margin: 5px 0 0;
        color: #444;
        font-size: 15px;
    }

    .syllabus-item .content a {
        text-decoration: none;
        color: #000;
        font-weight: 500;
        transition: color 0.3s;
    }

    .syllabus-item .content a:hover {
        color: #d35400;
    }

    .no-data {
        color: #777;
        font-size: 16px;
        text-align: center;
        margin-top: 10px;
    }

    @media (max-width: 768px) {
        .syllabus-item {
            flex-direction: row;
            align-items: flex-start;
        }

        .syllabus-item .icon img {
            width: 40px;
            height: 40px;
        }

        .syllabus-item .content h5 {
            font-size: 18px;
        }
       
    }
 .scheme-heading{
                font-size: 31px;
                padding: 10px;
        }

    .vision-mission-container {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-top: 30px;
    }

    .vision-box,
    .mission-box {
        width: 48%;
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .vision-box h3,
    .mission-box h3 {
        color: #003366;
        font-weight: 600;
        margin-bottom: 10px;
    }

    /* --------------------------
   GENERAL SECTION STYLING
--------------------------- */
    #mou {
        width: 100%;
        margin: 0 auto;
        padding: 20px;
    }

    .section-heading {
        text-align: center;
        margin-bottom: 30px;
    }

    .section-heading h1 {
        font-size: 28px;
        font-weight: 700;
        color: #3c3b6e;
        margin: 10px 0;
    }

    .section-heading .line {
        width: 60px;
        height: 4px;
        background: #b22234;
        margin: 0 auto 10px;
        border-radius: 3px;
    }

    /* --------------------------
   SWIPER CONTAINER
--------------------------- */
    .menu-swiper {
        position: relative;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.6s ease;
        overflow: hidden;
    }

    .menu-swiper.swiper-initialized {
        visibility: visible;
        opacity: 1;
    }

    .menu-swiper .swiper-slide {
        opacity: 0.7;
        transform: scale(0.9);
        transition: all 0.4s ease;
        cursor: grab;
    }

    .menu-swiper .swiper-slide.swiper-slide-active {
        opacity: 1;
        transform: scale(1);
    }

    .menu-swiper .swiper-slide:not(.swiper-slide-active) a {
        pointer-events: none;
    }

    /* --------------------------
   CARD DESIGN
--------------------------- */
    figure.menu-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        height: 360px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
    }

    figure.menu-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    figure.menu-card img {
        width: 100%;
        height: 190px;
        object-fit: cover;
        border-bottom: 3px solid #f2f2f2;
        transition: transform 0.4s ease;
    }

    figure.menu-card:hover img {
        transform: scale(1.05);
    }

    .menu-card .date {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #3c3b6e;
        color: #fff;
        padding: 6px 10px;
        font-size: 13px;
        border-radius: 5px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    figure.menu-card figcaption {
        padding: 15px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .menu-card h2 {
        font-size: 18px;
        font-weight: 600;
        color: #3c3b6e;
        margin: 5px 0;
        line-height: 1.2;
    }

    .menu-card h3 {
        font-size: 15px;
        color: #555;
        margin-bottom: 6px;
    }

    .menu-card p {
        font-size: 14px;
        color: #444;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .menu-card strong {
        color: #3c3b6e;
    }

    .menu-card button {
        width: 100%;
        padding: 10px;
        background-color: #3c3b6e;
        color: #fff;
        border: none;
        border-radius: 6px;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
    }

    .menu-card button:hover {
        background-color: #b22234;
    }

    /* --------------------------
   SWIPER CONTROLS
--------------------------- */
    .menu-swiper .swiper-controls-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        margin-top: 25px;
    }

    .menu-swiper .swiper-pagination {
        position: static;
        font-size: 14px;
        color: #444;
    }

    /* --------------------------
   RESPONSIVE DESIGN
--------------------------- */

    /* Tablets (768px and below) */
    @media (max-width: 768px) {
        figure.menu-card {
            height: 330px;
        }

        figure.menu-card img {
            height: 170px;
        }

        .menu-card h2 {
            font-size: 16px;
        }

        .menu-card h3 {
            font-size: 14px;
        }

        .menu-card p {
            font-size: 13px;
        }

        .menu-card button {
            font-size: 12px;
        }
    }

    /* Mobile Phones (480px and below) */
    @media (max-width: 480px) {
        #mou {
            padding: 10px;
        }

        .section-heading h1 {
            font-size: 22px;
        }

        .menu-swiper .swiper-slide {
            transform: scale(0.95);
        }

        figure.menu-card {
            height: 310px;
        }

        figure.menu-card img {
            height: 160px;
        }

        .menu-card h2 {
            font-size: 15px;
        }

        .menu-card h3 {
            font-size: 13px;
        }

        .menu-card p {
            font-size: 12.5px;
        }

        .menu-card button {
            font-size: 12px;
            padding: 8px;
        }

        .menu-card .date {
            font-size: 11px;
            padding: 4px 8px;
        }
    }

    /* Base Card Styles */
    .faculty-card-modern {
        border-radius: 12px;
        /* Smoother, more modern rounded corners */
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        /* Enhanced transition timing */
        background-color: #ffffff;
        /* Explicit white background */
        border: 1px solid rgba(0, 0, 0, 0.05);
        /* Very light border for definition */
    }

    /* Hover Effect - Deeper Shadow and subtle upward lift */
    .faculty-card-modern:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    /* Profile Image Styling */
    .faculty-img {
        width: 140px;
        /* Slightly larger image */
        height: 140px;
        object-fit: cover;
        box-shadow: 0 0 0 5px rgba(25, 135, 84, 0.1);
        /* Subtle ring effect (using a primary color) */
    }

    /* Name Styling */
    .faculty-card-modern h5 {
        font-size: 1.3rem;
        /* Slightly larger name */
        color: #343a40 !important;
        /* Darker text for better contrast */
    }

    /* Designation Styling */
    .faculty-card-modern p.text-primary {
        font-size: 1rem;
        color: #0d6efd !important;
        /* Keep the primary blue for the key role */
    }

    /* Experience Badge Styling */
    .faculty-exp-badge {
        padding: 0.4em 0.8em;
        font-size: 0.9rem;
        border-radius: 50rem;
        /* Pill-shaped badge */
    }

    /* Details Alignment (to make Qualification more visible) */
    .faculty-details {
        max-width: 90%;
        /* Keep details slightly centered */
    }

    /* Icon Color Helper (assuming default Bootstrap colors: primary, secondary) */
    .text-secondary {
        color: #6c757d !important;
    }
    .gallery-container h1 {
        text-align: center;
        margin-top: 20px;
        font-family: 'Droid Sans', sans-serif;
        font-weight: bold;
    }

    .gallery-container p.page-description {
        text-align: center;
        margin: 25px auto;
        font-size: 18px;
        color: #777;
    }

    .tz-gallery {
        padding: 20px;
    }

    .tz-gallery .row>div {
        padding: 6px;
    }

    /* ✅ Make all images same size */
    .tz-gallery .lightbox img {
        width: 100%;
        height: 200px;
        /* uniform image height */
        object-fit: cover;
        /* crop nicely */
        border-radius: 6px;
        transition: transform 0.3s ease;
    }


    .tz-gallery .lightbox:hover:after,
    .tz-gallery .lightbox:hover:before {
        opacity: 1;
    }

    .baguetteBox-button {
        background-color: transparent !important;
    }

    /* ✅ Responsive Design */
    @media (max-width: 768px) {
        .container.gallery-container {
            padding: 15px;
        }

        .tz-gallery .lightbox img {
            height: 180px;
        }
    }

    .section-heading {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-heading .line {
        width: 80px;
        height: 3px;
        background-color: #007bff;
        margin: 10px auto;
        border-radius: 5px;
    }

    .news-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 12px;
    }

    .news-card:hover {
        transform: translateY(-6px);
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
    }

    .news-date {
        font-size: 0.85rem;
        font-weight: 600;
        border-bottom-right-radius: 10px;
    }

    .news-img-container img {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .btn-outline-primary {
        border-width: 1.5px;
    }

    .btn-outline-primary:hover {
        background-color: #007bff;
        color: #fff;
    }

    @media (max-width: 768px) {
        .news-card img {
            height: 180px;
        }
    }

    .section-heading {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-heading .line {
        width: 80px;
        height: 3px;
        background-color: #007bff;
        margin: 10px auto;
        border-radius: 5px;
    }

    .news-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 12px;
    }

    .news-card:hover {
        transform: translateY(-6px);
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
    }

    .news-date {
        font-size: 0.85rem;
        font-weight: 600;
        border-bottom-right-radius: 10px;
    }

    .news-img-container img {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .btn-outline-primary {
        border-width: 1.5px;
    }

    .btn-outline-primary:hover {
        background-color: #007bff;
        color: #fff;
    }

    @media (max-width: 768px) {
        .news-card img {
            height: 180px;
        }
    }


.guest-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.guest-section h1 {
  font-size: 2.2rem;
  color: #003366;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.guest-section h1::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 60%;
  height: 3px;
  background: #007bff;
  transform: translateX(-50%);
  border-radius: 5px;
}

.guest-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.guest-card {
  background: #fefefe;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.guest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.guest-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.guest-info {
  padding: 20px;
}

.guest-info h3 {
  color: #003366;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.guest-info p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.guest-info span {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
}
