.mt-40 {
    margin-top: 40px;
}
.mb-40 {
    margin-bottom: 40px;
}
.pt-40 {
    padding-top: 40px;
}
.pb-40 {
    padding-bottom: 40px;
}
[class*=" su-brand"], [class^=su-brand] {
    height: auto;
    margin-top: 10px;
    width: 320px;
}

[class*=" su-brand"], [class^=su-brand] img {
    /* background: white; */
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

button.admission a {
    text-decoration: none;
    color: white;
}
@media (max-width: 991px) {
  #brand-bar {
  height: 5em !important;
}

#brand-bar #menu-toggle {
  top: 1.4em !important;
  height: 2.3em !important;
  margin-top: -28px;
}

  button.admission {
    margin-top: 1em !important;
  }
}
/* ========== BASE ========== */
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  font-weight: 600;
  color: #222;
  padding: 10px 0;
  display: block;
}

/* ========== DROPDOWN LEVEL 2 & 3 ========== */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #031164;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s ease;
  z-index: 99;
}

.new-width {
  min-width: 400px;
}

.sub-menu li a {
  text-align: left;
  font-size: 18px !important;
  width: 100%;
  padding: 3px 18px !important;
  font-weight: 500;
  color: #fff !important;
}

.sub-menu li:hover > a {
  background: #f4f8fd;
  color: #114e92 !important;
}

/* 3rd level */
.sub-menu .sub-menu {
  top: 0;
  left: 100%;
  transform: translateX(10px);
}

/* Desktop hover */
@media (min-width: 992px) {
  .sub-menu li a {
    color: #fff !important;
  }
  .has-dropdown:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .sub-menu li.has-dropdown:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

/* ========== FULLSCREEN MOBILE MENU ========== */
@media (max-width: 991px) {

  .sub-menu li a {
    color: #000 !important;
  }

  #site-navigation {
    position: fixed;
    inset: 0;
    height: 100vh;                 /* ðŸ”‘ FIX */
    background: #0b1020;
    transform: translateX(-100%);
    transition: .4s ease;
    padding: 80px 30px;
    z-index: 1001;                 /* ðŸ”‘ FIX */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #site-navigation.active {
    transform: translateX(0);
    overflow-y: auto;               /* ðŸ”‘ FIX */
    -webkit-overflow-scrolling: touch;
  }

  #menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 998;
  }

  #menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;               /* ðŸ”‘ FIX */
  }

  .menu {
    flex-direction: column;
    gap: 15px;
  }

  .menu a {
    color: #fff;
    font-size: 20px;
  }

  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 20px;
    background: transparent;
  }

  .has-dropdown.open > .sub-menu {
    display: block;
  }
}


.events-section {
  padding: 40px 20px;
  padding-top: 10px;
}

.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1420px;
  margin: auto;
}

.event-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
}

.event-img {
  position: relative;
}

.event-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.event-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  text-align: center;
  line-height: 1.2;
}

.event-date small {
  display: block;
  font-size: 12px;
}

.event-date strong {
  font-size: 20px;
}

.event-content {
  padding: 20px;
}

.event-type {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}

.event-type.exhibition { color: #c10000; }
.event-type.tour { color: #b36b00; }
.event-type.lecture { color: #0056b3; }

.event-content h4 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #111;
}

.event-time {
  font-size: 16px;
  color: #666;
}

img.footer {
    width: 100px;
    margin-left: 5px;
    border-radius: 5px;
}

.over-line {
    text-decoration: overline;
}

.conf-container {
  max-width: 1420px;
  margin: auto;
  padding: 20px;
}

.conf-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform .3s ease;
}

.conf-card:hover {
  transform: translateY(-6px);
}

.conf-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.conf-content {
  padding: 20px;
}

.conf-tag {
  color: #c40000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.conf-content h4 {
  margin: 10px 0 5px;
  font-size: 18px;
  font-weight: 600;
}

.conf-content p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.swiper-button-next {
  pointer-events: auto;
}
/* Swiper buttons */
.conf-next,
.conf-prev {
  color: #114e92;
  z-index: 1000;
  cursor: pointer;
}

.conferenceSwiper {
  position: relative;
}

/* Arrow base */
.conf-prev,
.conf-next {
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  transform: translateY(-50%);
  background: #114e92;
  border-radius: 50%;
  z-index: 9999;
  cursor: pointer;
}

/* Left arrow */
.conf-prev {
  left: 10px;
}

/* Right arrow */
.conf-next {
  right: 10px;
}

/* Arrow icons */
.conf-prev::after,
.conf-next::after {
  font-family: "FontAwesome";
  font-weight: 900;
  color: #fff;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.conf-prev::after {
  content: "\f104"; /* left arrow */
}

.conf-next::after {
  content: "\f105"; /* right arrow */
}


.about-content-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 40px;
  margin-top: 20px;
  color: #333;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.45);
}
.about-content-glass p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 18px;
  letter-spacing: 1px;
}

.about-section {
  margin-bottom: 40px;
}

.about-section h3 {
  margin-bottom: 12px;
  position: relative;
}

.about-section h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #114e92, #ff0000);
  position: absolute;
  left: 0;
  bottom: -6px;
}


.about-section ul li {
  margin-bottom: 8px;
}
/* Sidebar Container */
.profile-sidebar {
  background: rgba(10, 25, 90, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

/* Title */
.profile-title {
  background: #ffb000;
  color: #000;
  font-weight: 700;
  text-align: center;
  padding: 14px;
  font-size: 18px;
  letter-spacing: .5px;
}

/* Menu Items */
.profile-menu li {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 0;
}

.profile-menu li:last-child {
  border-bottom: none;
}

.profile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: all .3s ease;
}

/* Icons */
.profile-menu i {
  font-size: 10px;
  opacity: .9;
}
.profile-menu i {
  width: 18px;
  text-align: center;
  font-size: 15px;
  color: #ffcc33;
}

/* Hover Effect */
.profile-menu a:hover {
  background: rgba(255,255,255,0.12);
  padding-left: 24px;
  text-decoration: none;
  color: #000;
}

/* Mobile */
@media (max-width: 991px) {
  .about-content-glass {
    padding: 10px;
  }
  .profile-sidebar {
    position: relative;
    top: 0;
  }
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  position: relative;
  padding-left: 15px;
  margin-bottom: 20px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 70%;
  background: #114e92;
  border-radius: 4px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: -6px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #114e92, #ff0000);
  border-radius: 3px;
}

.title-center-gradient {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #222;
  position: relative;
  margin-bottom: 35px;
}

.title-center-gradient::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #114e92, #ff0000);
  border-radius: 6px;
}
.title-center-double {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: #333;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 30px;
}

.title-center-double::after,
.title-center-double::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  border-radius: 3px;
}

.title-center-double::after {
  bottom: 0;
  width: 80px;
  background: #114e92;
}

.title-center-double::before {
  bottom: -6px;
  width: 40px;
  background: #ff0000;
}

.vision-mission-section {
  /* background: #f9fbfe; */
}

.vm-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Icon */
.vm-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  color: #fff;
}

.vm-icon.vision {
  background: linear-gradient(135deg, #ff0000, #d47373);
}

.vm-icon.mission {
  background: linear-gradient(135deg, #ff0000, #d47373);
}

/* Title */
.vm-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

/* Text */
.vm-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.about-image-hover {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
}

.about-image-hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease, filter 1s ease;
}

/* Hover Effect */
.about-image-hover:hover img {
  transform: scale(1.08);
  filter: brightness(1.05) contrast(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .about-image-hover {
    height: 280px;
  }
}

.team-glass-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* Image */
.team-glass-img {
  overflow: hidden;
}

.team-glass-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.team-glass-card:hover img {
  transform: scale(1.1);
}

/* Info */
.team-glass-info {
  text-align: center;
  padding: 10px;
}

.team-glass-info h5 {
  font-size: 18px;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 4px;
}

.team-glass-info span {
  font-size: 14px;
  color: #031164;
  font-weight: 600;
}

/* Row spacing */
.chairman-glass-row {
  margin-top: 30px;
}

/* Image Card Enhancement */
.chairman-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Message Box */
.chairman-message-box {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 35px 40px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  border-left: 6px solid #ff0000;
  position: relative;
}

/* Quote Mark */
.chairman-message-box::before {
  content: "â€œ";
  font-size: 70px;
  position: absolute;
  top: -20px;
  left: 25px;
  color: #114e92;
  opacity: 0.25;
  font-family: serif;
}

/* Message Text */
.chairman-message-box p {
  font-size: 18px;
  line-height: 1.9;
  color: #333;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .chairman-message-box {
    padding: 25px;
    text-align: center;
    border-left: none;
    border-top: 5px solid #ff0000;
  }

  .chairman-message-box::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.governing-table-section {
  /* background: #f9fbfe; */
}

.governing-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.governing-table {
  --bs-table-bg: transparent;
}

.governing-table thead {
  background: #ffb5b5;
  color: #fff;
}

.governing-table th {
  padding: 14px;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  font-size: 15px;
}

.governing-table td {
  padding: 14px;
  vertical-align: middle;
  font-size: 15px;
  color: #333;
}

.governing-table tbody tr:nth-child(even) {
  background: #edf3fc;
}

.governing-table tbody tr:hover {
  background: rgba(17, 78, 146, 0.06);
  transition: 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
  .governing-table th,
  .governing-table td {
    font-size: 14px;
  }
}
.table-title-left {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  position: relative;
  padding-left: 12px;
}

.table-title-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 70%;
  background: linear-gradient(180deg, #114e92, #ff0000);
  border-radius: 4px;
}
.governing-table th:first-child,
.governing-table td:first-child {
  text-align: center;
  width: 80px;
  font-weight: 600;
}
.governing-table th:last-child,
.governing-table td:last-child {
  text-align: center;
}
.governing-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* IMPORTANT: prevent column break */
.governing-table {
  width: 100%;
}

/* Mobile only tweaks */
@media (max-width: 768px) {
  .governing-table {
    min-width: 900px; /* adjust if needed */
    width: 100%;
  }
  .governing-table th,
  .governing-table td {
    white-space: nowrap;
    font-size: 14px;
  }
}

/* Section background */
.admin-officers-dark {
}

/* Dark glass card */
.admin-dark-card {
  position: relative;
  background: radial-gradient(circle at top, #401b1b, #200b0b 70%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 20px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 18px 45px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

/* Glass glow ring */
.admin-dark-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgb(146 17 17 / 60%), rgb(178 69 69 / 60%), rgb(146 17 17 / 60%));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

/* Hover effect */
.admin-dark-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.65);
}

.admin-dark-card:hover::before {
  opacity: 1;
}

/* Role badge */
.admin-role {
  display: inline-block;
  background: linear-gradient(90deg, #114e92, #b24545);
  color: #fff;
  padding: 5px 18px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Text */
.admin-dark-card h5 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.admin-qual {
  font-size: 14px;
  color: #d0d6e5;
  font-weight: 600;
  margin-bottom: 4px;
}

.admin-desig {
  font-size: 15px;
  color: #b8c0d9;
}

/* Mobile */
@media (max-width: 768px) {
  .admin-dark-card {
    padding: 30px 24px;
  }
}
.academic-calendar-dark {
}

/* Dark glass card */
.calendar-dark-card {
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: radial-gradient(circle at top, #1b2540, #000838 70%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Glow border */
.calendar-dark-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(211, 47, 47, 0.6), rgba(17, 78, 146, 0.6), rgb(178 69 69 / 60%));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

/* Hover */
.calendar-dark-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
}

.calendar-dark-card:hover::before {
  opacity: 1;
}

/* Icon */
.calendar-dark-card i {
  font-size: 42px;
  color: #ff5252;
  margin-bottom: 12px;
}

/* Text */
.calendar-dark-card span {
  font-size: 15px;
  font-weight: 600;
  color: #e0e6ff;
  text-align: center;
  line-height: 1.4;
}

/* Mobile */
@media (max-width: 576px) {
  .calendar-dark-card {
    height: 140px;
  }
}
.program-list-dark {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Glass card */
.program-list-dark li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  margin-bottom: 14px;
  background: radial-gradient(circle at top, #1b2540, #000838 70%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* Glow border */
.program-list-dark li::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(211, 47, 47, 0.6), rgba(17, 78, 146, 0.6), rgb(178 69 69 / 60%));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

/* Hover */
.program-list-dark li:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(0,0,0,0.65);
}

.program-list-dark li:hover::before {
  opacity: 1;
}

/* Icon */
.program-list-dark i {
  font-size: 20px;
  color: #6bb245;
  min-width: 26px;
}

/* Program name */
.program-list-dark span {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #e6ebff;
}

/* Year badge */
.program-list-dark em {
  font-style: normal;
  font-size: 15px;
  font-weight: 600;
  color: #ffcc33;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 576px) {
  .program-list-dark li {
    flex-wrap: wrap;
  }

  .program-list-dark em {
    width: 100%;
    margin-left: 40px;
  }
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-align: justify;
}

.mission-list li i {
  color: #ff0000;
  font-size: 18px;
  margin-top: 6px;
}

.dept-sidebar {
  background: #07165c;
  border-radius: 6px;
  overflow: hidden;
}

.dept-title {
  background: #ffb300;
  color: #000;
  font-weight: 700;
  text-align: center;
  padding: 14px;
  font-size: 18px;
}

.dept-menu .nav-link {
  background: transparent;
  color: #fff;
  border-radius: 0;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  font-size: 18px;
  gap: 10px;
  transition: all .3s ease;
}

.dept-menu .nav-link a{
  color: #fff;
  text-decoration: none;
}

.dept-menu .nav-link i {
  color: #ffcc33;
  width: 14px;
  font-size: 14px;
}

.dept-menu .nav-link:hover {
  background: rgba(255,255,255,0.15);
  padding-left: 22px;
}

.dept-menu .nav-link.active {
  background: rgba(255,255,255,0.25);
  font-weight: 600;
  position: relative;
}

.dept-menu .nav-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ffb300;
}

/* Sub tabs */
.dept-menu .nav-link.sub {
  padding-left: 40px;
  font-size: 14.5px;
  background: rgba(255,255,255,0.05);
}

/* Base sub tab */
.dept-menu .nav-link.sub {
  padding-left: 40px;
  font-size: 14.5px;
  background: rgba(255,255,255,0.05);
  position: relative;
  transition: all 0.35s ease;
}

/* Small dot indicator (hidden by default) */
.dept-menu .nav-link.sub::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 6px;
  height: 6px;
  background: #ffb300;
  border-radius: 50%;
  transition: transform 0.35s ease;
}

/* Icon animation */
.dept-menu .nav-link.sub i {
  transition: transform 0.35s ease, color 0.35s ease;
}

/* Hover effect */
.dept-menu .nav-link.sub:hover {
  background: rgba(255,255,255,0.18);
  padding-left: 48px;
}

/* Show dot + move icon */
.dept-menu .nav-link.sub:hover::before {
  transform: translateY(-50%) scale(1);
}

.dept-menu .nav-link.sub:hover i {
  transform: translateX(4px);
  color: #ffb300;
}

.dept-menu .nav-link.sub.active {
  background: rgba(255,255,255,0.25);
  font-weight: 600;
}

.dept-menu .nav-link.sub.active::before {
  transform: translateY(-50%) scale(1);
}

.peo-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.peo-list li {
  display: block;
  padding: 8px 0;

  /* single-line behavior */
  letter-spacing: 1px;
  font-size: 18px;
  text-align: justify;
}

/* Icon */
.peo-list li i {
  color: #e60000;
  font-size: 14px;
}

/* Title */
.peo-list li strong {
  color: #111;
  font-weight: 600;
}

.infra-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.infra-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 18px;
  letter-spacing: 1px;
  text-align: justify;
}

/* Icon style */
.infra-list li i {
  color: #ff0000;
  font-size: 14px;
  min-width: 22px;
}

.course-event-card {
  display: flex;
  width: 100%;
  height: 100%;
  background: #8b0000;
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: transform .3s ease;
}

.course-event-card:hover {
  transform: translateY(-4px);
}

/* Image */
.course-event-img {
  flex: 0 0 150px;        /* SAME WIDTH FOR ALL */
  height: 100%;
  position: relative;
}

.course-event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

/* Zoom on hover */
.course-event-img:hover img {
  transform: scale(1.12);
}

/* Content */
.course-event-content {
  flex: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course-event-content h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.course-event-content p {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.course-event-more {
  color: #ffd966;
  font-weight: 600;
  text-decoration: none;
}

a:hover.course-event-more {
  text-decoration: none;
  color: #ffffff;
}

.course-event-more:hover {
  text-decoration: underline;
}

.course-event-img {
  position: relative;
  width: 150px;
  overflow: hidden;
}

/* Zoom icon */
.course-event-zoom {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}

/* Icon style */
.course-event-zoom i {
  color: #fff;
  font-size: 28px;
  transform: scale(0.8);
  transition: transform .3s ease;
}

/* Show overlay on hover */
.course-event-img:hover .course-event-zoom {
  opacity: 1;
}

.course-event-img:hover .course-event-zoom i {
  transform: scale(1);
}

/* Mobile */
@media (max-width: 768px) {
  .course-event-card {
    flex-direction: column;
  }

  .course-event-img {
    width: 100%;
    height: 220px;
    flex: none;
  }
}

.pdf-icon {
  font-size: 28px;
  color: #d32f2f; /* PDF red */
  transition: transform 0.2s ease, color 0.2s ease;
}

.pdf-icon:hover {
  color: #b71c1c;
  transform: scale(1.1);
}

.coe-section {
  margin-top: 20px;
}

/* Two-column grid */
.coe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
}

/* Individual item */
.coe-item h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #07165c;
  margin-bottom: 6px;
}

/* Icon */
.coe-item h5 i {
  color: #ff0000;
  font-size: 18px;
}

/* Text */
.coe-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0;
  text-align: justify;
}

/* Mobile */
@media (max-width: 768px) {
  .coe-grid {
    grid-template-columns: 1fr;
  }
}

.coe-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 34px 28px 30px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.coe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Icon */
.coe-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #332c8c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 20px;
}

/* Year badge */
.coe-year {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #8b0000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 10px;
  line-height: 1.2;
  border-radius: 4px;
  text-align: center;
}

/* Title */
.coe-title {
  font-size: 20px;
  font-weight: 700;
  color: #332c8c;
  margin-bottom: 12px;
}

/* Text */
.coe-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* Button */
.coe-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #8b0000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background .3s ease;
}

.coe-btn:hover {
  background: #a40000;
  color: #fff;
}

.club-accordion .accordion-item {
  border: none;
  margin-bottom: 14px;
}

.accordion-item h2 {
  margin: 0 !important;
}

/* Button */
.club-accordion .accordion-button {
  position: relative;
  background: #f3f3f3;
  color: #2f2fa2;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 64px 16px 20px; /* space for icon */
  border-radius: 6px;
}

/* Remove default Bootstrap arrow */
.club-accordion .accordion-button::after {
  display: none;
}

/* Circle icon */
.club-accordion .accordion-button::before {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  color: #2f2fa2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

/* OPEN STATE */
.club-accordion .accordion-button:not(.collapsed)::before {
  content: "−";
  background: #2f2fa2;  /* circle bg */
  color: #ffffff;       /* icon color */
}

/* Active background */
.club-accordion .accordion-button:not(.collapsed) {
  background: #eaeaea;
}

/* Body */
.club-accordion .accordion-body {
  background: #fafafa;
  border-left: 4px solid #2f2fa2;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
  letter-spacing: 1px;
}

.byte-activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.byte-activity-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 18px;
  color: #333;
  border-bottom: 1px dashed #ddd;
}

.byte-activity-list li:last-child {
  border-bottom: none;
}

/* Icon style */
.byte-activity-list li i {
  color: #2f2fa2;
  font-size: 16px;
  min-width: 20px;
}

.zoom-in img {
  cursor: zoom-in;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Overlay zoom icon */
.gallery-zoom {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-zoom i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: #2f2fa2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

/* Hover effects */
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
}

.gallery-item:hover .gallery-zoom i {
  transform: scale(1);
}

.mfp-figure [type=button]:hover,
.mfp-figure [type=button]:focus,
.mfp-close button:hover,
.mfp-close button:focus {
  background: none
}

#videoPagination button.active,
#photoPagination button.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

figure.image-anime {
  margin: 0;
}

.youtube-thumb {
  position: relative;
  cursor: pointer;
  background-color: #000;
  overflow: hidden;
}

.youtube-thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.youtube-thumb .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 58px;
  background: url('play-button-circled.png') no-repeat center;
  background-size: 60px 60px;
  opacity: 0.8;
}

.video-item {
  margin-bottom: 20px;
}

.feedback-section {
  max-width: 900px;
  margin: auto;
  padding: 30px 15px;
  px; */
}

.feedback-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 70px 40px 45px; /* top space for image */
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  position: relative;
  margin-top: 40px;
}

/* Center image on top */
.feedback-img {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}

.feedback-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* Text styles */
.feedback-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2f2fa2;
  margin-bottom: 6px;
}

.feedback-card h6 {
  font-size: 15px;
  font-weight: 500;
  color: #c40000;
  margin-bottom: 14px;
}

.feedback-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* Navigation arrows */
.feedback-nav {
  color: #2f2fa2;
}

.feedback-nav::after {
  font-size: 24px;
  font-weight: 700;
}

/* Pagination */
.swiper-pagination-bullet {
  background: #cfcfcf;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #2f2fa2;
}

/* Mobile */
@media (max-width: 768px) {
  .feedback-card {
    padding: 65px 20px 35px;
  }

  .feedback-img img {
    width: 70px;
    height: 70px;
  }
}

