/*
  CQA Professional Master Stylesheet
  Centre for Quality Assurance | Bhiksu University of Sri Lanka

  Built from:
  - about.css
  - committee.css
  - cqa(1).css
  - download(1).css
  - staff.css
  - topbar.css

  Usage:
  1. Keep Bootstrap, Bootstrap Icons and Google Fonts in the HTML <head>.
  2. Use only this stylesheet after Bootstrap:
     <link rel="stylesheet" href="css/cqa-professional-master.css">
  3. For sticky top bar + navbar, wrap them with:
     <header class="cqa-site-header"> ... </header>
*/

/* =========================================================
   01. Theme Variables
========================================================= */
:root {
  --cqa-maroon: #7b0000;
  --cqa-maroon-dark: #5f0000;
  --cqa-maroon-soft: rgba(123, 0, 0, 0.08);
  --cqa-maroon-border: rgba(123, 0, 0, 0.18);
  --cqa-maroon-light: #fff4f4;
  --cqa-gold: #d6a12b;

  --cqa-bg: #f8f9fb;
  --cqa-white: #ffffff;
  --cqa-card-bg: #ffffff;
  --cqa-dark: #111827;
  --cqa-muted: #6b7280;
  --cqa-border: #e5e7eb;

  --cqa-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  --cqa-shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.12);
  --cqa-header-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

  --cqa-radius-sm: 14px;
  --cqa-radius-md: 20px;
  --cqa-radius-lg: 24px;
  --cqa-radius-xl: 28px;
  --cqa-transition: all 0.3s ease;

  /* Compatibility aliases for old pages */
  --maroon: var(--cqa-maroon);
  --maroon-dark: var(--cqa-maroon-dark);
  --maroon-light: var(--cqa-maroon-light);
  --body-bg: var(--cqa-bg);
  --card-bg: var(--cqa-card-bg);
  --dark-text: var(--cqa-dark);
  --muted-text: var(--cqa-muted);
  --border-color: var(--cqa-border);
  --shadow-soft: var(--cqa-shadow);
  --shadow-hover: var(--cqa-shadow-hover);
}

/* =========================================================
   02. Base
========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--cqa-bg);
  color: var(--cqa-dark);
  overflow-x: hidden;
}

a { text-decoration: none; }
img { max-width: 100%; }
::selection { color: #fff; background: var(--cqa-maroon); }

/* =========================================================
   03. Sticky Header + Top Bar
========================================================= */
.cqa-site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #fff;
  box-shadow: var(--cqa-header-shadow);
}

.cqa-topbar {
  --topbar-bg: #8b0000;
  --topbar-bg-dark: #6f0000;
  --topbar-text: #fff;
  --topbar-soft: rgba(255, 255, 255, 0.16);
  --topbar-border: rgba(255, 255, 255, 0.22);

  position: relative;
  z-index: 2;
  color: var(--topbar-text);
  background: linear-gradient(90deg, var(--topbar-bg-dark) 0%, var(--topbar-bg) 48%, var(--topbar-bg-dark) 100%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.cqa-topbar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.cqa-topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 14px;
}

.cqa-topbar-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cqa-topbar-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  line-height: 1.2;
}

.cqa-topbar a {
  color: var(--topbar-text);
  text-decoration: none;
  transition: var(--cqa-transition);
}

.cqa-topbar a:hover {
  color: #fff;
  opacity: 0.82;
}

.cqa-topbar-links span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
}

.cqa-topbar-notice {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  opacity: 0.94;
}

.cqa-topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

.cqa-topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  background: var(--topbar-soft);
  border: 1px solid var(--topbar-border);
  border-radius: 999px;
  white-space: nowrap;
}

.cqa-topbar-notice i,
.cqa-topbar-contact i { font-size: 12px; }

.cqa-topbar-social {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cqa-topbar-social a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--topbar-soft);
  border: 1px solid var(--topbar-border);
  border-radius: 50%;
  font-size: 11px;
}

.cqa-topbar-social a:hover {
  opacity: 1;
  background: #fff;
  color: var(--topbar-bg);
  transform: translateY(-1px);
}

/* =========================================================
   04. Main Navbar
========================================================= */
.cqa-navbar {
  position: relative;
  z-index: 1;
  min-height: 78px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--cqa-border);
  backdrop-filter: blur(12px);
}

.cqa-site-header .cqa-navbar { box-shadow: none; }

.cqa-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0;
  color: var(--cqa-maroon);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.cqa-brand:hover { color: var(--cqa-maroon-dark); }

.cqa-logo,
.brand-logo {
  width: 170px;
  height: auto;
  max-height: 58px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.navbar-nav .nav-link {
  color: var(--cqa-dark);
  font-size: 14px;
  font-weight: 600;
  padding-right: 14px !important;
  padding-left: 14px !important;
  transition: var(--cqa-transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--cqa-maroon); }

.cqa-nav-btn,
.cqa-nav-outline-btn,
.cqa-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--cqa-transition);
}

.cqa-nav-btn,
.cqa-home-btn {
  color: #fff;
  background: var(--cqa-maroon);
  border: 1px solid var(--cqa-maroon);
}

.cqa-nav-btn:hover,
.cqa-home-btn:hover {
  color: #fff;
  background: var(--cqa-maroon-dark);
  border-color: var(--cqa-maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(123, 0, 0, 0.25);
}

.cqa-nav-outline-btn {
  color: var(--cqa-maroon);
  background: var(--cqa-maroon-soft);
  border: 1px solid var(--cqa-maroon-border);
}

.cqa-nav-outline-btn:hover,
.cqa-nav-outline-btn.active {
  color: #fff;
  background: var(--cqa-maroon);
  border-color: var(--cqa-maroon);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(123, 0, 0, 0.18);
}

/* =========================================================
   05. Layout Sections
========================================================= */
.cqa-section { padding: 70px 0; }
.cqa-section-sm { padding: 65px 0; }
.cqa-soft-bg { background: linear-gradient(135deg, #fff 0%, #fff8f8 100%); }

.cqa-section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.cqa-section-label,
.cqa-docs-kicker,
.cqa-kicker,
.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cqa-maroon);
  background: var(--cqa-maroon-soft);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}

.cqa-kicker,
.about-kicker {
  border: 1px solid rgba(123, 0, 0, 0.12);
  padding: 8px 16px;
  font-size: 13px;
  margin-bottom: 22px;
}

.cqa-docs-kicker {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.cqa-section-title,
.section-title {
  color: var(--cqa-maroon);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.cqa-section-subtitle,
.section-subtitle {
  max-width: 780px;
  margin: 0 auto 42px;
  color: var(--cqa-muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.cqa-section-text {
  color: var(--cqa-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* =========================================================
   06. Buttons
========================================================= */
.cqa-primary-btn,
.cqa-outline-btn,
.cqa-profile-btn,
.cqa-modal-profile-btn,
.cqa-view-btn,
.cqa-download-btn,
.cqa-back-btn,
.cqa-iqac-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--cqa-transition);
}

.cqa-primary-btn,
.cqa-view-btn {
  color: #fff;
  background: var(--cqa-maroon);
  border: 1px solid var(--cqa-maroon);
}

.cqa-primary-btn {
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
}

.cqa-primary-btn:hover,
.cqa-view-btn:hover {
  color: #fff;
  background: var(--cqa-maroon-dark);
  border-color: var(--cqa-maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(123, 0, 0, 0.2);
}

.cqa-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(123, 0, 0, 0.25);
}

.cqa-outline-btn,
.cqa-profile-btn,
.cqa-modal-profile-btn,
.cqa-download-btn,
.cqa-back-btn,
.cqa-iqac-action {
  color: var(--cqa-maroon);
  background: var(--cqa-maroon-soft);
  border: 1px solid var(--cqa-maroon-border);
}

.cqa-outline-btn {
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
}

.cqa-profile-btn,
.cqa-modal-profile-btn,
.cqa-download-btn,
.cqa-view-btn {
  padding: 9px 18px;
  font-size: 13px;
}

.cqa-download-btn,
.cqa-view-btn { white-space: nowrap; }

.cqa-back-btn {
  width: 100%;
  padding: 13px 18px;
  font-size: 14px;
}

.cqa-outline-btn:hover,
.cqa-profile-btn:hover,
.cqa-modal-profile-btn:hover,
.cqa-download-btn:hover,
.cqa-back-btn:hover,
.cqa-iqac-action:hover {
  color: #fff;
  background: var(--cqa-maroon);
  border-color: var(--cqa-maroon);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(123, 0, 0, 0.18);
}

/* =========================================================
   07. Home Hero
========================================================= */
.cqa-hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 85px;
  background:
    radial-gradient(circle at top left, rgba(214, 161, 43, 0.18), transparent 32%),
    linear-gradient(135deg, #fffafa 0%, #fff 42%, #fff4f4 100%);
}

.cqa-hero::before,
.cqa-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.cqa-hero::before {
  right: -130px;
  top: 40px;
  width: 380px;
  height: 380px;
  background: rgba(123, 0, 0, 0.08);
}

.cqa-hero::after {
  left: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  background: rgba(214, 161, 43, 0.16);
}

.cqa-hero-content,
.cqa-hero-card {
  position: relative;
  z-index: 2;
}

.cqa-hero-title {
  color: var(--cqa-maroon);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.cqa-hero-text {
  max-width: 680px;
  color: var(--cqa-muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.cqa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cqa-hero-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(123, 0, 0, 0.12);
  border-radius: var(--cqa-radius-xl);
  padding: 30px;
  box-shadow: var(--cqa-shadow);
  backdrop-filter: blur(12px);
}

.cqa-hero-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cqa-border);
  margin-bottom: 24px;
}

.cqa-hero-card-icon,
.cqa-mini-stat i,
.cqa-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cqa-hero-card-icon {
  width: 62px;
  height: 62px;
  color: #fff;
  background: var(--cqa-maroon);
  border-radius: 20px;
  font-size: 28px;
}

.cqa-hero-card-title {
  margin: 0;
  color: var(--cqa-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.cqa-hero-card-subtitle {
  margin: 4px 0 0;
  color: var(--cqa-muted);
  font-size: 13px;
  line-height: 1.6;
}

.cqa-mini-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--cqa-border);
}

.cqa-mini-stat:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cqa-mini-stat i,
.cqa-card-icon {
  color: var(--cqa-maroon);
  background: var(--cqa-maroon-light);
}

.cqa-mini-stat i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 18px;
}

.cqa-mini-stat strong {
  display: block;
  color: var(--cqa-dark);
  font-size: 14px;
  margin-bottom: 2px;
}

.cqa-mini-stat span {
  display: block;
  color: var(--cqa-muted);
  font-size: 12px;
  line-height: 1.5;
}

/* =========================================================
   08. Icon Shortcut Bar
========================================================= */
.cqa-icon-shortcuts {
  padding: 34px 0 28px;
  background: #fff;
  border-bottom: 1px solid var(--cqa-border);
}

.cqa-shortcut-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.cqa-shortcut-item {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--cqa-radius-md);
  padding: 22px 16px;
  color: var(--cqa-maroon);
  background: #fff;
  border: 1px solid transparent;
  text-align: center;
  transition: var(--cqa-transition);
}

.cqa-shortcut-item:hover {
  color: #fff;
  background: var(--cqa-maroon);
  border-color: var(--cqa-maroon);
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(123, 0, 0, 0.18);
}

.cqa-shortcut-icon {
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 42px;
  line-height: 1;
}

.cqa-shortcut-title {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

/* =========================================================
   09. Cards
========================================================= */
.cqa-about-card,
.cqa-news-card,
.cqa-function-card,
.cqa-doc-card,
.cqa-link-card,
.member-card,
.cqa-staff-card,
.cqa-doc-card-page,
.about-content-card,
.about-value-card,
.about-list-card,
.director-message-card {
  background: #fff;
  border: 1px solid var(--cqa-border);
  box-shadow: var(--cqa-shadow);
}

.cqa-about-card,
.cqa-news-card {
  height: 100%;
  border-radius: var(--cqa-radius-lg);
  padding: 30px;
}

.cqa-about-card h3,
.cqa-news-card h3 {
  color: var(--cqa-maroon);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cqa-about-card p,
.cqa-news-card p {
  color: var(--cqa-muted);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 0;
}

.cqa-function-card,
.cqa-doc-card,
.cqa-link-card,
.member-card,
.cqa-staff-card,
.cqa-doc-card-page,
.about-value-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  transition: var(--cqa-transition);
}

.cqa-function-card,
.cqa-link-card { padding: 26px; }

.cqa-link-card {
  text-align: center;
  padding: 32px 26px;
}

.cqa-function-card::before,
.cqa-doc-card::before,
.cqa-link-card::before,
.member-card::before,
.cqa-staff-card::before,
.cqa-doc-card-page::before,
.about-value-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: var(--cqa-maroon);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--cqa-transition);
}

.cqa-function-card:hover,
.cqa-doc-card:hover,
.cqa-link-card:hover,
.member-card:hover,
.cqa-staff-card:hover,
.cqa-doc-card-page:hover,
.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--cqa-shadow-hover);
}

.cqa-function-card:hover::before,
.cqa-doc-card:hover::before,
.cqa-link-card:hover::before,
.member-card:hover::before,
.member-card.active::before,
.cqa-staff-card:hover::before,
.cqa-staff-card.featured::before,
.cqa-doc-card-page:hover::before,
.about-value-card:hover::before {
  transform: scaleX(1);
}

.cqa-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 26px;
  margin-bottom: 18px;
}

.cqa-card-title {
  color: var(--cqa-dark);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 10px;
}

.cqa-card-text {
  color: var(--cqa-muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

/* Home document quick cards */
#documents .cqa-doc-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
}

#documents .cqa-doc-card .cqa-card-icon { margin-bottom: 0; }

#documents .cqa-doc-card h3 {
  color: var(--cqa-dark);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

#documents .cqa-doc-card span {
  color: var(--cqa-muted);
  font-size: 12px;
  line-height: 1.5;
}

/* =========================================================
   10. Timeline
========================================================= */
.cqa-timeline {
  display: grid;
  gap: 18px;
}

.cqa-timeline-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--cqa-border);
  border-radius: var(--cqa-radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.cqa-timeline-year {
  min-width: 70px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--cqa-maroon);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

.cqa-timeline-item strong {
  display: block;
  color: var(--cqa-dark);
  font-size: 14px;
  margin-bottom: 4px;
}

.cqa-timeline-item span {
  color: var(--cqa-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* =========================================================
   11. Staff & Committee Cards
========================================================= */
.member-card,
.cqa-staff-card { text-align: center; }
.member-card { padding: 28px 20px; }
.cqa-staff-card { padding: 34px 24px; }

.member-card.active,
.cqa-staff-card.featured {
  background: var(--cqa-maroon-light);
  border-color: rgba(123, 0, 0, 0.25);
}

.member-photo,
.cqa-staff-photo {
  object-fit: cover;
  background: #e9ecef;
  border: 4px solid #f1f1f1;
  border-radius: 50%;
}

.member-photo {
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
}

.cqa-staff-photo {
  width: 112px;
  height: 112px;
  margin-bottom: 20px;
}

.member-name,
.cqa-staff-name {
  color: var(--cqa-dark);
  font-weight: 700;
  line-height: 1.5;
}

.member-name {
  min-height: 72px;
  margin-bottom: 10px;
  font-size: 15px;
}

.cqa-staff-name {
  margin-bottom: 10px;
  font-size: 18px;
}

.member-card.active .member-name,
.cqa-staff-card.featured .cqa-staff-name { color: var(--cqa-maroon); }

.member-position,
.cqa-staff-position {
  color: var(--cqa-muted);
  line-height: 1.6;
}

.member-position {
  min-height: 42px;
  margin-bottom: 16px;
  font-size: 13px;
}

.cqa-staff-position {
  min-height: 45px;
  margin-bottom: 20px;
  font-size: 14px;
}

.member-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 13px;
  color: var(--cqa-maroon);
  background: var(--cqa-maroon-soft);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
}

/* =========================================================
   12. Profile Modals
========================================================= */
.cqa-profile-modal .modal-content {
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
}

.cqa-profile-modal .modal-header {
  background: var(--cqa-maroon);
  color: #fff;
  border-bottom: 0;
  padding: 18px 22px;
}

.cqa-profile-modal .modal-title {
  font-size: 18px;
  font-weight: 700;
}

.cqa-profile-modal .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 1;
}

.cqa-modal-body { padding: 28px; }
.cqa-modal-image-wrap { text-align: center; }

.cqa-modal-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  background: #e9ecef;
  border: 5px solid #f1f1f1;
  border-radius: 50%;
  margin-bottom: 16px;
}

.cqa-modal-name {
  color: var(--cqa-maroon);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.cqa-modal-position {
  color: var(--cqa-muted);
  font-size: 14px;
  margin-bottom: 0;
}

.cqa-contact-list {
  display: grid;
  gap: 12px;
}

.cqa-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 14px;
  background: #fafafa;
  border: 1px solid var(--cqa-border);
  border-radius: var(--cqa-radius-sm);
}

.cqa-contact-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cqa-maroon);
  background: var(--cqa-maroon-soft);
  border-radius: 50%;
  font-size: 15px;
}

.cqa-contact-label {
  display: block;
  color: var(--cqa-muted);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 2px;
}

.cqa-contact-value {
  display: block;
  color: var(--cqa-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}

.cqa-modal-footer {
  padding-top: 20px;
  text-align: right;
}

/* =========================================================
   13. Approved Documents Category Page
========================================================= */
.cqa-docs-hero {
  padding: 70px 0 35px;
  text-align: center;
}

.cqa-docs-title {
  color: var(--cqa-maroon);
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.cqa-docs-subtitle {
  max-width: 820px;
  margin: 0 auto;
  color: var(--cqa-muted);
  font-size: 15px;
  line-height: 1.8;
}

.cqa-docs-section { padding: 25px 0 75px; }

.cqa-docs-section .cqa-doc-card,
.cqa-doc-card-page {
  display: block;
  padding: 28px 24px;
}

.cqa-doc-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cqa-maroon);
  background: var(--cqa-maroon-light);
  border-radius: 18px;
  font-size: 30px;
  margin-bottom: 20px;
}

.cqa-doc-title {
  color: var(--cqa-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.cqa-doc-desc {
  min-height: 72px;
  color: var(--cqa-muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* =========================================================
   14. Document List Pages
========================================================= */
.cqa-doc-view-hero,
.cqa-subpage-hero { padding: 60px 0 28px; }

.cqa-breadcrumb-box {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  color: var(--cqa-muted);
  background: #fff;
  border: 1px solid var(--cqa-border);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.cqa-breadcrumb-box a {
  color: var(--cqa-maroon);
  font-weight: 600;
}

.cqa-page-title {
  color: var(--cqa-maroon);
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.cqa-page-subtitle {
  max-width: 850px;
  color: var(--cqa-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}

.cqa-document-section { padding: 25px 0 75px; }

.cqa-toolbar,
.cqa-search-panel {
  background: #fff;
  border: 1px solid var(--cqa-border);
  border-radius: var(--cqa-radius-md);
  padding: 18px;
  box-shadow: var(--cqa-shadow);
  margin-bottom: 28px;
}

.cqa-search-panel { margin-bottom: 34px; }
.cqa-search-box { position: relative; }

.cqa-search-box i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--cqa-muted);
  font-size: 16px;
}

.cqa-search-input {
  width: 100%;
  border: 1px solid var(--cqa-border);
  border-radius: 50px;
  padding: 13px 18px 13px 44px;
  color: var(--cqa-dark);
  font-size: 14px;
  outline: none;
  transition: var(--cqa-transition);
}

.cqa-search-input:focus {
  border-color: rgba(123, 0, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(123, 0, 0, 0.08);
}

.cqa-document-panel {
  background: #fff;
  border: 1px solid var(--cqa-border);
  border-radius: 22px;
  box-shadow: var(--cqa-shadow);
  overflow: hidden;
}

.cqa-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--cqa-border);
  background: linear-gradient(135deg, #fff 0%, #fff7f7 100%);
}

.cqa-panel-title {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: var(--cqa-maroon);
  font-size: 18px;
  font-weight: 700;
}

.cqa-panel-title i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cqa-maroon-light);
  border-radius: var(--cqa-radius-sm);
  font-size: 22px;
}

.cqa-doc-count {
  color: var(--cqa-maroon);
  background: var(--cqa-maroon-soft);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.cqa-document-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--cqa-border);
  transition: var(--cqa-transition);
}

.cqa-document-item:last-child { border-bottom: 0; }
.cqa-document-item:hover { background: #fafafa; }

.cqa-doc-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.cqa-pdf-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--cqa-maroon);
  border-radius: var(--cqa-radius-sm);
  font-size: 20px;
  flex-shrink: 0;
}

.cqa-doc-name {
  color: var(--cqa-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.cqa-doc-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--cqa-muted);
  font-size: 12px;
  font-weight: 500;
}

.cqa-doc-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cqa-doc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cqa-document-item .cqa-doc-actions { justify-content: flex-end; }

.cqa-empty-message {
  display: none;
  text-align: center;
  padding: 42px 20px;
  color: var(--cqa-muted);
  background: #fff;
  border: 1px solid var(--cqa-border);
  border-radius: 18px;
  margin-top: 24px;
}

/* =========================================================
   15. IQAC Accordion
========================================================= */
.cqa-iqac-wrap {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--cqa-border);
  border-radius: 22px;
  box-shadow: var(--cqa-shadow);
  overflow: hidden;
}

.cqa-iqac-heading-bar {
  background: var(--cqa-maroon);
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
}

.cqa-iqac-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--cqa-border);
  background: #fff;
}

.cqa-iqac-accordion .accordion-item:last-child { border-bottom: 0; }

.cqa-iqac-accordion .accordion-button {
  gap: 10px;
  padding: 17px 22px;
  color: var(--cqa-dark);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: none;
  line-height: 1.5;
}

.cqa-iqac-accordion .accordion-button::after { display: none; }

.cqa-plus-icon {
  color: var(--cqa-maroon);
  font-size: 17px;
  font-weight: 700;
  transition: var(--cqa-transition);
}

.cqa-iqac-accordion .accordion-button:not(.collapsed) {
  color: var(--cqa-maroon);
  background: var(--cqa-maroon-light);
}

.cqa-iqac-accordion .accordion-button:not(.collapsed) .cqa-plus-icon { transform: rotate(45deg); }

.cqa-iqac-accordion .accordion-body {
  padding: 0 22px 20px 50px;
  color: var(--cqa-muted);
  font-size: 13px;
  line-height: 1.8;
  background: var(--cqa-maroon-light);
}

.cqa-iqac-action {
  margin-top: 14px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
}

/* =========================================================
   16. About Page
========================================================= */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 68px;
  background:
    radial-gradient(circle at top left, rgba(214, 161, 43, 0.16), transparent 34%),
    linear-gradient(135deg, #fffafa 0%, #fff 48%, #fff4f4 100%);
}

.about-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 25px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(123, 0, 0, 0.08);
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-title {
  color: var(--cqa-maroon);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}

.about-text {
  max-width: 760px;
  color: var(--cqa-muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 0;
}

.about-highlight-card,
.about-content-card,
.about-list-card {
  background: #fff;
  border: 1px solid rgba(123, 0, 0, 0.12);
  border-radius: var(--cqa-radius-lg);
  padding: 28px;
  box-shadow: var(--cqa-shadow);
}

.about-highlight-card {
  position: relative;
  z-index: 2;
  border-radius: 26px;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cqa-border);
}

.about-highlight-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-highlight-icon,
.about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cqa-maroon);
  background: var(--cqa-maroon-light);
  flex-shrink: 0;
}

.about-highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  font-size: 20px;
}

.about-highlight-item strong {
  display: block;
  color: var(--cqa-dark);
  font-size: 14px;
  margin-bottom: 4px;
}

.about-highlight-item span {
  display: block;
  color: var(--cqa-muted);
  font-size: 13px;
  line-height: 1.6;
}

.about-content-card {
  height: 100%;
  padding: 30px;
}

.about-content-card h3 {
  color: var(--cqa-maroon);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-content-card p {
  color: var(--cqa-muted);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 0;
  text-align: justify;
}

.about-value-card { padding: 28px; }

.about-value-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  font-size: 27px;
  margin-bottom: 18px;
}

.about-value-card h3 {
  color: var(--cqa-dark);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.45;
}

.about-value-card p {
  color: var(--cqa-muted);
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 0;
}

.about-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--cqa-muted);
  font-size: 14px;
  line-height: 1.75;
}

.about-list i {
  color: var(--cqa-maroon);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* =========================================================
   17. Director Message Page
========================================================= */
.director-message-page {
  padding: 65px 0 80px;
  background: var(--cqa-bg);
}

.director-message-card {
  border-radius: var(--cqa-radius-lg);
  overflow: hidden;
}

.director-message-header {
  background: var(--cqa-maroon);
  color: #fff;
  text-align: center;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 700;
}

.director-message-body { padding: 32px; }
.director-photo-wrap { text-align: center; }

.director-photo {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  background: #e9ecef;
}

.director-name {
  color: var(--cqa-maroon);
  font-size: 18px;
  font-weight: 700;
  margin: 22px 0 6px;
}

.director-qualification {
  color: var(--cqa-maroon-dark);
  font-size: 13px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0;
}

.director-message-content {
  color: var(--cqa-muted);
  font-size: 14px;
  line-height: 2;
  text-align: justify;
}

.director-message-content p { margin-bottom: 22px; }
.director-message-content p:last-child { margin-bottom: 0; }

.director-signature-box {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--cqa-maroon-light);
  border-left: 5px solid var(--cqa-maroon);
  border-radius: var(--cqa-radius-sm);
}

.director-signature-box strong {
  display: block;
  color: var(--cqa-maroon);
  font-size: 15px;
  margin-bottom: 4px;
}

.director-signature-box span {
  display: block;
  color: var(--cqa-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* =========================================================
   18. Updates / Contact / Footer
========================================================= */
.cqa-news-date {
  display: inline-flex;
  color: var(--cqa-maroon);
  background: var(--cqa-maroon-soft);
  border-radius: 50px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cqa-news-card h3 {
  color: var(--cqa-dark);
  font-size: 17px;
  line-height: 1.45;
}

.cqa-news-card p {
  font-size: 13px;
  line-height: 1.75;
}

.cqa-contact-section {
  padding: 75px 0;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(214, 161, 43, 0.16), transparent 30%),
    linear-gradient(135deg, #7b0000 0%, #5f0000 100%);
}

.cqa-contact-section .cqa-section-title { color: #fff; }

.cqa-contact-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 26px;
  backdrop-filter: blur(10px);
}

.cqa-contact-card i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cqa-maroon);
  background: #fff;
  border-radius: 16px;
  font-size: 22px;
  margin-bottom: 18px;
}

.cqa-contact-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 9px;
}

.cqa-contact-card p,
.cqa-contact-card a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.cqa-contact-card a:hover { color: #fff; }

.cqa-footer {
  background: #fff;
  border-top: 1px solid var(--cqa-border);
  padding: 26px 0;
  color: var(--cqa-muted);
  font-size: 13px;
}

.cqa-footer strong { color: var(--cqa-maroon); }

/* =========================================================
   19. Responsive
========================================================= */
@media (max-width: 991px) {
  html { scroll-padding-top: 150px; }

  .cqa-topbar-inner { align-items: flex-start; }
  .cqa-topbar-contact { display: none; }

  .navbar-collapse { padding: 18px 0 8px; }

  .cqa-nav-btn,
  .cqa-nav-outline-btn {
    width: 100%;
    margin-top: 8px;
  }

  .cqa-hero { padding: 70px 0; }
  .cqa-hero-card { margin-top: 40px; }
  .cqa-shortcut-grid { grid-template-columns: repeat(2, 1fr); }
  .cqa-document-item { grid-template-columns: 1fr; }

  .cqa-document-item .cqa-doc-actions {
    justify-content: flex-start;
    padding-left: 60px;
  }

  .about-highlight-card { margin-top: 32px; }

  .director-photo {
    min-height: auto;
    max-height: 520px;
  }

  .director-message-body { padding: 24px; }
  .director-message-content { margin-top: 28px; }
}

@media (max-width: 767px) {
  html { scroll-padding-top: 170px; }

  .cqa-topbar { font-size: 10px; }

  .cqa-topbar-inner {
    min-height: auto;
    padding: 8px 12px;
    flex-direction: column;
    gap: 8px;
  }

  .cqa-topbar-main,
  .cqa-topbar-right { width: 100%; }

  .cqa-topbar-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .cqa-topbar-links::-webkit-scrollbar { display: none; }
  .cqa-topbar-right { justify-content: flex-start; }

  .cqa-navbar { min-height: 68px; }

  .cqa-logo,
  .brand-logo {
    width: 135px;
    max-height: 48px;
  }

  .cqa-brand { font-size: 14px; }

  .cqa-section,
  .cqa-section-sm,
  .cqa-contact-section { padding: 55px 0; }

  .cqa-section-title,
  .section-title { font-size: 24px; }

  .cqa-section-subtitle,
  .section-subtitle { margin-bottom: 30px; }

  .cqa-hero,
  .about-hero { padding: 55px 0; }

  .cqa-hero-actions { flex-direction: column; }

  .cqa-primary-btn,
  .cqa-outline-btn { width: 100%; }

  .cqa-icon-shortcuts { padding: 24px 0; }

  .cqa-shortcut-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cqa-shortcut-item {
    min-height: 96px;
    flex-direction: row;
    gap: 14px;
    justify-content: flex-start;
    text-align: left;
    padding: 18px 20px;
  }

  .cqa-shortcut-icon {
    margin-bottom: 0;
    font-size: 34px;
  }

  .member-card,
  .cqa-staff-card,
  .cqa-about-card,
  .cqa-function-card,
  .cqa-link-card,
  .cqa-news-card,
  .about-content-card,
  .about-list-card,
  .about-value-card { padding: 24px 18px; }

  .about-content-card p { text-align: left; }

  .member-photo {
    width: 84px;
    height: 84px;
  }

  .cqa-staff-photo {
    width: 92px;
    height: 92px;
  }

  .member-name,
  .member-position,
  .cqa-staff-position { min-height: auto; }

  .cqa-modal-body { padding: 24px 18px; }

  .cqa-modal-photo {
    width: 125px;
    height: 125px;
  }

  .cqa-modal-footer { text-align: center; }

  .cqa-docs-hero,
  .cqa-doc-view-hero,
  .cqa-subpage-hero { padding: 45px 0 25px; }

  .cqa-page-title,
  .cqa-docs-title { font-size: 25px; }

  .cqa-doc-desc { min-height: auto; }

  .cqa-panel-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cqa-document-item { padding: 18px; }

  .cqa-document-item .cqa-doc-actions,
  .cqa-doc-actions {
    width: 100%;
    padding-left: 0;
  }

  .cqa-view-btn,
  .cqa-download-btn { width: 100%; }

  .director-message-page { padding: 45px 0 60px; }

  .director-message-header {
    font-size: 16px;
    padding: 16px 18px;
  }

  .director-message-body { padding: 18px; }
  .director-photo { border-radius: 14px; }

  .director-message-content {
    font-size: 13px;
    line-height: 1.9;
    text-align: left;
  }
}

/* =========================================================
   Professional Refinements
========================================================= */
:where(a, button, .btn, .nav-link, .cqa-primary-btn, .cqa-outline-btn, .cqa-nav-btn, .cqa-nav-outline-btn, .cqa-view-btn, .cqa-download-btn):focus-visible {
  outline: 3px solid rgba(214, 161, 43, 0.45);
  outline-offset: 3px;
}

.cqa-navbar .navbar-toggler {
  border: 1px solid var(--cqa-border);
  border-radius: 12px;
  padding: 8px 10px;
  box-shadow: none;
}

.cqa-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 4px rgba(123, 0, 0, 0.08);
}

.cqa-site-header {
  isolation: isolate;
}

.cqa-site-header + main {
  position: relative;
  z-index: 1;
}

.cqa-card-title,
.cqa-doc-title,
.cqa-page-title,
.cqa-docs-title,
.cqa-section-title,
.section-title {
  text-wrap: balance;
}

.cqa-section-text,
.cqa-page-subtitle,
.cqa-docs-subtitle,
.section-subtitle,
.cqa-card-text {
  text-wrap: pretty;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   About Page Timeline + CTA
   Added from about.css and normalized for the master system
========================================================= */
.about-timeline {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.about-timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: stretch;
}

.about-timeline-year {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--cqa-maroon);
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--cqa-shadow);
}

.about-timeline-content {
  background: #ffffff;
  border: 1px solid var(--cqa-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--cqa-shadow);
}

.about-timeline-content h3 {
  color: var(--cqa-dark);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-timeline-content p {
  color: var(--cqa-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}

.about-cta {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(214, 161, 43, 0.16), transparent 30%),
    linear-gradient(135deg, #7b0000 0%, #5f0000 100%);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--cqa-shadow-hover);
}

.about-cta h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 12px;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}

.about-cta .cqa-outline-btn {
  color: var(--cqa-maroon);
  background: #ffffff;
  border-color: #ffffff;
}

.about-cta .cqa-outline-btn:hover {
  color: var(--cqa-maroon);
  background: var(--cqa-maroon-light);
  border-color: var(--cqa-maroon-light);
}

/* =========================================================
   Page Compatibility Helpers
   Keeps old committee, staff and download pages working
========================================================= */
.navbar .container {
  gap: 12px;
}

.brand-logo {
  object-fit: contain;
}

.cqa-home-btn i,
.cqa-nav-btn i,
.cqa-nav-outline-btn i,
.cqa-primary-btn i,
.cqa-outline-btn i,
.cqa-view-btn i,
.cqa-download-btn i {
  line-height: 1;
}

.member-card,
.cqa-staff-card,
.cqa-doc-card,
.cqa-doc-card-page,
.cqa-function-card,
.cqa-link-card,
.cqa-news-card,
.about-value-card {
  will-change: transform;
}

.cqa-empty-message,
.faculty-news-empty {
  color: var(--cqa-muted);
}

/* Use this class on body only when text selection must be disabled. */
.cqa-no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* =========================================================
   Extra Responsive Fixes
========================================================= */
@media (max-width: 991px) {
  .about-timeline-item {
    grid-template-columns: 1fr;
  }

  .about-timeline-year {
    min-height: auto;
    padding: 14px;
  }
}

@media (max-width: 767px) {
  .about-cta {
    padding: 28px 22px;
    text-align: center;
  }

  .about-cta .cqa-outline-btn {
    width: 100%;
    margin-top: 22px;
  }

  .cqa-topbar-social a {
    width: 23px;
    height: 23px;
  }

  .navbar .container {
    gap: 10px;
  }
}

/* =========================================================
   Print
========================================================= */
@media print {
  .cqa-site-header,
  .cqa-topbar,
  .cqa-navbar,
  .cqa-footer,
  .cqa-nav-btn,
  .cqa-nav-outline-btn,
  .cqa-primary-btn,
  .cqa-outline-btn,
  .cqa-view-btn,
  .cqa-download-btn {
    display: none !important;
  }

  body {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .cqa-section,
  .cqa-document-section,
  .director-message-page {
    padding: 20px 0 !important;
  }

  .cqa-document-panel,
  .cqa-doc-card,
  .cqa-staff-card,
  .member-card,
  .about-content-card,
  .director-message-card {
    box-shadow: none !important;
    border-color: #cccccc !important;
  }
}
