:root {
            --jntu-blue: #0a3d62;
            --jntu-gold: #f9ca24;
            --jntu-light: #e8f4f8;
            --jntu-dark: #1a1a2e;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        h1, h2, h3, h4, h5 {
            color: var(--jntu-blue);
            font-weight: 700;
        }
        .jntu-bg-primary {
            background-color: var(--jntu-blue) !important;
        }
        .jntu-text-gold {
            color: var(--jntu-gold) !important;
        }
        .jntu-btn-primary {
            background-color: var(--jntu-blue);
            border-color: var(--jntu-blue);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .jntu-btn-primary:hover {
            background-color: #095293;
            border-color: #095293;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(10, 61, 98, 0.3);
        }
        .navbar {
            background-color: rgba(10, 61, 98, 0.95) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding-top: 15px;
            padding-bottom: 15px;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
        }
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 5px;
            padding: 8px 15px !important;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            background-color: rgba(249, 202, 36, 0.2);
            color: var(--jntu-gold) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(10, 61, 98, 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: 120px 0 100px;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 25px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            position: relative;
            margin-bottom: 50px;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--jntu-gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .icon-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 4px solid var(--jntu-blue);
        }
        .icon-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(10, 61, 98, 0.1);
        }
        .icon-box i {
            font-size: 3rem;
            color: var(--jntu-blue);
            margin-bottom: 20px;
        }
        .news-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(10, 61, 98, 0.1);
        }
        .news-card img {
            height: 220px;
            object-fit: cover;
        }
        .news-card .card-body {
            padding: 25px;
        }
        .campus-life-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            height: 300px;
        }
        .campus-life-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        .campus-life-card:hover img {
            transform: scale(1.05);
        }
        .campus-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10, 61, 98, 0.9), transparent);
            color: white;
            padding: 30px 20px 20px;
        }
        .flink {
            display: inline-block;
            background: var(--jntu-light);
            color: var(--jntu-blue);
            padding: 10px 20px;
            margin: 5px 8px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #d1e7f5;
        }
        .flink:hover {
            background: var(--jntu-blue);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--jntu-dark);
            color: #ccc;
            padding-top: 60px;
        }
        footer h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        footer h5:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--jntu-gold);
            bottom: 0;
            left: 0;
        }
        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--jntu-gold);
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background: var(--jntu-gold);
            color: var(--jntu-dark);
            transform: translateY(-5px);
        }
        .copyright {
            background-color: rgba(0,0,0,0.2);
            padding: 20px 0;
            margin-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .stat-box {
            text-align: center;
            padding: 30px 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--jntu-blue);
            line-height: 1;
        }
        .stat-label {
            color: #666;
            font-size: 1rem;
            margin-top: 10px;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(10, 61, 98, 0.1);
            color: var(--jntu-blue);
            font-weight: 600;
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(10, 61, 98, 0.25);
        }
        .contact-info-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            text-align: center;
            border-left: 4px solid var(--jntu-gold);
        }
        .contact-info-box i {
            font-size: 2.5rem;
            color: var(--jntu-blue);
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 100px 0 60px;
                min-height: 70vh;
            }
            .section-padding {
                padding: 60px 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
        .visitor-count {
            background: var(--jntu-light);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--jntu-blue);
        }
        .language-switcher {
            margin-left: 15px;
        }
        .language-switcher select {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
        }
        .sticky-nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1030;
            padding-top: 10px;
            padding-bottom: 10px;
            background-color: var(--jntu-blue) !important;
        }
