:root {
            --kgmu-blue: #0a3d62;
            --kgmu-gold: #f9ca24;
            --kgmu-light: #e6f2ff;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(10, 61, 98, 0.9)), url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
        }
        .section-title {
            color: var(--kgmu-blue);
            border-bottom: 3px solid var(--kgmu-gold);
            padding-bottom: 10px;
            margin-bottom: 2rem;
            display: inline-block;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .bg-kgmu-light {
            background-color: var(--kgmu-light);
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            background: #f8f9fa;
            border-radius: 4px;
            border: 1px solid #dee2e6;
            color: var(--kgmu-blue);
            text-decoration: none;
            transition: all 0.3s;
        }
        .flink:hover {
            background: var(--kgmu-blue);
            color: white;
            border-color: var(--kgmu-blue);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            margin: 0 5px;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--kgmu-gold) !important;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .stats-counter {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--kgmu-blue);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--kgmu-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }
        .btn-kgmu {
            background: var(--kgmu-blue);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            border: none;
        }
        .btn-kgmu:hover {
            background: #082a47;
            color: white;
        }
        .btn-kgmu-outline {
            border: 2px solid var(--kgmu-blue);
            color: var(--kgmu-blue);
            padding: 10px 25px;
            border-radius: 30px;
            background: transparent;
        }
        .btn-kgmu-outline:hover {
            background: var(--kgmu-blue);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
