/* ============================================
   PRSU - Prof. Rajendra Singh (Rajju Bhaiya) University
   Complete Stylesheet — Updated
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Poppins:wght@400;600;700&display=swap');


:root {
  --primary:       #1a3a6b;
  --primary-dark:  #0f2347;
  --primary-mid:   #22508a;
  --accent:        #c8202d;
  --gold:          #c8960b;
  --white:         #ffffff;
  --light-bg:      #eef3fa;
  --text-dark:     #1a1a1a;
  --text-med:      #444;
  --text-light:    #777;
  --border:        #ccd6e8;
  --nav-h:         50px;
  --shadow:        0 2px 10px rgba(26,58,107,0.12);
  --shadow-lg:     0 4px 20px rgba(26,58,107,0.18);
  --tr:            0.22s ease;
  --font:          'Roboto', sans-serif;
  --font-h:        'Poppins', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
  
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
/*img { max-width: 100%; display: block; } */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 16px; }

.badge-new {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 2px;
  margin-left: 4px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: .4px;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--primary);
  color: #b0c4e4;
  font-size: 12px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px;
  padding: 5px 16px;
}
.topbar-links { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; color:White; }
.topbar-links a { color: white; transition: color var(--tr); white-space: nowrap; }
.topbar-links a:hover { color: #fff; }
.topbar-links a.hl  { color: #ffd700; font-weight: 600; }
.topbar-links a.conv { color: #ffe566; font-weight: 700; }
.topbar-right { display: flex; gap: 5px; align-items: center; }
.topbar-right a {
  color: white;
  font-size: 11.5px;
  background: rgba(255,255,255,.08);
  padding: 2px 7px;
  border-radius: 3px;
  transition: background var(--tr);
}
.topbar-right a:hover { background: rgba(255,255,255,.18); color: #fff; }

/* ============================================
   HEADER — centered banner
   ============================================ */
.site-header {
  background: #fff;
  padding: 10px 0;
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 2px 8px rgba(26,58,107,0.1);
}
.header-inner-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}
.header-banner-img {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

 
/* ============================================
   TICKER
   ============================================ */
.ticker-bar {
  background: #fff;
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: center;
  height: 35px;
  overflow: hidden;
}
.ticker-label {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 0 13px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .8px;
  flex-shrink: 0;
  gap: 6px;
}
.ticker-scroll { overflow: hidden; flex: 1; }
.ticker-scroll marquee { font-size: 12.5px; color: var(--text-dark); line-height: 35px; }
.ticker-scroll marquee a { color: var(--primary); margin-right: 38px; }
.ticker-scroll marquee a:hover { text-decoration: underline; }

/* ============================================
   MOBILE QUICK LINKS
   ============================================ */
.mobile-ql { display: none; }
.mql-title {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.mql-arrow { font-size: 11px; transition: transform var(--tr); }
.mql-title.open .mql-arrow { transform: rotate(180deg); }
.mql-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-bottom: 2px solid var(--border);
}
.mql-body a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  font-size: 12.5px;
  color: var(--text-dark);
  border-right: 1px solid #eef2f8;
  border-bottom: 1px solid #eef2f8;
  transition: background var(--tr);
}
.mql-body a:hover { background: var(--light-bg); color: var(--primary); }
.mql-body a .ico { color: var(--primary); font-size: 12px; width: 14px; text-align: center; }

/* ============================================
   HOME HERO ROW
   ============================================ */
.home-hero { display: flex; background: var(--light-bg); }

/* Left Sidebar */
.sidebar-left {
  width: 224px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid var(--border);
}
.sb-title {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.sb-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  font-size: 12.5px;
  color: var(--text-dark);
  border-bottom: 1px solid #eef2f8;
  transition: background var(--tr);
}
.sb-links a:hover { background: var(--light-bg); color: var(--primary); }
.sb-links a .ico { color: var(--primary); font-size: 12px; width: 15px; text-align: center; }
.sb-links a .arr { margin-left: auto; font-size: 11px; color: var(--text-light); }




/* ──────────── LEFT SIDEBAR ──────────── */
.left-sidebar { width: 224px; background: #ffffff; border-right: 1px solid var(--border); }
.portal-link { display: block; border-bottom: 1px solid var(--border); transition: var(--tr); }
.portal-link:hover { background: #fff8f0; }
.portal-custom {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; color: #fff;
}
.portal-custom:hover { opacity: .92; }
.portal-icon { font-size: 1.3rem; flex-shrink: 0; width: 26px; text-align: center; }
.portal-custom strong { display: block; font-size: .78rem; font-weight: 700; line-height: 1.2; }
.portal-custom small { display: block; font-size: .62rem; opacity: .8; margin-top: 1px; }

/* Center */
.hero-center { flex: 1; min-width: 0; }

/* Right Sidebar */
.sidebar-right {
  width: 244px;
  flex-shrink: 0;
  background: #fff;
  border-left: 1px solid var(--border);
  padding: 14px 10px;
}
.official-card {
  text-align: center;
  padding: 12px 6px;
  border-bottom: 1px solid #eef2f8;
}
.official-card:last-child { border-bottom: none; }
.off-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  margin: 0 auto 8px;
  display: block;
  object-fit: cover;
}
.off-name { font-weight: 700; font-size: 13.5px; color: var(--primary); }
.off-title { font-size: 11px; color: var(--text-light); margin-top: 3px; line-height: 1.45; }
.off-btns { display: flex; gap: 6px; justify-content: center; margin-top: 8px; }
.btn-sm {
  padding: 4px 12px;
  font-size: 10.5px;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: .3px;
  transition: opacity var(--tr);
}
.btn-sm:hover { opacity: .82; }
.btn-pro { background: var(--gold); color: #fff; }
.btn-msg { background: var(--primary); color: #fff; }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider { position: relative; width: 100%; overflow: hidden; background: var(--primary-dark); }
.slide { display: none; position: relative; }
.slide.active { display: block; }
.image-container { width: 100%; }
.slide-img { width: 100%; height: 490px; object-fit: cover; display: block; }
.sl-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,58,107,.72);
  color: #fff;
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 17px;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr);
}
.sl-btn:hover { background: rgba(10,25,60,.92); }
.sl-btn.prev { left: 12px; }
.sl-btn.next { right: 12px; }
.sl-dots {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.sl-dots span {
  width: 9px; height: 9px;
  background: rgba(255,255,255,.42);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--tr);
}
.sl-dots span.active { background: #fff; }

/* ============================================
   SECTION TITLE
   ============================================ */
.sec-title {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 11px;
}
.sec-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 58px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* ============================================
   NOTICES / EVENTS / CIRCULARS — fancy headers
   ============================================ */
.notices-sec { padding: 40px 0; background: #fff; }
.notices-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.notice-box {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* Fancy nb-head base */
.nb-head {
  position: relative;
  overflow: hidden;
  padding: 0 15px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .4px;
}
.nb-head::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.nb-head-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
  position: relative; z-index: 1;
}
.nb-head > span { position: relative; z-index: 1; }
.nb-head-shine {
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: skewX(-20deg);
  animation: nbShine 3.5s infinite;
}
@keyframes nbShine {
  0% { left: -60%; }
  60% { left: 130%; }
  100% { left: 130%; }
}

/* Notices — deep blue */
.nb-head--notices {
  background: linear-gradient(135deg, #1a3a6b 0%, #22508a 60%, #1a3a6b 100%);
  border-bottom: 3px solid #ffd700;
}
/* Events — deep crimson */
.nb-head--events {
  background: linear-gradient(135deg, #8a1420 0%, #c8202d 60%, #8a1420 100%);
  border-bottom: 3px solid #ffc0a0;
}
/* Circulars — teal-navy */
.nb-head--circulars {
  background: linear-gradient(135deg, #0a4a4a 0%, #0d7070 60%, #0a4a4a 100%);
  border-bottom: 3px solid #aaffee;
}

.nb-list { padding: 4px 0; flex: 1; }
.nb-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 7px 13px;
  border-bottom: 1px solid #f0f4fb;
  transition: background var(--tr);
}
.nb-item:hover { background: #f4f8ff; }
.nb-item:last-child { border-bottom: none; }
.nb-arr { color: var(--primary); font-size: 11px; flex-shrink: 0; margin-top: 3px; }
.nb-text { flex: 1; font-size: 12px; line-height: 1.5; color: var(--text-dark); }
.nb-text a { color: var(--text-dark); }
.nb-text a:hover { color: var(--primary); text-decoration: underline; }
.nb-date { font-size: 10.5px; color: var(--text-light); white-space: nowrap; flex-shrink: 0; margin-left: 3px; }
.nb-more {
  display: block;
  text-align: center;
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  border-top: 1px solid var(--border);
  transition: background var(--tr);
  margin-top: auto;
}
.nb-more:hover { background: var(--light-bg); }

/* ---- Events image mini-slider inside notice box ---- */
.events-img-slider {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}
.ev-slide { display: none; }
.ev-slide.active { display: block; }
.ev-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: background var(--tr);
}
.ev-btn:hover { background: rgba(0,0,0,.7); }
.ev-btn.prev { left: 7px; }
.ev-btn.next { right: 7px; }

/* ============================================
   ABOUT
   ============================================ */
.about-sec { padding: 46px 0; background: var(--light-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 34px; align-items: center; }
.about-img { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img svg,
.about-img img { width: 100%; height: 280px; object-fit: cover; display: block; }
.about-content h2 {
  font-family: var(--font-h);
  font-size: 25px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.about-content p {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--text-med);
  margin-bottom: 16px;
  text-align: justify;
}
.btn-rm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 9px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--tr);
}
.btn-rm:hover { background: #a01820; }

/* ============================================
   STATS
   ============================================ */
.stats-sec { background: var(--primary); padding: 30px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; text-align: center; }
.stat-item { padding: 6px; }
.stat-num {
  font-family: var(--font-h);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-lbl { font-size: 12.5px; color: rgba(255,255,255,.78); margin-top: 5px; }






:root {
  --prsu-navy: #0b2545;
  --prsu-red: #c92a2a;
  --prsu-gold-bg: #fffbf0;
  --prsu-gold-border: #f59e0b;
  --bg-light: #f8fafc;
}

.portals-sec { 
  padding: 40px 0; 
  background-color: #e9edf0; 
}

/* Grid layout with professional sizing */
.portals-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px; 
}

/* Standard Portal Card Styling */
.portal-card {
  border: 2px solid #e2e8f0; /* Crisp distinct borders */
  border-radius: 12px;
  padding: 22px 14px 18px;
  text-align: center;
  cursor: pointer;
  background: #ffffff;
  text-decoration: none;
  display: block;
  /* Ultimate smooth transitions for the floating animation */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease, 
              background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Magnifying Floating Animation when moving mouse across cards */
.portal-card:hover {
  border-color: var(--prsu-navy);
  box-shadow: 0 20px 25px -5px rgba(11, 37, 69, 0.15), 
              0 10px 10px -5px rgba(11, 37, 69, 0.04);
  transform: translateY(-6px) scale(1.02);
  background-color:#1a3a6b;
  color: #ffffff;
}

/* Highlighted Box (Examination Corner) Styling adjusted to match theme */
.portal-card.hl { 
  background: var(--prsu-gold-bg); 
  border-color: var(--prsu-gold-border); 
}
.portal-card.hl:hover {
  border-color: var(--prsu-red);
  background: #fff8e7;
}

/* IMAGE SIZE ENHANCEMENT: Made bigger and sharp */
.portal-ico { 
  width: 70px;  /* 54px से बढ़ाकर 70px किया */
  height: 70px; /* 54px से बढ़ाकर 70px किया */
  margin: 0 auto 16px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: transform 0.4s ease;
}

.portal-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Image pops up slightly on hover */
.portal-card:hover .portal-ico {
  transform: scale(1.12);
}

/* FONT SIZE ENHANCEMENT: Bold, Clean & Corporate */
.portal-name { 
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 15px; /* 12.5px से बढ़ाकर 15px किया ताकि साफ़ दिखे */
  font-weight: 700; 
  color: var(--prsu-navy); /* Default matches Theme Navy */
  line-height: 1.4; 
  transition: color 0.3s ease;
}

/* Hover text dynamic swap to theme Red color */
.portal-card:hover .portal-name {
  color: white;
}

/* Responsive fixes for tablet and mobile viewports */
@media (max-width: 991px) {
  .portals-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .portals-sec { padding: 45px 0; }
}

@media (max-width: 575px) {
  .portals-grid { grid-template-columns: 1fr; gap: 14px; }
  .portal-name { font-size: 14px; }
  .portal-ico { width: 64px; height: 64px; }
}
/* ============================================
   GALLERY
   ============================================ */
.gallery-sec { padding: 40px 0; background: var(--light-bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: #c8d8ee;
}
.gallery-item svg { width: 100%; height: 100%; display: block; }

/* ============================================
   TESTIMONIALS — vertical scroll
   ============================================ */
.testimonials-sec { padding: 40px 0; background: #fff; }
.testi-track-wrap {
  height: 320px;
  overflow: hidden;
  position: relative;
}
.testi-track-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
  z-index: 2;
}
.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  will-change: transform;
}
.testi-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  background: var(--light-bg);
  box-shadow: var(--shadow);
  transition: box-shadow var(--tr);
}
.testi-card:hover { box-shadow: var(--shadow-lg); }
.testi-quote { color: var(--accent); font-size: 22px; margin-bottom: 10px; opacity: .7; }
.testi-card p { font-size: 13px; line-height: 1.7; color: var(--text-med); margin-bottom: 14px; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 13px; color: var(--primary); }
.testi-author span { font-size: 11px; color: var(--text-light); }

/* ============================================
   POSTS FOR PRSU — vertical scroll
   ============================================ */
.posts-sec { padding: 40px 0; background: var(--light-bg); }
.posts-track-wrap {
  height: 340px;
  overflow: hidden;
  position: relative;
}
.posts-track-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--light-bg));
  pointer-events: none;
  z-index: 2;
}
.posts-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  will-change: transform;
}
.post-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: box-shadow var(--tr), transform var(--tr);
}
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateX(3px); }
.post-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.post-badge--admin { background: var(--gold); }
.post-badge--research { background: #0a6a4a; }
.post-card h4 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.4; }
.post-card p { font-size: 12.5px; color: var(--text-med); line-height: 1.6; margin-bottom: 10px; }
.post-meta { font-size: 11px; color: var(--text-light); margin-bottom: 10px; }
.post-meta i { margin-right: 3px; }
.post-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--tr);
}
.post-link:hover { gap: 9px; }

/* ============================================
   UNIVERSITY NEWS — vertical scroll
   ============================================ */
.uninews-sec { padding: 40px 0; background: #fff; }
.uninews-track-wrap {
  height: 360px;
  overflow: hidden;
  position: relative;
}
.uninews-track-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
  z-index: 2;
}
.uninews-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  will-change: transform;
}
.uninews-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--tr);
}
.uninews-card:hover { box-shadow: var(--shadow-lg); }
.uninews-img { overflow: hidden; }
.uninews-body { padding: 14px; flex: 1; }
.uninews-cat {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .4px;
  border: 1px solid var(--border);
}
.uninews-body h4 { font-size: 13.5px; font-weight: 700; color: var(--primary); margin-bottom: 7px; line-height: 1.4; }
.uninews-body p { font-size: 12px; color: var(--text-med); line-height: 1.6; margin-bottom: 8px; }
.uninews-date { font-size: 11px; color: var(--text-light); }
.uninews-date i { margin-right: 4px; }

/* ============================================
   IMPORTANT WEBSITES — horizontal scroll
   ============================================ */
.imp-websites-sec {
  padding: 36px 0 0;
  background: var(--light-bg);
  overflow: hidden;
}
.imp-websites-sec .container { padding-bottom: 0; }
.imp-websites-sec .sec-title { margin-bottom: 20px; }
.imp-websites-track {
  width: 100%;
  overflow: hidden;
  background: var(--primary-dark);
  padding: 16px 0;
}
.imp-websites-inner {
  display: flex;
  gap: 14px;
  animation: iwScroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.imp-websites-inner:hover { animation-play-state: paused; }
@keyframes iwScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.iw-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  color: #c8dcf8;
  padding: 9px 18px;
  border-radius: 5px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--tr), color var(--tr);
  border: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.iw-card:hover {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}
.iw-card i { font-size: 14px; color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--primary-dark); color: #b0c4e4; padding: 36px 0 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 26px; margin-bottom: 26px; }
.footer-grid h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-grid p { font-size: 12px; line-height: 1.72; opacity: .85; }
.footer-grid ul { display: flex; flex-direction: column; gap: 7px; }
.footer-grid ul li a {
  font-size: 12px;
  color: #b0c4e4;
  display: flex; align-items: center; gap: 5px;
  transition: color var(--tr);
}
.footer-grid ul li a::before { content: '›'; color: var(--gold); font-size: 16px; line-height: 1; }
.footer-grid ul li a:hover { color: #fff; }
.footer-contact p { font-size: 12px; margin-bottom: 7px; display: flex; align-items: flex-start; gap: 7px; opacity: .85; }
.footer-contact i { margin-top: 2px; flex-shrink: 0; width: 14px; }
.social-links { display: flex; gap: 8px; margin-top: 12px; }
.social-links a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #b0c4e4;
  font-size: 14px;
  transition: background var(--tr), color var(--tr);
}
.social-links a:hover { background: var(--accent); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 13px;
  text-align: center;
  font-size: 12px;
  opacity: .65;
}

/* ============================================
   BACK TO TOP
   ============================================ */
#backToTop {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,.25);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: background var(--tr);
}
#backToTop:hover { background: var(--primary-dark); }
#backToTop.visible { display: flex; }

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
  .portals-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .notices-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .testi-track { grid-template-columns: repeat(2,1fr); }
  .uninews-track { grid-template-columns: repeat(2,1fr); }
}

/* ============================================
   RESPONSIVE — 900px (hide sidebars)
   ============================================ */
@media (max-width: 900px) {
  .sidebar-left,
  .sidebar-right { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

/* ============================================
   RESPONSIVE — 768px MOBILE
   ============================================ */
@media (max-width: 768px) {
  /* Topbar */
  .topbar-inner { flex-direction: column; align-items: flex-start; padding: 6px 12px; gap: 4px; }
  .topbar-links { gap: 8px; }

  /* Header — banner stays centered and scales */
  .header-banner-img { max-height: 80px; }
 
  /* Mobile quick links */
  .mobile-ql { display: block; }

  /* Hero */
  .home-hero { flex-direction: column; }
  .hero-center { width: 100%; }
  .slide-img { height: 230px; }

  /* Notices */
  .notices-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-img svg,
  .about-img img { height: 210px; }
  .about-content h2 { font-size: 20px; }

  /* Portals */
  .portals-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .portal-card { padding: 15px 8px 12px; }
  .portal-name { font-size: 11.5px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-num { font-size: 28px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2,1fr); }

  /* Testimonials */
  .testi-track { grid-template-columns: 1fr; }
  .testi-track-wrap { height: 280px; }

  /* Posts */
  .posts-track { grid-template-columns: 1fr; }
  .posts-track-wrap { height: 300px; }

  /* News */
  .uninews-track { grid-template-columns: 1fr; }
  .uninews-track-wrap { height: 320px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .sec-title { font-size: 18px; }
}

@media (max-width: 420px) {
  .header-banner-img { max-height: 64px; }
  .portals-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .portal-card { padding: 12px 6px 10px; }
  .stat-num { font-size: 24px; }
  .nb-head { font-size: 13.5px; height: 50px; }
  .testi-track-wrap { height: 240px; }
  .posts-track-wrap { height: 260px; }
  .uninews-track-wrap { height: 280px; }
}


















/* ==========================================================================
   PRSU LIGHT ABOUT SECTION - OPTIMIZED FULL WIDTH & RESPONSIVE FIX
   ========================================================================== */

/* Unique scope preventing layout breaks */
.prsu-light-about {
    width: 100%;
    background-color: #f1f5f9; /* सफाचट प्रीमियम लुक के लिए वाइट बैकग्राउंड */
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

/* Full Width Flex Grid */
.prsu-light-wrapper {
    display: flex;
    width: 100%;
    min-height: 550px;
    align-items: stretch;
}

/* LEFT SIDE: CLEAN & BRIGHT CONTENT PANE (Left space fixed here) */
.prsu-light-text-col {
    flex: 1.2;
    /* padding-left को 8% से घटाकर 40px किया ताकि लेफ्ट से खाली न लगे */
    padding: 60px 40px 60px 40px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

/* Accent Red Ribbon */
.prsu-light-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c92a2a; 
    margin-bottom: 18px;
}

.prsu-light-line {
    width: 35px;
    height: 3px;
    background-color: #c92a2a;
    display: inline-block;
}

/* Large and Bold Deep Navy Title */
.prsu-light-title {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 38px; /* फोंट साइज थोड़ा बढ़ाया ताकि भरा हुआ दिखे */
    font-weight: 800;
    line-height: 1.25;
    color: #0b2545; 
    margin: 0 0 25px 0;
}

/* Description Typography styling */
.prsu-light-desc {
    max-width: 100%; /* पूरी विड्थ का इस्तेमाल करने के लिए */
}

.prsu-light-lead {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #1e293b; 
    margin-bottom: 16px;
    text-align: justify;
}

.prsu-light-body {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 15.5px;
    line-height: 1.8;
    color: #475569; 
    margin-bottom: 0;
    text-align: justify;
}

/* Statistical Counter Area */
.prsu-light-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
    max-width: 100%;
}

.prsu-stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.prsu-stat-number {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #c92a2a; 
    line-height: 1;
}

.prsu-stat-label {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0b2545;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* BUTTON SYSTEM (Solid Red) */
.prsu-light-action {
    margin-top: 35px;
}

.prsu-light-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #c92a2a;
    color: #ffffff !important;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(201, 42, 42, 0.15);
    transition: all 0.3s ease;
}

.prsu-light-btn:hover {
    background-color: #0b2545; 
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(11, 37, 69, 0.25);
}

.prsu-light-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.prsu-light-btn:hover i {
    transform: translateX(4px);
}

/* RIGHT SIDE: MODERN CAMPUS IMAGE WITH GEOMETRIC CUT */
.prsu-light-img-col {
    flex: 0.8;
    background-color: #0b2545;
    position: relative;
    overflow: hidden;
}

.prsu-light-img-skew {
    width: 100%;
    height: 100%;
    position: relative;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    background-color: #0b2545;
}

.prsu-light-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.prsu-light-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 37, 69, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

/* Elegant Text Watermark */
.prsu-light-watermark {
    position: absolute;
    bottom: 30px;
    right: 40px;
    font-family: Impact, Arial Black, sans-serif;
    font-size: 90px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.18);
    letter-spacing: 3px;
    pointer-events: none;
}

/* Hover Zoom effect */
.prsu-light-wrapper:hover .prsu-light-main-img {
    transform: scale(1.05);
}

/* ==========================================================================
   PROFESSIONAL RESPONSIVE DESIGN (Mobile Blue Box Fixed)
   ========================================================================== */
@media (max-width: 1200px) {
    .prsu-light-text-col {
        padding: 50px 30px;
    }
    .prsu-light-title {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .prsu-light-wrapper {
        flex-direction: column;
    }
    .prsu-light-text-col {
        padding: 40px 20px;
        order: 1; /* टेक्स्ट मोबाइल में पहले ऊपर आएगा */
    }
    .prsu-light-img-col {
        order: 2; /* इमेज नीचे आएगी */
        min-height: 380px;
        flex: none;
        background-color: transparent !important; /* मोबाइल पर डार्क ब्लू बैकग्राउंड हटाया */
    }
    .prsu-light-img-skew {
        clip-path: none !important; /* मोबाइल पर इमेज कटी हुई नहीं दिखेगी, जिससे खाली डिब्बा गायब हो जाएगा */
        background-color: transparent !important;
    }
    .prsu-light-watermark {
        font-size: 65px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 575px) {
    .prsu-light-title {
        font-size: 25px;
    }
    .prsu-light-stats-grid {
        grid-template-columns: 1fr; /* छोटे मोबाइल पर काउंटर एक के नीचे एक आएंगे */
        gap: 18px;
    }
    .prsu-light-img-col {
        min-height: 280px;
    }
}
















/* ===================================================
   PRSU ELITE THEMED FLAT NOTICES CSS (FAST SCROLL)
   =================================================== */
.prsu-elite-notices-sec {
    width: 100%;
    background-color: #ffffff; /* Pure White Background */
    padding: 60px 0;
    box-sizing: border-box;
}

/* Full Width Fluid Grid Container */
.prsu-elite-container {
    width: 100%;
    padding: 0 4%;
    box-sizing: border-box;
}

/* Section Title Configuration */
.prsu-elite-title-area {
    text-align: center;
    margin-bottom: 45px;
}

.prsu-elite-section-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0b2545; /* Dark Corporate Navy Blue */
    margin: 0 0 12px 0;
}

.prsu-elite-title-line {
    width: 75px;
    height: 4px;
    background-color: #c92a2a; /* Crimson Red Center Accent Line */
    margin: 0 auto;
    border-radius: 2px;
}

/* 3 Column Grid Alignment */
.prsu-elite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

/* Stable Card Structure (Absolutely Fixed) */
.prsu-elite-card {
    background-color: #ffffff;
    border: 1px solid #cbd5e1; 
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(11, 37, 69, 0.04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* HIGH-CONTRAST HEADER WITH YELLOW BOTTOM BORDER */
.prsu-elite-card-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    border-bottom: 4px solid #ffcc00; /* Solid Yellow Bottom Border */
}

/* Color codes mapping to theme palette */
.prsu-bg-navy { background: #0b2545; }
.prsu-bg-red { background: #c92a2a; }
.prsu-bg-teal { background: #0f5a2e; }

/* Transparent Icon Box inside Header */
.prsu-elite-icon-box {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.prsu-elite-header-text {
    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

/* AUTO-SCROLLER CONTAINER (UPWARD MOVEMENT) */
.prsu-elite-scroll-viewport {
    padding: 10px 20px;
    height: 340px; 
    overflow: hidden;
    position: relative;
}

.prsu-elite-scroll-track {
    display: flex;
    flex-direction: column;
    /* Speed enhanced from 22s to 14s for faster upward movement */
    animation: prsu-elite-marquee 14s linear infinite;
}

/* Pauses the loop on mouse hover */
.prsu-elite-scroll-viewport:hover .prsu-elite-scroll-track {
    animation-play-state: paused;
}

/* Row Styling with Dark Theme-Based Solid Borders */
.prsu-elite-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #94a3b8; /* Darker corporate line */
}

.prsu-elite-row:last-child {
    border-bottom: none;
}

/* Upgraded Premium Circle Arrow Bullet */
.prsu-elite-bullet-arrow {
    color: #c92a2a; 
    font-size: 14px; 
    margin-top: 3px;
    display: inline-block;
}

.prsu-elite-content-text {
    flex: 1;
}

.prsu-elite-content-text a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14.5px;
    line-height: 1.5;
    color: #1e293b; /* Dark high-contrast slate text */
    text-decoration: none;
    transition: color 0.15s ease;
}

.prsu-elite-content-text a:hover {
    color: #c92a2a; 
}

/* Blinking tag notifier element */
.prsu-elite-flash-tag {
    background-color: #ff922b;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 2px;
    text-transform: uppercase;
    margin-left: 6px;
    display: inline-block;
    animation: prsu-elite-blink 1.2s infinite;
}

.prsu-elite-row-date {
    font-family: sans-serif;
    font-size: 12px;
    color: #64748b; 
    white-space: nowrap;
    margin-top: 3px;
}

/* Clean Professional Footer Zone (Perfectly Centered) */
.prsu-elite-card-footer {
    margin-top: auto;
    padding: 16px 20px;
    background-color: #f8fafc;
    border-top: 1px solid #cbd5e1;
    text-align: center; /* Centered Read More */
}

.prsu-elite-readmore {
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0b2545; 
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.15s ease;
    display: inline-block;
}

.prsu-elite-readmore:hover {
    color: #c92a2a; 
}

/* TIMING ANIMATIONS */
@keyframes prsu-elite-marquee {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes prsu-elite-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* SYSTEM RESPONSIVENESS */
@media (max-width: 1199px) {
    .prsu-elite-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .prsu-elite-grid {
        grid-template-columns: 1fr;
    }
    .prsu-elite-container {
        padding: 0 15px;
    }
    .prsu-elite-section-title {
        font-size: 26px;
    }
}












/* ===================================================
   PRSU UNIQUE HIGH-CLASS HIGHLIGHTS SECTION CSS
   =================================================== */
.prsu-premium-highlights-sec {
    width: 100%;
    /* Smooth executive premium slate-cream tint background */
    background-color: #f2f8fc; 
    padding: 50px 0;
    box-sizing: border-box;
}

.prsu-premium-container {
    width: 100%;
    padding: 0 4%;
    box-sizing: border-box;
}

/* Distinctive Layout Heading Component */
.prsu-premium-header-block {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.prsu-premium-tagline {
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #c92a2a; /* Theme Crimson Accent */
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

.prsu-premium-main-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #0b2545; /* Dark Corporate Navy */
    margin: 0 0 15px 0;
}

.prsu-premium-line-divider {
    width: 60px;
    height: 4px;
    background-color: #ffcc00; /* Beautiful Yellow Theme Line Accent */
    margin: 0 auto;
    border-radius: 10px;
}

/* Core Multi-Column Structural Grid */
.prsu-premium-core-layout {
    display: flex;
    gap: 30px;
    align-items: stretch;
    width: 100%;
}

/* Left Side: Dynamic Elegant Video Card Wrapper */
.prsu-featured-video-card {
    flex: 1.1;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(11, 37, 69, 0.05);
}

.prsu-video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000000;
}

.prsu-video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.prsu-video-badge-info {
    padding: 16px 20px;
    font-family: Arial, sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #0b2545;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prsu-video-badge-info i {
    color: #c92a2a; /* Live Icon Color */
    font-size: 18px;
}

/* Right Side: Modern Symmetrical 6-Photo Matrix (3 Columns x 2 Rows) */
.prsu-mosaic-grid-wrapper {
    flex: 1.3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

/* Structural Mosaic Box Panels */
.prsu-mosaic-item {
    position: relative;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    aspect-ratio: 4 / 3;
}

.prsu-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Luxury Dark Translucent Overlay Filter on Hover */
.prsu-mosaic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 37, 69, 0.82); /* Elite Navy transparent sheet */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* View Action expand button */
.prsu-mosaic-view-btn {
    width: 44px;
    height: 44px;
    background-color: #ffcc00; /* Signature Yellow Accent */
    color: #0b2545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transform: translateY(15px);
    transition: transform 0.3s ease, background-color 0.2s;
}

/* Active Visual Interactions */
.prsu-mosaic-item:hover img {
    transform: scale(1.08);
}

.prsu-mosaic-item:hover .prsu-mosaic-overlay {
    opacity: 1;
}

.prsu-mosaic-item:hover .prsu-mosaic-view-btn {
    transform: translateY(0);
}


/* ===================================================
   LIGHTBOX MODAL POPUP SPECIFIC STYLING
   =================================================== */
.prsu-p-lightbox {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 37, 69, 0.96); 
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
}

.prsu-p-lightbox-box {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prsu-p-lightbox-box img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border: 4px solid #ffffff;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.prsu-p-lightbox-caption {
    margin-top: 15px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3px;
}

/* Absolute Positioning Controls */
.prsu-p-lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffcc00;
    font-size: 42px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.prsu-p-lightbox-close:hover {
    color: #ffffff;
}

.prsu-p-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 24px;
    padding: 16px 22px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    user-select: none;
}

.prsu-p-nav-btn:hover {
    background-color: #ffcc00;
    color: #0b2545;
    border-color: #ffcc00;
}

.prsu-p-prev { left: 35px; }
.prsu-p-next { right: 35px; }


/* ===================================================
   BREAKPOINT LOGIC (ULTRA RESPONSIVE OVERRIDES)
   =================================================== */
@media (max-width: 1199px) {
    .prsu-mosaic-grid-wrapper {
        grid-template-columns: repeat(2, 1fr); /* Redefines layout architecture */
        grid-template-rows: auto;
    }
}

@media (max-width: 991px) {
    .prsu-premium-core-layout {
        flex-direction: column;
    }
    .prsu-featured-video-card, .prsu-mosaic-grid-wrapper {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 575px) {
    .prsu-mosaic-grid-wrapper {
        grid-template-columns: 1fr; /* Pure Single Stack Column layout for compact viewports */
    }
    .prsu-premium-main-title {
        font-size: 26px;
    }
    .prsu-p-nav-btn {
        padding: 10px 14px;
        font-size: 18px;
    }
    .prsu-p-prev { left: 10px; }
    .prsu-p-next { right: 10px; }
}




/* Header Layout Updates for View All Placement */
.prsu-premium-header-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 25px;
    position: relative;
    border-left: 5px solid #0b2545; /* Matches your premium dark navy */
    padding-left: 15px;
}

.prsu-premium-title-wrapper {
    text-align: left;
}

/* Custom View All Button Styles */
.prsu-premium-action-wrapper {
    margin-top: 15px;
}

.prsu-premium-viewall-link {
    font-family: Arial, sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #c92a2a; /* Your Theme Crimson Red */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #c92a2a;
    padding: 8px 18px;
    border-radius: 4px;
    transition: all 0.25s ease;
    display: inline-block;
}

.prsu-premium-viewall-link i {
    font-size: 12px;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

/* Hover Effects matching identity elements */
.prsu-premium-viewall-link:hover {
    background-color: #c92a2a;
    color: #ffffff;
}

.prsu-premium-viewall-link:hover i {
    transform: translateX(4px);
}

/* Bottom divider line stretches across layout cleanly */
.prsu-premium-line-divider {
    width: 100%;
    height: 2px;
    background-color: #cbd5e1;
    margin-top: 15px;
    border-radius: 0;
}

/* Responsive Fix for Mobile Viewports */
@media (max-width: 575px) {
    .prsu-premium-header-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .prsu-premium-action-wrapper {
        width: 100%;
    }
    .prsu-premium-viewall-link {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}














/* ---- FOOTER premium ---- */
.site-footer { background: var(--primary-dark); padding: 0; }
.footer-cta {
  background: linear-gradient(135deg, var(--accent) 0%, #8a1420 100%);
  padding: 20px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-cta-inner p { color: #fff; font-size: 15px; font-weight: 600; margin: 0; }
.footer-cta-inner p span { color: #ffd700; }
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 50px;
  transition: all .2s;
  white-space: nowrap;
}
.footer-cta-btn:hover { background: #ffd700; color: var(--primary-dark); }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding: 40px 0 28px;
}
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 9px;
  border-bottom: 2px solid rgba(255,255,255,.12);
  text-transform: uppercase;
  letter-spacing: .5px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 36px; height: 2px;
  background: var(--gold);
}
.footer-col p { font-size: 12px; line-height: 1.8; color: rgba(255,255,255,.65); }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 12px; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 6px;
  transition: all .18s;
}
.footer-col ul li a::before { content: '›'; color: var(--gold); font-size: 16px; line-height: 1; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; color: rgba(255,255,255,.65); font-size: 12px; }
.footer-contact-item i { color: var(--gold); width: 15px; text-align: center; margin-top: 2px; flex-shrink: 0; }
.footer-social-row { display: flex; gap: 10px; margin-top: 16px; }
.footer-social-row a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: all .2s;
  border: 1px solid rgba(255,255,255,.12);
}
.footer-social-row a:hover { background: var(--accent); color: #fff; transform: scale(1.1); }
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 0;
}
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0;
}
.footer-bottom-bar p { font-size: 11.5px; color: rgba(255,255,255,.45); margin: 0; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 11.5px; color: rgba(255,255,255,.45); transition: color .18s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---- AI Chatbot ---- */
.ai-chat-fab {
  position: fixed;
  bottom: 80px; right: 24px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(26,58,107,.35);
  display: flex; align-items: center; justify-content: center;
  z-index: 1001;
  transition: all .25s;
  animation: fabPulse 3s ease infinite;
}
@keyframes fabPulse {
  0%,100%{ box-shadow: 0 6px 22px rgba(26,58,107,.35); }
  50%    { box-shadow: 0 8px 30px rgba(200,32,45,.5); }
}
.ai-chat-fab:hover { transform: scale(1.1); }
.ai-chat-fab .chat-tooltip {
  position: absolute;
  right: 62px; top: 50%;
  transform: translateY(-50%);
  background: var(--primary-dark);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.ai-chat-fab:hover .chat-tooltip { opacity: 1; }
.ai-chat-box {
  position: fixed;
  bottom: 144px; right: 24px;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(26,58,107,.22);
  z-index: 1001;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dce8f5;
  max-height: 70vh;
}
.chat-head {
  background: linear-gradient(135deg, var(--primary), #22508a);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
}
.chat-head-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.chat-head-info strong { color: #fff; font-size: 13.5px; display: block; }
.chat-head-info span { color: rgba(255,255,255,.7); font-size: 11px; }
#chatClose {
  margin-left: auto;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 26px; height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
#chatClose:hover { background: rgba(255,255,255,.3); }
#chatMessages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  max-height: 300px;
  background: #f8faff;
}
.chat-msg { max-width: 88%; font-size: 12.5px; line-height: 1.55; padding: 9px 13px; border-radius: 12px; }
.chat-msg.bot { background: #fff; border: 1px solid #dce8f5; color: var(--text-dark); align-self: flex-start; border-bottom-left-radius: 3px; box-shadow: 0 2px 6px rgba(26,58,107,.08); }
.chat-msg.user { background: var(--primary); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.chat-foot {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #eef2f8;
  background: #fff;
}
#chatInput {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 12.5px;
  outline: none;
  transition: border-color .2s;
  font-family: var(--font);
}
#chatInput:focus { border-color: var(--primary); }
#chatSend {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .2s;
  flex-shrink: 0;
}
#chatSend:hover { background: var(--accent); }












/* ---- Mobile nav row fix (hamburger left, login right) ---- */
@media (max-width: 768px) {
 
  /* Three-scroll row stack on mobile */
  .three-scroll-row .container { flex-direction: column; }
  /* Footer stack */
  .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  /* Elite notices grid */
  .prsu-elite-grid { grid-template-columns: 1fr; }
  /* Slider full height */
  .slide-img { height: 230px; }
  /* AI chat box */
  .ai-chat-box { width: calc(100vw - 32px); right: 16px; bottom: 130px; }
  .ai-chat-fab { bottom: 70px; right: 16px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

/* ---- Remove extra spaces ---- */
.three-scroll-row + .imp-websites-sec,
.prsu-elite-notices-sec + .stats-sec { margin-top: 0; }
section + section { margin-top: 0; }
br { display: none; }




 
 







/* ==========================================================================
   PRSU 4-COLUMN ULTRA-PREMIUM CARDS (SOFT BG IMAGE + BOLD TYPOGRAPHY)
   ========================================================================== */

.prsu-four-col-sec {
    width: 100%;
    /* Soft university background image with subtle grey-blue tint overlay */
    background: linear-gradient(rgba(241, 245, 249, 0.92), rgba(226, 232, 240, 0.95)), 
                url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?q=80&w=1470&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 65px 0;
    box-sizing: border-box;
}

.prsu-four-col-container {
    width: 100%;
    padding: 0 4%;
    box-sizing: border-box;
}

/* 4 Column Responsive Grid System */
.prsu-four-col-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    width: 100%;
}

/* 
   HIGHLY ELEVATED PREMIUM 3D CARD LAYOUT
*/
.prsu-four-card {
    background-color: rgba(255, 255, 255, 0.98); /* Crisp near-opaque background */
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    /* Soft premium dynamic shadow cluster */
    box-shadow: 0 15px 35px -5px rgba(15, 34, 64, 0.1), 0 5px 15px -5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

/* Smooth Interactive Lift-up */
.prsu-four-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -10px rgba(15, 34, 64, 0.18), 0 12px 24px -10px rgba(0, 0, 0, 0.08);
}

/* 
   DESIGN-DAR PROFESSIONAL CARD HEADERS 
*/
.prsu-four-card-header {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    border-bottom: 4px solid #facc15; /* Golden asset separator strike */
    /* Dynamic shading overlay for design-dar gradient look */
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.08), rgba(0,0,0,0.05));
    box-shadow: inset 0 -2px 5px rgba(0,0,0,0.05);
}

/* Theme Color Matrix Mapping */
.prsu-theme-navy { background-color: #163666; }
.prsu-theme-red  { background-color: #820e1a; }
.prsu-theme-teal { background-color: #084d26; }
.prsu-theme-gold { background-color: #b07e05; }

.prsu-four-icon-box {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.prsu-four-header-text {
    font-family: Arial, sans-serif;
    font-size: 17.5px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* 
   COMPACT INNER VIEWPORT FRAMEWORK
*/
.prsu-four-scroll-viewport {
    padding: 15px 20px;
    height: 295px; /* Perfect uniform size */
    overflow-y: auto;
    position: relative;
    background: #ffffff;
    box-sizing: border-box;
}

/* 
   PREMIUM LEVEL CAPSULE SCROLL STICK DESIGN
*/
.prsu-four-scroll-viewport::-webkit-scrollbar {
    width: 6px; /* Smooth slender layout */
}

.prsu-four-scroll-viewport::-webkit-scrollbar-track {
    background: rgba(241, 245, 249, 0.5); 
    border-radius: 10px;
}

.prsu-four-scroll-viewport::-webkit-scrollbar-thumb {
    background: #cbd5e1; /* Elegant metallic slate thumb */
    border-radius: 10px;
    border: 1px solid transparent;
}

.prsu-four-scroll-viewport::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; /* Darkens on user hold */
}

.prsu-four-scroll-track {
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   BADE AND BOLD INTERNAL TYPOGRAPHY (As requested for image_e132bc.jpg)
   ========================================================================== */

/* Card 1 Specific Elements */
.antiragging-block {
    padding: 5px 0;
}
.antiragging-alert {
    color: #dc2626;
    font-size: 15px; /* Larger and crisper */
    font-weight: 700; /* Bold style */
    line-height: 1.5;
    margin-bottom: 12px;
}
.antiragging-link {
    display: inline-block;
    color: #163666;
    font-size: 14px;
    font-weight: 700;
    word-break: break-all;
    text-decoration: underline;
    margin-bottom: 16px;
}
.antiragging-sub {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}
.antiragging-contact {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Cards 2, 3 & 4: Bold Dynamic List Items */
.prsu-four-list-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #f1f5f9;
}

.prsu-four-list-row:last-child {
    border-bottom: none;
}

/* Bullet markers tracking card templates */
.prsu-four-bullet {
    color: #820e1a;
    font-size: 10px;
    margin-top: 6px;
    display: inline-block;
}

.prsu-four-link-text {
    flex: 1;
}

.prsu-four-link-text a {
    font-family: Arial, sans-serif;
    font-size: 14px; /* Size increased for punchy readability */
    font-weight: 600; /* Prominent Bold alignment */
    line-height: 1.5;
    color: #1e293b; /* High-contrast clean text */
    text-decoration: none;
    transition: color 0.15s ease;
}

.prsu-four-link-text a:hover {
    color: maroon;
    text-decoration: NONE;
}

/* ==========================================================================
   SOLID BRAND ALIGNED VIEW-ALL FOOTERS
   ========================================================================== */
.prsu-four-card-footer {
    margin-top: auto;
    padding: 14px 20px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.prsu-four-viewall {
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700; /* Ultra prominent bold accent */
    color: #163666;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-block;
}

.prsu-four-viewall:hover {
    color: #820e1a;
}

/* ==========================================================================
   MOBILE & VIEWPORT GRID ADAPTABILITY
   ========================================================================== */
@media (max-width: 1200px) {
    .prsu-four-col-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 767px) {
    .prsu-four-col-grid { grid-template-columns: 1fr; }
    .prsu-four-col-container { padding: 0 15px; }
    .prsu-four-scroll-viewport { height: 270px; }
    .prsu-four-col-sec { padding: 45px 0; }
}





 
.announce-bar {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 42px;
  overflow: hidden;
  background: #0f2347;
  border-top: 2px solid #f58809;
}

.announce-label {
  background: #8B0000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.announce-label::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 12px solid #8B0000;
  z-index: 3;
}

.announce-track {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 18px;
}

.announce-track::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(to right, #0f2347, transparent);
  z-index: 2;
  pointer-events: none;
}

.announce-track::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to left, #0f2347, transparent);
  z-index: 2;
  pointer-events: none;
}

.announce-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: prsuTicker 40s linear infinite;
  will-change: transform;
}

.announce-inner:hover {
  animation-play-state: paused;
}

.announce-inner a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 0 22px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.announce-inner a:hover { color: #fece30; }

.announce-inner a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #f58809;
  flex-shrink: 0;
  margin-right: 2px;
}

@keyframes prsuTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
 









@media (max-width: 991px) {
    .left-sidebar {
        display: none !important; /* Forces layout removal on smaller displays */
    }
}




.univ-site-brands-title1 {
    color: #0f2347 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ==========================================================================
   UNIV BRAND WEBSITES SLIDER - OVERLAP PROOF SYSTEM
   ========================================================================== */

/* Tight compact padding & background theme alignment */
.univ-site-brands-section {
    padding: 25px 0 !important; 
    background-color: #1a3a6b !important; /* Premium Blue background matching your theme */
    border-top: 3px solid #f58809; /* Orange top line accent */
    border-bottom: 3px solid #16365d;
}

/* Heading reset with no massive margins */
.univ-site-brands-title {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Unique card blocks wrapper layout */
.univ-site-brands-box {
    background: #ffffff !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 70px !important; /* Fixed tight height to save screen space */
    margin: 5px 0 !important;
    transition: transform 0.2s ease-in-out !important;
}

.univ-site-brands-box:hover {
    transform: scale(1.04) !important;
}

/* Inner Logos sizing fixes inside white blocks */
.univ-site-brands-box img {
    max-height: 48px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Mobile alignment space reduction */
@media (max-width: 767px) {
    .univ-site-brands-section {
        padding: 15px 0 !important;
    }
    .univ-site-brands-title {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }
    .univ-site-brands-box {
        height: 55px !important;
        padding: 5px !important;
    }
    .univ-site-brands-box img {
        max-height: 38px !important;
    }
}


















/* ================================================
   FOOTER WHITE SPACE FIX
   Footer ke niche jo extra white space aa rha tha
   ================================================ */

/* Body aur HTML ka bottom margin/padding zero */
html, body {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Canvas theme body.stretched ka override */
body.stretched {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Form tag ka bottom space zero */
body > form,
#form1 {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Footer ke baad kuch bhi nahi aana chahiye */
footer.site-footer {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Back to top button ki wajah se space nahi aana chahiye */
#backToTop {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 9999 !important;
}



















/* ================================================================
   PRSU UNIQUE MASTER PAGE HEADER STRIP CSS (No Conflict Code)
   ================================================================ */
:root {
    --prsu-master-blue: #162E4E;
    --prsu-master-gold: #D4AF37;
    --prsu-master-light-gray: #E9EEF4; /* परफेक्ट सोबर लाइट-सिल्वर शेड */
    --prsu-master-text: #2D3748;
}

/* यूनिक पैरेंट क्लास - जो सब पेज में चलेगी */
.prsu-custom-head-strip {
    background-color: var(--prsu-master-light-gray) !important;
    padding: 22px 0 !important;
    border-bottom: 4px solid var(--prsu-master-gold) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
}

.prsu-custom-head-strip .container-fluid {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    padding: 0 30px !important;
    box-sizing: border-box !important;
}

/* यूनिक टाइटल क्लास */
.prsu-custom-title {
    font-family: 'Open Sans', Arial, sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--prsu-master-blue) !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

/* यूनिक ब्रेडक्रंब क्लास */
.prsu-custom-breadcrumb {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 13.5px !important;
    color: #4A5568 !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.prsu-custom-breadcrumb a { 
    color: var(--prsu-master-blue) !important; 
    text-decoration: none !important; 
    font-weight: 600 !important;
}

.prsu-custom-breadcrumb a:hover {
    color: var(--prsu-master-gold) !important;
}

.prsu-custom-breadcrumb i {
    font-size: 11px !important;
    color: #A0AEC0 !important;
}

.prsu-custom-breadcrumb .current { 
    color: #B58900 !important; /* साफ़ दिखने वाला गोल्ड */
    font-weight: 700 !important; 
}

/* मोबाइल के लिए रिस्पॉन्सिव सेटिंग्स */
@media (max-width: 768px) {
    .prsu-custom-head-strip {
        padding: 15px 0 !important;
    }
    .prsu-custom-head-strip .container-fluid {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        padding: 0 15px !important;
    }
    .prsu-custom-title {
        font-size: 20px !important;
    }
    .prsu-custom-breadcrumb {
        font-size: 12.5px !important;
    }
}