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

/* Use Alexandria for all headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Alexandria', 'Cairo', sans-serif;
  font-weight: 700;
}

/* ===========================
   Top Contact Bar
   =========================== */
.top-bar {
  background: var(--navy-900);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  font-family: 'Cairo', sans-serif;
}

html[data-theme="dark"] .top-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
}

.top-bar-item i {
  color: rgba(255, 255, 255, 0.7);
}

.top-bar-social {
  color: rgba(255, 255, 255, 0.75);
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
}

.top-bar-social:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-1px);
}

/* ===========================
   Navbar with Top Bar offset
   =========================== */
.main-nav {
  position: fixed;
  top: 37px;
  left: 0;
  right: 0;
  z-index: 1040;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  padding-top: 108px;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

@media (max-width: 767px) {
  .main-nav {
    top: 0;
  }

  body {
    padding-top: 70px;
  }
}

/* ===========================
   Swiper Team Slider
   =========================== */
.team-swiper {
  padding-bottom: 50px !important;
}

.team-swiper .swiper-slide {
  height: auto;
}

.team-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--accent-color);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.team-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

.team-next,
.team-prev {
  color: var(--accent-color) !important;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  width: 40px !important;
  height: 40px !important;
  border-radius: 5px;
  border: 1px solid var(--glass-border);
}

.team-next::after,
.team-prev::after {
  font-size: 14px !important;
  font-weight: 700;
}

.team-social-btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: var(--accent-color);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.25s ease;
}

.team-social-btn:hover {
  background: var(--accent-color);
  color: #fff !important;
  border-color: var(--accent-color);
  transform: translateY(-2px);
}


:root {
  /* Future University — Navy + Sky Tech */
  --brand-navy: #0F172A;
  --brand-accent: #0EA5E9;
  --brand-accent-light: #38BDF8;
  --brand-accent-dark: #0284C7;
  --brand-surface: #E2E8F0;

  --navy-900: var(--brand-navy);
  --navy-800: #1E293B;
  --navy-700: #334155;

  /* Legacy token aliases → accent (batch migration) */
  --gold-500: var(--brand-accent);
  --gold-400: var(--brand-accent-light);
  --gold-600: var(--brand-accent-dark);

  --accent-rgb: 14, 165, 233;
  --navy-rgb: 15, 23, 42;

  --bg-gradient-1: #F1F5F9;
  --bg-gradient-2: #F8FAFC;
  --bg-gradient-3: var(--brand-surface);

  --surface-muted: var(--brand-surface);
  --surface-divider: var(--brand-surface);

  --text-primary: var(--navy-700);
  --text-secondary: rgba(51, 65, 85, 0.72);
  --accent-color: var(--brand-accent);
  --accent-hover: var(--brand-accent-dark);

  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(14, 165, 233, 0.22);
  --glass-shadow: rgba(15, 23, 42, 0.08);

  --glass-hover-bg: rgba(255, 255, 255, 0.92);
  --glass-hover-border: rgba(14, 165, 233, 0.4);

  --page-bg: #F8FAFC;
}

.text-accent {
  color: var(--accent-color) !important;
}

.bg-glass {
  background: var(--glass-bg);
}

[data-theme="dark"] {
  --text-primary: #E2E8F0;
  --text-secondary: rgba(148, 163, 184, 0.85);

  --glass-bg: rgba(15, 23, 42, 0.72);
  --glass-border: rgba(14, 165, 233, 0.22);
  --glass-shadow: rgba(0, 0, 0, 0.55);

  --glass-hover-bg: rgba(30, 41, 59, 0.88);
  --glass-hover-border: rgba(14, 165, 233, 0.42);

  --page-bg: #0B1220;
  --surface-muted: #1E293B;

  background: #0F172A;
}

body[data-theme="dark"],
html[data-theme="dark"] body {
  background: #0F172A;
  background-attachment: fixed;
  animation: none;
}

html[data-theme="dark"] .glass-nav {
  background: rgba(15, 23, 42, 0.94);
  border-bottom: 1px solid rgba(14, 165, 233, 0.18);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

html[data-theme="dark"] .glass-panel,
html[data-theme="dark"] .glass-card {
  background: rgba(15, 23, 42, 0.78);
  border-color: rgba(14, 165, 233, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

html[data-theme="dark"] .glass-card:hover {
  background: rgba(30, 41, 59, 0.88);
  border-color: rgba(14, 165, 233, 0.35);
}

html[data-theme="dark"] .text-white,
html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] h5,
html[data-theme="dark"] h6 {
  color: #e8f0fe !important;
}

html[data-theme="dark"] .nav-link {
  color: #c7d8f8 !important;
}

html[data-theme="dark"] .accordion-button {
  background-color: rgba(5, 15, 40, 0.7);
  color: #e8f0fe;
}

html[data-theme="dark"] .accordion-button:not(.collapsed) {
  background-color: rgba(14, 165, 233, 0.12);
  color: var(--gold-400);
}

html[data-theme="dark"] .form-control.bg-glass {
  background-color: rgba(15, 23, 42, 0.65);
  border-color: rgba(14, 165, 233, 0.28);
  color: #e8f0fe;
}

html[data-theme="dark"] p,
html[data-theme="dark"] body p {
  color: rgba(200, 220, 255, 0.7);
}

body {
  font-family: 'Cairo', sans-serif;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 40%, var(--surface-muted) 100%);
  background-size: 400% 400%;
  background-attachment: fixed;
  animation: bgShift 15s ease infinite;
  color: var(--text-primary);
  min-height: 100vh;
  margin: 0;
  transition: color 0.4s ease, background 0.4s ease;
}

@keyframes bgShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* For English elements */
.en-text {
  font-family: 'Poppins', sans-serif;
}

/* Glassmorphism Utilities */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 5px;
  box-shadow: 0 8px 32px var(--glass-shadow);
  transition: all 0.4s ease;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 5px;
  box-shadow: 0 8px 32px var(--glass-shadow);
  transition: all 0.4s ease;
  overflow: hidden;
}

.glass-card:hover {
  background: var(--glass-hover-bg);
  border-color: var(--glass-hover-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--glass-shadow);
}

/* Navbar */
.glass-nav {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--surface-divider);
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.06);
  transition: all 0.4s ease;
}

/* Custom Buttons */
.btn-accent {
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.38);
}

.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  border-radius: 5px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-glass:hover {
  background: var(--glass-hover-bg);
  border-color: var(--glass-hover-border);
  color: var(--text-primary);
}

/* Theme Toggle Button */
.theme-toggle {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.theme-toggle:hover {
  transform: rotate(20deg) scale(1.1);
}

/* Custom Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

p {
  color: var(--text-secondary);
}

/* Typing Animation Cursor */
.typing-cursor {
  display: inline-block;
  width: 3px;
  background-color: var(--accent-color);
  animation: blink 0.8s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: white;
  font-size: 0.7rem;
  font-family: 'Poppins', sans-serif;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.5);
}

.nav-link {
  color: #1e3a5f !important;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
  right: auto;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--surface-muted);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-accent-dark);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-accent);
}

/* Base Utility Classes */
.bg-gradient-opacity {
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.04) 0%, rgba(15, 23, 42, 0.06) 100%);
  border-top: 1px solid rgba(14, 165, 233, 0.08);
  border-bottom: 1px solid rgba(14, 165, 233, 0.08);
}

.max-w-lg {
  max-width: 600px;
}

/* Form Styles Override for Glass */
.form-control.bg-glass {
  background-color: var(--glass-bg);
  border-color: var(--glass-border);
  color: var(--text-primary);
}

.form-control.bg-glass:focus {
  background-color: var(--glass-hover-bg);
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(108, 99, 255, 0.2);
  color: var(--text-primary);
}

/* Animations ON Scroll */
.section-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero-section {
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(40px);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -50px;
  background: rgba(14, 165, 233, 0.2);
  animation: float 6s infinite ease-in-out;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  left: -100px;
  background: rgba(212, 184, 150, 0.15);
  animation: float 8s infinite ease-in-out reverse;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.05);
  }

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

/* Category Cards */
.category-card {
  text-align: center;
  padding: 30px 20px;
  cursor: pointer;
  height: 100%;
}

.category-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.2);
  text-shadow: 0 0 15px var(--accent-color);
}

/* Course Cards */
.course-img {
  height: 200px;
  background: linear-gradient(135deg, #0284C7 0%, #38BDF8 50%, #38BDF8 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.glass-card:hover .course-img img {
  transform: scale(1.05);
}

.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #0284C7, #38BDF8);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  z-index: 2;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.4);
}

.old-price {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
}

.new-price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.25rem;
  font-family: 'Poppins', sans-serif;
}

/* Accordion Override for Glass */
.accordion-item {
  background-color: transparent;
  border: 1px solid var(--glass-border);
  margin-bottom: 1rem;
  border-radius: 5px !important;
  overflow: hidden;
}

.accordion-button {
  background-color: rgba(255, 255, 255, 0.6);
  color: #1e3a5f;
  box-shadow: none !important;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  font-family: 'Cairo', sans-serif;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(14, 165, 233, 0.08);
  color: #0EA5E9;
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--text-secondary);
}

/* Course Detail Tabs */
.course-tabs .nav-link {
  color: var(--text-secondary);
  border: none;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  transition: all 0.3s ease;
}

.course-tabs .nav-link:hover {
  color: var(--text-primary);
}

.course-tabs .nav-link.active {
  color: #0EA5E9 !important;
  background: rgba(14, 165, 233, 0.06) !important;
  border-bottom-color: #0EA5E9;
}

/* Rating Bar */
.rating-bar {
  height: 8px;
  background-color: var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  flex-grow: 1;
  margin: 0 15px;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  border-radius: 4px;
}

/* Override p color for light bg */
body p {
  color: var(--text-secondary);
}

/* .text-white only maps to dark text in light mode */
:root .text-white {
  color: #1e3a5f !important;
}

/* In dark mode - restore white-ish text */
html[data-theme="dark"] .text-white {
  color: #e8f0fe !important;
}

/* These should always be white regardless of mode */
.card-front,
.card-back,
.card-front *,
.card-back *,
.btn-accent,
.course-img {
  color: #ffffff !important;
}

/* ===========================
   Credit Card Preview
   =========================== */
.credit-card-preview {
  perspective: 1000px;
  width: 100%;
  max-width: 380px;
  height: 220px;
  margin: 0 auto;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 5px;
}

.credit-card-preview.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 28px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.card-front {
  background: linear-gradient(135deg, #0284C7 0%, #38BDF8 55%, #0ea5e9 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-back {
  background: linear-gradient(135deg, #0F172A 0%, #0EA5E9 100%);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.card-stripe {
  background: #1a1a1a;
  height: 48px;
  margin-bottom: 20px;
}

.card-cvv-strip {
  background: rgba(255, 255, 255, 0.1);
  margin: 0 20px;
  padding: 10px 15px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cvv-display {
  background: white;
  color: #333;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 4px;
  font-size: 1rem;
}

.card-number-display {
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.card-holder-display,
.card-exp-display {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Category card cursor pointer */
.category-card-interactive {
  cursor: pointer;
}

.category-card-interactive:hover {
  background: var(--glass-hover-bg);
  border-color: var(--accent-color);
  transform: translateY(-6px);
}

.category-card-interactive:hover .category-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px currentColor);
}

/* ===========================
   Page Hero — Compact Luxury
   =========================== */
html[data-theme="dark"] {
  --page-bg: #0B1220;
}

.page-hero {
  background: var(--navy-900);
  position: relative;
  padding: 1.5rem 0 1.25rem;
  overflow: hidden;
  text-align: center;
  border-top: 2px solid var(--gold-500);
  border-bottom: 1px solid rgba(14, 165, 233, 0.25);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0.5rem 1rem 0;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero-icon {
  width: 44px;
  height: 44px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.45);
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--gold-400);
  margin-bottom: 0.65rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-hero-icon:hover {
  transform: scale(1.05);
}

.page-hero-title {
  font-family: 'Alexandria', 'Cairo', sans-serif !important;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 0.35rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.page-hero-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  margin: 0.5rem auto 0;
  background: var(--gold-500);
  border-radius: 2px;
}

.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  max-width: 480px;
  margin: 0 auto 0.75rem;
  line-height: 1.6;
}

.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 50px;
}

.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.page-hero-breadcrumb a:hover {
  color: var(--gold-400);
}

.page-hero-breadcrumb .sep {
  opacity: 0.35;
  font-size: 0.6rem;
  color: var(--gold-500);
}

.page-hero-breadcrumb .current {
  color: var(--gold-400);
  font-weight: 600;
}

.page-hero-wave {
  display: none;
}

@media (max-width: 767px) {
  .page-hero {
    padding: 1.15rem 0 1rem;
  }

  .page-hero-content {
    padding: 0.35rem 0.75rem 0;
  }

  .page-hero-icon {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .page-hero-title {
    font-size: 1.3rem;
  }

  .page-hero-subtitle {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
  }
}

/* ===========================
   Site Footer — Professional
   =========================== */
.site-footer {
  margin-top: 4rem;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  border-top: 2px solid var(--gold-500);
}

.site-footer__top {
  padding: 3.25rem 0 2.25rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.15rem;
}

.site-footer__brand-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.35);
  border-radius: 12px;
  color: var(--gold-400);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.site-footer__brand-name {
  font-family: 'Alexandria', 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

.site-footer__brand-name span {
  color: var(--gold-500);
}

.site-footer__desc {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 1.35rem;
  max-width: 340px;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer__social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.site-footer__social a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: #fff;
  transform: translateY(-2px);
}

.site-footer__heading {
  font-family: 'Alexandria', 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 1.15rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid rgba(14, 165, 233, 0.35);
}

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

.site-footer__links li {
  margin-bottom: 0.55rem;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.25s ease, padding-inline-start 0.25s ease;
  display: inline-block;
}

.site-footer__links a:hover {
  color: var(--gold-400);
  padding-inline-start: 4px;
}

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

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

.site-footer__contact i {
  color: var(--gold-500);
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.site-footer__bottom {
  border-top: 1px solid rgba(14, 165, 233, 0.15);
  padding: 1.15rem 0;
  background: rgba(0, 0, 0, 0.18);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: var(--gold-400);
}

.site-footer__dot {
  color: rgba(14, 165, 233, 0.45);
  user-select: none;
}

@media (max-width: 767px) {
  .site-footer {
    margin-top: 3rem;
  }

  .site-footer__top {
    padding: 2.5rem 0 1.75rem;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ===========================
   About Page
   =========================== */
.about-section {
  padding: 3.5rem 0;
}

.about-section--navy {
  background: var(--navy-900);
  border-top: 1px solid rgba(14, 165, 233, 0.2);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.about-section--muted {
  background: rgba(15, 23, 42, 0.04);
  border-top: 1px solid rgba(14, 165, 233, 0.1);
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

html[data-theme="dark"] .about-section--muted {
  background: rgba(255, 255, 255, 0.03);
}

.about-section__title-light {
  color: #fff !important;
}

.about-section--navy .section-head__eyebrow {
  color: var(--gold-400);
}

.about-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.about-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.about-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.about-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.2;
}

.about-highlight__label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.about-intro-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.28);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
}

.about-intro-image img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.about-intro-badge {
  position: absolute;
  bottom: 1rem;
  inset-inline-start: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.4);
  border-radius: 50px;
  color: var(--gold-400);
  font-size: 0.8rem;
  font-weight: 600;
}

.about-stat-mini {
  padding: 1.25rem 0.75rem !important;
}

.about-stat-mini .uni-card__icon {
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.about-vm-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-top: 3px solid var(--gold-500);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-vm-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.45);
}

.about-vm-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.35);
  color: var(--gold-400);
  font-size: 1.25rem;
  margin-bottom: 1.15rem;
}

.about-vm-card__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.about-vm-card__text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0;
}

.about-president-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
}

.about-president-card__avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.1);
  border: 2px solid rgba(14, 165, 233, 0.35);
  color: var(--gold-500);
  font-size: 2.5rem;
}

.about-quote {
  margin: 0;
  padding: 1.75rem 1.75rem 1.75rem 0;
  border-inline-start: 3px solid var(--gold-500);
}

.about-quote p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-quote__footer {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.92rem;
}

.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-timeline__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-timeline__item:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

html[data-theme="dark"] .about-timeline__item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.about-timeline__year {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: var(--navy-900);
  color: var(--gold-400);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(14, 165, 233, 0.35);
}

.about-timeline__link {
  color: var(--gold-600);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-timeline__link:hover {
  color: var(--gold-500);
}

.about-cta {
  padding: 0 0 3.5rem;
}

.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
}

.about-cta__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: #fff;
  margin-bottom: 0.35rem;
}

.about-cta__desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.about-cta__btn-outline {
  color: #fff !important;
  border-color: rgba(14, 165, 233, 0.45) !important;
}

@media (max-width: 991px) {
  .about-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 2.5rem 0;
  }

  .about-intro-image img {
    height: 260px;
  }

  .about-timeline__item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .about-timeline__year {
    width: fit-content;
    min-height: auto;
    padding: 0.35rem 0.85rem;
  }

  .about-cta__inner {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-highlights__grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   Contact Page
   =========================== */
.contact-section {
  padding: 3.5rem 0 4rem;
}

.contact-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.contact-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.contact-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.contact-highlight__title {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.contact-highlight__text {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}

.contact-form-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.75rem;
}

.contact-form__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.contact-map-panel {
  border: 1px solid rgba(14, 165, 233, 0.28);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

html[data-theme="dark"] .contact-map-panel {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.contact-map-panel.map-container iframe {
  width: 100%;
  height: 320px;
  border: none;
}

.contact-social-panel {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 14px;
}

.contact-social-panel__title {
  font-family: 'Alexandria', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-social-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-social-panel__links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.contact-social-panel__links a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .contact-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 2.5rem 0 3rem;
  }

  .contact-highlights__grid {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 1.25rem;
  }

  .contact-map-panel.map-container iframe {
    height: 260px;
  }
}

/* ===========================
   Library Page
   =========================== */
.library-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.library-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.library-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.library-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.library-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.2;
}

.library-highlight__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.library-toolbar {
  padding: 1.5rem 0 0.5rem;
}

.library-search-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
}

.library-search-panel__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
}

.library-search-input {
  background: var(--page-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.library-search-input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
  background: var(--page-bg);
  color: var(--text-primary);
}

.library-section {
  padding: 2.5rem 0 3.5rem;
}

.library-filters {
  margin-bottom: 2rem !important;
}

.library-section .section-head__title::after {
  display: none;
}

.library-cta {
  padding: 0 0 3.5rem;
}

.library-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
}

.library-cta__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: #fff;
  margin-bottom: 0.35rem;
}

.library-cta__desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}

.library-cta__btn-outline {
  color: #fff !important;
  border-color: rgba(14, 165, 233, 0.45) !important;
}

.library-page .book-card {
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 14px;
  background: var(--glass-bg);
}

.library-page .book-title {
  color: var(--text-primary);
}

@media (max-width: 991px) {
  .library-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .library-section {
    padding: 2rem 0 2.5rem;
  }

  .library-highlights__grid {
    grid-template-columns: 1fr;
  }

  .library-cta__inner {
    padding: 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .library-cta__desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================
   Book Detail Page
   =========================== */
.book-detail-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.book-detail-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.book-detail-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.book-detail-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.book-detail-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}

.book-detail-highlight__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.book-detail-section {
  padding: 2.5rem 0 3.5rem;
}

.book-detail-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.book-detail-panel__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.book-detail-panel__title i {
  color: var(--gold-500);
}

.book-detail-cover {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 5 / 7;
  margin: 0 auto 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
}

.book-detail-sidebar {
  position: sticky;
  top: 120px;
}

.book-detail-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.65rem 0;
}

.book-detail-info-row + .book-detail-info-row {
  border-top: 1px solid var(--glass-border);
}

.book-detail-info-row__label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.book-detail-info-row__value {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.book-detail-chapters {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.book-detail-chapter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.06);
  transition: background 0.25s ease;
}

.book-detail-chapter:hover {
  background: rgba(14, 165, 233, 0.12);
}

.book-detail-chapter__num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.book-detail-chapter__title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.book-detail-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.22);
}

.book-detail-reserve {
  text-align: center;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-top: 3px solid var(--gold-500);
}

.book-detail-reserve i {
  color: var(--gold-400);
}

.book-detail-reserve__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.book-detail-reserve__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.book-detail-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.book-detail-rating__stars i {
  color: #fbbf24;
  font-size: 0.9rem;
}

.book-detail-rating__stars i.empty {
  color: var(--text-secondary);
  opacity: 0.35;
}

.book-detail-rating__score {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
}

.availability-badge.available {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.availability-badge.unavailable {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.28);
}

.book-detail-related {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.book-detail-related__item {
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.book-detail-related__item:hover {
  background: rgba(14, 165, 233, 0.08);
  transform: translateX(-4px);
}

.book-detail-related__thumb {
  width: 52px;
  height: 70px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.book-detail-related__title {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.45;
  margin-bottom: 0.2rem;
  transition: color 0.25s ease;
}

.book-detail-related__item:hover .book-detail-related__title {
  color: var(--gold-500);
}

.book-detail-related__author {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

@media (max-width: 991px) {
  .book-detail-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .book-detail-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .book-detail-section {
    padding: 2rem 0 2.5rem;
  }

  .book-detail-highlights__grid {
    grid-template-columns: 1fr;
  }

  .book-detail-panel {
    padding: 1.25rem;
  }
}

/* ===========================
   News Page
   =========================== */
.news-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.news-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.news-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.news-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.news-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.2;
}

.news-highlight__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.news-section {
  padding: 2.5rem 0 3rem;
  background: var(--surface-muted);
}

.news-section .section-head__title::after {
  display: none;
}

.news-page .news-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-page .news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] .news-page .news-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.news-card__body {
  padding: 1.25rem 1.35rem 1.35rem;
}

.news-card__category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-500);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}

.news-card__title {
  font-family: 'Alexandria', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

.news-page a:hover .news-card__title {
  color: var(--gold-500);
}

.news-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-events-section {
  padding: 0 0 3.5rem;
  border-top: 1px solid rgba(14, 165, 233, 0.15);
}

.news-events-section .section-head__title::after {
  display: none;
}

.news-event-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.35rem 1.5rem;
  margin-bottom: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-right: 3px solid var(--gold-500);
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-event-item:hover {
  transform: translateX(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

html[data-theme="dark"] .news-event-item:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.news-event-item__date {
  width: 68px;
  flex-shrink: 0;
  text-align: center;
  padding: 0.65rem 0.5rem;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.news-event-item__date .day {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1.1;
}

.news-event-item__date .month {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.news-event-item__title {
  font-family: 'Alexandria', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  transition: color 0.25s ease;
}

.news-page a:hover .news-event-item__title {
  color: var(--gold-500);
}

.news-event-item__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.65rem;
}

.news-event-item__location {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-500);
}

@media (max-width: 991px) {
  .news-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .news-section {
    padding: 2rem 0 2.5rem;
  }

  .news-highlights__grid {
    grid-template-columns: 1fr;
  }

  .news-event-item {
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.15rem;
  }

  .news-event-item__date {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .news-event-item__date .day,
  .news-event-item__date .month {
    display: inline;
    font-size: 1rem;
  }
}

/* ===========================
   Blog Detail Page
   =========================== */
.blog-detail-page .page-hero-title::after {
  display: none;
}

.blog-detail-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-detail-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.blog-detail-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.blog-detail-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.blog-detail-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.blog-detail-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.2;
}

.blog-detail-highlight__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.blog-detail-section {
  padding: 2rem 0 3.5rem;
}

.blog-detail-featured {
  margin-bottom: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-top: 3px solid var(--gold-500);
}

.blog-detail-featured__placeholder {
  width: 100%;
  height: 380px;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-detail-featured__placeholder i {
  font-size: 4.5rem;
  color: rgba(14, 165, 233, 0.35);
}

.blog-detail-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.blog-detail-panel__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.blog-detail-panel__title i {
  color: var(--gold-500);
}

.blog-detail-sidebar {
  position: sticky;
  top: 120px;
}

.blog-detail-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.blog-detail-stat {
  text-align: center;
  padding: 0.75rem;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.14);
}

.blog-detail-stat__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1.35rem;
  color: var(--gold-500);
  line-height: 1.2;
}

.blog-detail-stat__label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.blog-detail-content {
  font-size: 1.02rem;
  line-height: 2;
  color: var(--text-secondary);
}

.blog-detail-content h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2rem 0 1rem;
  padding-right: 1rem;
  border-right: 4px solid var(--gold-500);
}

.blog-detail-content p {
  margin-bottom: 1.25rem;
}

.blog-detail-content ul {
  padding-right: 1.5rem;
  margin-bottom: 1.25rem;
}

.blog-detail-content ul li {
  margin-bottom: 0.5rem;
}

.blog-detail-content ul li::marker {
  color: var(--gold-500);
}

.blog-detail-content ul li strong {
  color: var(--text-primary);
}

.blog-detail-subpanel {
  padding: 1.25rem;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.05);
  border: 1px solid rgba(14, 165, 233, 0.14);
  margin: 1.5rem 0;
}

.blog-detail-subpanel__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.blog-detail-progress + .blog-detail-progress {
  margin-top: 0.85rem;
}

.blog-detail-progress__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.blog-detail-progress__head span:last-child {
  color: var(--gold-500);
}

.blog-detail-progress__bar {
  height: 8px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.blog-detail-progress__fill {
  height: 100%;
  background: var(--gold-500);
  border-radius: 4px;
}

.blog-detail-quote {
  background: rgba(14, 165, 233, 0.08);
  border-right: 4px solid var(--gold-500);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}

.blog-detail-quote__icon {
  font-size: 1.75rem;
  color: var(--gold-500);
  opacity: 0.35;
  margin-bottom: 0.5rem;
}

.blog-detail-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  margin: 0 0 1rem;
  line-height: 1.85;
}

.blog-detail-quote__author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.blog-detail-quote__name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-500);
}

.blog-detail-quote__role {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.blog-detail-rank-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.05);
  border: 1px solid rgba(14, 165, 233, 0.14);
  height: 100%;
}

.blog-detail-rank-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-detail-rank-card__field {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.blog-detail-rank-card__rank {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-500);
}

.blog-detail-divider {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid var(--glass-border);
  opacity: 1;
}

.blog-detail-footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .blog-detail-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.blog-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-detail-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.22);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

a.blog-detail-tag:hover {
  background: var(--gold-500);
  color: #fff;
  border-color: var(--gold-500);
}

.blog-detail-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-detail-share__label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.blog-detail-share__buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-detail-share__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-size: 0.9rem;
}

.blog-detail-share__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.blog-detail-share__btn.twitter { background: #1da1f2; }
.blog-detail-share__btn.facebook { background: #1877f2; }
.blog-detail-share__btn.linkedin { background: #0a66c2; }
.blog-detail-share__btn.whatsapp { background: #25d366; }
.blog-detail-share__btn.copy-link { background: #6b7280; }

.blog-detail-author {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.blog-detail-author__name {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.blog-detail-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 2px solid rgba(14, 165, 233, 0.35);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.blog-detail-avatar--sm {
  width: 36px;
  height: 36px;
  font-size: 0.72rem;
}

.blog-detail-avatar--comment {
  width: 48px;
  height: 48px;
  font-size: 0.85rem;
}

.blog-detail-comment {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.blog-detail-comment:last-of-type {
  border-bottom: none;
}

.blog-detail-comment__author {
  font-weight: 600;
  color: var(--text-primary);
}

.blog-detail-comment__date {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-right: 0.35rem;
}

.blog-detail-comment__text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
}

.blog-detail-comment__reply {
  background: none;
  border: none;
  color: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.25s ease;
}

.blog-detail-comment__reply:hover {
  color: var(--gold-400);
}

.blog-detail-comment-form {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.blog-detail-comment-form__title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.blog-detail-toc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.blog-detail-toc__item {
  display: block;
  padding: 0.55rem 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  border-right: 3px solid transparent;
  border-radius: 0 8px 8px 0;
  transition: all 0.25s ease;
}

.blog-detail-toc__item:hover,
.blog-detail-toc__item.active {
  color: var(--gold-500);
  border-right-color: var(--gold-500);
  background: rgba(14, 165, 233, 0.08);
}

.blog-detail-related {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--glass-border);
  text-decoration: none;
  transition: transform 0.25s ease;
}

.blog-detail-related:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-detail-related:first-child {
  padding-top: 0;
}

.blog-detail-related:hover {
  transform: translateX(-4px);
}

.blog-detail-related__thumb {
  width: 72px;
  height: 58px;
  border-radius: 10px;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-400);
  font-size: 1.1rem;
}

.blog-detail-related__title {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.45;
  margin-bottom: 0.25rem;
  transition: color 0.25s ease;
}

.blog-detail-related:hover .blog-detail-related__title {
  color: var(--gold-500);
}

.blog-detail-related__date {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.blog-detail-related__date i {
  color: var(--gold-500);
  margin-left: 0.25rem;
}

.blog-detail-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-detail-newsletter {
  text-align: center;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-top: 3px solid var(--gold-500);
}

.blog-detail-newsletter i {
  color: var(--gold-400);
}

.blog-detail-newsletter__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.blog-detail-newsletter__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
  background: transparent;
}

.reading-progress-bar {
  height: 100%;
  background: var(--gold-500);
  width: 0%;
  transition: width 0.1s ease;
}

@media (max-width: 991px) {
  .blog-detail-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-detail-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-detail-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .blog-detail-section {
    padding: 1.5rem 0 2.5rem;
  }

  .blog-detail-highlights__grid {
    grid-template-columns: 1fr;
  }

  .blog-detail-featured__placeholder {
    height: 220px;
  }

  .blog-detail-panel {
    padding: 1.25rem;
  }

  .blog-detail-stats {
    grid-template-columns: 1fr 1fr;
  }

  .blog-detail-author {
    flex-direction: column;
    text-align: center;
  }
}

/* ===========================
   Research Page
   =========================== */
.research-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.research-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.research-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.research-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.research-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.2;
}

.research-highlight__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.research-section {
  padding: 2.5rem 0 3rem;
}

.research-section .section-head__title::after,
.research-pubs-section .section-head__title::after {
  display: none;
}

.research-page .research-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.research-page .research-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] .research-page .research-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.research-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: var(--gold-500);
  margin-bottom: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.research-page a:hover .research-card__icon {
  background: var(--gold-500);
  color: #fff;
}

.research-card__title {
  font-family: 'Alexandria', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
  line-height: 1.5;
  transition: color 0.25s ease;
}

.research-page a:hover .research-card__title {
  color: var(--gold-500);
}

.research-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.research-card__stats {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding-top: 0.85rem;
  border-top: 1px solid var(--glass-border);
}

.research-card__stats i {
  color: var(--gold-500);
  margin-left: 0.35rem;
}

.research-pubs-section {
  padding: 0 0 3rem;
  border-top: 1px solid rgba(14, 165, 233, 0.15);
}

.research-pub-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.research-pub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] .research-pub-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.research-pub-card__meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.research-pub-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-500);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
}

.research-pub-card__year {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.research-pub-card__title {
  font-family: 'Alexandria', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 0.65rem;
  transition: color 0.25s ease;
}

.research-page a:hover .research-pub-card__title {
  color: var(--gold-500);
}

.research-pub-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.research-cta {
  padding: 0 0 3.5rem;
}

.research-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
}

.research-cta__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: #fff;
  margin-bottom: 0.35rem;
}

.research-cta__desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}

.research-cta__btn-outline {
  color: #fff !important;
  border-color: rgba(14, 165, 233, 0.45) !important;
}

@media (max-width: 991px) {
  .research-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .research-section {
    padding: 2rem 0 2.5rem;
  }

  .research-highlights__grid {
    grid-template-columns: 1fr;
  }

  .research-cta__inner {
    padding: 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .research-cta__desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================
   Admission Page
   =========================== */
.admission-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.admission-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.admission-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.admission-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.admission-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}

.admission-highlight__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.admission-section {
  padding: 2.5rem 0 2rem;
}

.admission-section .section-head__title::after,
.admission-steps-section .section-head__title::after,
.admission-form-section .section-head__title::after {
  display: none;
}

.admission-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
}

.admission-panel--steps {
  padding: 2rem 2rem 1rem;
}

.admission-req-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.admission-req-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.06);
}

.admission-req-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: var(--gold-500);
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.admission-req-item__title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.admission-req-item__desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

.admission-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.admission-schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.06);
}

.admission-schedule-item__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.admission-schedule-item__date {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-500);
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 50px;
  padding: 0.35rem 0.85rem;
  white-space: nowrap;
}

.admission-steps-section {
  padding: 0 0 2.5rem;
  border-top: 1px solid rgba(14, 165, 233, 0.15);
}

.admission-step__title {
  font-family: 'Alexandria', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.admission-step__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.admission-form-section {
  padding: 0 0 3rem;
  border-top: 1px solid rgba(14, 165, 233, 0.15);
}

.admission-form-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.75rem;
}

.admission-form__section-title {
  font-family: 'Alexandria', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 1.5rem 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--glass-border);
}

.admission-form-panel .admission-form__section-title:first-child {
  margin-top: 0;
}

.admission-form__section-title i {
  color: var(--gold-500);
}

.admission-form__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.admission-form__agreement {
  padding: 1.15rem 1.25rem;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.18);
  margin-bottom: 1.5rem;
}

.admission-form__agreement .form-check-label {
  color: var(--text-primary);
  font-size: 0.88rem;
}

.admission-page #admission-form .form-control,
.admission-page #admission-form .form-select {
  background: var(--page-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.admission-cta {
  padding: 0 0 3.5rem;
}

.admission-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
}

.admission-cta__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: #fff;
  margin-bottom: 0.35rem;
}

.admission-cta__desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}

.admission-cta__btn-outline {
  color: #fff !important;
  border-color: rgba(14, 165, 233, 0.45) !important;
}

@media (max-width: 991px) {
  .admission-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .admission-section {
    padding: 2rem 0 1.5rem;
  }

  .admission-highlights__grid {
    grid-template-columns: 1fr;
  }

  .admission-form-panel {
    padding: 1.25rem;
  }

  .admission-schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .admission-cta__inner {
    padding: 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .admission-cta__desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================
   Colleges Page
   =========================== */
.colleges-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.colleges-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.colleges-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.colleges-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.colleges-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.2;
}

.colleges-highlight__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.colleges-section {
  padding: 2.5rem 0 3rem;
}

.colleges-section .section-head__title::after {
  display: none;
}

.colleges-filters {
  margin-bottom: 2rem !important;
}

.colleges-page .college-card.has-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  border-top: 3px solid var(--gold-500);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.colleges-page .college-card.has-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
}

html[data-theme="dark"] .colleges-page .college-card.has-image:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.colleges-page .college-card.has-image .college-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.5s ease;
}

.colleges-page .college-card.has-image:hover .college-bg {
  transform: scale(1.06);
}

.colleges-page .college-card.has-image .college-scrim {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
  z-index: 1;
  transition: background 0.35s ease;
}

.colleges-page .college-card.has-image:hover .college-scrim {
  background: rgba(15, 23, 42, 0.65);
}

.college-card__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.colleges-page .college-card .college-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(14, 165, 233, 0.2);
  border: 1px solid rgba(14, 165, 233, 0.4);
  color: var(--gold-400);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.colleges-page a:hover .college-card .college-icon {
  background: var(--gold-500);
  color: #fff;
  transform: scale(1.08);
}

.college-card__title {
  font-family: 'Alexandria', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.college-card__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.college-card__stats {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.college-card__stats i {
  color: var(--gold-400);
  margin-left: 0.35rem;
}

.colleges-cta {
  padding: 0 0 3.5rem;
}

.colleges-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
}

.colleges-cta__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: #fff;
  margin-bottom: 0.35rem;
}

.colleges-cta__desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}

.colleges-cta__btn-outline {
  color: #fff !important;
  border-color: rgba(14, 165, 233, 0.45) !important;
}

@media (max-width: 991px) {
  .colleges-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .colleges-section {
    padding: 2rem 0 2.5rem;
  }

  .colleges-highlights__grid {
    grid-template-columns: 1fr;
  }

  .colleges-page .college-card.has-image {
    min-height: 260px;
  }

  .colleges-cta__inner {
    padding: 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .colleges-cta__desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================
   Departments Page
   =========================== */
.departments-page .page-hero-title::after {
  display: none;
}

.departments-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.departments-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.departments-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.departments-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.departments-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}

.departments-highlight__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.departments-section {
  padding: 2.5rem 0 3rem;
}

.departments-section .section-head__title::after {
  display: none;
}

.departments-page .dept-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.departments-page .dept-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] .departments-page .dept-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.dept-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: var(--gold-500);
  margin-bottom: 1rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.departments-page a:hover .dept-card__icon {
  background: var(--gold-500);
  color: #fff;
  transform: scale(1.08);
}

.dept-card__title {
  font-family: 'Alexandria', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.45;
  transition: color 0.25s ease;
}

.departments-page a:hover .dept-card__title {
  color: var(--gold-500);
}

.dept-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.dept-card__stats {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding-top: 0.85rem;
  border-top: 1px solid var(--glass-border);
}

.dept-card__stats i {
  color: var(--gold-500);
  margin-left: 0.35rem;
}

.departments-cta {
  padding: 0 0 3.5rem;
}

.departments-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
}

.departments-cta__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: #fff;
  margin-bottom: 0.35rem;
}

.departments-cta__desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}

.departments-cta__btn-outline {
  color: #fff !important;
  border-color: rgba(14, 165, 233, 0.45) !important;
}

@media (max-width: 991px) {
  .departments-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .departments-section {
    padding: 2rem 0 2.5rem;
  }

  .departments-highlights__grid {
    grid-template-columns: 1fr;
  }

  .departments-cta__inner {
    padding: 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .departments-cta__desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================
   Programs Page
   =========================== */
.programs-page .page-hero-title::after {
  display: none;
}

.programs-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.programs-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.programs-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.programs-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.programs-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.2;
}

.programs-highlight__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.programs-section {
  padding: 2.5rem 0 3rem;
}

.programs-section .section-head__title::after {
  display: none;
}

.programs-filters {
  margin-bottom: 2rem !important;
}

.programs-page .program-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.programs-page .program-card::before {
  display: none;
}

.programs-page .program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] .programs-page .program-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.program-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.program-card__duration {
  font-size: 0.78rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.program-card__duration i {
  color: var(--gold-500);
  margin-left: 0.35rem;
}

.program-card__title {
  font-family: 'Alexandria', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 0.65rem;
  transition: color 0.25s ease;
}

.programs-page a:hover .program-card__title {
  color: var(--gold-500);
}

.program-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.program-card__college {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.program-card__college i {
  color: var(--gold-500);
  margin-left: 0.35rem;
}

.program-card__requirements {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.06);
  margin-bottom: 1rem;
}

.program-card__requirements i {
  color: var(--gold-500);
  margin-left: 0.35rem;
}

.programs-cta {
  padding: 0 0 3.5rem;
}

.programs-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
}

.programs-cta__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: #fff;
  margin-bottom: 0.35rem;
}

.programs-cta__desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}

.programs-cta__btn-outline {
  color: #fff !important;
  border-color: rgba(14, 165, 233, 0.45) !important;
}

@media (max-width: 991px) {
  .programs-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .programs-section {
    padding: 2rem 0 2.5rem;
  }

  .programs-highlights__grid {
    grid-template-columns: 1fr;
  }

  .programs-cta__inner {
    padding: 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .programs-cta__desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================
   Program Detail Page
   =========================== */
.program-detail-page .page-hero-title::after {
  display: none;
}

.program-detail-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.program-detail-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.program-detail-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.program-detail-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.program-detail-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}

.program-detail-highlight__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.program-detail-section {
  padding: 2.5rem 0 3.5rem;
}

.program-detail-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.program-detail-panel--tabs {
  padding: 0;
  overflow: hidden;
}

.program-detail-panel__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.program-detail-panel__title i {
  color: var(--gold-500);
}

.program-detail-sidebar {
  position: sticky;
  top: 120px;
}

.program-detail-reserve {
  text-align: center;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-top: 3px solid var(--gold-500);
}

.program-detail-reserve i {
  color: var(--gold-400);
}

.program-detail-reserve__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.program-detail-reserve__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.program-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.65rem 0;
}

.program-info-row + .program-info-row {
  border-top: 1px solid var(--glass-border);
}

.program-info-row__label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.program-info-row__value {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.program-detail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 1rem 1.25rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.program-detail-nav .nav-link {
  color: var(--text-secondary) !important;
  border: none;
  padding: 0.55rem 1rem;
  border-radius: 8px 8px 0 0;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.25s ease;
  background: transparent;
}

.program-detail-nav .nav-link::after {
  display: none;
}

.program-detail-nav .nav-link:hover {
  color: var(--gold-500) !important;
  background: rgba(14, 165, 233, 0.08);
}

.program-detail-nav .nav-link.active {
  color: var(--gold-500) !important;
  background: rgba(14, 165, 233, 0.1);
  border-bottom: 2px solid var(--gold-500);
}

.program-detail-tab-content {
  padding: 1.5rem 1.75rem 1.75rem;
}

.program-detail-tab__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.program-objectives-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.program-objective-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.program-objective-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.15);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  margin-top: 2px;
}

.program-courses-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.program-course-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.05);
  border: 1px solid rgba(14, 165, 233, 0.12);
  transition: background 0.25s ease;
}

.program-course-item:hover {
  background: rgba(14, 165, 233, 0.1);
}

.program-course-item__main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.program-course-item__code {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-500);
  background: rgba(14, 165, 233, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.program-course-item__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.program-course-item__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.program-course-item__credits {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.semester-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}

.semester-badge.core {
  background: rgba(14, 165, 233, 0.15);
  color: var(--gold-500);
  border: 1px solid rgba(14, 165, 233, 0.28);
}

.semester-badge.elective {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.semester-badge.required {
  background: rgba(168, 137, 78, 0.2);
  color: var(--gold-600);
  border: 1px solid rgba(168, 137, 78, 0.35);
}

.program-careers-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.program-career-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.14);
  font-size: 0.88rem;
  color: var(--text-primary);
}

.program-career-item i {
  color: var(--gold-500);
  flex-shrink: 0;
}

.program-faculty-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.05);
  border: 1px solid rgba(14, 165, 233, 0.14);
  height: 100%;
  transition: background 0.25s ease;
}

.program-faculty-card:hover {
  background: rgba(14, 165, 233, 0.1);
}

.program-faculty-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 2px solid rgba(14, 165, 233, 0.35);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.program-faculty-card__name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.program-faculty-card__specialty {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.program-faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.program-faq-item:last-child {
  margin-bottom: 0;
}

.program-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  transition: background 0.25s ease;
}

.program-faq-item__question:hover {
  background: rgba(14, 165, 233, 0.06);
}

.program-faq-item__question h6 {
  margin: 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.program-faq-item__question i {
  color: var(--gold-500);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.program-faq-item__question.active i {
  transform: rotate(180deg);
}

.program-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.15rem;
}

.program-faq-item__answer.open {
  max-height: 300px;
  padding: 0 1.15rem 1rem;
}

.program-faq-item__answer p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.program-related-item {
  display: block;
  padding: 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  margin-bottom: 0.65rem;
}

.program-related-item:last-child {
  margin-bottom: 0;
}

.program-related-item:hover {
  background: rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.2);
  transform: translateX(-4px);
}

.program-related-item__title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0.5rem 0 0.25rem;
  line-height: 1.45;
  transition: color 0.25s ease;
}

.program-related-item:hover .program-related-item__title {
  color: var(--gold-500);
}

.program-related-item__meta {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.program-related-item__meta i {
  color: var(--gold-500);
  margin-left: 0.35rem;
}

@media (max-width: 991px) {
  .program-detail-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-detail-sidebar {
    position: static;
  }

  .program-careers-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .program-detail-section {
    padding: 2rem 0 2.5rem;
  }

  .program-detail-highlights__grid {
    grid-template-columns: 1fr;
  }

  .program-detail-panel {
    padding: 1.25rem;
  }

  .program-detail-panel--tabs {
    padding: 0;
  }

  .program-detail-tab-content {
    padding: 1.25rem;
  }

  .program-detail-nav {
    padding: 0.75rem 0.75rem 0;
  }

  .program-detail-nav .nav-link {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }

  .program-course-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===========================
   Staff Detail Page
   =========================== */
.staff-detail-page .page-hero-title::after {
  display: none;
}

.staff-detail-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.staff-detail-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.staff-detail-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.staff-detail-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.staff-detail-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}

.staff-detail-highlight__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.staff-detail-section {
  padding: 2.5rem 0 3.5rem;
}

.staff-detail-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.staff-detail-panel__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.staff-detail-panel__title i {
  color: var(--gold-500);
}

.staff-detail-sidebar {
  position: sticky;
  top: 120px;
}

.staff-detail-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  color: #fff;
  background: var(--brand-accent);
  border: 4px solid rgba(14, 165, 233, 0.35);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.25);
}

.staff-detail-profile {
  text-align: center;
}

.staff-detail-profile__name {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.staff-detail-profile__role {
  font-size: 0.85rem;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.staff-detail-profile__college {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.staff-detail-contact-card {
  text-align: center;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-top: 3px solid var(--gold-500);
}

.staff-detail-contact-card i.fa-envelope {
  color: var(--gold-400);
}

.staff-detail-contact-card__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.staff-detail-contact-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.staff-detail-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.65rem 0;
}

.staff-detail-info-row + .staff-detail-info-row {
  border-top: 1px solid var(--glass-border);
}

.staff-detail-info-row__label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.staff-detail-info-row__value {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  word-break: break-word;
}

.staff-detail-pub {
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.staff-detail-pub:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.staff-detail-pub__title {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.staff-detail-pub__journal {
  font-size: 0.85rem;
  color: var(--gold-500);
}

.staff-detail-pub__year {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.staff-detail-award {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.06);
  margin-bottom: 0.65rem;
}

.staff-detail-award:last-child {
  margin-bottom: 0;
}

.staff-detail-award i {
  color: var(--gold-500);
  margin-top: 0.15rem;
}

.staff-detail-award span {
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 600;
}

.staff-detail-skill {
  margin-bottom: 1rem;
}

.staff-detail-skill:last-child {
  margin-bottom: 0;
}

.staff-detail-skill__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.staff-detail-skill__head span:first-child {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
}

.staff-detail-skill__head span:last-child {
  font-size: 0.8rem;
  color: var(--gold-500);
  font-family: 'Poppins', sans-serif;
}

.staff-detail-skill__bar {
  height: 8px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.staff-detail-skill__fill {
  height: 100%;
  background: var(--brand-accent);
  border-radius: 4px;
  transition: width 1s ease;
}

.staff-detail-social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.staff-detail-social .btn-glass {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .staff-detail-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .staff-detail-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .staff-detail-section {
    padding: 2rem 0 2.5rem;
  }

  .staff-detail-highlights__grid {
    grid-template-columns: 1fr;
  }

  .staff-detail-panel {
    padding: 1.25rem;
  }
}

/* ===========================
   Blog Components
   =========================== */
.blog-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 5px !important;
}

html[data-theme="dark"] .blog-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-image-wrapper {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 5px 5px 0 0 !important;
}

.blog-image-wrapper img {
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.1);
}

.blog-category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
}

.blog-meta {
  display: flex;
  gap: 15px;
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.blog-meta i {
  color: var(--accent-color);
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  /* Dark color for light mode */
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  /* Standard property */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

html[data-theme="dark"] .blog-title {
  color: white;
}

.read-more-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.read-more-link:hover {
  gap: 12px;
  color: white;
}

/* Blog Content (Detail Page) */
.blog-post-content {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 1.1rem;
}

.blog-post-content h2,
.blog-post-content h3 {
  color: white;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-post-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
}

.blog-sidebar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.sidebar-post-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  text-decoration: none;
}

.sidebar-post-img {
  width: 80px;
  height: 60px;
  border-radius: 5px;
  object-fit: cover;
}

.sidebar-post-title {
  font-size: 0.95rem;
  color: white;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* ===========================
   Blog Swiper Styles
   =========================== */
.blog-swiper .swiper-pagination-bullet {
  background: var(--text-secondary);
  opacity: 0.3;
}

.blog-swiper .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  width: 25px;
  border-radius: 5px;
}

.blog-swiper .swiper-button-next,
.blog-swiper .swiper-button-prev {
  color: white;
  background: var(--glass-bg);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.blog-swiper .swiper-button-next::after,
.blog-swiper .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.blog-swiper .swiper-button-next:hover,
.blog-swiper .swiper-button-prev:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

@media (max-width: 768px) {

  .blog-swiper .swiper-button-next,
  .blog-swiper .swiper-button-prev {
    display: none;
  }
}

/* Global overflow fix for sections with sliders */
section {
  overflow-x: hidden;
  position: relative;
}

/* ===========================
   Lesson Viewer Container
   =========================== */
.lesson-viewer-container {
  min-height: calc(100vh - 108px);
  padding: 0;
}

.lesson-viewer-wrapper {
  display: flex;
  gap: 0;
  max-width: 100%;
  margin: 0;
}

/* ===========================
   Lesson Sidebar
   =========================== */
.lesson-sidebar {
  width: 350px;
  min-width: 350px;
  height: calc(100vh - 108px);
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  border-right: 1px solid var(--glass-border);
  overflow: hidden;
}

.sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(14, 165, 233, 0.05);
}

.syllabus-content {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
}

/* Custom Scrollbar for Sidebar */
.syllabus-content::-webkit-scrollbar {
  width: 6px;
}

.syllabus-content::-webkit-scrollbar-track {
  background: transparent;
}

.syllabus-content::-webkit-scrollbar-thumb {
  background: rgba(14, 165, 233, 0.3);
  border-radius: 3px;
}

.syllabus-content::-webkit-scrollbar-thumb:hover {
  background: rgba(14, 165, 233, 0.5);
}

/* ===========================
   Course Section (Accordion)
   =========================== */
.course-section {
  border-bottom: 1px solid var(--glass-border);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

html[data-theme="dark"] .section-header {
  background: rgba(0, 0, 0, 0.2);
}

.section-header:hover {
  background: rgba(14, 165, 233, 0.08);
}

.section-header.collapsed {
  background: transparent;
}

.section-info {
  flex: 1;
}

.section-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.section-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  display: block;
}

.section-icon {
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.section-header.collapsed .section-icon {
  transform: rotate(-90deg);
}

/* ===========================
   Lessons List
   =========================== */
.lessons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lesson-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lesson-item:last-child {
  border-bottom: none;
}

.lesson-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lesson-link:hover {
  background: rgba(14, 165, 233, 0.08);
}

.lesson-status {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.lesson-item.completed .lesson-status {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.lesson-item.active .lesson-status {
  background: rgba(14, 165, 233, 0.2);
  color: var(--accent-color);
}

.lesson-item.locked .lesson-status {
  background: rgba(107, 114, 128, 0.15);
  color: #6b7280;
}

.lesson-item.active {
  background: rgba(14, 165, 233, 0.1);
  border-right: 3px solid var(--accent-color);
}

.lesson-info {
  flex: 1;
  min-width: 0;
}

.lesson-title {
  font-size: 0.9rem;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lesson-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.lesson-meta i {
  font-size: 0.75rem;
}

.duration {
  font-family: 'Poppins', sans-serif;
}

.lesson-item.locked .lesson-title {
  opacity: 0.6;
}

/* ===========================
   Main Content Area
   =========================== */
.lesson-main {
  flex: 1;
  padding: 1.5rem 2rem;
  min-width: 0;
}

/* ===========================
   Video Player Box
   =========================== */
.video-player-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  margin-bottom: 1.5rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  color: #fff;
  cursor: pointer;
}

.video-placeholder i {
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.video-placeholder:hover i {
  transform: scale(1.1);
  opacity: 1;
}

.video-placeholder span {
  font-size: 1rem;
  opacity: 0.7;
}

/* Video Controls */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-controls.visible {
  opacity: 1;
}

.video-player-box:hover .video-controls {
  opacity: 1;
}

.progress-bar-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.progress-bar {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.progress-filled {
  height: 100%;
  background: var(--accent-color);
  border-radius: 3px;
  position: relative;
}

.progress-handle {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.progress-bar:hover .progress-handle {
  opacity: 1;
}

.time-display {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
  min-width: 90px;
  text-align: left;
}

.controls-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.controls-right,
.controls-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.control-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.play-btn {
  font-size: 1.25rem;
}

.speed-label {
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
}

.volume-slider {
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease;
}

.controls-right:hover .volume-slider {
  width: 80px;
}

.volume-slider input[type="range"] {
  width: 80px;
  height: 4px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
}

.volume-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}

/* ===========================
   Lesson Info Header
   =========================== */
.lesson-info-header {
  margin-bottom: 1.5rem;
}

.lesson-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.lesson-breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lesson-breadcrumb a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.lesson-breadcrumb i {
  font-size: 0.7rem;
  opacity: 0.5;
}

.lesson-title-main {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.lesson-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.meta-item i {
  color: var(--accent-color);
}

.completed-badge {
  color: #22c55e !important;
}

.completed-badge i {
  color: #22c55e;
}

/* ===========================
   Lesson Tabs
   =========================== */
.lesson-tabs-container {
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.lesson-tabs {
  border-bottom: 1px solid var(--glass-border);
}

.lesson-tabs .nav-link {
  color: var(--text-secondary);
  border: none;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  transition: all 0.3s ease;
  background: transparent;
}

.lesson-tabs .nav-link:hover {
  color: var(--text-primary);
  background: rgba(14, 165, 233, 0.05);
}

.lesson-tabs .nav-link.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  background: rgba(14, 165, 233, 0.08);
}

.lesson-tab-content {
  padding: 1.5rem;
}

.lesson-highlights {
  padding-right: 1.5rem;
}

.lesson-highlights li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.lesson-instructor-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 8px;
}

.instructor-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

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

.instructor-details {
  display: flex;
  flex-direction: column;
}

.instructor-details .label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.instructor-details .name {
  font-weight: 600;
  color: var(--text-primary);
}

/* ===========================
   Resources Tab
   =========================== */
.resources-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
}

.resource-item:hover {
  background: var(--glass-hover-bg);
}

.resource-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.15);
  color: var(--accent-color);
  font-size: 1.25rem;
}

.resource-info {
  flex: 1;
}

.resource-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.resource-size {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ===========================
   Questions Tab
   =========================== */
.questions-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ask-question-form {
  border-radius: 10px;
}

.user-avatar-sm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.user-avatar-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.questions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.question-item {
  padding: 1.25rem;
  border-radius: 10px;
}

.question-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-info img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.question-time {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.question-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.question-answer {
  background: rgba(34, 197, 94, 0.08);
  border-right: 3px solid #22c55e;
  padding: 1rem;
  border-radius: 0 8px 8px 0;
}

.answer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 0.5rem;
}

.answer-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ===========================
   Lesson Navigation
   =========================== */
.lesson-navigation {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.nav-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--glass-hover-bg);
  transform: translateY(-2px);
}

.nav-btn i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.nav-info {
  display: flex;
  flex-direction: column;
}

.nav-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.nav-title {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.next-lesson {
  justify-content: flex-end;
  text-align: left;
}

.prev-lesson {
  justify-content: flex-start;
  text-align: right;
}

/* ===========================
   Mobile Sidebar Toggle
   =========================== */
.sidebar-toggle-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sidebar-toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(14, 165, 233, 0.5);
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1045;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ===========================
   Responsive Styles
   =========================== */
@media (max-width: 1199px) {
  .lesson-sidebar {
    width: 300px;
    min-width: 300px;
  }
}

@media (max-width: 991px) {
  .lesson-viewer-wrapper {
    flex-direction: column;
  }

  .lesson-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    z-index: 1050;
    border-radius: 0;
    border-left: 1px solid var(--glass-border);
    transition: right 0.3s ease;
  }

  .lesson-sidebar.open {
    right: 0;
  }

  .sidebar-toggle-btn {
    display: flex;
  }

  .lesson-main {
    padding: 1rem;
  }

  .lesson-title-main {
    font-size: 1.25rem;
  }

  .lesson-meta-info {
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .lesson-sidebar {
    width: 100%;
    right: -100%;
  }

  .lesson-navigation {
    flex-direction: column;
  }

  .nav-btn {
    justify-content: center !important;
    text-align: center !important;
  }

  .nav-info {
    align-items: center;
  }

  .video-controls {
    padding: 0.75rem 1rem;
  }

  .controls-buttons {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .volume-slider {
    display: none;
  }

  .lesson-tabs .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .lesson-tab-content {
    padding: 1rem;
  }

  .resource-item {
    flex-wrap: wrap;
  }

  .resource-item .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
}

@media (max-width: 575px) {
  .lesson-breadcrumb {
    flex-wrap: wrap;
    font-size: 0.8rem;
  }

  .meta-item {
    font-size: 0.85rem;
  }

  .sidebar-toggle-btn {
    bottom: 1.5rem;
    left: 1.5rem;
    width: 48px;
    height: 48px;
  }
}

/* ===========================
   Authentication Pages
   =========================== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: #0F172A;
}

.auth-page body,
body.auth-page {
  padding-top: 0;
  background: #0F172A;
}

/* Animated Background */
.auth-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.auth-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%);
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #38BDF8 0%, #38BDF8 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

.shape-4 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #38BDF8 0%, #e8dfd0 100%);
  top: 20%;
  left: 10%;
  animation-delay: -15s;
}

.shape-5 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #0F172A 0%, #38BDF8 100%);
  bottom: 20%;
  right: 15%;
  animation-delay: -7s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -30px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(20px, 10px) scale(1.02);
  }
}

.auth-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Auth Container */
.auth-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.auth-wrapper {
  display: flex;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

/* Centered wrapper for forgot password */
.auth-wrapper-centered {
  max-width: 500px;
  margin: 0 auto;
}

/* Branding Section */
.auth-branding {
  flex: 1;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(212, 184, 150, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.auth-branding::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.branding-content {
  position: relative;
  z-index: 2;
}

.auth-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.auth-logo i {
  font-size: 2rem;
  color: var(--accent-color);
}

.auth-logo .accent {
  color: var(--accent-color);
}

.branding-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.branding-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.branding-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-text h6 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Floating Cards Decoration */
.branding-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card i {
  color: var(--accent-color);
}

.card-1 {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 45%;
  left: 5%;
  animation-delay: -2s;
}

.card-3 {
  bottom: 20%;
  right: 15%;
  animation-delay: -4s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* Form Section */
.auth-form-section {
  width: 500px;
  flex-shrink: 0;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.auth-form-wrapper {
  width: 100%;
}

.auth-header-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.auth-mobile-logo {
  display: none;
  text-align: center;
  margin-bottom: 2rem;
}

.auth-mobile-logo a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.auth-mobile-logo i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.auth-mobile-logo .accent {
  color: var(--accent-color);
}

.auth-form-header {
  margin-bottom: 2rem;
}

.auth-form-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.auth-form-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Social Login Buttons */
.social-login {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--glass-hover-bg);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.social-btn.google svg {
  flex-shrink: 0;
}

.social-btn.facebook {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.social-btn.facebook:hover {
  background: #166fe5;
  border-color: #166fe5;
}

/* Auth Divider */
.auth-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--glass-border);
}

.auth-divider span {
  padding: 0 1rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Auth Form */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 0;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-label i {
  color: var(--accent-color);
  font-size: 0.85rem;
}

.input-wrapper {
  position: relative;
}

.input-wrapper .form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  padding-left: 2.75rem;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

html[data-theme="dark"] .input-wrapper .form-control {
  background: rgba(0, 0, 0, 0.2);
}

.input-wrapper .form-control::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.input-wrapper .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.input-focus-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.input-wrapper.focused .input-focus-border,
.input-wrapper .form-control:focus+.input-focus-border {
  width: 100%;
}

/* Password Toggle */
.password-toggle {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: var(--accent-color);
}

/* Phone Input */
.phone-input {
  display: flex;
  gap: 0.5rem;
}

.phone-code {
  width: 100px;
  flex-shrink: 0;
  padding: 0.875rem 0.5rem;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 0.9rem;
  text-align: center;
}

html[data-theme="dark"] .phone-code {
  background: rgba(0, 0, 0, 0.2);
}

.phone-input .form-control {
  flex: 1;
  padding-left: 1rem;
}

/* Password Strength */
.password-strength {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.strength-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.strength-fill.weak {
  background: #ef4444;
}

.strength-fill.medium {
  background: #f59e0b;
}

.strength-fill.strong {
  background: #22c55e;
}

.strength-fill.very-strong {
  background: linear-gradient(90deg, #22c55e, #10b981);
}

.strength-text {
  font-size: 0.75rem;
  font-weight: 500;
  min-width: 80px;
}

.strength-text.weak {
  color: #ef4444;
}

.strength-text.medium {
  color: #f59e0b;
}

.strength-text.strong,
.strength-text.very-strong {
  color: #22c55e;
}

/* Password Match */
.password-match {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.password-match.match {
  color: #22c55e;
}

.password-match.no-match {
  color: #ef4444;
}

/* Checkbox */
.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
}

.checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--glass-border);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-wrapper:hover .checkmark {
  border-color: var(--accent-color);
}

.checkbox-wrapper input:checked+.checkmark {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.checkbox-wrapper input:checked+.checkmark::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: #fff;
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.checkbox-label a {
  color: var(--accent-color);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Form Options */
.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.forgot-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.forgot-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* Auth Button */
.btn-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-auth::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-auth:hover::before {
  left: 100%;
}

.btn-auth:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
}

.btn-auth .btn-text {
  transition: opacity 0.2s ease;
}

.btn-auth .btn-icon {
  transition: transform 0.3s ease;
}

.btn-auth:hover .btn-icon {
  transform: translateX(-5px);
}

.btn-auth .btn-loader {
  display: none;
}

.btn-auth.loading .btn-text,
.btn-auth.loading .btn-icon {
  opacity: 0;
}

.btn-auth.loading .btn-loader {
  display: block;
  position: absolute;
}

.btn-block {
  width: 100%;
}

/* Auth Footer */
.auth-footer {
  margin-top: 2rem;
  text-align: center;
}

.auth-footer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.auth-footer a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Forgot Password Page Styles */
.auth-card-only {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.auth-logo-centered {
  text-align: center;
  margin-bottom: 1.5rem;
}

.auth-logo-centered a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.auth-logo-centered i {
  font-size: 2rem;
  color: var(--accent-color);
}

.auth-logo-centered .accent {
  color: var(--accent-color);
}

.auth-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.auth-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(212, 184, 150, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-color);
  border: 2px solid rgba(14, 165, 233, 0.3);
}

/* Steps Container */
.auth-steps-container {
  position: relative;
  min-height: 200px;
}

.auth-step {
  display: none;
}

.auth-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Email Sent Animation */
.email-sent-animation {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.email-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(212, 184, 150, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent-color);
}

.checkmark-circle {
  position: absolute;
  bottom: -5px;
  right: calc(50% - 60px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  animation: popIn 0.3s ease 0.5s both;
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.email-sent-content {
  text-align: center;
}

.email-sent-content h4 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.email-sent-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.sent-email {
  display: inline-block;
  background: rgba(14, 165, 233, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.countdown-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.countdown-text .count {
  font-weight: 700;
  color: var(--accent-color);
  font-family: 'Poppins', sans-serif;
}

/* Success Animation */
.success-animation {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.success-checkmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPulse 0.5s ease;
}

@keyframes successPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.check-icon {
  position: relative;
  width: 50px;
  height: 50px;
}

.icon-line {
  position: absolute;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  animation: checkLine 0.3s ease 0.3s both;
}

.line-tip {
  width: 25px;
  top: 28px;
  left: 5px;
  transform: rotate(45deg);
  transform-origin: left center;
}

.line-long {
  width: 40px;
  top: 24px;
  left: 15px;
  transform: rotate(-45deg);
  transform-origin: left center;
  animation-delay: 0.4s;
}

@keyframes checkLine {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.success-content {
  text-align: center;
}

.success-content h4 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.success-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Back to Login Link */
.back-to-login {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.back-to-login:hover {
  color: var(--accent-color);
}

/* Responsive Styles for Auth Pages */
@media (max-width: 1199px) {
  .auth-wrapper {
    max-width: 900px;
  }

  .auth-branding {
    padding: 2rem;
  }

  .branding-title {
    font-size: 2rem;
  }

  .auth-form-section {
    width: 450px;
    padding: 2rem;
  }
}

@media (max-width: 991px) {
  .auth-container {
    padding: 1rem;
  }

  .auth-wrapper {
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }

  .auth-branding {
    display: none;
  }

  .auth-form-section {
    width: 100%;
    padding: 2rem;
  }

  .auth-mobile-logo {
    display: block;
  }
}

@media (max-width: 767px) {
  .auth-container {
    padding: 1rem;
  }

  .auth-form-section {
    padding: 1.5rem;
  }

  .auth-form-header h2 {
    font-size: 1.5rem;
  }

  .social-login {
    flex-direction: column;
  }

  .social-btn {
    width: 100%;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
  }

  .auth-card-only {
    padding: 1.5rem;
  }

  .auth-logo-centered a {
    font-size: 1.25rem;
  }

  .auth-icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 575px) {
  .auth-form-header h2 {
    font-size: 1.35rem;
  }

  .branding-features {
    display: none;
  }

  .phone-input {
    flex-direction: column;
  }

  .phone-code {
    width: 100%;
  }
}

/* ===========================
   University Website Styles
   =========================== */

/* College Cards */
.college-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

.college-card .college-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.college-card:hover .college-icon {
  transform: scale(1.1) rotate(-5deg);
}

.college-card:hover {
  transform: translateY(-8px);
}

.college-card .college-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #38BDF8);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.college-card:hover .college-overlay {
  transform: scaleX(1);
}

/* Department Cards — legacy edge accent (exclude structured dept layouts) */
body:not(.college-detail-page):not(.departments-page) .dept-card {
  transition: all 0.3s ease;
  border-right: 4px solid transparent;
}

body:not(.college-detail-page):not(.departments-page) .dept-card:hover {
  border-right-color: var(--accent-color);
  transform: translateX(-5px);
}

/* Program Cards */
.program-card {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-color), #38BDF8);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.program-card:hover::before {
  transform: scaleY(1);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--glass-shadow);
}

.program-level-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.level-bachelor {
  background: rgba(14, 165, 233, 0.12);
  color: var(--gold-400);
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.level-master {
  background: rgba(14, 165, 233, 0.2);
  color: var(--gold-500);
  border: 1px solid rgba(14, 165, 233, 0.35);
}

.level-phd {
  background: rgba(168, 137, 78, 0.25);
  color: var(--gold-600);
  border: 1px solid rgba(168, 137, 78, 0.4);
}

/* Staff Cards */
.staff-card {
  transition: all 0.4s ease;
  overflow: hidden;
}

.staff-card .staff-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--accent-color);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(212, 184, 150, 0.1));
}

.staff-card:hover .staff-image {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.3);
}

.staff-card .staff-image i {
  font-size: 3rem;
  color: var(--accent-color);
}

.staff-card:hover {
  transform: translateY(-8px);
}

.staff-position {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 600;
}

/* News Cards */
.news-card {
  transition: all 0.4s ease;
}

.news-card .news-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.news-card:hover .news-image img,
.news-card:hover .news-image .news-placeholder {
  transform: scale(1.1);
}

.news-date-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  text-align: center;
  line-height: 1.2;
  z-index: 2;
}

.news-date-badge .day {
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
}

.news-date-badge .month {
  font-size: 0.7rem;
  text-transform: uppercase;
}

/* Event Cards */
.event-card {
  transition: all 0.3s ease;
  border-right: 4px solid var(--accent-color);
}

.event-card:hover {
  transform: translateX(-5px);
  box-shadow: 0 10px 30px var(--glass-shadow);
}

.event-date-box {
  width: 70px;
  text-align: center;
  flex-shrink: 0;
}

.event-date-box .day {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.event-date-box .month {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* Filter Tabs */
.filter-tabs .nav-link {
  color: var(--text-secondary) !important;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: rgba(14, 165, 233, 0.08);
}

.filter-tabs .nav-link::after {
  display: none;
}

.filter-tabs .nav-link:hover {
  color: var(--accent-color) !important;
  background: rgba(14, 165, 233, 0.15);
}

.filter-tabs .nav-link.active {
  color: #fff !important;
  background: var(--accent-color);
}

/* Timeline */
.timeline {
  position: relative;
  padding-right: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-color), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  right: -33px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-color);
  border: 3px solid var(--page-bg);
  box-shadow: 0 0 0 3px var(--accent-color);
}

/* Contact Form */
.contact-form .form-control,
.contact-form .form-select {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
  background: var(--glass-hover-bg);
}

.contact-info-card {
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-info-card .info-icon {
  width: 55px;
  height: 55px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(14, 165, 233, 0.15);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact-info-card:hover .info-icon {
  background: var(--accent-color);
  color: #fff;
  transform: rotate(-10deg);
}

/* Map Container */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* Research Cards */
.research-card {
  transition: all 0.4s ease;
}

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

.research-card .research-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(14, 165, 233, 0.15);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.research-card:hover .research-icon {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
}

/* Admission Steps */
.admission-step {
  position: relative;
  padding-right: 60px;
  padding-bottom: 2rem;
}

.admission-step::before {
  content: attr(data-step);
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.admission-step::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50px;
  bottom: 0;
  width: 2px;
  background: rgba(14, 165, 233, 0.35);
}

.admission-step:last-child::after {
  display: none;
}

/* Hero University */
.hero-university {
  min-height: 95vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-university .hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-university .particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 10s infinite ease-in-out;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  25% { transform: translateY(-30px) translateX(15px); opacity: 0.6; }
  50% { transform: translateY(-10px) translateX(-20px); opacity: 0.2; }
  75% { transform: translateY(-40px) translateX(10px); opacity: 0.5; }
}

/* Vision Mission Cards */
.vm-card {
  transition: all 0.4s ease;
  position: relative;
}

.vm-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--accent-color);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.vm-card:hover::after {
  width: 60%;
}

.vm-card:hover {
  transform: translateY(-8px);
}

.vm-card .vm-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  background: rgba(14, 165, 233, 0.15);
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.vm-card:hover .vm-icon {
  transform: rotateY(180deg);
  background: var(--accent-color);
  color: #fff;
}

/* Values Grid */
.value-item {
  transition: all 0.3s ease;
  padding: 1.5rem;
  border-radius: 12px;
}

.value-item:hover {
  background: var(--glass-hover-bg);
  transform: translateY(-3px);
}

.value-item .value-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(14, 165, 233, 0.12);
  color: var(--accent-color);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background: var(--accent-color);
  color: #fff;
}

/* President Quote */
.president-quote {
  position: relative;
  padding: 2rem;
}

.president-quote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 5rem;
  color: var(--accent-color);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

/* Stats Counter */
.stat-card {
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card .stat-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
  background: rgba(14, 165, 233, 0.15);
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.15) rotate(-5deg);
  background: var(--accent-color);
  color: #fff;
}

/* Publication Card */
.pub-card {
  transition: all 0.3s ease;
}

.pub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--glass-shadow);
}

/* Home CTA Section */
.home-cta {
  padding: 0 0 3.5rem;
}

.home-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.25rem 2.5rem;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  overflow: hidden;
}

.home-cta__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-bottom: 1px solid rgba(14, 165, 233, 0.12);
  border-right: 1px solid rgba(14, 165, 233, 0.12);
  border-radius: 0 0 16px 0;
  pointer-events: none;
}

.home-cta__decor {
  flex-shrink: 0;
}

.home-cta__icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.12);
  border: 2px solid rgba(14, 165, 233, 0.35);
  color: var(--gold-400);
  font-size: 1.65rem;
}

.home-cta__content {
  min-width: 0;
}

.home-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.home-cta__badge i {
  font-size: 0.7rem;
}

.home-cta__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  color: #fff;
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

.home-cta__title span {
  color: var(--gold-400);
}

.home-cta__desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 540px;
}

.home-cta__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-cta__perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.home-cta__perks li i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.18);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  flex-shrink: 0;
}

.home-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.home-cta__btn-primary {
  white-space: nowrap;
  font-weight: 700;
}

.home-cta__btn-outline {
  color: #fff !important;
  border-color: rgba(14, 165, 233, 0.45) !important;
  white-space: nowrap;
}

html[data-theme="light"] .home-cta__inner {
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] .home-cta__inner {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

@media (max-width: 991px) {
  .home-cta__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
  }

  .home-cta__decor {
    display: none;
  }

  .home-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .home-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .home-cta__actions .btn {
    width: 100%;
  }

  .home-cta__perks {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

/* News Swiper — Home */
.home-news-section {
  background: var(--surface-muted);
}

.home-news-section .section-head__title::after {
  display: none;
}

.home-news-all-btn {
  color: var(--text-primary) !important;
  border-color: rgba(14, 165, 233, 0.4) !important;
  font-weight: 600;
  white-space: nowrap;
}

.home-news-all-btn:hover {
  border-color: var(--gold-500) !important;
  color: var(--gold-500) !important;
}

.home-news-nav__btn,
.home-carousel-nav__btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid rgba(14, 165, 233, 0.35);
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  padding: 0;
}

.home-news-nav__btn:hover:not(.swiper-button-disabled),
.home-carousel-nav__btn:hover:not(.swiper-button-disabled) {
  background: var(--gold-500);
  color: #fff;
  border-color: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.35);
}

.home-news-nav__btn.swiper-button-disabled,
.home-carousel-nav__btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

html[data-theme="light"] .home-news-nav__btn,
html[data-theme="light"] .home-carousel-nav__btn {
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.home-news-slider {
  position: relative;
}

.news-swiper {
  padding-bottom: 2.75rem !important;
  overflow: hidden;
}

.news-swiper .swiper-slide {
  height: auto;
}

.news-swiper .swiper-slide > a {
  display: block;
  height: 100%;
}

.news-swiper .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 1.75rem;
}

.news-swiper .swiper-pagination-bullet {
  background: var(--gold-500);
  opacity: 0.25;
  width: 8px;
  height: 8px;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.news-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 575px) {
  .home-news-nav__btn,
  .home-carousel-nav__btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}

/* Staff Swiper — Home */
.home-staff-section .section-head__title::after {
  display: none;
}

.home-staff-all-btn {
  color: var(--text-primary) !important;
  border-color: rgba(14, 165, 233, 0.4) !important;
  font-weight: 600;
  white-space: nowrap;
}

.home-staff-all-btn:hover {
  border-color: var(--gold-500) !important;
  color: var(--gold-500) !important;
}

.home-staff-toolbar {
  max-width: 100%;
}

.staff-swiper {
  padding-bottom: 2.75rem !important;
  overflow: hidden;
}

.staff-swiper .swiper-slide {
  height: auto;
}

.staff-swiper .swiper-slide > a {
  display: block;
  height: 100%;
}

.staff-swiper .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 1.75rem;
}

.staff-swiper .swiper-pagination-bullet {
  background: var(--gold-500);
  opacity: 0.25;
  width: 8px;
  height: 8px;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.staff-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

/* Responsive University Styles */
@media (max-width: 767px) {
  .hero-university {
    min-height: 80vh;
    padding-top: 100px;
  }
  
  .timeline {
    padding-right: 30px;
  }
  
  .admission-step {
    padding-right: 50px;
  }
}

/* ============================================
   Admission Form Styles
   ============================================ */
#admission-form .form-control,
#admission-form .form-select {
  padding: 0.7rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

#admission-form .form-control:focus,
#admission-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

#admission-form .form-control::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

#admission-form .form-control.is-invalid,
#admission-form .form-select.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

#admission-form .form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.15em;
  cursor: pointer;
}

#admission-form .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

#admission-form input[type="file"] {
  padding: 0.5rem;
  font-size: 0.85rem;
}

#admission-form input[type="file"]::file-selector-button {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  margin-left: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#admission-form input[type="file"]::file-selector-button:hover {
  background: var(--accent-hover);
}

@media (max-width: 767px) {
  #admission-form {
    padding: 1.5rem !important;
  }
  
  #admission-form h4 {
    font-size: 1.2rem;
  }
}

/* ============================================
   Accreditation Cards
   ============================================ */
.accreditation-card {
  transition: all 0.4s ease;
  border: 1px solid var(--glass-border);
  cursor: default;
}

.accreditation-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.2);
}

.accreditation-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.accreditation-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(212, 184, 150, 0.08));
  color: var(--accent-color);
  border: 2px solid rgba(14, 165, 233, 0.2);
  transition: all 0.4s ease;
}

.accreditation-card:hover .accreditation-icon-wrapper {
  background: linear-gradient(135deg, var(--accent-color), #38BDF8);
  color: #fff;
  border-color: var(--accent-color);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.accreditation-card h6 {
  letter-spacing: 0.5px;
}

@media (max-width: 767px) {
  .accreditation-icon-wrapper {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }
  
  .accreditation-card {
    padding: 1rem !important;
  }
}

/* ============================================
   Library Book Cards
   ============================================ */
.book-card {
  transition: all 0.4s ease;
  overflow: hidden;
  cursor: pointer;
}

.book-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.25);
}

.book-cover {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}

.book-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
}

.book-cover i {
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.book-card:hover .book-cover i {
  transform: scale(1.15) rotate(-5deg);
}

.book-category-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.65rem;
  font-weight: 600;
  z-index: 2;
}

.book-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.5;
}

.availability-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.availability-dot.available {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.availability-dot.unavailable {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

@media (max-width: 767px) {
  .book-cover {
    height: 150px;
    font-size: 2.5rem;
  }
  
  .book-card .p-3 {
    padding: 0.75rem !important;
  }
}

/* ===========================
   Hero Carousel — Cinematic
   =========================== */
.hero-carousel {
  --hero-nav-offset: 108px;
  position: relative;
  margin-top: calc(-1 * var(--hero-nav-offset));
  padding-top: var(--hero-nav-offset);
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: var(--navy-900);
  overflow: hidden;
}

.hero-wave {
  display: none;
}

.hero-carousel__edge {
  height: 3px;
  background: var(--gold-500);
  position: relative;
  z-index: 4;
  flex-shrink: 0;
}

.hero-stats-section {
  background: var(--page-bg);
  padding: 2rem 0 3.5rem;
  position: relative;
}

html[data-theme="dark"] .hero-stats-section {
  background: var(--page-bg);
}

/* Home — About University Section */
.home-about-section {
  padding: 4.5rem 0;
  background: var(--page-bg);
  border-top: 1px solid rgba(14, 165, 233, 0.1);
}

.home-about-content {
  max-width: 540px;
}

.home-about-head {
  margin-bottom: 1.75rem;
}

.home-about-section .section-head__title::after {
  display: none;
}

.home-about-head .section-head__title {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.45;
  margin-bottom: 1rem;
  max-width: 22ch;
}

.home-about-head__lead {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin: 0;
  max-width: 46ch;
}

.home-about-content__text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.home-about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-about-features__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.home-about-features__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.22);
  color: #0EA5E9;
  font-size: 0.95rem;
}

.home-about-features__title {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  line-height: 1.4;
}

.home-about-features__desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.home-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* About — single image visual */
.home-about-visual {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

.home-about-visual__figure {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(14, 165, 233, 0.28);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
  background: #0F172A;
}

.home-about-visual__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-about-visual__badge {
  position: absolute;
  inset-inline-start: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0;
  border-radius: 50%;
  background: #0F172A;
  border: 2px solid rgba(14, 165, 233, 0.4);
  text-align: center;
  line-height: 1.15;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
}

.home-about-visual__badge-value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0EA5E9;
}

.home-about-visual__badge-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  color: #E2E8F0;
  padding: 0 0.3rem;
}

.home-about-visual__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.home-about-visual__stat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: #0F172A;
  border: 1px solid rgba(14, 165, 233, 0.22);
  color: #E2E8F0;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
}

.home-about-visual__stat i {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.15);
  color: #0EA5E9;
  font-size: 0.8rem;
}

.home-about-visual__stat strong {
  color: #0EA5E9;
  font-weight: 800;
}

@media (min-width: 992px) {
  .home-about-content {
    padding-inline-end: 1.5rem;
  }

  .home-about-visual {
    max-width: none;
    margin-inline: 0;
    padding-inline-start: 0.5rem;
  }
}

@media (max-width: 991.98px) {
  .home-about-section {
    padding: 3.5rem 0;
  }

  .home-about-content {
    max-width: none;
  }

  .home-about-head .section-head__title {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .home-about-section {
    padding: 2.75rem 0;
  }

  .home-about-visual__badge {
    width: 68px;
    height: 68px;
  }

  .home-about-visual__badge-value {
    font-size: 1.05rem;
  }

  .home-about-visual__stats {
    grid-template-columns: 1fr;
  }
}

.hero-visual {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  --hero-controls-h: 84px;
}

/* Gold autoplay progress bar */
.hero-progress {
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 3px;
  z-index: 12;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-500);
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.6);
  transition: width 0.05s linear;
}

@media (prefers-reduced-motion: reduce) {
  .hero-progress {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-carousel {
    --hero-nav-offset: 70px;
  }
}

.hero-swiper {
  width: 100%;
  flex: 1;
  height: 100%;
  min-height: 0;
  max-height: none;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

/* Ken Burns background */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.25);
  transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide-bg--crop {
  background-position: center 30%;
}

.hero-swiper .swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}

/* Cinematic overlays — image stays visible; text lives in .hero-luxury-panel */
.hero-slide-overlay {
  display: none;
}

.hero-slide-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.9) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.9) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Content — bottom-start RTL (يمين الشاشة) */
.hero-slide-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.25rem 0 calc(var(--hero-controls-h) + 1.5rem);
  overflow: hidden;
}

.hero-slide-inner .container {
  width: 100%;
}

.hero-luxury-panel {
  position: relative;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-top: 3px solid var(--gold-500);
  border-radius: 20px;
  padding: clamp(1.1rem, 2vw, 1.85rem);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  max-height: calc(100% - 0.5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-luxury-panel::before {
  content: '';
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  width: 40px;
  height: 40px;
  border-top: 1px solid rgba(14, 165, 233, 0.4);
  border-inline-end: 1px solid rgba(14, 165, 233, 0.4);
  border-start-start-radius: 0;
  border-start-end-radius: 10px;
  pointer-events: none;
}

.hero-cinematic-content {
  text-align: start;
  position: relative;
  z-index: 1;
}

@keyframes heroCinematicIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.swiper-slide-active .hero-cinematic-content > * {
  animation: heroCinematicIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.swiper-slide-active .hero-cinematic-content > .hero-slide-badge {
  animation-delay: 0.1s;
}

.swiper-slide-active .hero-cinematic-content > .hero-slide-title {
  animation-delay: 0.2s;
}

.swiper-slide-active .hero-cinematic-content > .hero-slide-desc {
  animation-delay: 0.35s;
}

.swiper-slide-active .hero-cinematic-content > .hero-ctas {
  animation-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  .swiper-slide-active .hero-cinematic-content > * {
    animation: none;
  }
}

.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.4);
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero-slide-title {
  font-family: 'Alexandria', 'Cairo', sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff !important;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

.hero-slide-title .text-accent {
  color: var(--gold-400);
}

.hero-slide-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.88rem, 1.6vw, 1.05rem);
  line-height: 1.75;
  margin-bottom: 1.15rem;
  max-width: 560px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gold-500);
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.35);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-hero-primary:hover {
  background: var(--gold-400);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(14, 165, 233, 0.45);
  color: #fff !important;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(14, 165, 233, 0.4);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: var(--gold-500);
  color: var(--gold-400) !important;
  transform: translateY(-2px);
}

/* Bottom controls bar */
.hero-bottom-bar {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 11;
  padding: 1.25rem 0 1.5rem;
  background: rgba(15, 23, 42, 0.55);
  border-top: 1px solid rgba(14, 165, 233, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-bottom-bar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.hero-slide-counter {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Poppins', 'Alexandria', sans-serif;
  color: #fff;
  min-width: 72px;
}

.hero-slide-counter__current {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}

.hero-slide-counter__line {
  width: 28px;
  height: 1px;
  background: rgba(14, 165, 233, 0.45);
}

.hero-slide-counter__total {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
}

.hero-controls-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(14, 165, 233, 0.4);
  background: rgba(15, 23, 42, 0.5);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
  padding: 0;
  font-size: 0.85rem;
}

.hero-nav-btn:hover:not(.swiper-button-disabled) {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.35);
}

.hero-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.hero-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-pagination .swiper-pagination-bullet {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.22);
  opacity: 1;
  margin: 0 !important;
  transition: width 0.35s ease, background 0.35s ease;
  cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 52px;
  background: var(--gold-500);
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.45);
}

.hero-stats-container {
  position: relative;
  padding-bottom: 3.5rem;
}

@media (max-width: 991px) {
  .hero-bottom-bar__inner {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 767px) {
  .hero-visual {
    --hero-controls-h: 112px;
  }

  .hero-slide-inner {
    padding: 0.85rem 0 calc(var(--hero-controls-h) + 1.25rem);
    align-items: flex-end;
  }

  .hero-luxury-panel {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .hero-slide-title {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .hero-slide-desc {
    -webkit-line-clamp: 2;
    margin-bottom: 0.85rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.7rem 1.35rem;
    font-size: 0.92rem;
  }

  .hero-bottom-bar {
    padding: 0.85rem 0 1rem;
  }

  .hero-bottom-bar__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.75rem 1rem;
  }

  .hero-slide-counter {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-controls-nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .hero-pagination {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
  }

  .hero-nav-btn {
    width: 42px;
    height: 42px;
  }

  .hero-stats-section {
    padding: 1.75rem 0 2.5rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    justify-content: center;
    width: 100%;
  }
}

@media (max-height: 720px) and (min-width: 768px) {
  .hero-visual {
    --hero-controls-h: 78px;
  }

  .hero-slide-inner {
    padding-bottom: calc(var(--hero-controls-h) + 1.15rem);
  }

  .hero-slide-title {
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    margin-bottom: 0.65rem;
  }

  .hero-slide-desc {
    -webkit-line-clamp: 2;
    margin-bottom: 0.75rem;
  }

  .hero-luxury-panel {
    padding: 1rem 1.15rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Portal Dropdown */
.portal-dropdown .dropdown-toggle::after {
  margin-right: 0.35em;
}

.portal-menu {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 200px;
  box-shadow: 0 8px 32px var(--glass-shadow);
}

.portal-menu .dropdown-item {
  color: var(--text-primary);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.portal-menu .dropdown-item:hover,
.portal-menu .dropdown-item:focus {
  background: rgba(14, 165, 233, 0.15);
  color: var(--accent-color);
}

.portal-menu .dropdown-item.active {
  background: rgba(14, 165, 233, 0.2);
  color: var(--accent-color);
}

/* Section title gold underline */
.section-title-accent {
  position: relative;
  display: inline-block;
}

.section-title-accent::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  border-radius: 2px;
}

/* College card with image */
.college-card.has-image {
  min-height: 160px;
  overflow: hidden;
}

.college-card.has-image .college-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.college-card.has-image:hover .college-bg {
  opacity: 0.5;
  transform: scale(1.05);
}

.college-card.has-image .college-icon,
.college-card.has-image h5,
.college-card.has-image h6 {
  position: relative;
  z-index: 2;
}

.college-card.has-image .college-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.85) 100%);
}

/* ===========================
   Premium Unified Cards — Homepage
   =========================== */
.section-head {
  position: relative;
}

.section-head--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.section-head__title {
  font-family: 'Alexandria', 'Cairo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
  position: relative;
  display: block;
  width: 100%;
}

.section-head--center .section-head__title {
  display: inline-block;
  width: auto;
}

.section-head__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  border-radius: 2px;
}

.section-head--center .section-head__title::after {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.section-head__desc {
  max-width: 560px;
  margin: 1.5rem auto 0;
  color: var(--text-secondary);
  text-align: center;
}

/* Base card */
.uni-card {
  --uni-card-radius: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: var(--uni-card-radius);
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
  box-shadow:
    0 4px 20px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .uni-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 246, 242, 0.85) 100%);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.uni-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(14, 165, 233, 0.08),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.uni-card:hover::before {
  left: 150%;
}

.uni-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-600));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.uni-card:hover {
  transform: translateY(-10px);
  border-color: rgba(14, 165, 233, 0.55);
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(14, 165, 233, 0.15),
    0 0 40px rgba(14, 165, 233, 0.1);
}

.uni-card:hover::after {
  transform: scaleX(1);
}

.uni-card > * {
  position: relative;
  z-index: 2;
}

/* Unified icon */
.uni-card__icon,
.uni-card .stat-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin: 0 auto 1.25rem;
  color: var(--accent-color);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(14, 165, 233, 0.06));
  border: 1px solid rgba(14, 165, 233, 0.3);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.12);
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.uni-card:hover .uni-card__icon,
.uni-card:hover .stat-icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: #fff;
  border-color: var(--gold-400);
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.35);
}

/* Stat cards */
.uni-card--stat {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-top: 3px solid var(--gold-500);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uni-card--stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

html[data-theme="dark"] .uni-card--stat {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .uni-card--stat:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.uni-card--stat .counter {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

html[data-theme="dark"] .uni-card--stat .counter {
  color: #fff;
}

/* Feature cards */
.uni-card--feature {
  padding: 2rem 1.5rem;
  text-align: center;
  align-items: center;
}

.uni-card--feature .uni-card__icon {
  border-radius: 50%;
  width: 68px;
  height: 68px;
  font-size: 1.5rem;
}

.uni-card--feature h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

html[data-theme="dark"] .uni-card--feature h5,
html[data-theme="dark"] .uni-card--program h5,
html[data-theme="dark"] .uni-card--accreditation h6 {
  color: #fff;
}

/* College cards — Home */
.home-colleges-section .section-head__title::after {
  display: none;
}

.home-colleges-all-btn {
  color: var(--text-primary) !important;
  border-color: rgba(14, 165, 233, 0.4) !important;
  font-weight: 600;
  white-space: nowrap;
}

.home-colleges-all-btn:hover {
  border-color: var(--gold-500) !important;
  color: var(--gold-500) !important;
}

.uni-card--college {
  padding: 0;
  min-height: auto;
  text-align: center;
  border-radius: 16px;
  border-top: 3px solid var(--gold-500);
  background: var(--glass-bg);
  overflow: hidden;
  cursor: pointer;
  justify-content: flex-start;
}

html[data-theme="light"] .uni-card--college {
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

html[data-theme="dark"] .uni-card--college {
  background: rgba(255, 255, 255, 0.03);
}

.uni-card--college::before,
.uni-card--college::after {
  display: none;
}

.uni-card--college:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

html[data-theme="dark"] .uni-card--college:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.uni-card--college__head {
  background: var(--navy-900);
  padding: 1.35rem 1rem;
  border-bottom: 1px solid rgba(14, 165, 233, 0.15);
}

.uni-card--college .college-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 1.3rem;
  margin: 0 auto;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.uni-card--college:hover .college-icon {
  background: var(--gold-500);
  color: #fff;
  border-color: var(--gold-500);
  transform: scale(1.06);
}

.uni-card--college__body {
  padding: 1rem 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.uni-card--college h6 {
  color: var(--text-primary) !important;
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

.uni-card--college__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-500);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.uni-card--college:hover .uni-card--college__link {
  opacity: 1;
  transform: translateY(0);
}

.uni-card--college__link i {
  transition: transform 0.25s ease;
}

.uni-card--college:hover .uni-card--college__link i {
  transform: translateX(-3px);
}

.home-colleges-section .row > [class*="col-"] > a {
  display: block;
  height: 100%;
}

/* Legacy college-bg/scrim — colleges page only */
.uni-card--college .college-bg,
.uni-card--college .college-scrim,
.uni-card--college .college-arrow {
  display: none;
}

/* Accreditation */
.uni-card--accreditation {
  padding: 1.75rem 1rem;
  text-align: center;
}

.uni-card--accreditation .accreditation-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

/* Program cards */
.uni-card--program {
  padding: 2rem 1.5rem;
  text-align: center;
}

.uni-card--program .program-level-badge {
  background: rgba(14, 165, 233, 0.15);
  color: var(--gold-400);
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.uni-card--program .program-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin: 1rem 0;
  transition: transform 0.4s ease;
}

.uni-card--program:hover .program-icon {
  transform: scale(1.12);
}

.uni-card--program .uni-card__cta {
  margin-top: auto;
  padding-top: 1rem;
}

.uni-card--program .btn-glass {
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.uni-card--program:hover .btn-glass {
  background: var(--gold-500);
  color: #fff !important;
  border-color: var(--gold-500);
}

/* Staff cards */
.uni-card--staff {
  padding: 1.75rem 1.35rem 1.25rem;
  text-align: center;
  border-radius: 16px;
  border-top: 3px solid var(--gold-500);
  background: var(--glass-bg);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

html[data-theme="light"] .uni-card--staff {
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

html[data-theme="dark"] .uni-card--staff {
  background: rgba(255, 255, 255, 0.03);
}

.uni-card--staff::before,
.uni-card--staff::after {
  display: none;
}

.uni-card--staff:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

html[data-theme="dark"] .uni-card--staff:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.uni-card--staff .staff-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.1rem;
  border: 3px solid rgba(14, 165, 233, 0.4);
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.uni-card--staff:hover .staff-image {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15), 0 10px 28px rgba(15, 23, 42, 0.25);
  transform: scale(1.04);
}

.uni-card--staff .staff-image i {
  font-size: 2.25rem;
  color: var(--gold-400);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.uni-card--staff:hover .staff-image i {
  opacity: 1;
}

.uni-card--staff h5 {
  font-family: 'Alexandria', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.uni-card--staff .staff-position {
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

.uni-card--staff__bio {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.65;
  flex: 1;
  width: 100%;
}

.uni-card--staff__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--glass-border);
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.85rem;
  transition: color 0.25s ease;
}

.uni-card--staff__more i {
  transition: transform 0.25s ease;
}

.uni-card--staff:hover .uni-card--staff__more i {
  transform: translateX(-4px);
}

/* News cards */
.uni-card--news {
  padding: 0;
  border-radius: 16px;
  border-top: 3px solid var(--gold-500);
  background: var(--glass-bg);
  height: 100%;
}

html[data-theme="light"] .uni-card--news {
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

html[data-theme="dark"] .uni-card--news {
  background: rgba(255, 255, 255, 0.03);
}

.uni-card--news::before,
.uni-card--news::after {
  display: none;
}

.uni-card--news:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

html[data-theme="dark"] .uni-card--news:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.uni-card--news .news-image {
  height: 190px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(14, 165, 233, 0.15);
}

.uni-card--news .news-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  transition: transform 0.5s ease;
}

.uni-card--news .news-thumb i {
  font-size: 2.75rem;
  color: var(--gold-400);
  opacity: 0.4;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.uni-card--news:hover .news-thumb {
  transform: scale(1.05);
}

.uni-card--news:hover .news-thumb i {
  opacity: 0.65;
  transform: scale(1.08);
}

.uni-card--news .news-date-badge {
  top: 14px;
  right: 14px;
  background: var(--navy-900);
  border: 2px solid var(--gold-500);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
  padding: 6px 10px;
  border-radius: 10px;
}

.uni-card--news .news-date-badge .day {
  font-size: 1.15rem;
  color: var(--gold-400);
}

.uni-card--news .news-date-badge .month {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
}

.uni-card--news .news-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.2rem;
}

.uni-card--news .category-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--gold-500);
  border: 1px solid rgba(14, 165, 233, 0.22);
  margin-bottom: 0.75rem;
}

.uni-card--news .blog-title {
  font-family: 'Alexandria', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.uni-card--news:hover .blog-title {
  color: var(--gold-500) !important;
}

.uni-card--news .news-body > p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0 !important;
  flex: 1;
}

.uni-card--news .read-more-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--glass-border);
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.85rem;
}

.uni-card--news:hover .read-more-link i {
  transform: translateX(-4px);
}

.uni-card--news .read-more-link i {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Override legacy card hovers when uni-card is present */
.uni-card.college-card:hover,
.uni-card.stat-card:hover,
.uni-card.program-card:hover,
.uni-card.staff-card:hover,
.uni-card.accreditation-card:hover,
.uni-card.news-card:hover {
  transform: translateY(-10px);
}

.uni-card .college-overlay {
  display: none;
}

@media (max-width: 767px) {
  .uni-card:hover {
    transform: translateY(-6px);
  }

  .uni-card--college__head {
    padding: 1.1rem 0.75rem;
  }

  .uni-card--college .college-icon {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  .uni-card--college h6 {
    font-size: 0.82rem;
  }

  .uni-card--college__link {
    opacity: 1;
    transform: none;
  }
}

/* ===========================
   College Detail Page
   =========================== */
.college-detail-page .page-hero-title::after,
.faculty-page .page-hero-title::after,
.events-page .page-hero-title::after,
.faq-page .page-hero-title::after {
  display: none;
}

.college-detail-highlights,
.faculty-highlights,
.events-highlights,
.faq-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.college-detail-highlights__grid,
.faculty-highlights__grid,
.events-highlights__grid,
.faq-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.college-detail-highlight,
.faculty-highlight,
.events-highlight,
.faq-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.college-detail-highlight__icon,
.faculty-highlight__icon,
.events-highlight__icon,
.faq-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.college-detail-highlight__value,
.faculty-highlight__value,
.events-highlight__value,
.faq-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}

.college-detail-highlight__label,
.faculty-highlight__label,
.events-highlight__label,
.faq-highlight__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.college-detail-section,
.faculty-section,
.events-section,
.faq-section {
  padding: 2.5rem 0 3rem;
}

.college-detail-panel,
.faq-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.college-detail-panel__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.college-detail-panel__title i {
  color: var(--gold-500);
}

.college-detail-sidebar {
  position: sticky;
  top: 120px;
}

.college-detail-dean {
  text-align: center;
}

.college-detail-dean__avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: var(--brand-accent);
  border: 3px solid rgba(14, 165, 233, 0.35);
}

.college-detail-dean__name {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.college-detail-dean__role {
  font-size: 0.85rem;
  color: var(--gold-500);
  margin-bottom: 1rem;
}

.college-detail-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.65rem 0;
}

.college-detail-info-row + .college-detail-info-row {
  border-top: 1px solid var(--glass-border);
}

.college-detail-info-row__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.college-detail-info-row__value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.college-detail-cta-card {
  background: var(--navy-900);
  border-color: rgba(14, 165, 233, 0.25);
}

/* Department cards inside college detail panels */
.college-detail-page .college-detail-panel a.text-decoration-none {
  display: block;
  height: 100%;
}

.college-detail-page .dept-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-right: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.25rem;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.college-detail-page .dept-card:hover {
  transform: translateY(-4px);
  border-right-color: var(--glass-border);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

html[data-theme="dark"] .college-detail-page .dept-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.college-detail-page a:hover .dept-card__icon {
  background: var(--gold-500);
  color: #fff;
  transform: scale(1.08);
}

.college-detail-page a:hover .dept-card__title {
  color: var(--gold-500);
}

.college-detail-page .dept-card__stats {
  flex-wrap: wrap;
  gap: 0.35rem;
}

.college-detail-page .college-detail-panel > .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.college-detail-program {
  background: rgba(14, 165, 233, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.25rem;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

a:hover .college-detail-program {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.35);
}

.college-detail-program__title {
  font-family: 'Alexandria', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0.75rem 0 0.5rem;
}

.college-detail-program__desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.college-detail-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-secondary);
}

.college-detail-empty i {
  font-size: 2rem;
  color: var(--gold-500);
  margin-bottom: 1rem;
  display: block;
}

.college-detail-cta,
.faculty-cta,
.events-cta,
.faq-cta {
  padding: 0 0 3.5rem;
}

.college-detail-cta__inner,
.faculty-cta__inner,
.events-cta__inner,
.faq-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
}

.college-detail-cta__title,
.faculty-cta__title,
.events-cta__title,
.faq-cta__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: #fff;
  margin-bottom: 0.35rem;
}

.college-detail-cta__desc,
.faculty-cta__desc,
.events-cta__desc,
.faq-cta__desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}

.college-detail-cta__btn-outline,
.faculty-cta__btn-outline,
.events-cta__btn-outline,
.faq-cta__btn-outline {
  color: #fff !important;
  border-color: rgba(14, 165, 233, 0.45) !important;
}

/* Faculty Page */
.faculty-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.faculty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] .faculty-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.faculty-card__avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  background: var(--brand-accent);
  border: 3px solid rgba(14, 165, 233, 0.3);
}

.faculty-card__name {
  font-family: 'Alexandria', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.faculty-card__title {
  font-size: 0.8rem;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faculty-card__college {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.faculty-card__dept {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.faculty-card__specialty {
  display: inline-block;
  font-size: 0.72rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: var(--text-secondary);
}

/* Events Page */
.events-page .news-event-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
}

.events-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: var(--gold-500);
  margin-bottom: 0.5rem;
}

.events-page a:hover .news-event-item__title {
  color: var(--gold-500);
}

.events-page a:hover .news-event-item {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

html[data-theme="dark"] .events-page a:hover .news-event-item {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.events-page .news-event-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Event Detail Page */
.event-detail-page .page-hero-title::after {
  display: none;
}

.event-detail-page .page-hero-subtitle .events-card__badge {
  margin-bottom: 0;
  vertical-align: middle;
}

.event-detail-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.event-detail-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.event-detail-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.event-detail-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.event-detail-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.35;
}

.event-detail-highlight__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.event-detail-section {
  padding: 2.5rem 0 3rem;
}

.event-detail-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.event-detail-panel__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.event-detail-panel__title i {
  color: var(--gold-500);
}

.event-detail-sidebar {
  position: sticky;
  top: 120px;
}

.event-detail-register {
  background: var(--navy-900);
  border-color: rgba(14, 165, 233, 0.25);
}

.event-detail-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.65rem 0;
}

.event-detail-info-row + .event-detail-info-row {
  border-top: 1px solid var(--glass-border);
}

.event-detail-info-row__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.event-detail-info-row__value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.event-detail-agenda__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.event-detail-agenda__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event-detail-agenda__item:first-child {
  padding-top: 0;
}

.event-detail-agenda__time {
  flex-shrink: 0;
  min-width: 72px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-500);
  padding-top: 0.15rem;
}

.event-detail-agenda__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.event-detail-agenda__speaker {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 0;
}

html[data-theme="dark"] .event-detail-agenda__speaker {
  color: rgba(226, 232, 240, 0.75);
}

.event-detail-agenda__speaker i {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--gold-500);
}

.event-detail-speakers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-detail-speaker {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.04);
}

.event-detail-speaker__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  background: var(--brand-accent);
  flex-shrink: 0;
}

.event-detail-speaker__name {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.event-detail-speaker__role {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.event-detail-related {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  text-decoration: none;
  border-bottom: 1px solid var(--glass-border);
  transition: color 0.25s ease;
}

.event-detail-related:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event-detail-related:hover {
  color: var(--gold-500);
}

.event-detail-related__date {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-500);
  min-width: 64px;
}

.event-detail-related__title {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.45;
}

.event-detail-related:hover .event-detail-related__title {
  color: var(--gold-500);
}

.event-detail-related__arrow {
  font-size: 0.75rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.event-detail-cta {
  padding: 0 0 3.5rem;
}

.event-detail-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
}

.event-detail-cta__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: #fff;
  margin-bottom: 0.35rem;
}

.event-detail-cta__desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}

.event-detail-cta__btn-outline {
  color: #fff !important;
  border-color: rgba(14, 165, 233, 0.45) !important;
}

@media (max-width: 991px) {
  .event-detail-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-detail-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .event-detail-highlights__grid {
    grid-template-columns: 1fr;
  }

  .event-detail-cta__inner {
    padding: 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .event-detail-cta__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .event-detail-agenda__item {
    flex-direction: column;
    gap: 0.35rem;
  }
}

/* FAQ Page */
.faq-panel {
  margin-bottom: 0;
}

.faq-accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--glass-border);
}

.faq-accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion-item .accordion-button {
  background: transparent;
  color: var(--text-primary);
  font-family: 'Alexandria', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 1.1rem 0;
  box-shadow: none;
}

.faq-accordion-item .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--gold-500);
}

.faq-accordion-item .accordion-button::after {
  filter: var(--accordion-icon-filter, none);
}

html[data-theme="dark"] .faq-accordion-item .accordion-button::after {
  filter: invert(1) opacity(0.6);
}

.faq-accordion-item__cat {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-500);
  margin-bottom: 0.2rem;
}

.faq-page .faq-accordion-item .accordion-body,
.faq-page .faq-accordion-item__body {
  background: transparent !important;
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 0.88rem;
  padding: 0.75rem 0 1.25rem;
  border-top: 1px solid rgba(14, 165, 233, 0.12);
  margin-top: 0.15rem;
}

html[data-theme="light"] .faq-page .faq-accordion-item .accordion-body,
html[data-theme="light"] .faq-page .faq-accordion-item__body {
  color: #475569;
}

html[data-theme="dark"] .faq-page .faq-accordion-item .accordion-body,
html[data-theme="dark"] .faq-page .faq-accordion-item__body {
  color: rgba(226, 232, 240, 0.85);
  border-top-color: rgba(14, 165, 233, 0.2);
}

.faq-page .faq-accordion-item .accordion-button:not(.collapsed) {
  padding-bottom: 0.35rem;
}

.faq-page .filter-tabs .nav-link {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.faq-page .filter-tabs .nav-link:hover {
  background: rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.25);
}

.faq-page .filter-tabs .nav-link.active {
  color: #fff !important;
  background: var(--accent-color) !important;
  border-color: var(--accent-color);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

@media (max-width: 991px) {
  .college-detail-highlights__grid,
  .faculty-highlights__grid,
  .events-highlights__grid,
  .faq-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .college-detail-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .college-detail-highlights__grid,
  .faculty-highlights__grid,
  .events-highlights__grid,
  .faq-highlights__grid {
    grid-template-columns: 1fr;
  }

  .college-detail-cta__inner,
  .faculty-cta__inner,
  .events-cta__inner,
  .faq-cta__inner {
    padding: 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .college-detail-cta__desc,
  .faculty-cta__desc,
  .events-cta__desc,
  .faq-cta__desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================
   Phase 2 — Scholarships, Tuition, Services, Calendar
   =========================== */
.scholarships-page .page-hero-title::after,
.tuition-page .page-hero-title::after,
.student-services-page .page-hero-title::after,
.calendar-page .page-hero-title::after {
  display: none;
}

.scholarships-highlights,
.tuition-highlights,
.services-highlights,
.calendar-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.scholarships-highlights__grid,
.tuition-highlights__grid,
.services-highlights__grid,
.calendar-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.scholarships-highlight,
.tuition-highlight,
.services-highlight,
.calendar-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.scholarships-highlight__icon,
.tuition-highlight__icon,
.services-highlight__icon,
.calendar-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.scholarships-highlight__value,
.tuition-highlight__value,
.services-highlight__value,
.calendar-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}

.scholarships-highlight__label,
.tuition-highlight__label,
.services-highlight__label,
.calendar-highlight__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.scholarships-section,
.tuition-section,
.services-section,
.calendar-section {
  padding: 2.5rem 0 3rem;
}

.resource-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

html[data-theme="dark"] .resource-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.resource-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.resource-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: var(--gold-500);
}

.resource-card__coverage {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold-500);
}

.resource-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: var(--gold-500);
  margin-bottom: 1rem;
}

.resource-card__title {
  font-family: 'Alexandria', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.resource-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.resource-card__meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
  line-height: 1.55;
}

.resource-card__meta i {
  color: var(--gold-500);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.tuition-fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.tuition-fee-row:last-child {
  border-bottom: none;
}

.tuition-fee-row__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.tuition-fee-row__value {
  font-family: 'Alexandria', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.tuition-fee-row__value small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.tuition-note-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
}

.tuition-note-panel__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.tuition-note-panel__title i {
  color: var(--gold-500);
}

.tuition-note-panel p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0;
}

.calendar-timeline {
  position: relative;
  padding-right: 1.5rem;
}

.calendar-timeline__item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.calendar-timeline__item:not(:last-child)::before {
  content: '';
  position: absolute;
  right: 19px;
  top: 44px;
  bottom: -1.25rem;
  width: 2px;
  background: rgba(14, 165, 233, 0.2);
}

.calendar-timeline__marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-accent);
  color: #fff;
  font-size: 0.85rem;
  border: 3px solid rgba(14, 165, 233, 0.35);
  z-index: 1;
}

.calendar-timeline__card {
  flex: 1;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
}

.calendar-timeline__head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.calendar-timeline__semester,
.calendar-timeline__type {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.22);
  color: var(--gold-500);
}

.calendar-timeline__title {
  font-family: 'Alexandria', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.calendar-timeline__date {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.calendar-timeline__date i {
  color: var(--gold-500);
}

.scholarships-cta,
.tuition-cta,
.services-cta,
.calendar-cta {
  padding: 0 0 3.5rem;
}

.scholarships-cta__inner,
.tuition-cta__inner,
.services-cta__inner,
.calendar-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background: var(--navy-900);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
}

.scholarships-cta__title,
.tuition-cta__title,
.services-cta__title,
.calendar-cta__title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: #fff;
  margin-bottom: 0.35rem;
}

.scholarships-cta__desc,
.tuition-cta__desc,
.services-cta__desc,
.calendar-cta__desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}

.scholarships-cta__btn-outline,
.tuition-cta__btn-outline,
.services-cta__btn-outline,
.calendar-cta__btn-outline {
  color: #fff !important;
  border-color: rgba(14, 165, 233, 0.45) !important;
}

.admission-quicklinks {
  padding: 0 0 2.5rem;
}

.admission-quicklink {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  height: 100%;
  padding: 1.35rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admission-quicklink:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

html[data-theme="dark"] .admission-quicklink:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.admission-quicklink__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  background: var(--brand-accent);
  margin-bottom: 0.85rem;
}

.admission-quicklink__title {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 0.92rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.admission-quicklink:hover .admission-quicklink__title {
  color: var(--gold-500);
}

.admission-quicklink__desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

@media (max-width: 991px) {
  .scholarships-highlights__grid,
  .tuition-highlights__grid,
  .services-highlights__grid,
  .calendar-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .scholarships-highlights__grid,
  .tuition-highlights__grid,
  .services-highlights__grid,
  .calendar-highlights__grid {
    grid-template-columns: 1fr;
  }

  .scholarships-cta__inner,
  .tuition-cta__inner,
  .services-cta__inner,
  .calendar-cta__inner {
    padding: 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .scholarships-cta__desc,
  .tuition-cta__desc,
  .services-cta__desc,
  .calendar-cta__desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================
   Phase 3 — Staff, Research Detail, Privacy, Terms
   =========================== */
.staff-page .page-hero-title::after,
.research-detail-page .page-hero-title::after,
.privacy-page .page-hero-title::after,
.terms-page .page-hero-title::after {
  display: none;
}

.staff-highlights,
.legal-highlights,
.research-detail-highlights {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.25rem 0;
}

.staff-highlights__grid,
.legal-highlights__grid,
.research-detail-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.staff-highlight,
.legal-highlight,
.research-detail-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.staff-highlight__icon,
.legal-highlight__icon,
.research-detail-highlight__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-400);
  flex-shrink: 0;
}

.staff-highlight__value,
.legal-highlight__value,
.research-detail-highlight__value {
  display: block;
  font-family: 'Alexandria', sans-serif;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}

.staff-highlight__label,
.legal-highlight__label,
.research-detail-highlight__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.legal-highlight__link {
  color: var(--gold-400);
  text-decoration: none;
}

.legal-highlight__link:hover {
  color: var(--gold-500);
}

.staff-section {
  padding: 2.5rem 0;
}

.staff-section--deans {
  background: rgba(15, 23, 42, 0.35);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.staff-page .staff-card {
  border-top: 3px solid var(--gold-500);
}

.staff-cta,
.legal-cta {
  padding: 2.5rem 0 3rem;
}

.staff-cta__inner,
.legal-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2rem 2.25rem;
  border-radius: 16px;
  background: #0F172A;
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.staff-cta__title,
.legal-cta__title {
  font-family: 'Alexandria', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.staff-cta__desc,
.legal-cta__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
}

.legal-cta__btn-outline {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.legal-section {
  padding: 2.5rem 0;
}

.legal-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.5rem;
}

.legal-accordion-item {
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.legal-accordion-item .accordion-button {
  background: transparent;
  color: var(--text-primary);
  font-family: 'Alexandria', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 0.75rem;
  box-shadow: none;
}

.legal-accordion-item .accordion-button:not(.collapsed) {
  background: rgba(14, 165, 233, 0.08);
  color: var(--text-primary);
}

.legal-accordion-item__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--gold-500);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.legal-accordion-item__body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.research-detail-section {
  padding: 2.5rem 0 3rem;
}

.research-detail-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold-500);
  border-radius: 16px;
  padding: 1.5rem;
}

.research-detail-panel__title {
  font-family: 'Alexandria', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.research-detail-panel__title i {
  color: var(--gold-500);
}

.research-detail-panel__text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.research-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.research-detail-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: var(--gold-500);
}

.research-detail-project {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.research-detail-project:last-child {
  border-bottom: none;
}

.research-detail-project__title {
  font-size: 0.88rem;
  color: var(--text-primary);
}

.research-detail-project__status {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  color: var(--gold-500);
  flex-shrink: 0;
}

.research-detail-project__status--done {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.research-detail-info-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.research-detail-info-row:last-child {
  border-bottom: none;
}

.research-detail-info-row__label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.research-detail-info-row__value {
  font-size: 0.85rem;
  color: var(--text-primary);
  text-align: left;
}

.research-detail-partners {
  list-style: none;
  padding: 0;
  margin: 0;
}

.research-detail-partners li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
}

.research-detail-partners i {
  color: var(--gold-500);
}

.research-detail-related {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--glass-border);
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.research-detail-related:last-child {
  border-bottom: none;
}

.research-detail-related:hover {
  color: var(--gold-500);
}

.research-detail-related__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--gold-500);
  flex-shrink: 0;
}

.research-detail-related__title {
  flex: 1;
  font-size: 0.82rem;
  line-height: 1.45;
}

.research-detail-related__arrow {
  font-size: 0.7rem;
  opacity: 0.5;
}

@media (max-width: 991.98px) {
  .staff-highlights__grid,
  .legal-highlights__grid,
  .research-detail-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .staff-highlights__grid,
  .legal-highlights__grid,
  .research-detail-highlights__grid {
    grid-template-columns: 1fr;
  }

  .staff-cta__inner,
  .legal-cta__inner {
    padding: 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .staff-cta__desc,
  .legal-cta__desc {
    margin-left: auto;
    margin-right: auto;
  }
}

.privacy-page .legal-accordion-item .accordion-body,
.terms-page .legal-accordion-item .accordion-body {
  background: transparent;
}

html[data-theme="dark"] .privacy-page .legal-accordion-item .accordion-button:not(.collapsed),
html[data-theme="dark"] .terms-page .legal-accordion-item .accordion-button:not(.collapsed) {
  background: rgba(14, 165, 233, 0.1);
  color: #fff;
}

html[data-theme="dark"] .privacy-page .legal-accordion-item .accordion-body,
html[data-theme="dark"] .terms-page .legal-accordion-item .accordion-body {
  color: rgba(226, 232, 240, 0.85);
  border-top-color: rgba(14, 165, 233, 0.2);
}