
    :root {
            --primary: #001157;
            --secondary: #ea1d22;
            --accent: #525252;
            --bg-light: #f8fafc;
            --text-main: #1e293b;
            --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-main);
            overflow-x: hidden;
          
        }



/* --- Global Section Headers --- */
.section-header {
    margin-bottom: 3rem;
}
.stitle
{
    font-size: 2.2rem;; 
}

.section-header h3 {
    font-weight: 800;
    color: var(--primary);
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-header h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--secondary);
    border-radius: 10px;
}


/* --- Sticky Sidebar --- */
.sticky-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.action-link {
    background: white;
    color: var(--primary);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 40px 0 0 40px;
    box-shadow: -8px 8px 20px rgba(0,0,0,0.12);
    transition: var(--transition-bounce);
    width: 180px;
    margin-right: -130px;
}

.action-link:hover {
    margin-right: 0;
    background: var(--secondary);
    color: white;
}

/* --- Academic Sections &amp; Tabs --- */
.academic-container {
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}
       .dept-card {
            background: #f8fafc;
            padding: 20px;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: var(--primary);
        }

.academic-pills .nav-link {
    color: var(--accent);
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 16px;
    background: white;
    border: 1px solid #e2e8f0;
    margin-bottom: 15px;
    text-align: left;
    transition: var(--transition);
    display: block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.academic-pills .nav-link.active {
    background-color: var(--primary);
    color: white !important;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(20, 25, 75, 0.15);
}
  .school-tabs .nav-link {
            border: none;
            color: var(--accent);
            font-weight: 700;
            padding: 15px 25px;
            border-radius: 15px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .school-tabs .nav-link.active {
            background: var(--secondary);
            color: white !important;
            box-shadow: 0 10px 15px rgba(20, 25, 75, 0.2);
        }

.school-content-card { 
    padding: 40px; 
    background: white;
    border-radius: 24px;
}
   .school-content {
            padding: 50px;
        }

/* --- Department &amp; Dean Cards --- */
.dean-message-box, .dean-quote {
    background: #fff5f5;
    padding: 30px;
    border-radius: 0 24px 24px 0;
    position: relative;
    border-left: 5px solid var(--secondary);
    font-style: italic;
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.dept-tag {
    background: var(--bg-light);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
}

      .school-nav-wrapper {
            background: #f1f5f9;
            padding: 10px;
        }

.dept-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

      .dept-card:hover {
            background: white;
            border-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: var(--shadow-sm);
            color: var(--secondary);
        }

/* --- Leadership &amp; Info Cards --- */
 .stats-card, .company-card, .info-card {
    background: white;
    border-radius: 24px;
    padding: 30px 25px;
    border: 1px solid #edf2f7;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.stats-card:hover, .company-card:hover, .info-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateY(-5px);
}
   /* Leadership Profiles */
        .leader-card {
            background: white;
            border-radius: 24px;
            padding: 30px 25px;
            border: 1px solid #edf2f7;
            transition: all 0.3s ease;
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .leader-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
            transform: translateY(-5px);
        }

             .profile-link {
            margin-top: auto;
            color: var(--primary);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .profile-link:hover {
            color: var(--secondary);
        }
.leader-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--bg-light);
}

/* --- Facilities &amp; News --- */
.facility-item {
    background: white;
    padding: 35px 20px;
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid #edf2f7;
    height: 100%;
}

.facility-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.news-card-v3 {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.news-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 35px;
    background: linear-gradient(to top, rgba(20,25,75,1) 0%, rgba(20,25,75,0.8) 40%, transparent 100%);
    color: white;
}

/* --- Helpers --- */
.stat-gradient { background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); }

.scroll-list, .custom-scrollbar {
    max-height: 350px;
    overflow-y: auto;
}

.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 10px; }

/* --- Responsive --- */
@media (max-width: 991px) {
    .school-content, .school-content-card { padding: 30px; }
  
    .sticky-sidebar { display: none; }
   
 
}

    .school-image-box {
            position: relative;
            height: 100%;
            min-height: 400px;
            border-radius: 24px;
            overflow: hidden;
        }

        .school-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        :root {
            --primary-color: #14194b;
            --slider-height: 500px; /* Adjust this to change the overall section height */
        }

      

    
 
    


    

       

    

      


 
        /* Slider Container fix for Bootstrap conflict */
        .news-slider:not(.slick-initialized) {
            display: flex;
            gap: 20px;
            overflow: hidden;
        }

        /* Vibrant News Card v3 */
        .news-card-v3 {
            position: relative;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            background: #f8f9fa;
            margin: 10px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
            cursor: pointer;
        }

        .news-card-v3:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .news-card-v3 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .news-card-v3:hover img {
            transform: scale(1.1);
        }

        /* Content Overlay */
        .news-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 25px 25px;
            background: linear-gradient(to top, 
                rgba(0, 0, 0, 0.9) 0%, 
                rgba(0, 0, 0, 0.6) 50%, 
                transparent 100%);
            color: white;
            z-index: 2;
        }

        .news-content .badge {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 6px 12px;
            border-radius: 50px;
        }

        .news-content h5 {
            font-size: 1.25rem;
            line-height: 1.4;
            margin-top: 10px;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .news-content p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.8);
        }

        /* Navigation Buttons */
        .btn-outline-primary.rounded-circle {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border-width: 2px;
        }

        .btn-outline-primary.rounded-circle:hover {
            transform: scale(1.1);
        }

        /* Hide default focus outline for Slick */
        .slick-slide {
            outline: none !important;
        }
  
        :root {
          --primary-accent: #14194b;
            --secondary-dark: #ea1d22;
            --glass-bg: rgba(15, 23, 42, 0.85);
            --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-wrapper {
            background: var(--secondary-dark);
            overflow: hidden;
            max-height: 450px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
            margin: 0px auto;
        }

        .hero-row {
            height: 400px;
        }

        /* Left Side: Static Content (4 Column) */
        .slider-left {
            padding: 3rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(to right, 
                #525252 33.33%,   /* First color: 33.33% of the width */
                #ea1d22 33.33% 66.66%,  /* Second color: next 33.33% */
                #14194b 66.66%);
            color: white;
            position: relative;
            z-index: 10;
            border-right: 1px solid rgba(255,255,255,0.1);
        }

        .slider-left h2 {
            font-size: 1.8rem;
            line-height: 1.2;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .slider-left p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
        }

        /* Right Side: Image Slider (8 Column) */
        .slider-right {
            position: relative;
            height: 100%;
            overflow: hidden;
        }

        .hero-slider {
            height: 100%;
            position: relative;
        }

        .hero-img-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            z-index: 1;
        }

        .hero-img-container.active {
            opacity: 1;
            z-index: 2;
        }

        .hero-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }

        /* Slide Content Overlays */
        .hero-overlay-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem;
            color: white;
            z-index: 5;
            transform: translateX(30px);
            opacity: 0;
            transition: all 0.6s ease 0.3s;
        }

        .active .hero-overlay-content {
            transform: translateX(0);
            opacity: 1;
        }

        .hero-overlay-content h3 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .hero-overlay-content p {
            font-size: 1.1rem;
            max-width: 500px;
            margin-bottom: 1.5rem;
            color: rgba(255,255,255,0.9);
        }

        /* Professional Vibrant Button */
        .btn-slide {
            background: var(--primary-accent);
            color: white;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            transition: var(--transition);
            border: 1px solid transparent;
            font-size: 0.9rem;
        }

        .btn-slide:hover {
            background: transparent;
            color: white;
            border-color: white;
            transform: translateY(-2px);
        }

        /* Navigation */
        .slider-nav {
            position: absolute;
            bottom: 25px;
            right: 40px;
            display: flex;
            gap: 10px;
            z-index: 100;
        }

        .nav-btn {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .nav-btn:hover {
            background: #fff;
            color: var(--secondary-dark);
        }

        @media (max-width: 991px) {
            .hero-wrapper { max-height: none; }
            .hero-row { height: auto; }
            .slider-left { padding: 2.5rem 1.5rem; }
            .slider-right { height: 400px; }
            .hero-overlay-content { padding: 2rem; }
            .hero-overlay-content h3 { font-size: 1.5rem; }
        }