Test
/* Main Styles */
.cuet-container {
background-color: #f7f9fd;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
padding: 0;
margin: 0;
}
.header-main {
background: #ffffff;
padding: 10px;
border-bottom: 2px solid #eb8a2b;
margin-bottom: 20px;
}
.section-header {
background: #eb8a2b;
color: white;
padding: 15px 20px;
border-radius: 5px;
margin-bottom: 20px;
}
.logo-container {
width: 300px;
height: 300px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 25px;
padding: 15px;
background: #ffffff;
border-radius: 12px;
overflow: hidden;
position: relative;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.logo-container:hover {
transform: scale(1.02);
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.university-logo {
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
object-fit: contain;
object-position: center;
opacity: 0;
transition: opacity 0.3s, transform 0.3s;
}
.university-logo.loaded {
opacity: 1;
}
.placeholder-letter {
width: 95%;
height: 95%;
display: flex;
align-items: center;
justify-content: center;
font-size: 64px;
color: #6c757d;
font-weight: bold;
background: #f8f9fa;
border-radius: 8px;
}
.university-card {
background: white;
border-radius: 16px;
box-shadow: 0 2px 12px rgba(0,0,0,0.25);
margin-bottom: 30px;
padding: 30px 25px;
transition: all 0.3s ease, box-shadow 0.4s;
display: flex;
flex-direction: column;
align-items: center;
min-height: 400px;
position: relative;
text-decoration: none;
color: inherit;
}
.university-card:hover {
transform: translateY(-5px);
box-shadow: 0 9px 18px rgba(0,0,0,0.25);
text-decoration: none;
color: inherit;
}
.university-card:hover .university-logo {
transform: scale(1.05);
}
.university-name {
text-align: center;
margin: 0;
font-size: 1.4rem;
line-height: 1.5;
font-weight: 500;
color: #2c3e50;
padding: 0 15px;
margin-top: 20px;
}
.search-container {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
margin-bottom: 30px;
position: sticky;
top: 0;
z-index: 100;
}
.search-input {
border: 2px solid #e9ecef;
padding: 12px 20px; /* Increased padding (top/bottom, left/right) */
font-size: 1.2rem; /* Increased font size */
width: 100%;
min-height: 50px; /* Added minimum height */
border-radius: 8px; /* Optional: slightly rounded corners */
}
.search-input::placeholder {
font-size: 1.2rem;
color: #6c757d;
}
.search-input:focus {
border-color: #eb8a2b;
box-shadow: none;
}
.filter-container {
background: white;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
position: sticky;
top: 100px;
padding: 20px;
margin-bottom: 20px;
}
.filter-header {
display: flex;
align-items: center;
gap: 10px;
padding-bottom: 15px;
margin-bottom: 15px;
border-bottom: 2px solid #eb8a2b;
font-weight: 600;
font-size: 1.6rem;
}
.university-icon {
font-size: 1.6rem;
}
.filter-options {
display: flex;
flex-direction: column;
gap: 10px;
}
.filter-option {
padding: 12px 15px;
border-radius: 8px;
background: #f8f9fa;
cursor: pointer;
transition: all 0.3s ease;
font-size: 1.4rem;
border: 1px solid #e9ecef;
}
.filter-option:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
background: #fff;
border-color: #eb8a2b;
}
.filter-option.active {
background: #eb8a2b;
color: white;
border-color: #eb8a2b;
}
/* Added for scroll padding */
html {
scroll-padding-top: 120px; /* Adjust based on your header height */
}
/* Bootstrap-like grid system */
.cuet-container * {
box-sizing: border-box;
}
.cuet-row {
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
.cuet-col-md-3, .cuet-col-md-4, .cuet-col-md-6, .cuet-col-md-8, .cuet-col-md-9 {
position: relative;
width: 100%;
padding-right: 15px;
padding-left: 15px;
}
@media (min-width: 768px) {
.cuet-col-md-3 {
flex: 0 0 25%;
max-width: 25%;
}
.cuet-col-md-4 {
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.cuet-col-md-6 {
flex: 0 0 50%;
max-width: 50%;
}
.cuet-col-md-8 {
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.cuet-col-md-9 {
flex: 0 0 75%;
max-width: 75%;
}
.cuet-mx-auto {
margin-left: auto;
margin-right: auto;
}
.cuet-text-center {
text-align: center;
}
.cuet-py-4 {
padding-top: 1.5rem;
padding-bottom: 1.5rem;
}
.logo-container {
width: 220px;
height: 220px;
}
.university-card {
min-height: 350px;
padding: 25px 20px;
}
}
@media (max-width: 1200px) {
.logo-container {
width: 200px;
height: 200px;
}
.university-card {
min-height: 380px;
}
}
@media (max-width: 768px) {
.logo-container {
width: 220px;
height: 220px;
}
.university-card {
min-height: 340px;
}
.university-name {
font-size: 0.95rem;
}
.filter-container {
position: static;
margin-bottom: 30px;
}
}
@media (max-width: 576px) {
.logo-container {
width: 200px;
height: 200px;
}
.university-card {
min-height: 320px;
padding: 20px 15px;
}
.university-name {
font-size: 1rem;
}
}
(function() {
// Define the dummy logo URL for #N/A values
const dummyLogoUrl = "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022420-2.jpg";
// All universities from the Excel file
const universitiesData = {
"Central University": [
{
name: "ALIGARH MUSLIM UNIVERSITY",
type: "Central University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/aligarh-muslim-university/"
},
{
name: "ASSAM UNIVERSITY",
type: "Central University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/assam-university/"
},
{
name: "BABASAHEB BHIMRAO AMBEDKAR UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022486.png",
redirectLink: "https://cuet.nta.nic.in/babasaheb-bhimrao-ambedkar-university/"
},
{
name: "BANARAS HINDU UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022410.png",
redirectLink: "https://cuet.nta.nic.in/banaras-hindu-university/"
},
{
name: "CENTRAL SANSKRIT UNIVERSITY",
type: "Central University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/central-sanskrit-university/"
},
{
name: "CENTRAL TRIBAL UNIVERSITY OF ANDHRA PRADESH",
type: "Central University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/central-tribal-university-of-andhra-pradesh/"
},
{
name: "CENTRAL UNIVERSITY OF ANDHRA PRADESH",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022480-1.png",
redirectLink: "https://cuet.nta.nic.in/central-university-of-andhra-pradesh/"
},
{
name: "CENTRAL UNIVERSITY OF GUJARAT",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/20250224100-1.png",
redirectLink: "https://cuet.nta.nic.in/central-university-of-gujarat/"
},
{
name: "CENTRAL UNIVERSITY OF HARYANA",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022474.png",
redirectLink: "https://cuet.nta.nic.in/central-university-of-haryana/"
},
{
name: "CENTRAL UNIVERSITY OF HIMACHAL PRADESH",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022430-1.png",
redirectLink: "https://cuet.nta.nic.in/central-university-of-himachal-pradesh/"
},
{
name: "CENTRAL UNIVERSITY OF JAMMU",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022426.jpg",
redirectLink: "https://cuet.nta.nic.in/central-university-of-jammu/"
},
{
name: "CENTRAL UNIVERSITY OF JHARKHAND",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022434.png",
redirectLink: "https://cuet.nta.nic.in/central-university-of-jharkhand/"
},
{
name: "CENTRAL UNIVERSITY OF KARNATAKA",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022460.png",
redirectLink: "https://cuet.nta.nic.in/central-university-of-karnataka/"
},
{
name: "CENTRAL UNIVERSITY OF KASHMIR",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022424.png",
redirectLink: "https://cuet.nta.nic.in/central-university-of-kashmir/"
},
{
name: "CENTRAL UNIVERSITY OF KERALA",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022413.jpg",
redirectLink: "https://cuet.nta.nic.in/central-university-of-kerala/"
},
{
name: "CENTRAL UNIVERSITY OF ODISHA",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022457.png",
redirectLink: "https://cuet.nta.nic.in/central-university-of-odisha/"
},
{
name: "Central University of Punjab",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022448.png",
redirectLink: "https://cuet.nta.nic.in/central-university-of-punjab/"
},
{
name: "CENTRAL UNIVERSITY OF RAJASTHAN",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022499.png",
redirectLink: "https://cuet.nta.nic.in/central-university-of-rajasthan/"
},
{
name: "CENTRAL UNIVERSITY OF SOUTH BIHAR",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022434-1.png",
redirectLink: "https://cuet.nta.nic.in/central-university-of-south-bihar/"
},
{
name: "CENTRAL UNIVERSITY OF TAMIL NADU",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022443.png",
redirectLink: "https://cuet.nta.nic.in/central-university-of-tamil-nadu/"
},
{
name: "DR. HARISINGH GOUR VISHWAVIDYALAYA",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022459-1.png",
redirectLink: "https://cuet.nta.nic.in/dr-harisingh-gour-vishwavidyalaya/"
},
{
name: "GURU GHASIDAS VISHWAVIDYALAYA",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022499-1.png",
redirectLink: "https://cuet.nta.nic.in/guru-ghasidas-vishwavidyalaya/"
},
{
name: "HEMVATI NANDAN BAHUGUNA GARHWAL UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022416.png",
redirectLink: "https://cuet.nta.nic.in/hemvati-nandan-bahuguna-garhwal-university/"
},
{
name: "Indira Gandhi National Tribal University, Amarkantak, Madhya Pradesh",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022451-2.png",
redirectLink: "https://cuet.nta.nic.in/indira-gandhi-national-tribal-university-amarkantak-madhya-pradesh/"
},
{
name: "JAMIA MILLIA ISLAMIA",
type: "Central University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/jamia-millia-islamia/"
},
{
name: "JAWAHARLAL NEHRU UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022424.jpg",
redirectLink: "https://cuet.nta.nic.in/jawaharlal-nehru-university/"
},
{
name: "MAHATMA GANDHI ANTARRASHTRIYA HINDI VISHWAVIDYALAYA",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022459-2.png",
redirectLink: "https://cuet.nta.nic.in/mahatma-gandhi-antarrashtriya-hindi-vishwavidyalaya/"
},
{
name: "MAHATMA GANDHI CENTRAL UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022428.png",
redirectLink: "https://cuet.nta.nic.in/mahatma-gandhi-central-university/"
},
{
name: "MANIPUR UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022473.png",
redirectLink: "https://cuet.nta.nic.in/manipur-university/"
},
{
name: "MAULANA AZAD NATIONAL URDU UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022425-1.jpg",
redirectLink: "http://cuet.nta.nic.in/maulana-azad-national-urdu-university/"
},
{
name: "MIZORAM UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022428.jpg",
redirectLink: "https://cuet.nta.nic.in/mizoram-university/"
},
{
name: "NAGALAND UNIVERSITY",
type: "Central University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/nagaland-university/"
},
{
name: "NATIONAL SANSKRIT UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022428-1.jpg",
redirectLink: "https://cuet.nta.nic.in/national-sanskrit-university/"
},
{
name: "NORTH-EASTERN HILL UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022416.jpg",
redirectLink: "https://cuet.nta.nic.in/north-eastern-hill-university/"
},
{
name: "PONDICHERRY UNIVERSITY",
type: "Central University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/pondicherry-university/"
},
{
name: "Rajiv Gandhi University and Affiliated Colleges",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022447-2.jpg",
redirectLink: "https://cuet.nta.nic.in/rajiv-gandhi-university-and-affiliated-colleges/"
},
{
name: "SAMMAKKA SARAKKA CENTRAL TRIBAL UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022452.jpg",
redirectLink: "https://cuet.nta.nic.in/sammakka-sarakka-central-tribal-university/"
},
{
name: "SHRI LAL BAHADUR SHASTRI NATIONAL SANSKRIT UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022425-2.png",
redirectLink: "https://cuet.nta.nic.in/shri-lal-bahadur-shastri-national-sanskrit-university/"
},
{
name: "SIKKIM UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022440-1.jpg",
redirectLink: "https://cuet.nta.nic.in/sikkim-university/"
},
{
name: "TEZPUR UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022467-1.jpg",
redirectLink: "https://cuet.nta.nic.in/tezpur-university/"
},
{
name: "THE ENGLISH AND FOREIGN LANGUAGES UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022467-2.jpg",
redirectLink: "https://cuet.nta.nic.in/the-english-and-foreign-languages-university/"
},
{
name: "TRIPURA UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022427-1.png",
redirectLink: "https://cuet.nta.nic.in/tripura-university/"
},
{
name: "UNIVERSITY OF ALLAHABAD",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022490.png",
redirectLink: "https://cuet.nta.nic.in/university-of-allahabad/"
},
{
name: "UNIVERSITY OF DELHI",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022415-1.png",
redirectLink: "https://cuet.nta.nic.in/university-of-delhi/"
},
{
name: "UNIVERSITY OF HYDERABAD",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022479-1.png",
redirectLink: "https://cuet.nta.nic.in/university-of-hyderabad/"
},
{
name: "VISVA-BHARATI UNIVERSITY",
type: "Central University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022458-1.png",
redirectLink: "https://cuet.nta.nic.in/visva-bharati-university/"
}
],
"State University": [
{
name: "BABA GHULAM SHAH BADSHAH UNIVERSITY",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022454-1.png",
redirectLink: "https://cuet.nta.nic.in/baba-ghulam-shah-badshah-university/"
},
{
name: "BARKATULLAH UNIVERSITY",
type: "State University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/barkatullah-university/"
},
{
name: "BHATTADEV UNIVERSITY",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022489.png",
redirectLink: "https://cuet.nta.nic.in/bhattadev-university/"
},
{
name: "Cluster University of Jammu",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022471-1.png",
redirectLink: "https://cuet.nta.nic.in/cluster-university-of-jammu/"
},
{
name: "Cluster University of Srinagar",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022443-1.png",
redirectLink: "https://cuet.nta.nic.in/cluster-university-of-srinagar/"
},
{
name: "COTTON UNIVERSTIY",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022475.jpg",
redirectLink: "https://cuet.nta.nic.in/cotton-universtiy/"
},
{
name: "Delhi Technological University",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022445.jpg",
redirectLink: "https://cuet.nta.nic.in/delhi-technological-university/"
},
{
name: "DEVI AHILYA VISHWAVIDYALAYA",
type: "State University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/devi-ahilya-vishwavidyalaya/"
},
{
name: "DIBRUGARH UNIVERSITY, DIBRUGARH, ASSAM",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022437.gif",
redirectLink: "https://cuet.nta.nic.in/dibrugarh-university-dibrugarh-assam/"
},
{
name: "Dr Shakuntala Misra National Rehabilitation University, Lucknow",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022412.png",
redirectLink: "https://cuet.nta.nic.in/dr-shakuntala-misra-national-rehabilitation-university-lucknow/"
},
{
name: "DR. A.P.J. ABDUL KALAM TECHNICAL UNIVERSITY",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022447.png",
redirectLink: "https://cuet.nta.nic.in/dr-a-p-j-abdul-kalam-technical-university/"
},
{
name: "DR. B.R. AMBEDKAR SCHOOL OF ECONOMICS UNIVERSITY",
type: "State University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/dr-b-r-ambedkar-school-of-economics-university/"
},
{
name: "DR. B.R. AMBEDKAR UNIVERSITY DELHI",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022427.jpg",
redirectLink: "https://cuet.nta.nic.in/dr-b-r-ambedkar-university-delhi/"
},
{
name: "Dr. Rammanohar Lohia Avadh University, Ayodhya",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022475.png",
redirectLink: "https://cuet.nta.nic.in/dr-rammanohar-lohia-avadh-university-ayodhya/"
},
{
name: "Dr. SHYAMA PRASAD MUKHERJEE UNIVERSITY",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022411-1.png",
redirectLink: "https://cuet.nta.nic.in/dr-shyama-prasad-mukherjee-university/"
},
{
name: "FURKATING COLLEGE(AUTONOMOUS) Golaghat,Assam",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022497.png",
redirectLink: "https://cuet.nta.nic.in/furkating-collegeautonomous-golaghat-assam/"
},
{
name: "Govt. Degree College (Autonomous), Baramulla",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022443.jpg",
redirectLink: "https://cuet.nta.nic.in/govt-degree-college-autonomous-baramulla/"
},
{
name: "Guru Gobind Singh Indraprastha University",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022427.png",
redirectLink: "https://cuet.nta.nic.in/guru-gobind-singh-indraprastha-university/"
},
{
name: "Harcourt Butler Technical University, Kanpur",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022434-2.png",
redirectLink: "https://cuet.nta.nic.in/harcourt-butler-technical-university-kanpur/"
},
{
name: "Indira Gandhi Delhi Technical University for Women",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022453.jpg",
redirectLink: "https://cuet.nta.nic.in/indira-gandhi-delhi-technical-university-for-women/"
},
{
name: "Islamic University of Science and Technology, Awantipora",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022457-2.png",
redirectLink: "https://cuet.nta.nic.in/islamic-university-of-science-and-technology-awantipora/"
},
{
name: "KHWAJA MOINUDDIN CHISHTI LANGUAGE UNIVERSITY",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022454-2.png",
redirectLink: "https://cuet.nta.nic.in/khwaja-moinuddin-chishti-language-university/"
},
{
name: "Kolhan University",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022497-1.png",
redirectLink: "https://cuet.nta.nic.in/kolhan-university/"
},
{
name: "Kumar Bhaskar Varma Sanskrit and Ancient Studies University",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022414.jpg",
redirectLink: "https://cuet.nta.nic.in/kumar-bhaskar-varma-sanskrit-and-ancient-studies-university/"
},
{
name: "M.P. Bhoj (Open) University, Bhopal",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022434-5.png",
redirectLink: "https://cuet.nta.nic.in/m-p-bhoj-open-university-bhopal/"
},
{
name: "MADAN MOHAN MALAVIYA UNIVERSITY OF TECHNOLOGY",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022463.jpg",
redirectLink: "https://cuet.nta.nic.in/madan-mohan-malaviya-university-of-technology/"
},
{
name: "Madhabdev University, Narayanpur, Lakhimpur",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022416-1.png",
redirectLink: "https://cuet.nta.nic.in/madhabdev-university-narayanpur-lakhimpur/"
},
{
name: "Maharashtra State Skills University",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022417-1.png",
redirectLink: "https://cuet.nta.nic.in/maharashtra-state-skills-university/"
},
{
name: "Mankanlal Chaturvedi National University of Journalism and Communication, Bhopal",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022482.jpg",
redirectLink: "https://cuet.nta.nic.in/mankanlal-chaturvedi-national-university-of-journalism-and-communication-bhopal/"
},
{
name: "Netaji Subhas University of Technology, New Delhi",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022424-2.png",
redirectLink: "https://cuet.nta.nic.in/netaji-subhas-university-of-technology-new-delhi/"
},
{
name: "Netaji Subhas University, Jharkhand",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022467-1.png",
redirectLink: "https://cuet.nta.nic.in/netaji-subhas-university-jharkhand/"
},
{
name: "North Lakhimpur College",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022444-2.png",
redirectLink: "https://cuet.nta.nic.in/north-lakhimpur-college/"
},
{
name: "Rani Durgavati University, Jabalpur, Madhya Pradesh",
type: "State University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/rani-durgavati-university-jabalpur-madhya-pradesh/"
},
{
name: "SARDAR PATEL UNIVERSITY OF POLICE SECURITY AND CRIMINAL JUSTICE",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022411-3.png",
redirectLink: "https://cuet.nta.nic.in/sardar-patel-university-of-police-security-and-criminal-justice/"
},
{
name: "SHRI MATA VAISHNO DEVI UNIVERSITY",
type: "State University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/shri-mata-vaishno-devi-university/"
},
{
name: "SHRI VISHWAKARMA SKILL UNIVERSITY",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022477.png",
redirectLink: "https://cuet.nta.nic.in/shri-vishwakarma-skill-university/"
},
{
name: "UNIVERSITY OF JAMMU",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022488-1.png",
redirectLink: "https://cuet.nta.nic.in/university-of-jammu/"
},
{
name: "UNIVERSITY OF KASHMIR",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022464-1.png",
redirectLink: "https://cuet.nta.nic.in/university-of-kashmir/"
},
{
name: "VIKRAM UNIVERSITY",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022460-3.png",
redirectLink: "https://cuet.nta.nic.in/vikram-university/"
},
{
name: "Vinoba Bhave University",
type: "State University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/20250224100-5.png",
redirectLink: "https://cuet.nta.nic.in/vinoba-bhave-university/"
}
],
"Deemed University": [
{
name: "Aurora Higher Education and Research Academy",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022454.png",
redirectLink: "https://cuet.nta.nic.in/aurora-higher-education-and-research-academy/"
},
{
name: "AVINASHILINGAM INSTITUTE FOR HOME SCIENCE AND HIGHER EDUCATION FOR WOMEN",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022411.png",
redirectLink: "https://cuet.nta.nic.in/avinashilingam-institute-for-home-science-and-higher-education-for-women/"
},
{
name: "CHINMAYA VISHWAVIDYAPEETH",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022415.jpg",
redirectLink: "https://cuet.nta.nic.in/chinmaya-vishwavidyapeeth/"
},
{
name: "Datta Meghe Institute of Higher Education and Research",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022469.jpg",
redirectLink: "https://cuet.nta.nic.in/datta-meghe-institute-of-higher-education-and-research/"
},
{
name: "DAYALBAGH EDUCATIONAL INSTITUTE",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022491.jpg",
redirectLink: "https://cuet.nta.nic.in/dayalbagh-educational-institute/"
},
{
name: "Gokhale Institute of Politics and Economics",
type: "Deemed University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/gokhale-institute-of-politics-and-economics/"
},
{
name: "Graphic Era (Deemed to be University)",
type: "Deemed University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/graphic-era-deemed-to-be-university/"
},
{
name: "GUJARAT VIDYAPITH",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022438.png",
redirectLink: "https://cuet.nta.nic.in/gujarat-vidyapith/"
},
{
name: "GURUKULA KANGRI",
type: "Deemed University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/gurukula-kangri/"
},
{
name: "IIS (Deemed to be University), Jaipur",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022435-1.png",
redirectLink: "https://cuet.nta.nic.in/iis-deemed-to-be-university-jaipur/"
},
{
name: "Institute of Advanced Studies in Education (Deemed to be University), Gandhi Vidya Mandir, Sardarshahar (Churu)",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022425-1.png",
redirectLink: "https://cuet.nta.nic.in/institute-of-advanced-studies-in-education-deemed-to-be-university-gandhi-vidya-mandir-sardarshahar-churu/"
},
{
name: "JAIN (Deemed-to-be University) , Bangalore (Karnataka)",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/20250224100-4.png",
redirectLink: "https://cuet.nta.nic.in/jain-deemed-to-be-university-bangalore-karnataka/"
},
{
name: "JAMIA HAMDARD",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022413.png",
redirectLink: "https://cuet.nta.nic.in/jamia-hamdard/"
},
{
name: "Janardan Rai Nagar Rajasthan Vidyapeeth, Udaipur",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022457-3.png",
redirectLink: "https://cuet.nta.nic.in/janardan-rai-nagar-rajasthan-vidyapeeth-udaipur/"
},
{
name: "Jaypee Institute of Information Technology",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022494.png",
redirectLink: "https://cuet.nta.nic.in/jaypee-institute-of-information-technology/"
},
{
name: "LAKSHMIBAI NATIONAL INSTITUTE OF PHYSICAL EDUCATION",
type: "Deemed University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/lakshmibai-national-institute-of-physical-education/"
},
{
name: "Lingaya's Vidyapeeth",
type: "Deemed University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/lingayas-vidyapeeth/"
},
{
name: "MANAV RACHNA INTERNATIONAL INSTITUTE OF RESEARCH AND STUDIES",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022463-1.png",
redirectLink: "https://cuet.nta.nic.in/manav-rachna-international-institute-of-research-and-studies/"
},
{
name: "Maharishi Markandeshwar (Deemed to be University), Mullana - Ambala",
type: "Deemed University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/maharishi-markandeshwar-deemed-to-be-university-mullana-ambala/"
},
{
name: "MEENAKSHI ACADEMY OF HIGHER EDUCATION AND RESEARCH",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022411-2.png",
redirectLink: "https://cuet.nta.nic.in/meenakshi-academy-of-higher-education-and-research/"
},
{
name: "Nehru Gram Bharati",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022458.png",
redirectLink: "https://cuet.nta.nic.in/nehru-gram-bharati/"
},
{
name: "Shiv Nadar (Institution of Eminence Deemed to be University), Delhi NCR",
type: "Deemed University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/shiv-nadar-institution-of-eminence-deemed-to-be-university-delhi-ncr/"
},
{
name: "SRI CHANDRASEKHARENDRA SARASWATHI VISWA MAHAVIDYALAYA (Deemed to be University), Kanchipuram, Tamil Nadu",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022430-3.png",
redirectLink: "https://cuet.nta.nic.in/sri-chandrasekharendra-saraswathi-viswa-mahavidyalaya-deemed-to-be-university-kanchipuram-tamil-nadu/"
},
{
name: "SRM INSTITUTE OF SCIENCE AND TECHNOLOGY (DEEMED UNIVERSITY), NCR CAMPUS",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022451-3.png",
redirectLink: "https://cuet.nta.nic.in/srm-institute-of-science-and-technology-deemed-university-ncr-campus/"
},
{
name: "TATA INSTITUTE OF SOCIAL SCIENCES (TISS)",
type: "Deemed University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/tata-institute-of-social-sciences-tiss/"
},
{
name: "TERI School of Advanced Studies",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022493.jpg",
redirectLink: "https://cuet.nta.nic.in/teri-school-of-advanced-studies/"
},
{
name: "THE GANDHIGRAM RURAL INSTITUTE (DTBU)",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022448-3.png",
redirectLink: "https://cuet.nta.nic.in/the-gandhigram-rural-institute-dtbu/"
},
{
name: "Vignans Foundation for Science, Technology and Research Guntur",
type: "Deemed University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/vignans-foundation-for-science-technology-and-research-guntur/"
},
{
name: "Vinayaka Mission's Research Foundation",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022478.jpg",
redirectLink: "https://cuet.nta.nic.in/vinayaka-missions-research-foundation/"
},
{
name: "YENEPOYA University",
type: "Deemed University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022459-3.png",
redirectLink: "https://cuet.nta.nic.in/yenepoya-university/"
}
],
"Private University": [
{
name: "Abhyuday University, Khargone",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022493.png",
redirectLink: "https://cuet.nta.nic.in/abhyuday-university-khargone/"
},
{
name: "Adamas University, Kolkata",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022451.png",
redirectLink: "https://cuet.nta.nic.in/adamas-university-kolkata/"
},
{
name: "Adani University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022481.png",
redirectLink: "https://cuet.nta.nic.in/adani-university/"
},
{
name: "Ajeenkya D Y Patil University, Pune",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022492.png",
redirectLink: "https://cuet.nta.nic.in/ajeenkya-d-y-patil-university-pune/"
},
{
name: "AKS UNIVERSITY",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022463.png",
redirectLink: "https://cuet.nta.nic.in/aks-university/"
},
{
name: "Alliance University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022445.png",
redirectLink: "https://cuet.nta.nic.in/alliance-university/"
},
{
name: "AMITY UNIVERSITY JHARKHAND",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022430.png",
redirectLink: "https://cuet.nta.nic.in/amity-university-jharkhand/"
},
{
name: "Amity University Kolkata",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022431.png",
redirectLink: "https://cuet.nta.nic.in/amity-university-kolkata/"
},
{
name: "AMITY UNIVERSITY NOIDA",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022444.png",
redirectLink: "https://cuet.nta.nic.in/amity-university-noida/"
},
{
name: "AMITY UNIVERSITY PATNA",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022481-1.png",
redirectLink: "https://cuet.nta.nic.in/amity-university-patna/"
},
{
name: "AMITY UNIVERSITY PUNJAB",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022471.png",
redirectLink: "https://cuet.nta.nic.in/amity-university-punjab/"
},
{
name: "Amritsar Group of Colleges, Amritsar",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/amritsar-group-of-colleges-amritsar/"
},
{
name: "Apeejay Stya University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022479.png",
redirectLink: "https://cuet.nta.nic.in/apeejay-stya-university/"
},
{
name: "Apex Professional University, Pasighat, Arunachal Pradesh",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022444-1.png",
redirectLink: "https://cuet.nta.nic.in/apex-professional-university-pasighat-arunachal-pradesh/"
},
{
name: "APEX UNIVERSITY, JAIPUR",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022486.jpg",
redirectLink: "https://cuet.nta.nic.in/apex-university-jaipur/"
},
{
name: "ARKA JAIN University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022445-1.png",
redirectLink: "https://cuet.nta.nic.in/arka-jain-university/"
},
{
name: "Assam down town University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/assam-down-town-university/"
},
{
name: "Assam Royal Global University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022442.png",
redirectLink: "https://cuet.nta.nic.in/assam-royal-global-university/"
},
{
name: "Avantika University, Ujjain",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/avantika-university-ujjain/"
},
{
name: "Azim Premji University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/azim-premji-university/"
},
{
name: "Baba Mastnath University, Asthal Bohar, Rohtak",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/baba-mastnath-university-asthal-bohar-rohtak/"
},
{
name: "Babu Banarasi Das University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022461.gif",
redirectLink: "https://cuet.nta.nic.in/babu-banarasi-das-university/"
},
{
name: "Bahra University (Shimla Hills)",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022425.png",
redirectLink: "https://cuet.nta.nic.in/bahra-university-shimla-hills/"
},
{
name: "Bareilly International University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022467.png",
redirectLink: "https://cuet.nta.nic.in/bareilly-international-university/"
},
{
name: "Bennett University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/bennett-university/"
},
{
name: "Bhagwant Global University Kotdwar",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022480.png",
redirectLink: "https://cuet.nta.nic.in/bhagwant-global-university-kotdwar/"
},
{
name: "Bhagwant University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022423.png",
redirectLink: "https://cuet.nta.nic.in/bhagwant-university/"
},
{
name: "Birla Global University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022446.png",
redirectLink: "https://cuet.nta.nic.in/birla-global-university/"
},
{
name: "BML MUNJAL UNIVERSITY",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022472.png",
redirectLink: "https://cuet.nta.nic.in/bml-munjal-university/"
},
{
name: "CAREER COLLEGE (AUTONOMOUS) BHOPAL",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022459.jpeg",
redirectLink: "https://cuet.nta.nic.in/career-college-autonomous-bhopal/"
},
{
name: "Career Point University,kota",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/career-point-university-kota/"
},
{
name: "CENTURION UNIVERSITY OF TECHNOLOGY AND MANAGEMENT",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/centurion-university-of-technology-and-management/"
},
{
name: "Chanakya University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022415.png",
redirectLink: "https://cuet.nta.nic.in/chanakya-university/"
},
{
name: "Chandigarh University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/chandigarh-university/"
},
{
name: "CHHATRAPATI SHIVAJI MAHARAJ UNIVERSITY",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022481-2.png",
redirectLink: "https://cuet.nta.nic.in/chhatrapati-shivaji-maharaj-university/"
},
{
name: "Chitkara University, Punjab",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022451-1.png",
redirectLink: "https://cuet.nta.nic.in/chitkara-university-punjab/"
},
{
name: "COER University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/coer-university/"
},
{
name: "DAV University, Jalandhar",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022459.png",
redirectLink: "https://cuet.nta.nic.in/dav-university-jalandhar/"
},
{
name: "DIT University,Dehradun",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/dit-university-dehradun/"
},
{
name: "Eklavya University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022423.jpg",
redirectLink: "https://cuet.nta.nic.in/eklavya-university/"
},
{
name: "Eternal University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/eternal-university/"
},
{
name: "G D Goenka University, Gurugram, NCR",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022420.jpg",
redirectLink: "https://cuet.nta.nic.in/g-d-goenka-university-gurugram-ncr/"
},
{
name: "G H Raisoni University, Chhindwara, Madhya Pradesh",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022484.png",
redirectLink: "https://cuet.nta.nic.in/g-h-raisoni-university-chhindwara-madhya-pradesh/"
},
{
name: "GALGOTIAS UNIVERSITY",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/20250224100-2.png",
redirectLink: "https://cuet.nta.nic.in/galgotias-university/"
},
{
name: "Ganpat University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022450.png",
redirectLink: "https://cuet.nta.nic.in/ganpat-university/"
},
{
name: "GEETA UNIVERSITY, PANIPAT, DELHI-NCR, HARYANA",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/geeta-university-panipat-delhi-ncr-haryana/"
},
{
name: "GLA University Mathura",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/gla-university-mathura/"
},
{
name: "GM University, Davanagere",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022482.png",
redirectLink: "https://cuet.nta.nic.in/gm-university-davanagere/"
},
{
name: "GOPAL NARAYAN SINGH UNIVERSITY",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022470.png",
redirectLink: "https://cuet.nta.nic.in/gopal-narayan-singh-university/"
},
{
name: "GRAPHIC ERA HILL UNIVERSITY, DEHRADUN",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/graphic-era-hill-university-dehradun/"
},
{
name: "Guru Kashi University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022435.png",
redirectLink: "https://cuet.nta.nic.in/guru-kashi-university/"
},
{
name: "Haridwar University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/haridwar-university/"
},
{
name: "Himalayan University Itanagar",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/20250224100-3.png",
redirectLink: "https://cuet.nta.nic.in/himalayan-university-itanagar/"
},
{
name: "Himalayiya University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022434-3.png",
redirectLink: "https://cuet.nta.nic.in/himalayiya-university/"
},
{
name: "ICFAI University Mizoram",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/icfai-university-mizoram/"
},
{
name: "ICFAI University, Jharkhand",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/icfai-university-jharkhand/"
},
{
name: "IFTM University, Moradabad",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022418.png",
redirectLink: "https://cuet.nta.nic.in/iftm-university-moradabad/"
},
{
name: "IILM University, Greater Noida",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022452.png",
redirectLink: "https://cuet.nta.nic.in/iilm-university-greater-noida/"
},
{
name: "IILM University, Gurugram",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022423-1.png",
redirectLink: "https://cuet.nta.nic.in/iilm-university-gurugram/"
},
{
name: "IIMT UNIVERSITY",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022480-2.png",
redirectLink: "https://cuet.nta.nic.in/iimt-university/"
},
{
name: "IMS Unison University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/ims-unison-university/"
},
{
name: "Integral University LUCKNOW",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022471-2.png",
redirectLink: "https://cuet.nta.nic.in/integral-university-lucknow/"
},
{
name: "Invertis University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/invertis-university/"
},
{
name: "Islamia College of Science and Commerce",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/islamia-college-of-science-and-commerce/"
},
{
name: "ITM Skills University, Navi Mumbai",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/itm-skills-university-navi-mumbai/"
},
{
name: "ITM UNIVERSITY GWALIOR",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022481-3.png",
redirectLink: "https://cuet.nta.nic.in/itm-university-gwalior/"
},
{
name: "ITM University, Raipur",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/itm-university-raipur/"
},
{
name: "ITM Vocational University, Vadodara",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022447-1.png",
redirectLink: "https://cuet.nta.nic.in/itm-vocational-university-vadodara/"
},
{
name: "JAGAN NATH UNIVERSITY BAHADURGARH HARYANA",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022434-4.png",
redirectLink: "https://cuet.nta.nic.in/jagannath-university-bahadurgarh-haryana/"
},
{
name: "JAGANNATH UNIVERSITY, JAIPUR (RAJASTHAN)",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022480-3.png",
redirectLink: "https://cuet.nta.nic.in/jagannath-university-jaipur-rajasthan/"
},
{
name: "Jagran Lakecity University, Bhopal",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022470-1.png",
redirectLink: "https://cuet.nta.nic.in/jagran-lakecity-university-bhopal/"
},
{
name: "JAI MINESH ADIVASI UNIVERSITY, RANPUR, KOTA",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022420-1.jpg",
redirectLink: "https://cuet.nta.nic.in/jai-minesh-adivasi-university-ranpur-kota/"
},
{
name: "Jaipur National University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/jaipur-national-university/"
},
{
name: "Jaypee University of Engineering and Technology, Guna (Madhya Pradesh)",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022447.jpg",
redirectLink: "https://cuet.nta.nic.in/jaypee-university-of-engineering-and-technology-guna-madhya-pradesh/"
},
{
name: "Jaypee University, Anoopshahr",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022447-1.jpg",
redirectLink: "https://cuet.nta.nic.in/jaypee-university-anoopshahr/"
},
{
name: "JECRC University, Jaipur",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022424-1.png",
redirectLink: "https://cuet.nta.nic.in/jecrc-university-jaipur/"
},
{
name: "JK Lakshmipat University,Jaipur",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022417.png",
redirectLink: "https://cuet.nta.nic.in/jk-lakshmipat-university-jaipur/"
},
{
name: "JOY UNIVERSITY",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022457-4.png",
redirectLink: "https://cuet.nta.nic.in/joy-university/"
},
{
name: "K.R. MANGALAM UNIVERSITY",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/k-r-mangalam-university/"
},
{
name: "Kalinga University, New Raipur, Chhattisgarh",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022420-1.png",
redirectLink: "https://cuet.nta.nic.in/kalinga-university-new-raipur-chhattisgarh/"
},
{
name: "Karnavati University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/karnavati-university/"
},
{
name: "Lamrin Tech Skills University Punjab",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022495.png",
redirectLink: "https://cuet.nta.nic.in/lamrin-tech-skills-university-punjab/"
},
{
name: "Lovely Professional University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/lovely-professional-university/"
},
{
name: "Madhav University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022425.jpg",
redirectLink: "http://cuet.nta.nic.in/madhav-university/"
},
{
name: "Mahakaushal University, Jabalpur",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022419.png",
redirectLink: "https://cuet.nta.nic.in/mahakaushal-university-jabalpur/"
},
{
name: "Mahatma Jyoti Rao Phoole University, Jaipur",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022433.jpg",
redirectLink: "https://cuet.nta.nic.in/mahatma-jyoti-rao-phoole-university-jaipur/"
},
{
name: "Major S.D. Singh University, Farrukhabad",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022497.jpg",
redirectLink: "https://cuet.nta.nic.in/major-s-d-singh-university-farrukhabad/"
},
{
name: "MANAV RACHNA UNIVERSITY",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022431-2.png",
redirectLink: "https://cuet.nta.nic.in/manav-rachna-university/"
},
{
name: "Mangalayatan University, Aligarh",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/mangalayatan-university-aligarh/"
},
{
name: "Manipal University Jaipur",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022464.png",
redirectLink: "https://cuet.nta.nic.in/manipal-university-jaipur/"
},
{
name: "Mansarovar Global University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022474.jpg",
redirectLink: "https://cuet.nta.nic.in/mansarovar-global-university/"
},
{
name: "Marwadi University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022460-1.png",
redirectLink: "https://cuet.nta.nic.in/marwadi-university/"
},
{
name: "MEWAR UNIVERSITY",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/mewar-university/"
},
{
name: "MGM University, Chhatrapati Sambhajinagar, Maharashtra",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/mgm-university-chhatrapati-sambhajinagar-maharashtra/"
},
{
name: "MODY UNIVERSITY OF SCIENCE AND TECHNOLOGY",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/mody-university-of-science-and-technology/"
},
{
name: "NIIT UNIVERSITY",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/niit-university/"
},
{
name: "NIRWAN UNIVERSITY, JAIPUR",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/nirwan-university-jaipur/"
},
{
name: "Noida International University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022492.jpg",
redirectLink: "https://cuet.nta.nic.in/noida-international-university/"
},
{
name: "NOWGONG COLLEGE",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022496.png",
redirectLink: "https://cuet.nta.nic.in/nowgong-college/"
},
{
name: "Parul University, Vadodara, Gujarat",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022430-2.png",
redirectLink: "https://cuet.nta.nic.in/parul-university-vadodara-gujarat/"
},
{
name: "Peoples University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/peoples-university/"
},
{
name: "Poornima University, Jaipur",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022419.jpg",
redirectLink: "https://cuet.nta.nic.in/poornima-university-jaipur/"
},
{
name: "Pragjyotishpur University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/pragjyotishpur-university/"
},
{
name: "PUNJABI UNIVERSITY PATIALA",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022433.png",
redirectLink: "https://cuet.nta.nic.in/punjabi-university-patiala/"
},
{
name: "Quantum University , Roorkee",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022450-1.png",
redirectLink: "https://cuet.nta.nic.in/quantum-university-roorkee/"
},
{
name: "Rabindranath Tagore University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022483.png",
redirectLink: "https://cuet.nta.nic.in/rabindranath-tagore-university/"
},
{
name: "Rakshpal Bahadur Management Institute, Bareilly",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/rakshpal-bahadur-management-institute-bareilly/"
},
{
name: "Ram Krishna Dharmarth Foundation (RKDF) University ,Ranchi",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022465.jpg",
redirectLink: "https://cuet.nta.nic.in/ram-krishna-dharmarth-foundation-rkdf-university-ranchi/"
},
{
name: "Rayat Bahra University, Chandigarh",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022484-1.png",
redirectLink: "https://cuet.nta.nic.in/rayat-bahra-university-chandigarh/"
},
{
name: "Renaissance University Indore",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022468.jpg",
redirectLink: "https://cuet.nta.nic.in/renaissance-university-indore/"
},
{
name: "Rishihood University, Sonepat",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022426.png",
redirectLink: "https://cuet.nta.nic.in/rishihood-university-sonipat/"
},
{
name: "RKDF University, Bhopal",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022414.png",
redirectLink: "https://cuet.nta.nic.in/rkdf-university-bhopal/"
},
{
name: "RNB GLOBAL UNIVERSITY",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/rnb-global-university/"
},
{
name: "RV University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/rv-university/"
},
{
name: "SANGAM UNIVERSITY",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022445-2.png",
redirectLink: "https://cuet.nta.nic.in/sangam-university/"
},
{
name: "Sanskaram University, Jhajjar",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022429.png",
redirectLink: "https://cuet.nta.nic.in/sanskaram-university-jhajjar/"
},
{
name: "SANSKRITI UNIVERSITY",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/sanskriti-university/"
},
{
name: "School of Management Sciences",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022483.jpg",
redirectLink: "https://cuet.nta.nic.in/school-of-management-sciences/"
},
{
name: "SCHOOL OF MANAGEMENT SCIENCES, VARANASI",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022447-2.png",
redirectLink: "https://cuet.nta.nic.in/school-of-management-sciences-varanasi/"
},
{
name: "SDGI Global University, Ghaziabad",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022463-2.png",
redirectLink: "https://cuet.nta.nic.in/sdgi-global-university-ghaziabad/"
},
{
name: "SGT UNIVERSITY",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022436.png",
redirectLink: "https://cuet.nta.nic.in/sgt-university/"
},
{
name: "SHARDA UNIVERSITY",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022424-3.png",
redirectLink: "https://cuet.nta.nic.in/sharda-university/"
},
{
name: "SHOBHIT UNIVERSITY",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022484.gif",
redirectLink: "https://cuet.nta.nic.in/shobhit-university/"
},
{
name: "Shoolini University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/shoolini-university/"
},
{
name: "Shri Krishna University, Chhatarpur, Madhya Pradesh",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022496-1.png",
redirectLink: "https://cuet.nta.nic.in/shri-krishna-university-chhatarpur-madhya-pradesh/"
},
{
name: "Shri Ramswaroop Memorial University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/shri-ramswaroop-memorial-university/"
},
{
name: "Shri Rawatpura Sarkar University Raipur, Chhattisgarh",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022441.png",
redirectLink: "https://cuet.nta.nic.in/shri-rawatpura-sarkar-university-raipur-chhattisgarh/"
},
{
name: "SHRI Venkateshwara University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/shri-venkateshwara-university/"
},
{
name: "SHYAM UNIVERSITY, DAUSA, RAJASTHAN",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022443-3.png",
redirectLink: "https://cuet.nta.nic.in/shyam-university-dausa-rajasthan/"
},
{
name: "Sir Padampat Singhania University, Udaipur",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022467.jpg",
redirectLink: "https://cuet.nta.nic.in/sir-padampat-singhania-university-udaipur/"
},
{
name: "Sister Nivedita University, Kolkata",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022448-1.png",
redirectLink: "https://cuet.nta.nic.in/sister-nivedita-university-kolkata/"
},
{
name: "Somaiya Vidyavihar University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/somaiya-vidyavihar-university/"
},
{
name: "Sri Sri University, Cuttack, Odisha",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022475-1.png",
redirectLink: "https://cuet.nta.nic.in/sri-sri-university-cuttack-odisha/"
},
{
name: "SRM UNIVERSITY (Andhra Pradesh)",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022417-2.png",
redirectLink: "https://cuet.nta.nic.in/srm-university-andhra-pradesh/"
},
{
name: "SRM University Delhi-NCR, Sonepat",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/srm-university-delhi-ncr-sonepat/"
},
{
name: "SUNBEAM COLLEGE FOR WOMEN, BHAGWANPUR, VARANASI",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022460-2.png",
redirectLink: "https://cuet.nta.nic.in/sunbeam-college-for-women-bhagwanpur-varanasi/"
},
{
name: "Suresh Gyan Vihar University Jaipur",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022438-1.png",
redirectLink: "https://cuet.nta.nic.in/suresh-gyan-vihar-university-jaipur/"
},
{
name: "Sushant University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022475-2.png",
redirectLink: "https://cuet.nta.nic.in/sushant-university/"
},
{
name: "Swami Vivekanand Subharti University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022433-1.jpg",
redirectLink: "https://cuet.nta.nic.in/swami-vivekanand-subharti-university/"
},
{
name: "Symbiosis Skills and Professional University,Pune",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022488.png",
redirectLink: "https://cuet.nta.nic.in/symbiosis-skills-and-professional-university-pune/"
},
{
name: "Symbiosis University of Applied Sciences, Indore",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022463-1.jpg",
redirectLink: "https://cuet.nta.nic.in/symbiosis-university-of-applied-sciences-indore/"
},
{
name: "Techno Global University,Sironj,MP",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022448-2.png",
redirectLink: "https://cuet.nta.nic.in/techno-global-university-sironj-mp/"
},
{
name: "TECHNO INDIA UNIVERSITY,WEST BENGAL",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022445-3.png",
redirectLink: "https://cuet.nta.nic.in/techno-india-university-west-bengal/"
},
{
name: "TEERTHANKER MAHAVEER UNIVERSITY",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022492-1.png",
redirectLink: "https://cuet.nta.nic.in/teerthanker-mahaveer-university/"
},
{
name: "The ICFAI University Tripura",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/the-icfai-university-tripura/"
},
{
name: "The ICFAI University, Dehradun",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/the-icfai-university-dehradun/"
},
{
name: "The ICFAI University, Himachal Pradesh",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/the-icfai-university-himachal-pradesh/"
},
{
name: "The ICFAI University, Jaipur",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/the-icfai-university-jaipur/"
},
{
name: "The ICFAI University, Raipur",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/the-icfai-university-raipur/"
},
{
name: "THE ICFAI UNIVERSITY, SIKKIM",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022434.jpg",
redirectLink: "https://cuet.nta.nic.in/the-icfai-university-sikkim/"
},
{
name: "The North Cap University, Gurugram",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/the-north-cap-university-gurugram/"
},
{
name: "TS MISHRA UNIVERSITY,LUCKNOW",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022455.png",
redirectLink: "https://cuet.nta.nic.in/ts-mishra-university-lucknow/"
},
{
name: "Uka Tarsadia University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022422.png",
redirectLink: "https://cuet.nta.nic.in/uka-tarsadia-university/"
},
{
name: "UNITED UNIVERSITY, PRAYAGRAJ",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022493-1.png",
redirectLink: "https://cuet.nta.nic.in/united-university-prayagraj/"
},
{
name: "University of Engineering and Management",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022450-2.png",
redirectLink: "https://cuet.nta.nic.in/university-of-engineering-and-management/"
},
{
name: "UPES - DEHRADUN",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022457.jpg",
redirectLink: "https://cuet.nta.nic.in/upes-dehradun/"
},
{
name: "USHA MARTIN UNIVERSITY",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022416-2.png",
redirectLink: "https://cuet.nta.nic.in/usha-martin-university/"
},
{
name: "Vijaybhoomi University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022464-2.png",
redirectLink: "https://cuet.nta.nic.in/vijaybhoomi-university/"
},
{
name: "Vishwa Bharti College Rainawari Srinagar",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022494-1.png",
redirectLink: "https://cuet.nta.nic.in/vishwa-bharti-college-rainawari-srinagar/"
},
{
name: "Vivekananda Global University",
type: "Private University",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022496-2.png",
redirectLink: "https://cuet.nta.nic.in/vivekananda-global-university/"
},
{
name: "Woxsen University",
type: "Private University",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/woxsen-university/"
}
],
"Other Government Institutions": [
{
name: "Arya Vidyapeeth College (Autonomous) under Govt. of Assam",
type: "Other Government Institutions",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/20250224100.png",
redirectLink: "https://cuet.nta.nic.in/arya-vidyapeeth-college-autonomous-under-govt-of-assam/"
},
{
name: "FOOTWEAR DESIGN AND DEVELOPMENT INSTITUTE",
type: "Other Government Institutions",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/footwear-design-and-development-institute/"
},
{
name: "GOVT. COLLEGE FOR WOMEN, PARADE GROUND, JAMMU",
type: "Other Government Institutions",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022443-2.png",
redirectLink: "https://cuet.nta.nic.in/govt-college-for-women-parade-ground-jammu/"
},
{
name: "Indian Council of Agricultural Research (ICAR)",
type: "Other Government Institutions",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022457-1.png",
redirectLink: "https://cuet.nta.nic.in/indian-council-of-agricultural-research-icar/"
},
{
name: "Indian Culinary Institute",
type: "Other Government Institutions",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022440.jpg",
redirectLink: "https://cuet.nta.nic.in/indian-culinary-institute/"
},
{
name: "Indian Institute of Teacher Education, Gandhinagar",
type: "Other Government Institutions",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022431-1.png",
redirectLink: "https://cuet.nta.nic.in/indian-institute-of-teacher-education-gandhinagar/"
},
{
name: "Indian Institute of Tourism & Travel Management",
type: "Other Government Institutions",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022421.png",
redirectLink: "https://cuet.nta.nic.in/indian-institute-of-tourism-travel-management/"
},
{
name: "Indian Maritime University",
type: "Other Government Institutions",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022469.png",
redirectLink: "https://cuet.nta.nic.in/indian-maritime-university/"
},
{
name: "JB College, Assam",
type: "Other Government Institutions",
logoUrl: "#N/A",
redirectLink: "https://cuet.nta.nic.in/jb-college-assam/"
},
{
name: "RAJIV GANDHI NATIONAL AVIATION UNIVERSITY",
type: "Other Government Institutions",
logoUrl: "https://cdnbbsr.s3waas.gov.in/s3d1a21da7bca4abff8b0b61b87597de73/uploads/2025/02/2025022487.png",
redirectLink: "https://cuet.nta.nic.in/rajiv-gandhi-national-aviation-university/"
}
]
};
function handleImageLoad(img) {
img.classList.add('loaded');
}
function createUniversitySection(type, universities) {
return `
`;
}
function displayUniversities(data) {
document.getElementById('loading').style.display = 'none';
const container = document.getElementById('universitiesList');
let html = '';
["Central University", "State University", "Deemed University",
"Private University", "Other Government Institutions"].forEach(type => {
if (data[type] && data[type].length > 0) {
html += createUniversitySection(type, data[type]);
}
});
container.innerHTML = html;
}
// Search functionality
let searchTimeout;
document.getElementById('searchInput').addEventListener('input', function(e) {
clearTimeout(searchTimeout);
document.getElementById('loading').style.display = 'block';
document.getElementById('universitiesList').style.display = 'none';
searchTimeout = setTimeout(() => {
const query = e.target.value.toLowerCase();
if (!query) {
document.getElementById('universitiesList').style.display = 'block';
displayUniversities(universitiesData);
return;
}
const filteredData = {};
Object.keys(universitiesData).forEach(type => {
const filtered = universitiesData[type].filter(uni =>
uni.name.toLowerCase().includes(query)
);
if (filtered.length > 0) {
filteredData[type] = filtered;
}
});
document.getElementById('universitiesList').style.display = 'block';
displayUniversities(filteredData);
}, 300);
});
// Filter functionality
document.querySelectorAll('.filter-option').forEach(option => {
option.addEventListener('click', function() {
// Update active state
document.querySelectorAll('.filter-option').forEach(opt => opt.classList.remove('active'));
this.classList.add('active');
const selectedType = this.getAttribute('data-type');
if (selectedType === 'ALL') {
displayUniversities(universitiesData);
// Scroll to the top of the list
window.scrollTo({
top: document.getElementById('universitiesList').offsetTop - 120,
behavior: 'smooth'
});
} else {
const filteredData = {};
if (universitiesData[selectedType]) {
filteredData[selectedType] = universitiesData[selectedType];
}
displayUniversities(filteredData);
// Wait a moment for the DOM to update before scrolling
setTimeout(() => {
// Scroll to the specific section
const sectionId = `section-${selectedType.replace(/\s+/g, '-').toLowerCase()}`;
const sectionElement = document.getElementById(sectionId);
if (sectionElement) {
// Using window.scrollTo for more precise scrolling
window.scrollTo({
top: sectionElement.offsetTop - 120, // Offset to account for header and search bar
behavior: 'smooth'
});
}
}, 100);
}
});
});
// Initialize the display when the DOM is loaded
document.addEventListener('DOMContentLoaded', function() {
displayUniversities(universitiesData);
});
})();
Loading universities...
🏛️
UNIVERSITY TYPE
${type}
${universities.map((uni, index) => `
`).join('')}