        /* TMU Theme Specific Variables */
        :root {
            --tmu-blue: #001055;
            --tmu-orange: #ff7900;
            --tmu-gray: #f8f9fa;
        }

        /* 1. Hero Section */
        .lts-master-hero {
            position: relative;
            background: url('/assets/img/LTS/main-lts.jpg') center/cover no-repeat;
            height: 80vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            margin-bottom: 50px;
            overflow: hidden;
        }

        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .lts-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0, 16, 85, 0.95) 0%, rgba(0, 16, 85, 0.7) 50%, rgba(0, 16, 85, 0.2) 100%);
            z-index: 2;
        }

        .lts-hero-content {
            position: relative;
            z-index: 3;
            color: #fff;
        }

        .lts-hero-content h1 {
            font-size: 4.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 20px;
            text-transform: uppercase;
            border-left: 8px solid var(--tmu-orange);
            padding-left: 20px;
        }

        /* 2. Complex About Section */
        .lts-about-box {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            padding: 30px;
            position: relative;
            margin-top: -100px;
            z-index: 10;
            border-top: 5px solid var(--tmu-orange);
        }

        @media (max-width: 767px) {
            .lts-about-box {
                padding: 25px 20px;
                margin-top: -80px;
                /* Stronger overlap for mobile */
                margin-left: 15px;
                margin-right: 15px;
            }
        }

        /* 3. The Need (Comparison UI) */
        .lts-vs-wrapper {
            background: var(--tmu-gray);
            padding: 50px 0;
            margin: 30px 0;
        }

        .lts-vs-card {
            background: #fff;
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: transform 0.3s;
            position: relative;
            overflow: hidden;
        }

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

        .lts-vs-card.problem-card {
            border-bottom: 6px solid #e11d48;
        }

        .lts-vs-card.solution-card {
            border-bottom: 6px solid var(--tmu-orange);
        }

        .lts-vs-card i.bg-icon {
            position: absolute;
            right: -20px;
            bottom: -20px;
            font-size: 150px;
            opacity: 0.03;
            transform: rotate(-15deg);
        }

        .vs-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--tmu-blue);
            color: var(--tmu-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            border: 8px solid var(--tmu-gray);
            z-index: 5;
        }

        /* 4. Objectives (Rich Interactive Cards) */
        .lts-obj-card {
            background: #fff;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            height: calc(100% - 30px);
        }

        .lts-obj-card:hover {
            background: var(--tmu-blue);
            color: #fff;
            transform: translateY(-10px);
        }

        .lts-obj-card .icon-wrapper {
            width: 80px;
            height: 80px;
            background: rgba(255, 121, 0, 0.1);
            color: var(--tmu-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px auto;
            transition: all 0.4s;
        }

        .lts-obj-card:hover .icon-wrapper {
            background: var(--tmu-orange);
            color: #fff;
        }

        .lts-obj-card h4 {
            color: var(--tmu-blue);
            font-weight: 700;
            margin-bottom: 15px;
            transition: color 0.4s;
        }

        .lts-obj-card p {
            transition: color 0.4s;
        }

        .lts-obj-card:hover h4 {
            color: #fff;
        }

        .lts-obj-card:hover p.text-muted {
            color: #e2e8f0 !important;
        }

        /* 5. Outcomes (Timeline/Grid Hybrid) */
        .lts-outcome-item {
            display: flex;
            align-items: flex-start;
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
            margin-bottom: 25px;
            border-left: 4px solid var(--tmu-orange);
            transition: all 0.3s;
        }

        .lts-outcome-item:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateX(10px);
        }

        .lts-outcome-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: var(--tmu-blue);
            color: #fff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 20px;
        }

        /* 6. Speakers & Events List (Notice board style from Alumni page) */
        .notice-wrapper {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
        }

        .notice-list-container {
            overflow-y: auto;
            flex-grow: 1;
            padding-right: 15px;
        }

        .notice-list-container::-webkit-scrollbar {
            width: 8px;
        }

        .notice-list-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .notice-list-container::-webkit-scrollbar-thumb {
            background: var(--tmu-orange);
            border-radius: 10px;
        }

        .notice-list-container::-webkit-scrollbar-thumb:hover {
            background: #e66a00;
        }

        .notice-content p {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .line-clamp-3 {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .speaker-grid-item img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .speaker-grid-item:hover img {
            transform: scale(1.1);
        }

        .speaker-info-plate {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 16, 85, 0.9);
            padding: 20px;
            color: #fff;
            transform: translateY(100%);
            transition: transform 0.4s ease-in-out;
        }

        .speaker-grid-item:hover .speaker-info-plate {
            transform: translateY(0);
        }

        .speaker-title-persistent {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 30px 20px 20px 20px;
            color: #fff;
            transition: opacity 0.4s;
        }

        .speaker-grid-item:hover .speaker-title-persistent {
            opacity: 0;
        }

        @media (max-width: 991px) {
            .vs-badge {
                display: none;
            }

            .lts-hero-content h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 767px) {
            .lts-master-hero {
                height: auto;
                padding: 100px 0;
            }

            .lts-hero-content h1 {
                font-size: 2.2rem;
                border-left-width: 5px;
            }

            .lts-hero-content p.lead {
                font-size: 1.1rem !important;
            }
        }

        @media (max-width: 480px) {
            .lts-hero-content h1 {
                font-size: 1.8rem;
            }
        }

        /* 7. Premium Image Stack & Swiper (Responsive) */
        .lts-image-container {
            position: relative;
            width: 100%;
            height: 450px;
        }

        /* Desktop: Layered Image Stack */
        @media (min-width: 992px) {
            .lts-mobile-swiper-wrap {
                display: none !important;
            }

            .lts-image-stack {
                position: relative;
                width: 100%;
                height: 100%;
            }

            .lts-stack-img {
                position: absolute;
                border-radius: 20px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
                transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                object-fit: cover;
                cursor: pointer;
            }

            .lts-stack-img-1 {
                top: 0;
                left: 10%;
                width: 75%;
                height: 340px;
                z-index: 3;
            }

            .lts-stack-img-2 {
                top: 60px;
                right: 0;
                width: 65%;
                height: 300px;
                z-index: 2;
                transform: rotate(3deg);
            }

            .lts-stack-img-3 {
                bottom: 0px;
                left: 0;
                width: 60%;
                height: 240px;
                z-index: 4;
                transform: rotate(-3deg);
            }

            .lts-stack-img:hover {
                z-index: 10 !important;
                transform: scale(1.05) rotate(0deg) !important;
                box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            }

            .lts-image-stack:hover .lts-stack-img:not(:hover) {
                filter: grayscale(0.2) blur(1px);
                opacity: 0.8;
            }
        }

        /* Mobile: Swiper Carousel */
        @media (max-width: 991px) {
            .lts-image-container {
                display: block;
                height: 250px;
                /* Reduced from 450px */
                margin-bottom: 20px;
            }

            .lts-image-stack {
                display: none !important;
            }

            .lts-mobile-swiper-wrap {
                display: block;
                width: 100%;
                height: 100%;
            }

            .lts-mobile-swiper-wrap .swiper-slide img {
                width: 100%;
                height: 220px;
                /* Horizontal rectangular layout */
                object-fit: cover;
                border-radius: 15px;
            }
        }

        /* Swiper Fixes */
        .swiper-pagination-bullet-active {
            background: var(--tmu-orange) !important;
        }

        /* --- News Tray (Modal) Premium Styles --- */
        .news-tray-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px);
            z-index: 9999;
            display: none;
            /* Hidden by default */
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .news-tray-overlay.active {
            display: flex;
            opacity: 1;
        }

        .news-tray-container {
            position: absolute;
            bottom: -100%;
            /* Slide up animation */
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: 1200px;
            height: 85vh;
            background: #fff;
            border-radius: 30px 30px 0 0;
            box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.2);
            transition: bottom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .news-tray-overlay.active .news-tray-container {
            bottom: 0;
        }

        .news-tray-header {
            padding: 30px 40px;
            background: #fff;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }

        .tray-head-info h2 {
            margin: 0;
            font-size: 2rem;
            color: var(--tmu-blue);
            font-weight: 800;
        }

        .tray-head-info h2 span {
            color: var(--tmu-orange);
        }

        .tray-badge {
            background: rgba(255, 121, 0, 0.1);
            color: var(--tmu-orange);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .close-tray-btn {
            background: #f1f1f1;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-tray-btn:hover {
            background: #e11d48;
            color: #fff;
            transform: rotate(90deg);
        }

        .news-tray-body {
            padding: 40px;
            overflow-y: auto;
            flex-grow: 1;
        }

        /* Improved Card Layout in Tray */
        .tray-news-card {
            background: #fff;
            border-radius: 20px;
            border: 1px solid #eee;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

        .tray-news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--tmu-orange);
        }

        .tray-card-img {
            height: 200px;
            overflow: hidden;
        }

        .tray-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .tray-news-card:hover .tray-card-img img {
            transform: scale(1.1);
        }

        .tray-card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .tray-card-date {
            font-size: 0.85rem;
            color: var(--tmu-orange);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .tray-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--tmu-blue);
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .tray-card-desc {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* --- LTS Enhanced News Card for OWL Carousel --- */
        @media (min-width: 992px) {
            .lts-heading-shift {
                transform: translateY(-40px);
            }
        }

        .lts-news-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            padding: 15px;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
            position: relative;
        }

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

        .lts-news-card-img {
            border-radius: 15px;
            overflow: hidden;
            flex-shrink: 0;
            height: 220px;
        }

        .lts-news-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .lts-news-card-content {
            padding-top: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .lts-news-card-meta {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .lts-news-card-title-group {
            border-left: 5px solid var(--tmu-orange);
            padding-left: 15px;
            margin-bottom: 20px;
        }

        .lts-news-card-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--tmu-blue) !important;
            line-height: 1.4;
            margin: 0;
        }

        .lts-news-card-title a {
            color: inherit !important;
            text-decoration: none;
        }

        .lts-news-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 10px;
        }

        .lts-news-card-date {
            font-size: 1rem;
            color: #64748b;
        }

        .lts-news-card-btn {
            border: 1px solid #c09d6a;
            color: #c09d6a !important;
            border-radius: 50px;
            padding: 8px 20px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none !important;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .lts-news-card-btn:hover {
            background: #c09d6a;
            color: #fff !important;
        }

        /* --- Album Modal & Custom Lightbox --- */
        .album-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .album-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .album-modal-header {
            padding: 20px 40px;
            display: flex;
            justify-content: center;
            /* Center title since button is on left */
            align-items: center;
            background: rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .album-modal-title {
            color: #fff;
            font-size: 1.2rem;
            margin: 0;
            font-weight: 700;
            text-transform: none;
        }

        .album-modal-close {
            position: absolute;
            top: 15px;
            left: 30px;
            /* Top left corner as requested */
            color: #fff;
            font-size: 3rem;
            cursor: pointer;
            background: none;
            border: none;
            transition: color 0.3s ease;
            z-index: 10002;
            line-height: 1;
        }

        .album-modal-close:hover {
            color: var(--tmu-orange);
        }

        .album-modal-body {
            padding: 40px;
            overflow-y: auto;
            flex-grow: 1;
        }

        .album-grid-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Mobile Responsiveness for Album Modal */
        @media (max-width: 768px) {
            .album-modal-header {
                padding: 15px 55px 15px 55px;
                /* Space for close button (left) and hamburger (right) */
                justify-content: center;
                text-align: center;
            }

            .album-modal-title {
                font-size: 1.1rem;
                line-height: 1.4;
                width: 100%;
                word-wrap: break-word;
            }

            .album-modal-close {
                left: 15px;
                top: 15px;
                transform: none;
                font-size: 2.5rem;
            }

            .album-modal-body {
                padding: 15px;
            }

            .album-grid-container {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
                gap: 10px;
            }
        }

        /* Prevent gallery item posters from being cropped and add blurred background */
        .gallery-grid .gallery-item {
            background-color: #000;
            position: relative;
        }

        .gallery-grid .gallery-item img {
            object-fit: contain !important;
            background-color: transparent !important;
            position: relative;
            z-index: 1;
        }

        .gallery-blur-bg {
            position: absolute;
            top: -10%;
            left: -10%;
            right: -10%;
            bottom: -10%;
            background-size: cover;
            background-position: center;
            filter: blur(20px);
            z-index: 0;
            opacity: 0.6;
        }

        /* Text Overlay */
        .gallery-grid .gallery-item-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 20px 20px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
            z-index: 2;
            pointer-events: none;
        }

        .gallery-grid .gallery-item-title {
            color: #ffffff;
            font-size: 1.25rem;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .gallery-grid .gallery-item-category {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            margin: 0;
        }

        .album-image-item {
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            aspect-ratio: 4/3;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .album-image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .album-image-item:hover img {
            transform: scale(1.08);
        }

        .album-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .album-image-item:hover .album-image-overlay {
            opacity: 1;
        }

        .album-image-overlay i {
            color: #fff;
            font-size: 2.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        /* Dedicated Lightbox for Album Images */
        .custom-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.98);
            z-index: 10001;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
        }

        .custom-lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .custom-lightbox img {
            max-width: 90%;
            max-height: 90vh;
            border-radius: 5px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            object-fit: contain;
        }

        .custom-lightbox-close {
            position: absolute;
            top: 20px;
            left: 30px;
            color: #ffffff !important;
            font-size: 3rem;
            cursor: pointer;
            z-index: 10002;
            line-height: 1;
            transition: color 0.3s ease;
        }

        .custom-lightbox-close:hover {
            color: var(--tmu-orange);
        }

        .custom-lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            z-index: 10002;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }

        .custom-lightbox-nav:hover {
            background: var(--tmu-orange);
            color: #fff;
        }

        .custom-lightbox-prev {
            left: 30px;
        }

        .custom-lightbox-next {
            right: 30px;
        }

        .custom-lightbox-caption {
            position: absolute;
            bottom: 30px;
            color: #fff;
            font-size: 1.2rem;
            text-align: center;
            width: 100%;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
            font-weight: 600;
            letter-spacing: 1px;
        }