:root {
            --nit-primary: #0c2340;
            --nit-secondary: #9d2235;
            --nit-accent: #e6af2e;
            --nit-light: #f8f9fa;
            --nit-dark: #212529;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--nit-primary);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
        }
        .hero-section {
            background: linear-gradient(rgba(12, 35, 64, 0.85), rgba(12, 35, 64, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0 80px;
            position: relative;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--nit-accent);
        }
        .section-title.text-start:after {
            left: 0;
            transform: none;
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .btn-nitro {
            background-color: var(--nit-secondary);
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--nit-secondary);
        }
        .btn-nitro:hover {
            background-color: transparent;
            color: var(--nit-secondary);
            border-color: var(--nit-secondary);
        }
        .btn-nitro-outline {
            background-color: transparent;
            color: var(--nit-primary);
            border: 2px solid var(--nit-primary);
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-nitro-outline:hover {
            background-color: var(--nit-primary);
            color: white;
        }
        footer {
            background-color: var(--nit-primary);
            color: white;
        }
        .footer-link {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: var(--nit-accent);
        }
        .flink {
            background-color: rgba(255,255,255,0.05);
            border-radius: 6px;
            padding: 12px 20px;
            margin-bottom: 10px;
            display: block;
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        .flink:hover {
            background-color: rgba(255,255,255,0.1);
            border-left-color: var(--nit-accent);
            color: white;
            transform: translateX(5px);
        }
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1020;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .news-card {
            border-left: 4px solid var(--nit-secondary);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--nit-primary);
            line-height: 1;
        }
        .campus-img {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .research-highlight {
            border-top: 5px solid var(--nit-accent);
        }
        .faculty-card img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 60px;
                text-align: center;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        .breadcrumb-item.active {
            color: var(--nit-accent);
        }
