/* ========================================
   KU HEADER — TWO-ROW WHITE DESIGN
   ======================================== */

/* ── Reset / Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans';
}

/* ── Wrapper ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.ku-header-wrapper {
  width: 100%;
  background: #fff;
}

/* Shared container */
.ku-header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
}

/* ── ROW 1 — Logo + Utility ── */
.ku-header-top {
  border-bottom: 1px solid #f0f0f0;
}

.ku-header-top .ku-header-container {
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 24px;
}

/* Logo */
.ku-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.ku-logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Utility bar */
.ku-utility-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Search */
.ku-search-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
  background: #fafafa;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.ku-search-wrap:focus-within {
  border-color: #c0001a;
  box-shadow: 0 0 0 3px rgba(192, 0, 26, 0.08);
  background: #fff;
}

.ku-search-input {
  border: none;
  outline: none;
  background: transparent;
  padding: 7px 12px;
  font-size: 13.5px;
  color: #333;
  width: 180px;
  font-family: inherit;
}

.ku-search-input::placeholder {
  color: #aaa;
}

.ku-search-btn {
  background: none;
  border: none;
  padding: 7px 10px;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.ku-search-btn:hover {
  color: #c0001a;
  transform: none;
  box-shadow: none;
}

.ku-search-btn:active {
  transform: none;
  box-shadow: none;
}

/* Utility icon buttons */
.ku-util-btn {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  color: #555;
}

.ku-util-btn:hover {
  background: #f5f5f5;
  transform: none;
  box-shadow: none;
}

.ku-util-btn:active {
  transform: none;
  box-shadow: none;
}

/* E-Services circle badge */
.ku-eservice-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #c0001a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  letter-spacing: 0;
}

/* Login button */
.ku-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: #c0001a;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 18px;
  border: 1.5px solid #c0001a;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  font-family: inherit;
}

.ku-login-btn:hover {
  background: #c0001a;
  color: #fff;
}

.ku-login-btn img {
  transition: filter 0.2s;
}

.ku-login-btn:hover img {
  filter: brightness(0) invert(1);
}

/* ── ROW 2 — Main Nav ── */
.ku-header-nav {
  background: #fff;
}

.ku-header-nav .ku-header-container {
  justify-content: flex-end;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
}

/* Nav list */
.ku-main-nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Nav item */
.ku-nav-item {
  position: static;
}

.ku-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}

.ku-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #c0001a;
  transform: translateX(-50%);
  transition: width 0.25s ease;
  border-radius: 2px 2px 0 0;
}

.ku-nav-item:hover .ku-nav-link::after,
.ku-nav-link:focus::after {
  width: calc(100% - 24px);
}

.ku-nav-item:hover .ku-nav-link,
.ku-nav-link:focus {
  color: #c0001a;
}

.ku-chevron {
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: 2px;
}

.ku-nav-item:hover .ku-chevron {
  transform: rotate(180deg);
}

/* ── Mega Menu ── */
.ku-mega-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h, 110px);
  background: #fff;
  border-top: 3px solid #c0001a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  z-index: 999;
  animation: megaSlideDown 0.22s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ku-has-mega:hover .ku-mega-menu {
  display: block;
}

@keyframes megaSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ku-mega-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 32px;
  display: flex;
  gap: 48px;
}

.ku-mega-col {
  display: flex;
  flex-direction: column;
  min-width: 180px;
}

.ku-mega-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c0001a;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.ku-mega-link {
  text-decoration: none;
  color: #444;
  font-size: 13.5px;
  padding: 6px 0;
  transition: color 0.2s, padding-left 0.2s;
  border-radius: 4px;
}

.ku-mega-link:hover {
  color: #c0001a;
  padding-left: 6px;
}

/* Nav Actions (icons + menu btn) */
.ku-nav-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid #eee;
}

.ku-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 6px;
  transition: background 0.2s;
  color: #555;
}

.ku-icon-btn:hover {
  background: #f5f5f5;
}

/* Menu / hamburger button */
.ku-menu-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  font-family: inherit;
  border-radius: 6px;
  transition: background 0.2s;
}

.ku-menu-btn:hover {
  background: #f5f5f5;
  transform: none;
  box-shadow: none;
}

.ku-menu-btn:active {
  transform: none;
  box-shadow: none;
}

.ku-hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.ku-hamburger-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.ku-menu-btn.open .ku-hamburger-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.ku-menu-btn.open .ku-hamburger-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ku-menu-btn.open .ku-hamburger-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.ku-menu-label {
  font-size: 13px;
}

/* ── MOBILE DRAWER ── */
.ku-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ku-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.ku-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100%;
  background: #fff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.ku-drawer.open {
  transform: translateX(0);
}

.ku-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.ku-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}

.ku-drawer-close:hover {
  background: #f5f5f5;
  transform: none;
  box-shadow: none;
}

.ku-drawer-close:active {
  transform: none;
  box-shadow: none;
}

.ku-drawer-nav {
  flex: 1;
  padding: 12px 0;
}

.ku-drawer-item {
  border-bottom: 1px solid #f5f5f5;
}

.ku-drawer-toggle {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 14px 20px;
  font-size: 14.5px;
  font-weight: 500;
  color: #222;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s, background 0.2s;
}

.ku-drawer-toggle:hover {
  color: #c0001a;
  background: #fdf0f1;
  transform: none;
  box-shadow: none;
}

.ku-drawer-toggle:active {
  transform: none;
  box-shadow: none;
}

.ku-drawer-toggle svg {
  transition: transform 0.25s;
  flex-shrink: 0;
}

.ku-drawer-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.ku-drawer-sub {
  display: none;
  flex-direction: column;
  padding: 4px 0 12px;
  background: #fafafa;
}

.ku-drawer-sub.open {
  display: flex;
}

.ku-drawer-sub a {
  text-decoration: none;
  color: #555;
  font-size: 13.5px;
  padding: 9px 20px 9px 32px;
  transition: color 0.2s, background 0.2s;
}

.ku-drawer-sub a:hover {
  color: #c0001a;
  background: #fdf0f1;
}

.ku-drawer-foot {
  padding: 16px 20px;
  border-top: 1px solid #f0f0f0;
}

.ku-drawer-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #c0001a;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border: 1.5px solid #c0001a;
  border-radius: 6px;
  width: 100%;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.ku-drawer-login:hover {
  background: #c0001a;
  color: #fff;
}

.ku-drawer-login:hover img {
  filter: brightness(0) invert(1);
}

button:hover {
  box-shadow: none !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1360px) {
  .wave-img {
    left: 300px;
  }
}

@media (max-width: 1024px) {
  .ku-header-container {
    padding: 0 20px;
  }

  .ku-search-input {
    width: 130px;
  }

  .ku-nav-link {
    padding: 14px 12px;
    font-size: 13.5px;
  }
}

@media (max-width: 768px) {

  /* Hide desktop nav on mobile */
  .ku-main-nav,
  .ku-nav-actions {
    display: none;
  }

  /* Mobile hamburger only */
  .ku-header-nav .ku-header-container {
    justify-content: flex-end;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .ku-mobile-trigger {
    display: flex !important;
  }

  .ku-logo-img {
    height: 52px;
  }

  .ku-search-input {
    width: 110px;
  }

  .campus-life-swiper {
    padding: 10px 0 !important;
  }

  .campus-gallery-swiper {
    padding: 10px 0 !important;
  }
}

/* Force mobile menu trigger visible on mobile */
.ku-mobile-trigger {
  display: none;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  font-family: inherit;
  border-radius: 6px;
}

/* ─── END KU HEADER ─── */

.fustat {
  font-family: 'Fustat';
}

h3 {
  font-family: 'Fustat';
}

.Hahmlet {
  font-family: 'Hahmlet';
}

/* .container {
  max-width: 100% !important;
  width: 100%;
  margin: 0 auto !important;
  padding: 0 100px;
} */

/* Responsive container padding */
/* @media (max-width: 1280px) {
  .container {
    padding: 0 60px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
} */

.container {
  margin: 0 auto !important;
}


/* .hero-banner .container {
  margin-top: 40px !important;
} */

/* Responsive container padding */
@media (max-width: 1600px) {
  .container {
    max-width: 100% !important;
    width: 100%;
    margin: 0 auto !important;
    padding: 0 100px;
  }
}

@media (max-width: 1280px) {
  .container {
    padding: 0 60px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }



}

button {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

button:hover {
  /* transform: translateY(-3px); */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

button:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

header {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-scrolled {
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: rgba(26, 28, 30, 0.95);
}

/* Header Capsule Design */
.header-capsule {
  background: rgba(26, 28, 30, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.header-scrolled .header-capsule {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  padding-left: 0;
  padding-right: 0;
}



.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: #cca43b;
}

/* Mobile Menu Styles */
#mobile-menu {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  background: rgba(26, 28, 30, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

#mobile-menu.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive adjustments for mobile */
@media (min-width: 1250px) {}

@media (max-width: 1024px) {}


@media (max-width: 991px) {
  /* handled by responsive container above */
}

@media (max-width: 768px) {
  .header-capsule {
    border-radius: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* Custom interactive header styles */
.header-scrolled {
  background-color: rgba(0, 72, 37, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15) !important;
}

.header-scrolled #header-container {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

/* Search Dropdown active state */
#search-dropdown.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

/* Side Drawer active states */
#side-drawer.active {
  transform: translateX(0) !important;
  translate: 0 0 !important;
}

#side-drawer-overlay.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* --- Mega Menu Custom Styling --- */
.group\/megamenu {
  position: static !important;
}

.mega-menu {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.95) translate(-50%, -10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.group\/megamenu:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translate(-50%, 0);
  pointer-events: auto;
}

/* Invisible bridge overlay to maintain hover state across the gap */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: transparent;
}

/* Desktop sub-submenus (Statutory bodies, etc.) inline accordion styling */
@media (min-width: 1024px) {
  .submenu-item:hover .submenu-content {
    display: block;
    animation: fadeInSlideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .submenu-item:hover .submenu-trigger {
    background-color: rgba(0, 0, 0, 0.04);
    color: #004825;
  }

  .submenu-item:hover .submenu-trigger svg {
    transform: rotate(90deg);
    color: #004825;
  }
}

@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom scrollbar for mobile committees list inside drawer */
.mobile-sub-content::-webkit-scrollbar {
  width: 4px;
}

.mobile-sub-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-sub-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

/* Custom scrollbar for mega menu */
.mega-menu-scroll::-webkit-scrollbar {
  width: 6px;
}

.mega-menu-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.mega-menu-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 72, 37, 0.2);
  border-radius: 4px;
}

.mega-menu-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 72, 37, 0.4);
}

/* miles toner */
.milestoneSwiper {
  padding-bottom: 50px;
}

.milestoneSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #DDDDDD;
  opacity: 1;
}

/* SSITS Highlights Swiper */
.highlightsSwiper {
  padding-bottom: 40px !important;
}

.highlightsSwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #DDDDDD;
  opacity: 1;
  transition: all 0.3s ease;
}

.highlightsSwiper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: #C99700;
}

.milestoneSwiper .swiper-pagination-bullet-active {
  width: 117px;
  border-radius: 50px;
  background: #DDDDDD;
}

/* ========================================
   LATEST NEWS MARQUEE
   ======================================== */
.marquee-track {
  display: flex;
  min-width: 300%;
  animation: scroll-marquee 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: 100px 0 70px 0;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left: text content */
.about-content {
  flex: 1 1 0;
  min-width: 0;
}

.about-heading {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-highlight {
  color: #004825;
}

.about-highlight-gold {
  color: #C99700;
}

.about-desc {
  font-size: 16px;
  font-weight: 400;
  color: #555555;
  margin-bottom: 32px;
}

/* CTA button */
.about-btn {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: #C99700;
  padding: 5px;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(201, 151, 0, 0.35);
}

.about-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(201, 151, 0, 0.3);
}

.about-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 9999px;
  flex-shrink: 0;
}

.about-btn-icon img {
  width: 24px;
  height: 24px;
}


/* Right: image */
.about-image-wrap {
  flex: 0 0 44%;
  max-width: 44%;
}

.about-image-frame {
  border-radius: 0 80px 0 0;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-image-frame:hover .about-img {
  transform: scale(1.03);
}

/* --- Responsive breakpoints --- */

/* Tablet: ≤ 991px — slightly smaller gap */
@media (max-width: 991px) {
  .about-inner {
    gap: 36px;
  }

  .about-image-wrap {
    flex: 0 0 46%;
    max-width: 46%;
  }

  .about-img {
    height: 280px;
  }
}

/* Mobile landscape / large phone: ≤ 768px — stack vertically */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }

  .about-inner {
    flex-direction: column;
    gap: 32px;
  }

  .about-content {
    width: 100%;
    text-align: left;
  }

  .about-desc {
    max-width: 100%;
  }

  .about-image-wrap {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  .about-img {
    height: 240px;
  }

  .about-image-frame {
    border-radius: 0 48px 0 0;
  }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .about-heading {
    font-size: 1.5rem;
  }

  .about-img {
    height: 200px;
  }

  .about-image-frame {
    border-radius: 0 32px 0 0;
  }
}

/* ========================================
   BANNER HERO RESPONSIVE
   ======================================== */
@media (max-width: 768px) {

  /* Floating social bar — hide on very small screens */
  .banner-social-bar {
    display: none;
  }

  /* Bottom quick links — tighter spacing */
  .banner-video .grid {
    gap: 8px;
  }
}

/* ========================================
   OUR STORIES SECTION RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .ourStoriesSwiper .swiper-slide a {
    aspect-ratio: 4/3;
  }
}

/* ========================================
   PRIME HIGHLIGHTS GALLERY RESPONSIVE
   ======================================== */
@media (max-width: 768px) {

  /* Stack the gallery on mobile */
  .prime-highlights-gallery {
    grid-template-columns: 1fr !important;
  }

  .prime-highlights-tall {
    height: 220px !important;
  }
}

/* ========================================
   STUDENT SUCCESS SWIPER RESPONSIVE
   ======================================== */
@media (max-width: 640px) {
  .successSwiper .swiper-slide>div {
    padding: 1rem !important;
  }

  /* Single column on mobile for student success */
  .successSwiper .grid {
    grid-template-columns: 1fr !important;
  }

  .successSwiper .hidden.md\:block {
    display: none !important;
  }
}

/* ========================================
   EVENTS & HIGHLIGHTS SECTION
   ======================================== */
@media (max-width: 640px) {

  /* Smaller event images on mobile */
  .events-highlights-section .w-\[110px\] {
    width: 80px;
    height: 65px;
  }

  .events-highlights-section .md\:w-\[200px\] {
    width: 80px;
  }
}

/* ========================================
   COUNTER SECTION RESPONSIVE
   ======================================== */
@media (max-width: 480px) {
  .counter-section .text-\[38px\] {
    font-size: 28px;
  }

  .counter-section .text-\[24px\] {
    font-size: 16px;
  }
}

/* ========================================
   COLLABORATION SECTION
   ======================================== */
@media (max-width: 640px) {
  .collaborationSwiper .h-\[168px\] {
    height: 110px;
  }
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #C99700, #004825, #C99700);
  background-size: 200% 100%;
  z-index: 9999;
  transition: width 0.1s linear;
  animation: shimmer-bar 3s linear infinite;
}

@keyframes shimmer-bar {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

/* ========================================
   HERO TEXT ANIMATIONS
   ======================================== */
.hero-text-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 20;
  padding: 0 clamp(1rem, 5vw, 100px);
  max-width: 700px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 151, 0, 0.15);
  border: 1px solid rgba(201, 151, 0, 0.4);
  color: #C99700;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards 0.3s;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards 0.6s;
}

.hero-title span {
  color: #C99700;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards 0.9s;
}

.hero-cta-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards 1.1s;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C99700;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 151, 0, 0.4);
  background: #b88a00;
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s;
}

.hero-btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   FLOATING ADMISSION BADGE
   ======================================== */
.admission-float {
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ========================================
   SOCIAL BAR ICONS STAGGER
   ======================================== */
.banner-social-bar a:nth-child(1) {
  animation: slideInRight 0.5s ease forwards 1.4s;
  opacity: 0;
}

.banner-social-bar a:nth-child(2) {
  animation: slideInRight 0.5s ease forwards 1.6s;
  opacity: 0;
}

.banner-social-bar a:nth-child(3) {
  animation: slideInRight 0.5s ease forwards 1.8s;
  opacity: 0;
}

.banner-social-bar a:nth-child(4) {
  animation: slideInRight 0.5s ease forwards 2.0s;
  opacity: 0;
}

.banner-social-bar a:nth-child(5) {
  animation: slideInRight 0.5s ease forwards 2.2s;
  opacity: 0;
}

.banner-social-bar a:nth-child(6) {
  animation: slideInRight 0.5s ease forwards 2.4s;
  opacity: 0;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   BANNER SWIPER IMAGE COVER
   ======================================== */
.banner-swiper .swiper-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
  display: block;
}

/* ========================================
   BANNER PAGINATION DESIGN
   ======================================== */
.banner-pagination {
  width: 16px !important;
  background: white !important;
  border-radius: 999px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 12px 0 !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
}

.banner-pagination .swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !important;
  background: #B3B3B3 !important;
  border-radius: 999px !important;
  margin: 0 !important;
  opacity: 1 !important;
  display: block !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.banner-pagination .swiper-pagination-bullet-active {
  height: 24px !important;
  background: #C8141E !important;
}

/* ========================================
   QUICK LINKS BOTTOM BAR STAGGER
   ======================================== */
.banner-quicklink {
  opacity: 0;
  animation: fadeUp 0.5s ease forwards;
}

.banner-quicklink:nth-child(1) {
  animation-delay: 1.5s;
}

.banner-quicklink:nth-child(2) {
  animation-delay: 1.65s;
}

.banner-quicklink:nth-child(3) {
  animation-delay: 1.80s;
}

.banner-quicklink:nth-child(4) {
  animation-delay: 1.95s;
}

.banner-quicklink:nth-child(5) {
  animation-delay: 2.10s;
}

.banner-quicklink:nth-child(6) {
  animation-delay: 2.25s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   COUNTER SECTION — GLOW PULSE
   ======================================== */
.counter-value {
  display: inline-block;
  transition: text-shadow 0.3s;
}

.counter-icon-ring {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.counter-icon-ring:hover {
  transform: scale(1.12) rotate(6deg);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.15), 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ========================================
   CARD HOVER LIFT
   ======================================== */
.card-lift {
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Event item hover */
.event-item {
  transition: background 0.25s ease, transform 0.25s ease;
  border-radius: 12px;
  padding: 20px 0;
  margin: 0 -8px;
}

.event-item:hover {
  background: rgba(0, 72, 37, 0.04);
  transform: translateX(5px);
}

/* ========================================
   SECTION HEADING SHIMMER
   ======================================== */
.shimmer-heading {
  background: linear-gradient(90deg, #004825 0%, #C99700 40%, #004825 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ========================================
   MARQUEE / LATEST NEWS PULSE DOT
   ======================================== */
.news-pulse {
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.6);
  }
}

/* ========================================
   MILESTONE SECTION — IMAGE HOVER
   ======================================== */
.milestoneSwiper .swiper-slide img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.milestoneSwiper .swiper-slide:hover img {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* ========================================
   COLLABORATION LOGO HOVER
   ======================================== */
.collaborationSwiper {
  padding: 20px 0;
}

.collaborationSwiper .swiper-slide>div {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.collaborationSwiper .swiper-slide>div:hover {
  transform: translateY(-6px);
  border-color: #C99700;
  box-shadow: 0 10px 30px rgba(201, 151, 0, 0.15);
}

.collaborationSwiper .swiper-slide img {
  transition: filter 0.3s ease;
}

.collaborationSwiper .swiper-slide>div:hover img {
  filter: none;
}

/* ========================================
   PRIME HIGHLIGHTS IMAGE HOVER
   ======================================== */
.prime-highlights-gallery .relative img {
  transition: transform 0.55s ease;
}

.prime-highlights-gallery .relative:hover img {
  transform: scale(1.06);
}

/* ========================================
   SECTION DIVIDER PULSE LINE
   ======================================== */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #004825, #C99700);
  border-radius: 2px;
  margin: 12px 0 20px;
  animation: growLine 1s ease forwards;
}

@keyframes growLine {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 60px;
    opacity: 1;
  }
}

.nirf-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201, 151, 0, 0.5);
  animation: nirfFloat 4s ease-in-out infinite;
}

@keyframes nirfFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-18px) scale(1.3);
    opacity: 1;
  }
}

/* Hero title slide-in */
.nirf-hero-title {
  animation: nirfSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.nirf-underline {
  animation: nirfExpand 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  transform-origin: left;
}

@keyframes nirfSlideIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nirfExpand {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* Bullet items stagger */
.nirf-bullet-item {
  opacity: 0;
  animation: bulletIn 0.6s ease forwards;
}

@keyframes bulletIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Doc card doc-icon bg fix (Tailwind opacity class on bg not supported inline) */
.bg-\[#004825\]\/8 {
  background-color: rgba(0, 72, 37, 0.08);
}

/* Bearer card transition duration override */
.nirf-bearer-card>div {
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-color 0.35s ease;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .nirf-bearer-card {
    max-width: 260px;
    margin: 0 auto;
  }
}


@media (max-height: 720px) {
  .about-heading {
    font-size: 40px;
  }

  .banner-social-bar {
    top: 60%;
  }

  .green-counter {
    right: 63px;
  }
}

@keyframes vector-breathe {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

.animate-vector {
  animation: vector-breathe 8s ease-in-out infinite;
  transform-origin: bottom center;
}

/* ========================================
   UPDATES TICKER BAR — minimal CSS
   (All layout/colour handled by Tailwind)
   ======================================== */

/* Infinite scroll animation */
@keyframes updates-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.updates-scroll-anim {
  animation: updates-scroll 280s linear infinite;
  will-change: transform;
}


/* Right-edge fade gradient (::after can't be done inline) */
.updates-ticker-fade::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, #ffffff);
  pointer-events: none;
  z-index: 3;
}

/* Pause marquee when user hovers */
.updates-ticker-fade:hover .updates-scroll-anim {
  animation-play-state: paused;
}

.updates-bar {
  position: relative;
  width: 100%;
  height: 83px;
  background: #ffffff;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.122);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  z-index: 10;
}

/* ── Red Badge (uses updates.svg as background shape) ── */
.updates-badge {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background: #C8141E;
  /* fills container so no white bleeds through SVG curves */
  /* The SVG path ends at ~317px wide and overlaps into right content */
  width: 220px;
  min-width: 220px;
}

/* SVG background — stretched to fill badge height, extends with curved tail */
.updates-badge-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 83px;
  width: auto;
  /* The SVG is 1373w x 83h — we show only the left ~350px of it */
  max-width: none;
  pointer-events: none;
  z-index: 0;
}

/* Badge content: icon + "Updates" text, above the SVG bg */
.updates-badge-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 24px;
  height: 100%;
}

.updates-badge-icon {
  width: 37px;
  height: 35.93px;
  flex-shrink: 0;
  object-fit: contain;
}

.updates-badge-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ── Right section: 2-row flex column ── */
.updates-right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Offset left to account for the curved SVG tail that overlaps */
  padding-left: 100px;
}

/* ── ROW 1: Tabs row ── */
.updates-tabs-row {
  flex: 0 0 auto;
  height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #EBEBEB;
}

.updates-tabs {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
  padding: 0 4px;
}

.updates-tab {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0 16px;
  height: 100%;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}

/* Active bottom indicator */
.updates-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #C8141E;
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.updates-tab:hover {
  color: #C8141E;
  transform: none;
  box-shadow: none;
}

.updates-tab--active {
  color: #C8141E;
  font-weight: 600;
}

.updates-tab--active::after {
  transform: scaleX(1);
}

.updates-tab-count {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
}

/* ── ROW 2: Ticker row ── */
.updates-ticker-row {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Fade-out gradient on right edge */
.updates-ticker-row::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, #ffffff);
  pointer-events: none;
  z-index: 3;
}

.updates-ticker {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.updates-ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: updates-scroll 280s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.updates-ticker-row:hover .updates-ticker-track {
  animation-play-state: paused;
}

@keyframes updates-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.updates-ticker-item {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #444;
  text-decoration: none;
  padding: 0 6px;
  flex-shrink: 0;
  transition: color 0.18s;
}

.updates-ticker-item:hover {
  color: #C8141E;
  text-decoration: underline;
}

.updates-ticker-sep {
  display: inline-block;
  color: #C8141E;
  font-size: 16px;
  font-weight: 700;
  padding: 0 18px;
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.7;
}

.campus-container {
  padding-right: 0 !important;
  padding-left: 25% !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .updates-right {
    padding-left: 80px;
  }

  .updates-tab {
    font-size: 12.5px;
    padding: 0 12px;
  }
}

@media (max-width: 768px) {
  .updates-bar {
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .updates-badge {
    width: 100%;
    min-width: unset;
    height: 44px;
  }

  .updates-badge-bg {
    height: 44px;
    width: 100%;
    object-fit: cover;
    object-position: left;
  }

  .updates-badge-content {
    justify-content: center;
    padding: 0 20px;
  }

  .updates-right {
    padding-left: 0;
    height: 76px;
  }

  .updates-tabs-row {
    height: 38px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .updates-tabs-row::-webkit-scrollbar {
    display: none;
  }

  .updates-tabs {
    min-width: max-content;
    padding: 0 8px;
  }

  .updates-ticker-row {
    height: 38px;
  }

  .updates-ticker {
    padding: 0 10px;
  }

  .campus-container {
    padding-left: 6% !important;
  }
}

@media (max-width: 576px) {
  .custom-section img {
    width: 100% !important;
  }
}

.testimonial-swiper {
  padding-top: 22px;
}

.testimonial-swiper .swiper-wrapper {
  display: flex;
}

.testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Footer Background Animation */
@keyframes footerBgFloat {
  0% {
    transform: scale(1) translate(0, 0);
  }

  33% {
    transform: scale(1.05) translate(1.5%, -1%);
  }

  66% {
    transform: scale(1.02) translate(-1%, 1.5%);
  }

  100% {
    transform: scale(1) translate(0, 0);
  }
}

.footer-bg-animate {
  animation: footerBgFloat 25s ease-in-out infinite;
  transform-origin: center bottom;
}

/* ========================================
   LENIS SMOOTH SCROLLING
   ======================================== */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ========================================
   ACCESSIBILITY MODES
   ======================================== */
body.grayscale-mode {
  filter: grayscale(100%) !important;
}

body.high-contrast-mode {
  filter: contrast(125%) saturate(150%) brightness(95%) !important;
  background-color: #000 !important;
  color: #fff !important;
}

body.high-contrast-mode img,
body.high-contrast-mode video {
  filter: contrast(110%) saturate(120%) !important;
}

.custom-section p {
  font-size: 16px;
  color: #8F8F8F;
}

.custom-section img {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  width: 380px;
  max-width: 100%;
  ;
}

.custom-section h2 {
  font-family: Fustat;
  font-size: 48px;
  color: #404040;
  font-weight: light;
  line-height: 1;

}

.custom-section h3 {
  font-family: Fustat;
  font-size: 24px;
  color: #404040;
  font-weight: 500;

}

.custom-section ul {

  list-style: none;
  padding: 0;
  margin: 20px 0;

}

.custom-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 17px;
  color: #585858;
  text-align: justify;

}

.custom-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background-color: #c00000;
  transform: rotate(45deg);
}

.custom-section ol {
  font-size: 18px;
  color: #585858;
  font-weight: 400;
  list-style-type: numeric;
  padding-left: 30px;
}

.custom-section table {

  border-radius: 15px !important;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  min-width: 900px;
  margin-bottom: 0;

}

@media screen and (max-width: 768px) {

  .custom-section table {
    font-size: 13px;
    min-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    border: none;
    display: block;
  }
}

.custom-section table thead,
.custom-section table thead td {
  background-color: #c62828 !important;
  color: white !important;
  font-weight: 500;
  text-align: center;
  border: none;
  padding: 15px;
}

.custom-section table td,
.custom-section table tbody {
  padding: 10px 15px;
  color: #555;
  border-color: #eee;
  font-size: 14px;
}

.custom-section table td {
  border: 1px solid #dee2e6 !important;
}

.custom-section table th {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;

}

.custom-section table th,
.custom-section table td {
  border: 1px solid #dee2e6 !important;


}

.custom-section table td {
  border: 1px solid #dee2e6 !important;
}

.custom-section table tbody {
  color: #585858;
  font-size: 14px;
  line-height: 1.7;
}

.custom-section table tbody tr {
  border-bottom: 1px solid #DDDDDD;
  transition: background 0.3s ease;
}

.custom-section table tbody tr:last-child {
  border-bottom: none;
}

.custom-section table tbody tr:hover {
  background: #F9F9F9;
}

.custom-section table td {
  padding: 24px;
  border-right: 1px solid #DDDDDD;
  vertical-align: top;
  font-size: 16px;
  font-weight: 400;
  color: #585858;
}

.custom-table td:last-child {
  border-right: none;
}

.custom-table td:nth-child(1) {
  text-align: center;
  width: 80px;
}

/* campus life */
.campus-life-swiper {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}

.campus-gallery-swiper {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}

.campus-life-swiper .swiper-slide {
  height: 300px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.93);

  display: flex;
  align-items: center;
  justify-content: center;
}

.campus-gallery-swiper .swiper-slide {
  height: 300px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.93);

  display: flex;
  align-items: center;
  justify-content: center;
}

.campus-life-swiper .swiper-slide-active {
  transform: scale(1.07);
  opacity: 1;
  z-index: 2;
}

.campus-gallery-swiper .swiper-slide-active {
  transform: scale(1.07);
  opacity: 1;
  z-index: 2;
}

.campus-life-swiper .swiper-slide .img-container {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.campus-gallery-swiper .swiper-slide .img-container {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1024px) {
  .campus-life-swiper .swiper-slide {
    height: 260px;
  }

  .campus-gallery-swiper .swiper-slide {
    height: 260px;
  }

}

@media (max-width: 768px) {
  .campus-life-swiper .swiper-slide {
    height: 220px;
    transform: scale(0.9);

  }

  .campus-life-swiper .swiper-slide-active {
    transform: scale(1.05);
    opacity: 1;
  }

  .campus-gallery-swiper .swiper-slide {
    height: 220px;
    transform: scale(0.9);

  }

  .campus-gallery-swiper .swiper-slide-active {
    transform: scale(1.05);
    opacity: 1;
  }
}

@media (min-width: 2000px) {
  .cam-bg {
    width: 48%;
  }
}

@media (min-width: 1800px) {
  .campus-container {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: 0 !important;
    /* max-width: 0; */
    /* padding-left: 299px; */
  }

  .camp-nav {
    left: -12%;
  }

  /* .cam-bg {
    width: 48%;
  } */
}

.header-div {
  max-width: 1249px;
  margin: 0 auto;
}

.abt-red img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(94%) saturate(5015%) hue-rotate(348deg) brightness(90%) contrast(98%);
}