:root {
            --nmims-blue: #003366;
            --nmims-gold: #CC9900;
            --nmims-light: #F5F7FA;
            --nmims-dark: #1A2A3A;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5, .navbar-brand {
            font-weight: 700;
            color: var(--nmims-dark);
        }
        .bg-nmims-blue {
            background-color: var(--nmims-blue) !important;
        }
        .text-nmims-gold {
            color: var(--nmims-gold) !important;
        }
        .btn-primary {
            background-color: var(--nmims-blue);
            border-color: var(--nmims-blue);
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #002244;
            border-color: #002244;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,51,102,0.2);
        }
        .btn-outline-light:hover {
            background-color: rgba(255,255,255,0.15);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 34, 68, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 140px 0 100px;
            position: relative;
        }
        .nav-link {
            font-weight: 500;
            padding: 8px 16px !important;
            margin: 0 4px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(255,255,255,0.1);
            color: var(--nmims-gold) !important;
        }
        .navbar {
            padding-top: 20px;
            padding-bottom: 20px;
            transition: all 0.4s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .navbar.scrolled {
            padding-top: 12px;
            padding-bottom: 12px;
            background-color: var(--nmims-blue) !important;
        }
        .section-padding {
            padding: 100px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 50px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--nmims-gold);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: rgba(0, 51, 102, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--nmims-blue);
            font-size: 28px;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--nmims-blue);
            line-height: 1;
        }
        .campus-card {
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
            position: relative;
        }
        .campus-card img {
            transition: transform 0.5s ease;
            height: 280px;
            object-fit: cover;
        }
        .campus-card:hover img {
            transform: scale(1.05);
        }
        .campus-card .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,51,102,0.9));
            padding: 30px 20px 20px;
            color: white;
        }
        footer {
            background-color: #0A1929;
            color: #B0BAC5;
        }
        footer a {
            color: #B0BAC5;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: white;
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--nmims-gold);
            transform: translateY(-3px);
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        .breadcrumb-item.active {
            color: var(--nmims-gold);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 60px;
            }
            .section-padding {
                padding: 60px 0;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
        .faculty-img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border: 4px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--nmims-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,51,102,0.3);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: #002244;
            transform: translateY(-3px);
        }
