/* ===============================
     GLOBAL & BODY STYLES
  ================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --header-height: 106px;
  --primary-color: #a4163a;
  --primary-dark: #7a0c2e;
  --secondary-color: #0a2c4d;
  --text-light: #fff;
  --text-dark: #333;
  --transition-speed: 0.3s ease;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f8fafc;
  padding-top: var(--header-height);
}

/* ===============================
     HEADER & NAVIGATION
  ================================ */
.cc-nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* Top Header */
.cc-nav-top {
  background: var(--primary-color);
  color: var(--text-light);
  font-size: 14px;
  padding: 6px 0;
  position: relative;
  z-index: 1000;
  transition: transform var(--transition-speed), opacity var(--transition-speed);
  height: 26px;
}

.cc-nav-top.hide {
  transform: translateY(-100%);
  opacity: 0;
}

.cc-nav-top-container,
.cc-nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.cc-nav-top-left {
  display: flex;
  gap: 24px;
}

.cc-nav-top-social {
  display: flex;
  gap: 16px;
}

.cc-nav-top-social a {
  color: var(--text-light);
  font-size: 16px;
  transition: transform var(--transition-speed);
}

.cc-nav-top-social a:hover {
  transform: translateY(-2px);
}

/* Main Navbar */
.cc-nav {
  height: 80px;
  overflow: visible;
  z-index: 999;
  transition: all var(--transition-speed);
  background: var(--text-light);
  position: relative;
  top: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cc-nav.top-position {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: var(--primary-color);
}

.cc-nav.compact {
  height: 70px;
  background: var(--primary-color);
}

.cc-nav:not(.top-position) {
  background: var(--text-light);
}

.cc-nav-bg {
  display: none;
}

/* Logo Styling */
.cc-nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.cc-nav-logo img {
  height: 70px;
  transition: height var(--transition-speed);
  object-fit: contain;
  width: auto;
  max-width: 100%;
}

.cc-nav.compact .cc-nav-logo img {
  height: 65px;
  margin-top: 5px;
}

/* Menu */
.cc-nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.cc-nav-menu>li {
  position: relative;
}

/* Color variations based on nav state */
.cc-nav:not(.top-position) .cc-nav-menu a {
  color: var(--text-dark);
}

.cc-nav.top-position .cc-nav-menu a,
.cc-nav.compact .cc-nav-menu a {
  color: var(--text-light);
}

.cc-nav-menu a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding: 5px 0;
  transition: all var(--transition-speed);
}

.cc-nav.compact .cc-nav-menu a {
  font-size: 15px;
}

/* Underline for items without dropdown */
.cc-nav-menu>li:not(.has-dropdown)>a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  transition: var(--transition-speed);
  transform: translateX(-50%);
}

.cc-nav:not(.top-position) .cc-nav-menu>li:not(.has-dropdown)>a::after {
  background: var(--primary-color);
}

.cc-nav.top-position .cc-nav-menu>li:not(.has-dropdown)>a::after,
.cc-nav.compact .cc-nav-menu>li:not(.has-dropdown)>a::after {
  background: var(--text-light);
}

.cc-nav-menu>li:not(.has-dropdown)>a:hover::after,
.cc-nav-menu>li:not(.has-dropdown)>a.active::after {
  width: 100%;
}

/* Dropdown */
.cc-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  display: none;
  flex-direction: column;
  z-index: 1000;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--transition-speed), transform var(--transition-speed);
  border: 1px solid #eee;
}

/* Dropdown color variations */
.cc-nav:not(.top-position) .cc-nav-dropdown {
  background: var(--text-light);
}

.cc-nav.top-position .cc-nav-dropdown,
.cc-nav.compact .cc-nav-dropdown {
  background: var(--primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-nav-menu>li:hover .cc-nav-dropdown {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.cc-nav-dropdown a {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition-speed);
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.cc-nav:not(.top-position) .cc-nav-dropdown a {
  color: var(--text-dark);
  border-bottom: 1px solid #f5f5f5;
}

.cc-nav.top-position .cc-nav-dropdown a,
.cc-nav.compact .cc-nav-dropdown a {
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-nav:not(.top-position) .cc-nav-dropdown a:hover {
  background: #f9f9f9;
  padding-left: 20px;
  color: var(--primary-color);
}

.cc-nav.top-position .cc-nav-dropdown a:hover,
.cc-nav.compact .cc-nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 20px;
}

/* CTA Button */
.cc-nav-cta {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-left: 24px;
  transition: all var(--transition-speed);
}

.cc-nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(122, 12, 46, 0.2);
}

/* Hamburger */
.cc-nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

/* Hamburger color variations */
.cc-nav:not(.top-position) .cc-nav-toggle {
  color: var(--text-dark);
}

.cc-nav.top-position .cc-nav-toggle,
.cc-nav.compact .cc-nav-toggle {
  color: var(--text-light);
}

/* Active state */
.cc-nav-menu a.active {
  font-weight: 600;
}

.cc-nav:not(.top-position) .cc-nav-menu a.active {
  color: var(--primary-color);
}

.cc-nav.top-position .cc-nav-menu a.active,
.cc-nav.compact .cc-nav-menu a.active {
  color: #f4e6ea;
}

/* Navigation Checkbox */
#cc-nav-check {
  display: none;
}

/* ===============================
     HERO SECTION
  ================================ */
/* =====================================
   PCU CONVOCATION HERO VIDEO
===================================== */

.cc-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  background: #000;
}

.cc-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}


/* DARK OVERLAY */
.cc-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.55)
  ); */
  pointer-events: none;
}

/* OPTIONAL CONTENT LAYER */
.cc-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

/* OPTIONAL HEADINGS */
.cc-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.cc-hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
}

/* =====================================
   RESPONSIVE FIXES
===================================== */

@media (max-width: 992px) {
  .cc-hero {
    height: 70vh;
  }
}

@media (max-width: 768px) {
  .cc-hero {
    height: 60vh;
    min-height: 380px;
  }
}

@media (max-width: 480px) {
  .cc-hero {
    height: 55vh;
    min-height: 320px;
  }
}

/* ===============================
     CONVOCATION SLIDER SECTION
  ================================ */

.pcu-highlight-ticker {
  background: linear-gradient(90deg, #5a0f1b, #7a1524);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
}

.pcu-ticker-wrap {
  width: 100%;
  overflow: hidden;
}

.pcu-ticker-move {
  display: inline-block;
  padding-left: 100%;
  animation: pcuTicker 22s linear infinite;
}

.pcu-ticker-move span {
  display: inline-block;
  margin-right: 40px;
  font-size: 18px;
  font-weight: 500;
  color: #f5e27c;
}

@keyframes pcuTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ===============================
     CONVOCATION COUNTDOWN SECTION
  ================================ */
.convocation-countdown {
  padding: 2px 20px 10px;
  background-image: url("../images/con-hat.jpg");
  text-align: center;
  color: #f1c470;
  font-weight: 700;
}

.countdown-container {
  max-width: 1000px;
  margin: auto;
}

.countdown-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: -15px;
  letter-spacing: 1px;
  margin-top: -2px;

  /* Glass blur effect */
  background: rgba(11, 22, 39, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: 12px 20px;
  border-radius: 10px;
  display: inline-block;
}

.countdown-subtitle {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 5px;
  margin-top: 10px;
  font-weight: 700;

  /* Glass blur effect */
  background: rgba(11, 22, 39, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  padding: 10px 18px;
  border-radius: 8px;
  display: inline-block;
}


/* Timer */
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.time-box {
  width: 150px;
  height: 150px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.time-box span {
  font-size: 48px;
  font-weight: 700;
  color: #111111;
}

.time-box small {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #141414;
}


/* ===============================
   CONVOCATION HERO
================================ */
.convocation-hero {
  background-color: #f7f5f6;
  padding: 80px 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10 17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%23ee99f4' fill-opacity='0.06' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.convocation-container {
  max-width: 1300px;
  margin: auto;
}

/* MAIN GRID */
.convocation-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.convocation-left {
  max-width: 100%;
}

.welcome-badge {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.convocation-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.convocation-description {
  font-size: 1.1rem;
  color: #565768;
  line-height: 1.6;
  text-align: justify;
}

.convocation-details {
  margin-top: 15px;
  background: #fff;
  padding: 20px;
  border-left: 5px solid var(--primary-color);
  border-radius: 14px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.detail-item i {
  font-size: 20px;
  color: var(--primary-color);
}

/* RIGHT IMAGE GROUP */
/* =============================== RIGHT IMAGE GROUP ================================ */
.convocation-right {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* =============================== IMAGE CARD ================================ */
.convocation-pro-frame {
  width: 327px;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover lift animation */
.convocation-pro-frame:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .2);
}

/* Chief guest slight emphasis */
.chief-guest {
  transform: scale(1.02);
}

/* =============================== INNER CARD ================================ */
.convocation-pro-inner {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
}

/* =============================== BADGE – FULL WIDTH CENTER ================================ */
.guest-badge {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
  padding: 8px 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 8px;
  color: #fff;
}

/* Badge themes */
.guest-badge.chief {
  background: linear-gradient(45deg, #7a0c18, #b51c2b);
}

.guest-badge.honour {
  background: linear-gradient(45deg, #7a0c18, #b51c2b);
}

/* =============================== IMAGE ================================ */
.convocation-pro-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
  background: #e5e5e5;
}

/* =============================== INFO ================================ */
.convocation-pro-info {
  margin-top: 12px;
  text-align: center;
  padding: 12px;
  background: #f7f7f7;
  border-radius: 10px;
}

/* Name – single line */
.convocation-pro-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #8a0d0d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Designation + Content – same style */
.convocation-pro-info .designation {
  color: #555;
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1.55;
}

.convocation-pro-info .guest-content p {
  font-size: 0.88rem;
  font-weight: 400;
  color: #555;
  line-height: 1.55;
}

/* =============================== CONTENT SECTION ================================ */
.guest-content {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #d0d0d0;
}

.guest-content p {
  margin: 0;
}

/* =============================== TEXT RENDERING ================================ */
.convocation-pro-info,
.guest-content p {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =============================== RESPONSIVE ================================ */
@media (max-width: 992px) {
  .convocation-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .convocation-right {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .convocation-right {
    flex-direction: column;
    align-items: center;
  }

  .convocation-pro-frame {
    width: 90%;
    max-width: 320px;
  }

  .convocation-pro-img {
    height: 360px;
  }
}

/* ===============================
   iPAD MINI – PORTRAIT & LANDSCAPE
   =============================== */
@media (min-width: 768px) and (max-width: 1024px) {

  /* HERO SECTION */
  .convocation-hero {
    padding: 60px 30px;
  }

  /* GRID BALANCE */
  .convocation-content {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
  }

  /* LEFT CONTENT */
  .convocation-title {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .convocation-description {
    font-size: 1.02rem;
  }

  .convocation-details {
    padding: 18px;
  }

  /* RIGHT PROFILE */
  .convocation-pro-frame {
    width: 300px;
  }

  .convocation-pro-img {
    height: 400px;
  }

  .convocation-pro-info h3 {
    font-size: 1rem;
  }

  .convocation-pro-info .designation,
  .guest-content p {
    font-size: 0.85rem;
  }
}


/* ===============================
     LEADERSHIP SECTION
  ================================ */
.leadership-section {
  padding: 70px 20px;
  background: #ebe5e0;
}

.leadership-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.lottie-arrow {
  flex-shrink: 0;
  text-align: center;
}

.lottie-arrow h2 {
  font-size: 41px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0;
  margin-top: 80px;
}

.leadership-title {
  color: var(--primary-dark);
  font-size: xx-large;
}

.glass-card {
  position: relative;
  width: 350px;
  height: 450px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.glass-img {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  overflow: hidden;
}

.glass-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glass-content {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.glass-detail {
  text-align: center;
  padding-bottom: 7px;
}

.glass-detail h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
}

.glass-detail h2 span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===============================
     BOARD OF TRUSTEES SECTION
  ================================ */
.royal-section {
  padding: 100px 200px;
  background-color: #4717174a;
  background-image: url("data:image/svg+xml,%3Csvg width='84' height='16' viewBox='0 0 84 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M78 7V4h-2v3h-3v2h3v3h2V9h3V7h-3zM30 7V4h-2v3h-3v2h3v3h2V9h3V7h-3zM10 0h2v16h-2V0zm6 0h4v16h-4V0zM2 0h4v16H2V0zm50 0h2v16h-2V0zM38 0h2v16h-2V0zm28 0h2v16h-2V0zm-8 0h6v16h-6V0zM42 0h6v16h-6V0z' fill='%23f7d9e4' fill-opacity='0.06' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #3a1d1d;
}

.royal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  justify-items: center;
}

.royal-card {
  width: 350px;
  background: linear-gradient(180deg, #fff 0%, #f6f1ec 100%);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  padding: 37px 10px 37px;
  text-align: center;
  position: relative;
  transition: all 0.45s ease;
  gap: 40px;
  height: 380px;
}

.royal-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.22);
}

.royal-img-box {
  position: relative;
  width: 190px;
  height: 190px;
  margin: 0 auto 40px;
}

.royal-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid #fff;
  z-index: 2;
  position: relative;
  /* object-fit: cover; */
}

.royal-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid #c9a24d;
  animation: rotate 18s linear infinite;
}

.royal-ring.ring-sm {
  inset: -20px;
  border-style: dashed;
  opacity: .5;
  animation-direction: reverse;
}

.royal-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: #3b1c1c;
  margin-bottom: 6px;
}

.royal-role {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #9a7c32;
  margin-bottom: 14px;
}

.royal-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
}

/* ===============================
     GOVERNING BODY SECTION
  ================================ */
.governing-body-section {
  padding: 100px 20px;
  background-color: #efe9ec00;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e5d6df' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
  position: relative;
  overflow: hidden;
}

.governing-body-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(164, 22, 58, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.governing-body-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.gb-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.gb-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #e8b954);
  border-radius: 2px;
}

.governing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
  justify-content: center;
  gap: 80px;
  margin-bottom: 60px;
}

.governing-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(122, 12, 46, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  height: 100%;
  width: 380px;
  text-align: center;
}

.governing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(122, 12, 46, 0.15);
}

.featured-card {
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(45deg, var(--primary-color), #e8b954) border-box;
}

.featured-card .card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(164, 22, 58, 0.3);
}

.card-image {
  position: relative;
  /* height: 320px; */
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  /* object-fit: cover; */
}

.governing-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 15px;
}

.member-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e2236;
  margin-bottom: 20px;
  padding-top: 20px;
}

.member-designation {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.member-details {
  margin-bottom: 25px;
}

.member-details p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.member-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.expertise-tag {
  background: rgba(164, 22, 58, 0.1);
  color: var(--primary-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition-speed);
}

.governing-card:hover .expertise-tag {
  background: rgba(164, 22, 58, 0.2);
  transform: translateY(-2px);
}

/* ===============================
     CONTACT INFO SECTION
  ================================ */
.contact-section {
  padding: 43px 50px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='250' preserveAspectRatio='none' viewBox='0 0 1440 250'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1033%26quot%3b)' fill='none'%3e%3crect width='1440' height='250' x='0' y='0' fill='rgba(244%2c 226%2c 226%2c 1)'%3e%3c/rect%3e%3cpath d='M36 250L286 0L398.5 0L148.5 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1034%26quot%3b)'%3e%3c/path%3e%3cpath d='M258.6 250L508.6 0L741.1 0L491.1 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1034%26quot%3b)'%3e%3c/path%3e%3cpath d='M514.2 250L764.2 0L891.7 0L641.7 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1034%26quot%3b)'%3e%3c/path%3e%3cpath d='M757.8000000000001 250L1007.8000000000001 0L1333.3000000000002 0L1083.3000000000002 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1034%26quot%3b)'%3e%3c/path%3e%3cpath d='M1427 250L1177 0L841 0L1091 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1035%26quot%3b)'%3e%3c/path%3e%3cpath d='M1177.4 250L927.4000000000001 0L570.4000000000001 0L820.4000000000001 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1035%26quot%3b)'%3e%3c/path%3e%3cpath d='M929.8 250L679.8 0L633.3 0L883.3 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1035%26quot%3b)'%3e%3c/path%3e%3cpath d='M710.1999999999999 250L460.19999999999993 0L325.19999999999993 0L575.1999999999999 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1035%26quot%3b)'%3e%3c/path%3e%3cpath d='M1311.7605907957113 250L1440 121.76059079571144L1440 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1034%26quot%3b)'%3e%3c/path%3e%3cpath d='M0 250L128.23940920428856 250L 0 121.76059079571144z' fill='url(%26quot%3b%23SvgjsLinearGradient1035%26quot%3b)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1033'%3e%3crect width='1440' height='250' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='0%25' y1='100%25' x2='100%25' y2='0%25' id='SvgjsLinearGradient1034'%3e%3cstop stop-color='rgba(224%2c 170%2c 170%2c 0.2)' offset='0'%3e%3c/stop%3e%3cstop stop-opacity='0' stop-color='rgba(224%2c 170%2c 170%2c 0.2)' offset='0.66'%3e%3c/stop%3e%3c/linearGradient%3e%3clinearGradient x1='100%25' y1='100%25' x2='0%25' y2='0%25' id='SvgjsLinearGradient1035'%3e%3cstop stop-color='rgba(224%2c 170%2c 170%2c 0.2)' offset='0'%3e%3c/stop%3e%3cstop stop-opacity='0' stop-color='rgba(224%2c 170%2c 170%2c 0.2)' offset='0.66'%3e%3c/stop%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
  color: #5a0f24;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.contact-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-dark);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-address {
  font-size: 16px;
  line-height: 1.8;
  color: #4a1a25;
  font-weight: 500;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #4a1a25;
  font-weight: 600;
}

.contact-item i {
  font-size: 20px;
  color: var(--primary-dark);
}

.contact-item a {
  color: var(--primary-dark);
  text-decoration: underline;
  font-weight: 700;
}

.contact-item a:hover {
  color: var(--primary-color);
}

/* ===============================
     FOOTER SECTION
  ================================ */
.pcu-footer {
  background: var(--primary-color);
  padding: 18px 20px;
}

.pcu-footer-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.pcu-footer p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  opacity: 0.95;
}

.pcu-footer-link {
  color: var(--text-light);
  font-weight: 500;
  text-decoration: none;
}

.pcu-footer-link:hover {
  text-decoration: underline;
}

/* ===============================
     CONTENT SECTION (General)
  ================================ */
.cc-content-section {
  position: relative;
  z-index: 10;
  background: #f8fafc;
  padding: 80px 0;
  min-height: auto;
}

.cc-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

.cc-content-container h1 {
  color: var(--primary-dark);
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
}

.cc-content-container p {
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* ===============================
     CHECKLIST.HTML
  ================================ */
.checklist-hero {
  background: linear-gradient(135deg, var(--primary-color), #e7c374);
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px;
  border-radius: 0 0 40px 40px;
}

.checklist-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.checklist-hero p {
  font-size: 1.1rem;
  margin: 5px 0;
}

.checklist-prime {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.checklist-section {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  align-items: flex-start;
}

.checklist-section.alt {
  flex-direction: row-reverse;
}

.checklist-icon {
  font-size: 3rem;
  color: var(--primary-color);
  flex: 0 0 80px;
}

.checklist-content {
  flex: 1;
  background: url("../images/check-hero.png") center center / cover no-repeat;
  position: relative;
  padding: 30px 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  color: #14141d;
  overflow: hidden;
}

.checklist-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  border-radius: 20px;
  z-index: 0;
}

.checklist-content * {
  position: relative;
  z-index: 1;
}

.checklist-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.checklist-content ul {
  list-style: none;
  padding-left: 0;
}

.checklist-content ul li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.checklist-content ul li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
}

.checklist-content ul li ul {
  margin-top: 8px;
  padding-left: 15px;
}

.checklist-content .highlight {
  font-weight: 600;
  color: #2b2314;
}

/* ===============================
     MEDALLIST.HTML
  ================================ */
.medallist-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.medallist-container {
  max-width: 1200px;
  margin: 0 auto;
}

.medallist-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 40px;
  position: relative;
}

.medallist-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #e8b954);
  border-radius: 2px;
}

.medallist-table-container {
  overflow-x: auto;
}

.medallist-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background: var(--text-light);
  border-radius: 15px;
  overflow: hidden;
}

.medallist-table thead {
  background: linear-gradient(90deg, var(--primary-color), #e8b954);
  color: var(--text-light);
}

.medallist-table th,
.medallist-table td {
  padding: 15px 20px;
  text-align: left;
  font-size: 0.95rem;
}

.medallist-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background var(--transition-speed);
}

.medallist-table tbody tr:hover {
  background: rgba(164, 22, 58, 0.05);
}

/* ===============================
     REGISTRATION DESK SECTION
  ================================ */
.reg-section {
  padding: 80px 20px;
  position: relative;
  border-radius: 20px;
  margin: 50px auto;
  max-width: 1200px;
}

.reg-title {
  font-size: 2rem;
  font-weight: 700;
  color: #8d1634;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.reg-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.reg-description {
  font-size: 1rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
}

.reg-table-container {
  overflow-x: auto;
  margin-top: 30px;
}

.reg-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--text-light);
  border-radius: 10px;
}

.reg-table th,
.reg-table td {
  padding: 12px 15px;
  text-align: left;
  font-size: 0.95rem;
  color: black;
  border: 1px solid #ddd;
}

.reg-table th {
  background: var(--primary-color);
  color: var(--text-light);
  font-weight: 600;
}

.reg-table tr:nth-child(even) {
  background: #f9f9f9;
}

.reg-table tr:hover {
  background: #fde6e6;
  transition: var(--transition-speed);
}

/* ===============================
     GENERAL INFORMATION SECTION
  ================================ */
.geninfo-section {
  padding: 80px 20px;
  border-radius: 20px;
  margin: 50px auto;
  max-width: 1200px;
}

.geninfo-container {
  max-width: 1000px;
  margin: 0 auto;
}

.geninfo-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.geninfo-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.geninfo-intro {
  font-size: 1rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.geninfo-block {
  margin-bottom: 35px;
  padding: 20px 25px;
  background: var(--text-light);
  border-radius: 15px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 5px 20px rgba(122, 12, 46, 0.05);
}

.geninfo-block h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.geninfo-block ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
  line-height: 1.7;
}

.geninfo-block ul li {
  margin-bottom: 10px;
}

.geninfo-block ul li strong {
  color: var(--primary-color);
}

/* ===============================
     ANIMATIONS
  ================================ */
@keyframes floatArrow {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ===============================
     IMAGE RESPONSIVENESS
  ================================ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero Images */
.cc-hero-slide-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Person Images - Maintain Aspect Ratio */
.royal-img,
.glass-img img,
.convocation-pro-img,
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Fallback for broken images */
img:not([src]),
img[src=""],
img[src*="undefined"] {
  background: linear-gradient(45deg, #f5f5f5, #e0e0e0);
  position: relative;
  min-height: 100px;
}

/* Person Image Placeholder */
.royal-img:not([src])::before,
.royal-img[src=""]::before,
.royal-img[src*="undefined"]::before,
.glass-img img:not([src])::before,
.glass-img img[src=""]::before,
.glass-img img[src*="undefined"]::before,
.convocation-pro-img:not([src])::before,
.convocation-pro-img[src=""]::before,
.convocation-pro-img[src*="undefined"]::before,
.card-image img:not([src])::before,
.card-image img[src=""]::before,
.card-image img[src*="undefined"]::before {
  content: "🎓";
  font-size: 2rem;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* ===============================
     RESPONSIVE STYLES
  ================================ */

/* For screens up to 1200px */
@media (max-width: 1200px) {
  .cc-nav-top-container,
  .cc-nav-container {
    padding: 0 20px;
  }
  
  .leadership-container {
    gap: 50px;
  }
  
  .governing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .royal-section {
    padding: 80px 100px;
  }
}
@media (max-width: 768px) {
    .leadership-title {
        font-size: 22px;
        text-align: center;
        line-height: 1.3;
    }
}

/* For screens up to 992px (Tablet) */
@media (max-width: 992px) {
  :root {
    --header-height: 50px;
  }
  
  /* Navigation */
  .cc-nav-header {
    position: sticky;
    top: 0;
  }
  
  .cc-nav {
    height: 70px;
    position: sticky;
    top: 0;
  }
  
  .cc-nav.compact {
    height: 60px;
  }
  
  .cc-nav.compact .cc-nav-logo img {
    height: 38px;
  }
  
  .cc-nav-top {
    display: none !important;
  }
  
  .cc-nav-container {
    padding: 0 20px;
  }
  
  .cc-nav-logo img {
    height: 45px;
  }
  
  .cc-nav-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }
  
  .cc-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    gap: 0;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .cc-nav:not(.top-position) .cc-nav-menu {
    background: var(--text-light);
  }
  
  .cc-nav.top-position .cc-nav-menu,
  .cc-nav.compact .cc-nav-menu {
    background: var(--primary-dark);
  }
  
  .cc-nav.compact .cc-nav-menu {
    padding-top: 70px;
  }
  
  .cc-nav-menu>li {
    width: 100%;
  }
  
  .cc-nav:not(.top-position) .cc-nav-menu>li {
    border-bottom: 1px solid #eee;
  }
  
  .cc-nav.top-position .cc-nav-menu>li,
  .cc-nav.compact .cc-nav-menu>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .cc-nav-menu a {
    display: block;
    padding: 18px 25px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .cc-nav-menu>li.has-dropdown>a::after {
    content: "▸";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    transition: transform var(--transition-speed);
  }
  
  .cc-nav-menu>li.active-dropdown>a::after {
    transform: translateY(-50%) rotate(90deg);
  }
  
  .cc-nav-dropdown {
    position: static;
    left: auto;
    transform: none;
    border: none;
    min-width: 100%;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  
  .cc-nav:not(.top-position) .cc-nav-dropdown {
    background: #f9f9f9;
  }
  
  .cc-nav.top-position .cc-nav-dropdown,
  .cc-nav.compact .cc-nav-dropdown {
    background: rgba(0, 0, 0, 0.2);
  }
  
  .cc-nav-dropdown a {
    padding: 15px 35px;
    font-size: 14px;
  }
  
  .cc-nav:not(.top-position) .cc-nav-dropdown a {
    border-bottom: 1px solid #eee;
  }
  
  .cc-nav.top-position .cc-nav-dropdown a,
  .cc-nav.compact .cc-nav-dropdown a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Mobile Navigation Overlay */
  .cc-nav-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  #cc-nav-check:checked~.cc-nav-menu-overlay {
    display: block;
  }
  
  #cc-nav-check:checked~.cc-nav-menu {
    transform: translateX(0);
  }
  
  .cc-nav-menu>li.active-dropdown .cc-nav-dropdown {
    display: flex;
    max-height: 500px;
  }
  
  .cc-nav:not(.top-position) .cc-nav-dropdown a:hover {
    background: #f0f0f0;
    padding-left: 40px;
  }
  
  .cc-nav.top-position .cc-nav-dropdown a:hover,
  .cc-nav.compact .cc-nav-dropdown a:hover {
    background: rgba(255, 255, 255, 0.15);
    padding-left: 40px;
  }
  
  /* Hero Section */
  .cc-hero {
    margin-top: 70px;
    height: calc(100vh - 70px);
  }
  
  .cc-nav.compact~.cc-hero {
    margin-top: 60px;
    height: calc(100vh - 60px);
  }
  
  /* Convocation Welcome */
  .convocation-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .convocation-title {
    font-size: 2.8rem;
  }
  
  .convocation-subtitle {
    font-size: 3.2rem;
  }
  
  .convocation-description {
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .detail-item {
    justify-content: left;
    text-align: left;
  }
  
  .convocation-buttons {
    justify-content: center;
  }
  
  /* Image Adjustments */
  .royal-img-box {
    width: 160px;
    height: 160px;
  }
  
  .glass-card {
    width: 300px;
    height: 380px;
  }
  
  .convocation-pro-img {
    height: 380px;
  }
  
  .card-image {
    height: 250px;
  }
  
  /* Leadership Section */
  .leadership-container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  
  .lottie-arrow {
    display: none;
  }
  
  /* Governing Body */
  .governing-body-section {
    padding: 80px 20px;
  }
  
  .gb-section-title {
    font-size: 1.8rem;
  }
  
  .governing-grid {
    gap: 30px;
  }
  
  /* Board of Trustees */
  .royal-section {
    padding: 60px 50px;
  }
  
  .royal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .royal-card {
    width: 100%;
    max-width: 300px;
    height: 360px;
  }
  
  /* Contact Section */
  .contact-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .contact-right {
    align-items: center;
  }
  
  /* Content Pages */
  .checklist-section {
    flex-direction: column;
  }
  
  .checklist-section.alt {
    flex-direction: column;
  }
  
  .checklist-icon {
    display: none;
  }
}

/* For screens up to 768px (Mobile) */
@media (max-width: 768px) {
  :root {
    --header-height: 1px;
  }
  
  /* Navigation */
  .cc-nav {
    height: 65px;
  }
  
  .cc-nav.compact {
    height: 60px;
  }
  
  .cc-nav.compact .cc-nav-logo img {
    height: 35px;
  }
  
  .cc-nav-container {
    padding: 0 15px;
  }
  
  .cc-nav-logo img {
    height: 40px;
  }
  
  .cc-nav-toggle {
    font-size: 24px;
    right: 15px;
    padding: 8px;
  }
  
  .cc-nav-menu {
    padding-top: 70px;
  }
  
  .cc-nav.compact .cc-nav-menu {
    padding-top: 65px;
  }
  
  .cc-nav-menu a {
    padding: 16px 20px;
    font-size: 15px;
  }
  
  .cc-nav-menu>li.has-dropdown>a::after {
    right: 20px;
  }
  
  .cc-nav-dropdown a {
    padding: 14px 30px;
    font-size: 13px;
  }
  
  /* Hero Section - Hide on Mobile */
  .cc-hero {
    display: none !important;
  }
  
  .cc-hero-video,
  .cc-close-video,
  .cc-slider-controls {
    display: none !important;
  }
  
  /* Content Section */
  .cc-content-section {
    padding: 60px 0;
  }
  
  .cc-content-container h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .cc-content-container p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  /* Convocation Welcome */
  .convocation-hero {
    padding: 60px 20px;
    min-height: auto;
  }
  
  .convocation-title {
    font-size: 2.2rem;
  }
  
  .convocation-subtitle {
    font-size: 2.5rem;
  }
  
  .convocation-description {
    font-size: 1rem;
  }
  
  .convocation-details {
    padding: 20px;
  }
  
  .convocation-pro-frame {
    max-width: 100%;
  }
  
  .convocation-pro-img {
    height: 350px;
  }
  
  /* Countdown */
  .convocation-countdown {
    padding: 0px 65px;
  }
  
  .countdown-title {
    font-size: 28px;
    padding-top: 20px;
  }
  
  .countdown-timer {
    gap: 15px;
  }
  
  .time-box {
    width: 120px;
    height: 120px;
  }
  
  .time-box span {
    font-size: 36px;
  }
  
  /* Image Adjustments */
  .royal-img-box {
    width: 150px;
    height: 150px;
  }
  
  .glass-card {
    width: 90%;
    max-width: 350px;
    height: 400px;
    margin: 0 auto;
  }
  
  /* Leadership Section */
  .leadership-section {
    padding: 50px 15px;
  }
  
  .leadership-container {
    flex-direction: column;
    gap: 40px;
  }
  
  /* Board of Trustees */
  .royal-section {
    padding: 60px 20px;
  }
  
  .royal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .royal-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    height: 350px;
    padding: 30px 20px;
  }
  
  .royal-content {
    padding: 10px 0;
    margin-top: 30px;
  }
  
  /* Governing Body */
  .governing-body-section {
    padding: 60px 15px;
  }
  
  .governing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .governing-card {
    width: 100%;
    max-width: 340px;
    margin: auto;
  }
  
  .card-image {
    height: 200px;
  }
  
  .card-content {
    padding: 5px;
  }
  
  .member-name {
    font-size: 1.3rem;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 40px 20px;
  }
  
  .contact-left h2 {
    font-size: 1.5rem;
  }
  
  .contact-address {
    font-size: 0.9rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  /* Footer */
  .pcu-footer {
    padding: 15px 20px;
  }
  
  .pcu-footer p {
    font-size: 0.8rem;
  }
  
  /* Content Pages */
  .checklist-hero {
    padding: 60px 15px;
    border-radius: 0 0 25px 25px;
  }
  
  .checklist-hero h1 {
    font-size: 2rem;
  }
  
  .checklist-content {
    padding: 22px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .checklist-content h2 {
    font-size: 1.5rem;
  }
  
  .medallist-section {
    padding: 60px 15px;
  }
  
  .medallist-title {
    font-size: 1.6rem;
  }
  
  .reg-section {
    padding: 60px 15px;
    margin: 30px auto;
  }
  
  .reg-title {
    font-size: 1.6rem;
  }
  
  .reg-table th,
  .reg-table td {
    font-size: 0.85rem;
    padding: 8px 10px;
  }
  
  .geninfo-section {
    padding: 60px 15px;
  }
  
  .geninfo-title {
    font-size: 1.6rem;
  }
  
  .geninfo-block {
    padding: 18px 20px;
    border-radius: 12px;
  }
  
  .geninfo-block h3 {
    font-size: 1.15rem;
  }
}

/* For screens up to 480px (Small Mobile) */
@media (max-width: 480px) {
  /* Navigation */
  .cc-nav {
    height: 60px;
  }
  
  .cc-nav.compact {
    height: 55px;
  }
  
  .cc-nav.compact .cc-nav-logo img {
    height: 32px;
  }
  
  .cc-nav-logo img {
    height: 38px;
  }
  
  .cc-nav-toggle {
    font-size: 22px;
  }
  
  .cc-nav-menu {
    padding-top: 65px;
  }
  
  .cc-nav.compact .cc-nav-menu {
    padding-top: 60px;
  }
  
  .cc-nav-menu a {
    padding: 14px 18px;
    font-size: 14px;
  }
  
  .cc-nav-dropdown a {
    padding: 12px 25px;
    font-size: 12px;
  }
  
  /* Convocation Welcome */
  .convocation-hero {
    padding: 40px 15px;
  }
  
  .convocation-title {
    font-size: 1.8rem;
  }
  
  .convocation-subtitle {
    font-size: 2rem;
  }
  
  .convocation-buttons {
    flex-direction: column;
  }
  
  .btn-gold,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .convocation-pro-img {
    height: 300px;
  }
  
  /* Countdown */
  .countdown-timer {
    gap: 5px;
    padding-bottom: 10px;
  }
  
  .time-box {
    width: 53px;
    height: 58px;
    border-radius: 5px;
  }
  
  .time-box span {
    font-size: 16px;
  }
  
  .time-box small {
    margin-top: 8px;
    font-size: 7px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #141414;
  }

  .countdown-subtitle {
    margin-bottom: 5px;
  }

  /* Image Adjustments */
  .royal-img-box {
    width: 150px;
    height: 150px;
  }
  
  .glass-card {
    height: 320px;
    max-width: 280px;
  }
  
  /* Board of Trustees */
  .royal-card {
    padding: 25px 20px;
    height: 320px;
  }
  
  .royal-content h3 {
    font-size: 1.1rem;
  }
  
  .royal-desc {
    font-size: 0.9rem;
  }
  
  /* Governing Body */
  .card-image {
    height: 300px;
  }
  
  /* Content Pages */
  .checklist-hero h1 {
    font-size: 1.7rem;
  }
  
  .medallist-title,
  .reg-title,
  .geninfo-title {
    font-size: 1.4rem;
  }
  
  .checklist-content h2 {
    font-size: 1.35rem;
  }
}

/* ===============================
     Graduate students
  ================================ */

.eligible-students-table {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.eligible-students-table * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.es-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin: 50px auto 20px auto;
    max-width: 1200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #4b0f17ee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.es-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(97, 12, 12, 0.12);
}

.es-section--management {
    border-top-color: #941616;
}

.es-section--computer {
    border-top-color: #941616;
}

.es-section--law {
    border-top-color: #941616;
}

.es-section__title {
    color: #941a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.es-section__title:before {
    content: "🏫";
    font-size: 1.5rem;
}

.es-section--computer .es-section__title:before {
    content: "💻";
}

.es-section--law .es-section__title:before {
    content: "⚖️";
}

.es-table-container {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.es-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.es-table__header {
    background: linear-gradient(135deg, #791616, #914a4a);
    color: white;
}

.es-table__header th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.es-table__header th:last-child {
    border-right: none;
}

.es-table__body tr {
    border-bottom: 1px solid #ecf0f1;
    transition: background-color 0.2s;
}

.es-table__body tr:hover {
    background-color: #f8f9fa;
}

.es-table__body tr:nth-child(even) {
    background-color: #f9fafb;
}

.es-table__body tr:nth-child(even):hover {
    background-color: #f1f3f4;
}

.es-table__cell {
    padding: 14px 12px;
    color: #2c3e50;
    border-right: 1px solid #ecf0f1;
}

.es-table__cell:last-child {
    border-right: none;
}

.es-table__cell--sno {
    font-weight: 600;
    color: #c21d1d;
    text-align: center;
    width: 70px;
}

.es-table__cell--name {
    font-weight: 500;
}

.es-table__cell--cgpa {
    font-weight: 600;
    color: #e74c3c;
    text-align: center;
    width: 80px;
}

.es-table__cell--class {
    position: relative;
}

/* Scrollbar Styling */
.es-table-container::-webkit-scrollbar {
    height: 8px;
}

.es-table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.es-table-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.es-table-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

@media (max-width: 768px) {
    .es-section {
        padding: 15px;
    }
    
    .es-section__title {
        font-size: 1.5rem;
    }
    
    .es-table__cell {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .es-table__header th {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .es-section {
        padding: 10px;
        margin-bottom: 20px;
    }
    
    .es-table__cell {
        padding: 8px 6px;
        font-size: 0.85rem;
    }
}

/* ===============================
    Contact.html
  ================================ */

.pcu-contact-section {
    padding: 70px 20px;
    background: #f8fafc;
}

.pcu-contact-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pcu-contact-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.pcu-contact-subtitle {
    color: #555;
    margin-bottom: 35px;
}

.pcu-contact-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.pcu-contact-card--secondary {
    border-top: 4px solid #af2121;
}

.pcu-contact-name {
    font-size: 1.35rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.pcu-contact-designation {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.pcu-contact-phone a {
    font-size: 1.1rem;
    color: #921828;
    text-decoration: none;
    font-weight: 600;
}

/* PCU Contact – Mobile Responsive */
@media (max-width: 992px) {
    .pcu-contact-container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .pcu-contact-title {
        font-size: 1.7rem;
    }

    .pcu-contact-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .pcu-contact-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .pcu-contact-name {
        font-size: 1.2rem;
    }

    .pcu-contact-designation {
        font-size: 0.95rem;
    }

    .pcu-contact-phone a {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .pcu-contact-section {
        padding: 50px 10px;
    }

    .pcu-contact-title {
        font-size: 1.5rem;
    }

    .pcu-contact-card {
        padding: 18px 15px;
        border-radius: 12px;
    }

    .pcu-contact-phone a {
        display: inline-block;
        word-break: break-word;
    }
}

/* ===============================
   Academic Regalia
================================ */

.pcu-regalia-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #faf7f2, #ffffff);
  font-family: "Poppins", sans-serif;
}

.pcu-regalia-container {
  max-width: 1100px;
  margin: auto;
}

.pcu-regalia-header {
  text-align: center;
  margin-bottom: 50px;
}

.pcu-regalia-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #5a1a1a;
  margin-bottom: 12px;
  position: relative;
}

.pcu-regalia-header h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #c9a24d;
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

.pcu-regalia-header p {
  font-size: 16px;
  color: #555;
  max-width: 750px;
  margin: auto;
}

.pcu-regalia-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
  text-align: justify;
}

.pcu-regalia-content strong {
  color: #5a1a1a;
}

.pcu-regalia-highlight {
  margin-top: 35px;
  padding: 22px 26px;
  background: #5a1a1a;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.7;
  border-left: 6px solid #c9a24d;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.pcu-regalia-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pcu-regalia-points li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
}

.pcu-dot {
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  background: #6b1326;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.2);
}

.pcu-regalia-points strong {
  color: #5a1a1a;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pcu-regalia-header h2 {
    font-size: 28px;
  }

  .pcu-regalia-content p {
    font-size: 15px;
  }

  .pcu-regalia-highlight {
    font-size: 15px;
  }
  
  .pcu-regalia-points li {
    font-size: 15px;
  }
}

/* ===============================
   Convocation-schedule
================================ */

.pcu-convocation-schedule {
  padding: 80px 20px;
  background: #f4f4f4;
  font-family: "Poppins", sans-serif;
}

.pcu-schedule-title {
  text-align: center;
  font-size: 30px;
  color: #5a0f1b;
  margin-bottom: 35px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.pcu-table-wrap {
  max-width: 1000px;
  margin: auto;
  overflow-x: auto;
}

.pcu-schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #d6d6d6;
  box-shadow: none;
}

.pcu-schedule-table thead {
  background: #5a0f1b;
}

.pcu-schedule-table th {
  padding: 14px 16px;
  color: #ffffff;
  text-align: left;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid #5a0f1b;
}

.pcu-schedule-table td {
  padding: 13px 16px;
  font-size: 14px;
  color: #222;
  border: 1px solid #d6d6d6;
  vertical-align: middle;
}

.pcu-schedule-table tbody tr:nth-child(even) {
  background: #faf7f8;
}

.pcu-schedule-table tbody tr:hover {
  background: #f1e6e8;
}