﻿/* Prefix 'prsu-' added to avoid CSS overwriting */

.prsu-portal-container {
    background: url('./Images/sec-1-bg.jpg') no-repeat center center/cover;
    background-color: #004085; /* Blue Fallback */
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 70px !important;
    padding: 30px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top:10px;
}

.prsu-portal-card {
    text-align: center !important;
    width: 150px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.prsu-portal-anchor {
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
}

.prsu-icon-circle {
    width: 140px !important;
    height: 140px !important;
    background-color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.prsu-icon-circle img {
    max-width: 60px !important;
    max-height: 60px !important;
    object-fit: contain !important;
    border: none !important;
}

.prsu-portal-card:hover .prsu-icon-circle {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3) !important;
}

.prsu-portal-card h2 {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    margin-top: 12px !important;
    margin-bottom: 0 !important;
    line-height: 1.3 !important;
    text-align: center !important;
}

/* Responsive Support */
@media (max-width: 768px) {
    .prsu-portal-container {
        gap: 20px !important;
        padding: 30px 10px !important;
    }
    .prsu-portal-card {
        width: 120px !important;
    }
    .prsu-icon-circle {
        width: 90px !important;
        height: 90px !important;
    }
    .prsu-icon-circle img {
        max-width: 45px !important;
        max-height: 45px !important;
    }
    .prsu-portal-card h2 {
        font-size: 12px !important;
    }
}




/* Container: Full Width and Centered Layout */
.prsu-grid-wrapper {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 20px 20px !important;
    box-sizing: border-box !important;
}

.prsu-grid-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
    gap: 22px !important;
    justify-content: center !important;
    align-items: stretch !important;
}

/* ----------------------------------------------------
   👑 RAISED CARD DESIGN (उभरा हुआ कार्ड लुक)
   ---------------------------------------------------- */
.prsu-tile {
    background-color: #ffffff !important;
    border: 1px dashed #cccccc !important; /* ओरिजिनल डैश बॉर्डर */
    border-radius: 12px !important;
    padding: 18px 12px !important;
    text-align: center !important;
    
    /* उभरा हुआ लुक देने के लिए 3D शैडो */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    
    /* Smooth Transition for all effects */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
}

/* ----------------------------------------------------
   🔥 HOVER EFFECT (DARK MAROON + ELEVATION)
   ---------------------------------------------------- */
.prsu-tile:hover {
    background-color: #7A0C0C !important;  /* 1. Dark Maroon Background */
    border-color: #520606 !important;      /* 2. Border Matches Maroon */
    
    /* 3. कार्ड और ज्यादा ऊपर उठेगा (Strong 3D Lift) */
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 24px rgba(122, 12, 12, 0.35), 0 4px 8px rgba(0, 0, 0, 0.15) !important;
}

/* Hover पर Title (Text) सफ़ेद हो जाएगा */
.prsu-tile:hover .prsu-tile-title {
    color: #ffffff !important;
}

/* Anchor Link inside Tile */
.prsu-tile a {
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
    width: 100% !important;
}

/* Icon Images Styling */
.prsu-tile img {
    max-width: 80px !important;
    height: 65px !important;
    object-fit: contain !important;
    margin-bottom: 12px !important;
    border: none !important;
    transition: transform 0.3s ease, filter 0.3s ease !important;
}

/* Hover पर Icon हल्का सा Zoom और Bright होगा */
.prsu-tile:hover img {
    transform: scale(1.08) !important;
    filter: brightness(1.1) !important;
}

/* Title Text Styling */
.prsu-tile-title {
    color: #222222 !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.3 !important;
    text-align: center !important;
    margin: 0 !important;
    transition: color 0.3s ease !important;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 1024px) {
    .prsu-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
        gap: 15px !important;
    }
    .prsu-tile img {
        height: 55px !important;
    }
    .prsu-tile-title {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .prsu-grid-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .prsu-grid-wrapper {
        padding: 15px 10px !important;
    }
    .prsu-tile {
        padding: 14px 8px !important;
    }
}














:root {
  --prsu-blue: #0b3b6f;
  --prsu-dark-blue: #0f2347;
  --prsu-yellow: #ffc107;
  --prsu-yellow-hover: #e0a800;
  --prsu-red-accent: #d9232d;
  --prsu-bg-light: #f8fafc;
  --prsu-text-dark: #1e293b;
}

/* OVERRIDE ALL EXTERNAL CONFLICTS */
.prsu-v2-scope, 
.prsu-v2-scope *, 
.prsu-v2-scope *::before, 
.prsu-v2-scope *::after {
  box-sizing: border-box !important;
}

.prsu-v2-scope {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  width: 100% !important;
  overflow-x: hidden !important;
  background: #ffffff;
}

/* ===================================================
   1. HERO SLIDER (FULL COVER - NO BLACK GAPS)
   =================================================== */
.prsu-v2-hero-container {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  background: transparent !important; /* ब्लैक बैकग्राउंड हटाया */
}

.prsu-v2-hero-container .prsu-v2-slider {
  display: flex !important;
  transition: transform 0.5s ease-in-out !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.prsu-v2-hero-container .prsu-v2-slide {
  min-width: 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* DESKTOP BANNER IMAGE FULL COVER */
.prsu-v2-hero-container .prsu-v2-slide img {
  width: 100% !important;
  height: 600px !important;
  object-fit: cover !important; /* 🔥 पूरे बॉक्स को बिना काले गैप के भरेगा */
  object-position: center !important;
  display: block !important;
  margin: 0 auto !important;
}

.prsu-v2-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 35, 71, 0.75);
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  border-radius: 4px;
}

.prsu-v2-slider-arrow:hover {
  background: var(--prsu-red-accent);
}

.prsu-v2-slider-arrow.left { left: 10px; }
.prsu-v2-slider-arrow.right { right: 10px; }

/* 2. INFINITE ACCREDITATION STRIP */
.prsu-v2-links-strip {
  background: var(--prsu-blue);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.prsu-v2-links-track {
  display: flex;
  width: max-content;
  animation: prsuScrollLinks 25s linear infinite;
}

.prsu-v2-links-track:hover {
  animation-play-state: paused;
}

@keyframes prsuScrollLinks {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.prsu-v2-link-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 6px 14px;
  margin: 0 8px;
  height: 55px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.prsu-v2-link-card img {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
}

/* 3. STYLISH NOTICE TICKER BAR */
.prsu-v2-notice-bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 3px solid var(--prsu-blue);
  width: 100%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  position: relative;
}

.prsu-v2-notice-badge {
  background: #0b3b6f;
  color: #ffffff;
  font-weight: 800;
  padding: 12px 24px 12px 18px;
  font-size: 13px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  margin-right: -10px;
  z-index: 2;
}

.prsu-v2-notice-iframe-wrapper {
  flex: 1;
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 15px;
}

.prsu-v2-notice-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none !important;
  outline: none !important;
}

/* 4. ABOUT US & PROFILE CARDS */
.prsu-v2-about-wrapper {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto;
  padding: 50px 20px;
  background: #ffffff;
}

.prsu-v2-flex-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
}

.prsu-v2-col-left {
  flex: 1 1 500px !important;
  width: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prsu-v2-col-right {
  flex: 1 1 480px !important;
  width: 100% !important;
}

.prsu-v2-sub-heading {
  color: var(--prsu-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
  display: inline-block;
}

.prsu-v2-sub-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--prsu-yellow);
  margin-top: 4px;
  border-radius: 2px;
}

.prsu-v2-main-heading {
  color: var(--prsu-text-dark);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  margin: 10px 0 14px 0;
}

.prsu-v2-about-desc {
  color: #475569;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.prsu-v2-btn-yellow {
  background-color: var(--prsu-yellow);
  color: #000000;
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.35);
  width: fit-content;
}

.prsu-v2-btn-yellow:hover {
  background-color: var(--prsu-yellow-hover);
  transform: translateY(-2px);
}

/* 3D CARDS WITH SHADOW */
.prsu-v2-cards-flex {
  display: flex;
  gap: 20px;
  width: 100%;
}

.prsu-v2-card {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 15px 20px 15px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid #f0f4f8;
  transition: all 0.3s ease !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.prsu-v2-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 36px rgba(27, 54, 93, 0.18) !important;
}

.prsu-v2-img-frame {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.prsu-v2-img-frame::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--prsu-red-accent);
  border-radius: 8px;
  z-index: 1;
}

.prsu-v2-img-frame img {
  position: relative;
  width: 125px;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  z-index: 2;
  background: #fff;
  display: block;
}

.prsu-v2-leader-name {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 4px 0;
}

.prsu-v2-leader-role {
  font-size: 13px;
  font-weight: 700;
  color: var(--prsu-blue);
}

.prsu-v2-leader-org {
  font-size: 11.5px;
  color: #64748b;
  margin-bottom: 15px;
}

.prsu-v2-btn-card {
  background-color: var(--prsu-blue);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
}

/* ===================================================
   📱 MOBILE RESPONSIVE (BOX ADJUSTED - NO BLACK SPACE)
   =================================================== */
@media screen and (max-width: 768px) {
  /* 🔥 मोबाइल में बॉक्स छोटा होकर पूरा भर जाएगा (No Black Space) */
  .prsu-v2-hero-container .prsu-v2-slide img {
    height: 240px !important; /* मोबाइल के लिए एकदम सही परफेक्ट बॉक्स हाइट */
    width: 100% !important;
    object-fit: cover !important; /* पूरी इमेज बॉक्स को कवर करेगी */
  }

  .prsu-v2-slider-arrow {
    padding: 6px 10px;
    font-size: 14px;
  }

  .prsu-v2-about-wrapper {
    padding: 25px 15px !important;
  }

  .prsu-v2-flex-container {
    flex-direction: column !important;
  }

  .prsu-v2-cards-flex {
    flex-direction: column !important;
    gap: 18px !important;
  }
}




/* ===================================================
   STATS SECTION (EXACT ORIGINAL THEME & MOBILE FIX)
   =================================================== */
.prsu-v4-scope, 
.prsu-v4-scope *, 
.prsu-v4-scope *::before, 
.prsu-v4-scope *::after {
  box-sizing: border-box !important;
}

.prsu-v4-stats-wrapper {
  background-color: #0b3b6f !important; /* ओरिजिनल ब्लू थीम */
  width: 100% !important;
  padding: 0 !important;
}

/* DESKTOP LAYOUT (6 Columns Line With Divider Borders) */
.prsu-v4-stats-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 0 !important;
}

.prsu-v4-stat-card {
  padding: 22px 10px !important;
  text-align: center !important;
  border-right: 1px solid rgba(255, 255, 255, 0.2) !important; /* वाइट बॉर्डर लाइन */
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}

.prsu-v4-stat-card:last-child {
  border-right: none !important;
}

.prsu-v4-stat-card h2 {
  color: #ffc107 !important; /* ओरिजिनल येलो/गोल्ड कलर */
  font-size: 32px !important;
  font-weight: 800 !important;
  margin: 0 0 6px 0 !important;
  line-height: 1 !important;
  font-family: inherit !important;
}

.prsu-v4-stat-card p {
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  text-transform: none !important;
}

/* ===================================================
   📱 MOBILE RESPONSIVE (Clean 2-Column Grid)
   =================================================== */
@media screen and (max-width: 992px) {
  .prsu-v4-stats-container {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  .prsu-v4-stat-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
}

@media screen and (max-width: 600px) {
  /* 🔥 मोबाइल में एक लाइन में 2 बॉक्स बिल्कुल सही साइज़ में */
  .prsu-v4-stats-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .prsu-v4-stat-card {
    padding: 16px 8px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  /* हर दूसरे बॉक्स की राइट बॉर्डर हटाना */
  .prsu-v4-stat-card:nth-child(2n) {
    border-right: none !important;
  }

  .prsu-v4-stat-card h2 {
    font-size: 24px !important; /* मोबाइल के लिए परफेक्ट नंबर साइज़ */
  }

  .prsu-v4-stat-card p {
    font-size: 11.5px !important;
  }
}


/* ===================================================
   NEWS & EVENTS SECTION (FULL WIDTH & RESPONSIVE)
   =================================================== */
.prsu-v8-scope, 
.prsu-v8-scope *, 
.prsu-v8-scope *::before, 
.prsu-v8-scope *::after {
  box-sizing: border-box !important;
}

/* 100% Full-Width Outer Section */
.prsu-v8-main-newscontainer {
  width: 100% !important;
  background-color: #f4f7f6;
  padding: 20px 0 !important;
  margin: 15px 0;
}

/* Responsive Grid System */
.prsu-v8-newscontainer {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 15px !important;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* MAIN CARD BOX */
.prsu-v8-card {
  background: #ffffff;
  border: 1px solid #c0d1e0;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* HEADER */
.prsu-v8-card-header {
  background: #0b3c6d !important;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
}

/* TABS WRAPPER */
.prsu-v8-tab-wrapper {
  background: #ffffff !important;
  padding: 10px 10px 0px 10px;
}

.prsu-v8-tabs {
  display: flex;
  background-color: #0b3c6d;
  border-radius: 2px;
}

/* TAB BUTTONS */
.prsu-v8-tab {
  flex: 1;
  background: #0b3c6d;
  color: #ffffff;
  border: none;
  padding: 8px 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  outline: none;
}

.prsu-v8-tab.yt { background-color: #0b3c6d; }
.prsu-v8-tab.fb { background-color: #3b5998; }
.prsu-v8-tab.tw { background-color: #1da1f2; }

/* ACTIVE TAB WITH DOWN ARROW */
.prsu-v8-tab.active {
  background: #c02128 !important;
  color: #ffffff !important;
}

.prsu-v8-tab.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #c02128 !important;
  z-index: 10;
}

/* FIXED HEIGHT BODY AREA */
.prsu-v8-body {
  padding: 10px;
  background: #ffffff;
  height: 350px !important;
  box-sizing: border-box;
  overflow: hidden;
}

.prsu-v8-content {
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.prsu-v8-content.active {
  display: block !important;
}

.prsu-v8-content iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  display: block;
  background: #ffffff;
}

/* FOOTER BAR */
.prsu-v8-card-footer {
  background: #0b3c6d !important;
  padding: 8px 14px;
  text-align: right;
}

.prsu-v8-card-footer a {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
}

.prsu-v8-card-footer a:hover {
  color: #ffc107 !important;
}

/* ===================================================
   📱 RESPONSIVE BREAKPOINTS
   =================================================== */
@media screen and (max-width: 1100px) {
  .prsu-v8-newscontainer {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media screen and (max-width: 768px) {
  .prsu-v8-newscontainer {
    grid-template-columns: 1fr !important;
    padding: 0 10px !important;
  }

  .prsu-v8-tab {
    font-size: 11px !important;
    padding: 7px 2px !important;
  }
  
  .prsu-v8-body {
    height: 320px !important;
  }
}
/* ===================================================
   ACHIEVEMENTS & RANKINGS (FULL WIDTH WITH MINIMAL SIDE SPACE)
   =================================================== */
.prsu-v10-scope, 
.prsu-v10-scope *, 
.prsu-v10-scope *::before, 
.prsu-v10-scope *::after {
  box-sizing: border-box !important;
}

/* Container Full Width with Minimal Side Padding */
.prsu-v10-container {
  width: 100% !important;
  max-width: 100% !important; /* 🔥 Full Width */
  margin: 30px 0;
  padding: 0 15px !important; /* 🔥 हल्का सा साइड स्पेस */
}

/* 1. Header with Left Blue Vertical Bar */
.prsu-v10-header {
  margin-bottom: 20px;
}

.prsu-v10-title {
  color: #0b3c6d !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  padding-left: 14px !important;
  position: relative;
  text-align: left !important;
}

.prsu-v10-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background-color: #0b3c6d;
  border-radius: 2px;
}

/* 2. Full Width Carousel Track Wrapper */
.prsu-v10-carousel-wrapper {
  position: relative;
  width: 100%;
}

.prsu-v10-track {
  display: flex !important;
  gap: 20px !important;
  overflow-x: auto !important;
  scroll-behavior: smooth !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 5px 0 15px 0;
  width: 100% !important;
}

.prsu-v10-track::-webkit-scrollbar {
  display: none;
}

/* 3. Cards Expanded Across Full Screen (Desktop: Exactly 3 Full Cards) */
.prsu-v10-item {
  flex: 0 0 calc(33.333% - 13.33px) !important;
  max-width: calc(33.333% - 13.33px) !important;
  height: 270px; /* 🔥 स्क्रीन के हिसाब से परफेक्ट हाइट */
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}

.prsu-v10-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 4. Bottom-Left Control Buttons */
.prsu-v10-controls {
  display: flex;
  gap: 5px;
  margin-top: 10px;
  justify-content: flex-start;
}

.prsu-v10-btn {
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #555555;
  border-radius: 2px;
  font-size: 14px;
  font-family: monospace;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  outline: none;
}

.prsu-v10-btn:hover {
  background-color: #0b3c6d;
  color: #ffffff;
  border-color: #0b3c6d;
}

/* ===================================================
   📱 RESPONSIVE BREAKPOINTS
   =================================================== */
@media screen and (max-width: 992px) {
  /* Tablet: 2 Cards */
  .prsu-v10-item {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
    height: 230px;
  }
}

@media screen and (max-width: 576px) {
  .prsu-v10-container {
    padding: 0 10px !important; /* मोबाइल में और कम साइड स्पेस */
  }

  .prsu-v10-title {
    font-size: 19px !important;
  }

  /* Mobile: 1 Card Full Width */
  .prsu-v10-item {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    height: 210px;
  }
}


/* ===================================================
   UNIVERSITY HIGHLIGHTS (FULL WIDTH & MOBILE RESPONSIVE)
   =================================================== */
.prsu-v11-scope, 
.prsu-v11-scope *, 
.prsu-v11-scope *::before, 
.prsu-v11-scope *::after {
  box-sizing: border-box !important;
}

.prsu-v11-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 30px 0;
  padding: 0 15px !important;
}

/* Header & View Gallery Flex Layout */
.prsu-v11-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 15px;
}

.prsu-v11-title {
  color: #0b3c6d !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  padding-left: 14px !important;
  position: relative;
}

.prsu-v11-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background-color: #0b3c6d;
  border-radius: 2px;
}

.prsu-v11-subtitle {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  margin: 4px 0 0 14px;
  font-style: italic;
}

.prsu-v11-view-link {
  color: #0b3c6d !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.prsu-v11-view-link:hover {
  color: #c02128 !important;
}

/* Gallery Horizontal Scroll Track */
.prsu-v11-gallery-wrapper {
  position: relative;
  width: 100%;
}

.prsu-v11-gallery-track {
  display: flex !important;
  gap: 15px !important;
  overflow-x: auto !important;
  scroll-behavior: smooth !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 5px 0 10px 0;
  width: 100% !important;
}

.prsu-v11-gallery-track::-webkit-scrollbar {
  display: none;
}

/* Gallery Item / Card (Desktop: 4 Columns) */
.prsu-v11-item {
  flex: 0 0 calc(25% - 11.25px) !important;
  max-width: calc(25% - 11.25px) !important;
  height: 200px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  background: #fdfdfd;
}

.prsu-v11-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Hover Zoom & Icon Overlay */
.prsu-v11-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 60, 109, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prsu-v11-zoom-icon {
  font-size: 24px;
  color: #ffffff;
  background: rgba(0,0,0,0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prsu-v11-item:hover img {
  transform: scale(1.05);
}

.prsu-v11-item:hover .prsu-v11-overlay {
  opacity: 1;
}

/* Left / Right Controls (Bottom Left) */
.prsu-v11-controls {
  display: flex;
  gap: 5px;
  margin-top: 10px;
  justify-content: flex-start;
}

.prsu-v11-btn {
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #555555;
  border-radius: 2px;
  font-size: 14px;
  font-family: monospace;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  outline: none;
}

.prsu-v11-btn:hover {
  background-color: #0b3c6d;
  color: #ffffff;
  border-color: #0b3c6d;
}

/* Lightbox Modal */
.prsu-v11-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}

.prsu-v11-modal-content {
  max-width: 90%;
  max-height: 85%;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.prsu-v11-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #ffffff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

/* ===================================================
   📱 RESPONSIVE BREAKPOINTS
   =================================================== */
@media screen and (max-width: 992px) {
  /* Tablet: 2 Items */
  .prsu-v11-item {
    flex: 0 0 calc(50% - 7.5px) !important;
    max-width: calc(50% - 7.5px) !important;
    height: 210px;
  }
}

@media screen and (max-width: 576px) {
  .prsu-v11-container {
    padding: 0 10px !important;
  }

  .prsu-v11-title {
    font-size: 19px !important;
  }

  /* Mobile: 1 Item Full Width */
  .prsu-v11-item {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    height: 220px;
  }
}


/* ===================================================
   IMPORTANT WEBSITES CAROUSEL (PRSU V12 UNIFIED STYLE)
   =================================================== */
.prsu-v12-scope, 
.prsu-v12-scope *, 
.prsu-v12-scope *::before, 
.prsu-v12-scope *::after {
  box-sizing: border-box !important;
}

/* Container Full Width */
.prsu-v12-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 30px 0;
  padding: 0 15px !important;
}

/* Header Styling with Left Blue Accent */
.prsu-v12-header {
  margin-bottom: 20px;
}

.prsu-v12-title {
  color: #0b3c6d !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  padding-left: 14px !important;
  position: relative;
  text-align: left !important;
}

.prsu-v12-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background-color: #0b3c6d;
  border-radius: 2px;
}

/* Carousel Track Wrapper */
.prsu-v12-carousel-wrapper {
  position: relative;
  width: 100%;
}

.prsu-v12-track {
  display: flex !important;
  gap: 15px !important;
  overflow-x: auto !important;
  scroll-behavior: smooth !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 5px 0 15px 0;
  width: 100% !important;
}

.prsu-v12-track::-webkit-scrollbar {
  display: none;
}

/* Desktop: 5 Cards Grid */
.prsu-v12-item {
  flex: 0 0 calc(20% - 12px) !important;
  max-width: calc(20% - 12px) !important;
  height: 90px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prsu-v12-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  border-color: #0b3c6d;
}

.prsu-v12-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.prsu-v12-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Bottom-Left Controls */
.prsu-v12-controls {
  display: flex;
  gap: 5px;
  margin-top: 10px;
  justify-content: flex-start;
}

.prsu-v12-btn {
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #555555;
  border-radius: 2px;
  font-size: 14px;
  font-family: monospace;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  outline: none;
}

.prsu-v12-btn:hover {
  background-color: #0b3c6d;
  color: #ffffff;
  border-color: #0b3c6d;
}

/* ===================================================
   📱 RESPONSIVE BREAKPOINTS
   =================================================== */
@media screen and (max-width: 1200px) {
  /* Laptop: 4 Cards */
  .prsu-v12-item {
    flex: 0 0 calc(25% - 11.25px) !important;
    max-width: calc(25% - 11.25px) !important;
  }
}

@media screen and (max-width: 992px) {
  /* Tablet: 3 Cards */
  .prsu-v12-item {
    flex: 0 0 calc(33.333% - 10px) !important;
    max-width: calc(33.333% - 10px) !important;
  }
}

@media screen and (max-width: 576px) {
  .prsu-v12-container {
    padding: 0 10px !important;
  }

  .prsu-v12-title {
    font-size: 19px !important;
  }

  /* Mobile: 2 Cards Side-by-Side */
  .prsu-v12-item {
    flex: 0 0 calc(50% - 7.5px) !important;
    max-width: calc(50% - 7.5px) !important;
    height: 80px;
  }
}



/* ===================================================
   FOOTER SECTION (PRSU V13 MODERN DARK THEME)
   =================================================== */
.prsu-ft-scope, 
.prsu-ft-scope *, 
.prsu-ft-scope *::before, 
.prsu-ft-scope *::after {
  box-sizing: border-box !important;
}

.prsu-ft-scope {
  background-color: #061e38 !important; /* Deep Navy Blue */
  color: #d1dce5 !important;
  font-family: inherit;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 4px solid #0b3c6d;
}

.prsu-ft-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto;
  padding: 0 25px !important;
}

/* Grid Layout */
.prsu-ft-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-between;
}

.prsu-ft-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.prsu-ft-col-links-group {
  display: flex;
  flex: 2 1 420px;
  gap: 20px;
}

.prsu-ft-sub-col {
  flex: 1;
  min-width: 150px;
}

/* Headings with Left Accent Bar */
.prsu-ft-heading {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin: 0 0 14px 0 !important;
  padding-left: 10px !important;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prsu-ft-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 1px;
  width: 3px;
  background-color: #3b82f6;
  border-radius: 2px;
}

/* Links List */
.prsu-ft-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.prsu-ft-list li {
  margin-bottom: 8px;
}

.prsu-ft-list a {
  color: #b0c4de !important;
  text-decoration: none !important;
  font-size: 13.5px;
  transition: all 0.2s ease;
  display: inline-block;
}

.prsu-ft-list a:hover {
  color: #ffffff !important;
  transform: translateX(3px);
}

/* Contact / Address Area */
.prsu-ft-univ-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.prsu-ft-text {
  font-size: 13.5px;
  color: #b0c4de;
  margin-bottom: 12px;
  line-height: 1.5;
}

.prsu-ft-helpline {
  font-size: 13px;
  color: #d1dce5;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
}

.prsu-ft-helpline a {
  color: #60a5fa !important;
  text-decoration: none;
}

.prsu-ft-examline {
  font-size: 13px;
  font-weight: 600;
  color: #ffca28;
}

.prsu-ft-examline a {
  color: #ffca28 !important;
  text-decoration: none;
}

/* Social Icons */
.prsu-ft-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.prsu-ft-social a {
  width: 34px;
  height: 34px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.prsu-ft-social a.facebook:hover { background-color: #1877f2; transform: translateY(-2px); }
.prsu-ft-social a.twitter:hover { background-color: #1da1f2; transform: translateY(-2px); }
.prsu-ft-social a.youtube:hover { background-color: #ff0000; transform: translateY(-2px); }

/* Bottom Bar */
.prsu-ft-bottom {
  background-color: #041427;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 15px 0;
  margin-top: 30px;
  font-size: 12.5px;
  color: #8fa3b8;
  text-align: center;
}

/* ===================================================
   📱 RESPONSIVE BREAKPOINTS (FIXED FOR MOBILE)
   =================================================== */
@media screen and (max-width: 768px) {
  .prsu-ft-col-full {
    flex: 1 1 100%;
  }

  .prsu-ft-col-links-group {
    flex: 1 1 100%;
    display: flex;
    flex-direction: row; /* Force side-by-side on mobile */
    gap: 15px;
  }

  .prsu-ft-sub-col {
    width: 50%; /* Exactly 2 Columns on Mobile */
  }

  .prsu-ft-list a {
    font-size: 12.5px; /* Mobile Friendly Text Size */
  }

  .prsu-ft-heading {
    font-size: 14px !important;
  }
}


/* ===================================================
   USEFUL LINKS SECTION (AUTO-SCROLLING CAROUSEL)
   =================================================== */
.prsu-ulink-scope,
.prsu-ulink-scope *,
.prsu-ulink-scope *::before,
.prsu-ulink-scope *::after {
  box-sizing: border-box !important;
}

.prsu-ulink-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 35px 0;
  padding: 0 20px !important;
}

/* Header with Left Accent Line */
.prsu-ulink-header {
  margin-bottom: 20px;
}

.prsu-ulink-title {
  color: #0b3c6d !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  padding-left: 12px !important;
  position: relative;
  text-align: left !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prsu-ulink-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background-color: #0b3c6d;
  border-radius: 2px;
}

/* Carousel Wrapper & Track */
.prsu-ulink-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.prsu-ulink-track {
  display: flex !important;
  gap: 20px !important;
  overflow-x: auto !important;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox Hide Scrollbar */
  -ms-overflow-style: none; /* IE Hide Scrollbar */
  padding: 5px 0;
}

.prsu-ulink-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari Hide Scrollbar */
}

/* Individual Cards */
.prsu-ulink-track .website-carousel-item {
  flex: 0 0 calc(20% - 16px) !important; /* Desktop: 5 Visible Items */
  min-width: 180px;
  height: 90px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all 0.3s ease;
}

.prsu-ulink-track .website-carousel-item:hover {
  transform: translateY(-3px);
  border-color: #0b3c6d;
  box-shadow: 0 4px 12px rgba(11, 60, 109, 0.12);
  background: #ffffff;
}

.prsu-ulink-track .website-carousel-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.prsu-ulink-track .website-carousel-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ===================================================
   📱 RESPONSIVE BREAKPOINTS
   =================================================== */
@media screen and (max-width: 1200px) {
  .prsu-ulink-track .website-carousel-item {
    flex: 0 0 calc(25% - 15px) !important; /* Laptop: 4 Items */
  }
}

@media screen and (max-width: 992px) {
  .prsu-ulink-track .website-carousel-item {
    flex: 0 0 calc(33.333% - 13.3px) !important; /* Tablet: 3 Items */
  }
}

@media screen and (max-width: 576px) {
  .prsu-ulink-container {
    padding: 0 12px !important;
  }

  .prsu-ulink-title {
    font-size: 19px !important;
  }

  .prsu-ulink-track .website-carousel-item {
    flex: 0 0 calc(50% - 10px) !important; /* Mobile: 2 Items side-by-side */
    height: 80px;
    min-width: 130px;
  }
}










/* ===================================================
   STUDENT SUPPORT SECTION (MAROON & GOLD FULL-WIDTH)
   =================================================== */
.prsu-supp-scope,
.prsu-supp-scope *,
.prsu-supp-scope *::before,
.prsu-supp-scope *::after {
  box-sizing: border-box !important;
}

/* Section Main Outer Background */
.prsu-supp-scope {
  background-color: #800000 !important; /* Maroon Theme Background */
  padding: 35px 0 !important;
  margin: 20px 0 !important;
  width: 100% !important;
}

/* Full Width Container with Padding */
.prsu-supp-container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 25px !important;
  margin: 0 auto !important;
}

/* Title Styling */
.prsu-supp-header {
  margin-bottom: 20px;
}

.prsu-supp-title {
  color: #ffcc00 !important; /* Yellow / Gold Accent */
  font-size: 22px !important;
  font-weight: 700 !important;
  margin: 0 0 6px 0 !important;
  padding-left: 10px !important;
  position: relative;
  text-transform: uppercase;
}

.prsu-supp-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background-color: #ffcc00;
  border-radius: 2px;
}

.prsu-supp-subtitle {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  margin: 0 !important;
  padding-left: 14px !important;
}

/* Tabs Bar Layout */
.prsu-supp-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}

.prsu-supp-tab {
  flex: 1 1 auto;
  background-color: #ffcc00 !important; /* Gold Tab */
  color: #000000 !important;
  border: none !important;
  border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
  padding: 12px 18px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  outline: none;
}

.prsu-supp-tab:last-child {
  border-right: none !important;
}

.prsu-supp-tab:hover {
  background-color: #e6b800 !important;
}

.prsu-supp-tab.active {
  background-color: #000000 !important; /* Black Active Tab */
  color: #ffffff !important;
}

/* White Box Layout */
.prsu-supp-content-box {
  background: #ffffff !important;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  padding: 25px;
  width: 100%;
}

.prsu-supp-content {
  display: none;
}

.prsu-supp-content.active {
  display: block;
}

/* Card Content Flex */
.prsu-supp-card {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.prsu-supp-img {
  flex: 0 0 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prsu-supp-img img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.prsu-supp-info {
  flex: 1;
  word-break: break-word;
}

.prsu-supp-info h4 {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.prsu-supp-info p {
  color: #333333;
  font-size: 14px;
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.prsu-supp-info a {
  color: #0b3c6d;
  text-decoration: underline;
}

.prsu-supp-contact {
  color: #444444;
  font-size: 14px;
}

/* Lists styling */
.prsu-supp-grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px 20px;
  padding-left: 18px;
  margin: 0;
}

.prsu-supp-grid-list li, .prsu-supp-std-list li {
  margin-bottom: 6px;
  font-size: 13.5px;
}

.prsu-supp-grid-list a, .prsu-supp-std-list a {
  color: #0b3c6d !important;
  text-decoration: none !important;
}

.prsu-supp-grid-list a:hover, .prsu-supp-std-list a:hover {
  text-decoration: underline !important;
  color: #800000 !important;
}

.prsu-supp-std-list {
  padding-left: 20px;
  margin: 0;
}

/* ===================================================
   📱 RESPONSIVE BREAKPOINTS
   =================================================== */
@media screen and (max-width: 992px) {
  .prsu-supp-card {
    flex-direction: column; /* Tablet/Mobile: Image on top, text below */
    text-align: center;
    gap: 15px;
  }

  .prsu-supp-img {
    flex: 0 0 auto;
    width: 130px;
  }

  .prsu-supp-grid-list {
    text-align: left;
    grid-template-columns: 1fr; /* Single column links */
  }

  .prsu-supp-std-list {
    text-align: left;
  }
}

@media screen and (max-width: 576px) {
  .prsu-supp-container {
    padding: 0 12px !important;
  }

  .prsu-supp-content-box {
    padding: 15px;
  }

  .prsu-supp-tabs {
    flex-direction: column !important; /* Mobile: Vertical Stack Tabs */
  }

  .prsu-supp-tab {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    font-size: 13px !important;
    padding: 10px !important;
  }

  .prsu-supp-title {
    font-size: 18px !important;
  }

  .prsu-supp-subtitle {
    font-size: 13px !important;
  }
}


/* ===================================================
   MAROON ICON-BASED TOP BAR STYLING
   =================================================== */
.top-bar {
  background-color: #800000 !important; /* Rich Maroon Background */
  color: #ffffff;
  padding: 5px 0;
  font-size: 12px;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
}

/* LEFT SECTION STYLES */
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-phone-link {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.top-phone-link i {
  color: #ffcc00; /* Gold/Yellow Icon */
  font-size: 12px;
}

.top-phone-link:hover {
  color: #ffcc00 !important;
}

.top-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}

.top-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-social-icons a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.top-social-icons a:hover {
  background: #ffcc00;
  color: #000000 !important;
}

/* RIGHT SECTION STYLES */
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.beta-badge {
  background-color: #ffcc00;
  color: #000000;
  font-weight: 700;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.top-link-icon, .old-web-btn {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.top-link-icon:hover {
  color: #ffcc00 !important;
}

.old-web-btn {
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 8px;
  border-radius: 3px;
}

.old-web-btn:hover {
  background: #ffcc00;
  color: #000000 !important;
}

/* FONT RESIZER GROUP (A- A A+) */
.font-resizer-group {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  padding: 1px;
  gap: 2px;
  margin-left: 4px;
}

.font-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  line-height: 1.2;
}

.font-btn:hover, .font-btn.active {
  background: #ffcc00;
  color: #000000;
}

/* ===================================================
   📱 MOBILE RESPONSIVE (320px - 768px)
   =================================================== */
@media screen and (max-width: 768px) {
  .top-bar-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .top-bar-left, .top-bar-right {
    gap: 8px;
    justify-content: center;
  }

  .top-phone-link span {
    font-size: 11px;
  }

  .font-btn {
    padding: 1px 4px;
    font-size: 10px;
  }
}



/* ===================================================
   ORIGINAL BLUE NAVBAR (WITH DIVIDERS & COMPACT FONT)
   =================================================== */
.custom-navbar {
  background-color: #0b3b6f !important; /* Original Royal Blue Header Color */
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.custom-nav-container {
  position: relative;
  width: 100%;
}

/* Hide Pure CSS Checkbox */
.nav-toggle-checkbox {
  display: none !important;
}

/* Toggle Button Styling (Mobile) */
.nav-toggle-btn {
  display: none;
  padding: 4px 10px;
  margin: 6px 12px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  width: fit-content;
}

.nav-toggle-btn .icon-close {
  display: none;
}

/* Desktop Menu Layout */
.custom-nav-menu {
  display: block;
  width: 100%;
}

.custom-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Individual Menu Items with Vertical Divider Lines */
.custom-nav-list li {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.25); /* Vertical Line between items */
}

/* Last item won't have right border */
.custom-nav-list li:last-child {
  border-right: none;
}

.custom-nav-list li a {
  display: block;
  padding: 6px 11px; /* Compact Padding */
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 11.5px; /* Small Sharp Font Size as in First Image */
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.custom-nav-list li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffcc00 !important; /* Yellow hover accent */
}

/* ===================================================
   📱 MOBILE RESPONSIVE & PURE CSS TOGGLE
   =================================================== */
@media screen and (max-width: 991px) {
  
  /* Show Mobile Button */
  .nav-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  /* Hide Menu initially on Mobile */
  .custom-nav-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: #082d52; /* Slightly Darker Blue for Mobile Dropdown */
  }

  .custom-nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0 !important;
  }

  /* Horizontal Lines for Mobile Items */
  .custom-nav-list li {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .custom-nav-list li a {
    padding: 8px 15px;
    font-size: 12px;
  }

  /* ⚡ OPEN & CLOSE TOGGLE MECHANISM */
  .nav-toggle-checkbox:checked ~ .custom-nav-menu {
    max-height: 550px;
  }

  /* Switch Icon (☰ Menu -> ✕ Close) */
  .nav-toggle-checkbox:checked ~ .nav-toggle-btn .icon-open {
    display: none;
  }
  
  .nav-toggle-checkbox:checked ~ .nav-toggle-btn .icon-close {
    display: inline;
    color: #ffffff;
  }
}







/* ===================================================
   PROFESSIONAL UNIVERSITY ONLINE PORTAL POPUP
   =================================================== */

/* Sticky Side Trigger Button */
.prsu-pop-open-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right bottom;
  background-color: #ffc107; /* Gold Accent */
  color: #0b3b6f;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px 4px 0 0;
  cursor: pointer;
  z-index: 9999;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
}

/* Blur Glass Overlay */
.prsu-pop-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 18, 36, 0.7); /* Subtle Dark Backdrop */
  backdrop-filter: blur(4px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

/* Modal Window (Clean Off-White) */
.prsu-pop-content {
  background: #f8fafc; /* Crisp Light Grayish White */
  width: 100%;
  max-width: 900px;
  border-radius: 4px; /* Sharp Executive Radius */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  border: 1px solid #cbd5e1;
  animation: prsuPopFade 0.25s ease-out;
}

@keyframes prsuPopFade {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Professional University Header */
.prsu-pop-header {
  background: #0b3c6d; /* Official Royal Navy Blue */
  color: #ffffff;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #ffc107; /* Gold Divider Line */
}

.prsu-pop-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #ffffff;
}

.prsu-pop-close-btn {
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.prsu-pop-close-btn:hover {
  opacity: 1;
  color: #ffc107;
}

/* Popup Body */
.prsu-pop-body {
  padding: 22px;
  max-height: 80vh;
  overflow-y: auto;
}

/* Grid Layout (3 Columns Desktop) */
.prsu-pop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Clean Professional Cards */
.prsu-pop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff; /* Clean White */
  color: #1e293b !important;
  padding: 20px 12px;
  border-radius: 4px;
  text-decoration: none !important;
  border: 1px solid #e2e8f0;
  
  /* Subtle Elevated Shadow */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease-in-out;
}

/* Icons Styling */
.prsu-pop-card i {
  font-size: 26px;
  margin-bottom: 10px;
  color: #0b3c6d; /* Navy Blue Icon */
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Title Text */
.prsu-pop-card span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #334155;
}

/* 🔥 Elegant Hover State */
.prsu-pop-card:hover {
  background: #ffffff;
  border-color: #0b3c6d;
  transform: translateY(-4px); /* Professional Rise */
  box-shadow: 0 10px 20px rgba(11, 60, 109, 0.12); /* Soft Depth */
}

.prsu-pop-card:hover i {
  color: #c02128; /* Crimson Red Highlight */
  transform: scale(1.1);
}

.prsu-pop-card:hover span {
  color: #0b3c6d;
}

/* ===================================================
   📱 MOBILE RESPONSIVE DESIGN
   =================================================== */
@media screen and (max-width: 850px) {
  .prsu-pop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media screen and (max-width: 576px) {
  .prsu-pop-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 10px;
  }

  .prsu-pop-body {
    padding: 12px;
  }

  .prsu-pop-card {
    flex-direction: row; /* Horizontal alignment */
    justify-content: flex-start;
    padding: 12px 16px;
    text-align: left;
  }

  .prsu-pop-card i {
    margin-bottom: 0;
    margin-right: 14px;
    font-size: 20px;
  }

  .prsu-pop-card span {
    font-size: 12.5px;
  }
}