:root {
            --primary-blue: #0056a6;
            --secondary-teal: #0d8187;
            --accent-green: #4caf50;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
            --text-primary: #212529;
            --text-secondary: #6c757d;
            --transition-speed: 0.3s;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, .navbar-brand, .display-1, .display-2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 86, 166, 0.85), rgba(13, 129, 135, 0.8)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            color: white;
            padding: 150px 0 100px;
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            color: var(--primary-blue);
            margin-bottom: 2.5rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--secondary-teal);
            border-radius: 2px;
        }
        .card-hover {
            transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            background-color: rgba(0, 86, 166, 0.1);
            color: var(--primary-blue);
            font-size: 28px;
        }
        .btn-nimhans {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 500;
            transition: all var(--transition-speed);
        }
        .btn-nimhans:hover, .btn-nimhans:focus {
            background-color: var(--secondary-teal);
            border-color: var(--secondary-teal);
            transform: scale(1.05);
            color: white;
        }
        .navbar {
            background-color: white !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            padding-top: 15px;
            padding-bottom: 15px;
            transition: all 0.4s;
        }
        .navbar-brand {
            color: var(--primary-blue) !important;
            font-weight: 700;
            font-size: 1.8rem;
        }
        .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 500;
            margin: 0 8px;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-teal);
            transition: width var(--transition-speed);
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        .footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding-top: 60px;
        }
        .footer a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        .footer a:hover {
            color: white;
        }
        .flink {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            padding: 8px 16px;
            margin: 5px;
            transition: all var(--transition-speed);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .flink:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .bg-light-custom {
            background-color: var(--light-gray);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
        }
        .news-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 86, 166, 0.05);
            color: var(--primary-blue);
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(0, 86, 166, 0.25);
        }
        .sticky-top {
            top: 20px;
        }
        .department-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0 60px;
                text-align: center;
            }
            .section-padding {
                padding: 60px 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .stat-number {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        .map-container iframe {
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
