@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN SYSTEM — Distinguished Academic Theme
   Primary:   Deep Navy    #0D1B2A
   Secondary: Rich Slate   #1A2E4A
   Accent:    Burnished Gold #A87C3F
   Surface:   Warm White   #FAFAF8
   ============================================================ */

:root {
  /* — Core Palette — */
  --ink: #0D1B2A;
  --ink-mid: #1A2E4A;
  --ink-light: #243B55;
  --gold: #A87C3F;
  --gold-light: #C4993F;
  --gold-muted: rgba(168, 124, 63, 0.12);

  /* — Surfaces — */
  --surface: #FFFFFF;
  --surface-warm: #FAFAF8;
  --surface-soft: #F2F4F7;

  /* — Text — */
  --text: #111827;
  --text-mid: #374151;
  --text-muted: #6B7280;
  --text-faint: #9CA3AF;

  /* — Borders — */
  --border: rgba(13, 27, 42, 0.05);
  --border-soft: rgba(13, 27, 42, 0.03);

  /* — Semantic (restrained, no rainbow) — */
  --status-ok: #2E7D5A;
  --status-info: #1A4D7C;
  --status-warn: #8B6B1A;

  /* — Shadows — */
  --shadow-xs: 0 1px 3px rgba(13, 27, 42, 0.06);
  --shadow-sm: 0 2px 8px rgba(13, 27, 42, 0.08);
  --shadow-md: 0 6px 20px rgba(13, 27, 42, 0.10);
  --shadow-lg: 0 16px 48px rgba(13, 27, 42, 0.14);

  /* — Motion — */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.25s;
  --transition: all var(--duration) var(--ease);

  /* — Spacing — */
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
}

/* ============================================================
   BASE
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface-warm);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
}

h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
}

h3 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

h5 {
  font-size: 16px;
  font-weight: 700;
}

h6 {
  font-size: 14px;
  font-weight: 700;
}

p {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 0;
}

small {
  font-size: 13px;
  color: var(--text-muted);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-blue {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}

.btn-primary-blue:hover {
  background: var(--ink-mid);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary-blue {
  background: var(--ink-mid);
  color: #fff;
  border: 1px solid var(--ink-mid);
}

.btn-accent-gold {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}

.btn-accent-gold:hover {
  background: var(--gold-light);
  color: #fff;
  transform: translateY(-1px);
}

.btn-light-blue {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.btn-light-blue:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.btn-outline-light-blue {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-outline-light-blue:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-primary {
  background: var(--ink-mid);
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px 24px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   TOPBAR
   ============================================================ */

.topbar {
  height: 38px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  min-height: 76px;
  background: #fff;
  border-bottom: none;
  box-shadow: 0 1px 0 var(--border);
}

.brand-title {
  color: var(--ink);
  font-weight: 800;
  font-family: 'Playfair Display', serif;
}

.brand-subtitle {
  color: var(--text-muted);
  font-size: 12px;
}

.brand-mark,
.site-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border);
}

.nav-link {
  color: var(--ink) !important;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
}

.nav-link.active,
.nav-link:hover {
  color: var(--gold) !important;
  background: var(--gold-muted);
}

/* ============================================================
   HERO
   ============================================================ */

.hero-wrap {
  padding-top: 14px;
}

.hero-main {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.hero-stage {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

/* Premium Faculty Card UI */
.faculty-item {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faculty-card {
    background: #ffffff;
    border-radius: 24px !important;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.faculty-card .position-relative {
    overflow: hidden;
    margin: 8px;
    border-radius: 18px;
}

.faculty-img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    object-position: center 20%;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(8, 27, 58, 0.12) !important;
    border-color: rgba(8, 27, 58, 0.1) !important;
}

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

.faculty-overlay {
    background: linear-gradient(to top, rgba(8, 27, 58, 0.9), transparent);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faculty-card:hover .faculty-overlay {
    opacity: 1;
}

.faculty-card h5 {
    font-size: 1.15rem;
    color: var(--ink);
    letter-spacing: -0.3px;
}

.faculty-card .text-primary {
    color: #6C5CE7 !important; /* Soft Purple/Blue for professional look */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.dept-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f2f5;
    color: #666;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

.faculty-card:hover .dept-badge {
    background: rgba(108, 92, 231, 0.1);
    color: #6C5CE7;
}

.hero-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13, 27, 42, 0.82) 0%, rgba(13, 27, 42, 0.38) 55%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 42px;
  max-width: 640px;
  color: #fff;
}

.hero-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  flex-shrink: 0;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
  color: #fff;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.btn-hero-primary {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 12px 26px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.03em;
}

.btn-hero-primary:hover {
  background: var(--gold-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 124, 63, 0.35);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  padding: 12px 26px;
  font-weight: 600;
  font-size: 13.5px;
  backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

/* Important Links Panel */
.important-links {
  height: 100%;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  margin: 14px;
  padding: 20px 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.important-links h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.important-links .subtitle-rule {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 14px;
}

.important-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 10px 0;
  font-size: 13.5px;
  font-weight: 500;
}

.important-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.important-links a i.bi-chevron-right {
  opacity: 0.4;
  font-size: 11px;
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
  margin-top: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  background: var(--ink);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.stat {
  color: #fff;
  text-align: center;
  padding: 16px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.stat:last-child {
  border-right: none;
}

.stat:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* Kill the rainbow — unified gold icon */
.stat i {
  font-size: 22px;
  margin-bottom: 5px;
  display: block;
  color: var(--gold-light);
}

.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
}

/* ============================================================
   SECTION UTILITY
   ============================================================ */

.section {
  padding: 18px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.section-title span {
  width: 60px;
  height: 1.5px;
  background: var(--border);
}

.section-title h3 {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  margin: 0;
}

/* ============================================================
   PRINCIPAL BANNER
   ============================================================ */

.principal-banner {
  border: none;
  border-radius: var(--radius-lg);
  background: linear-gradient(100deg, var(--ink) 0%, var(--ink-mid) 100%);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  color: #fff;
}

.principal-left {
  min-width: 185px;
  text-align: center;
}

.principal-photo {
  width: 140px;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(168, 124, 63, 0.45);
}

.principal-photo.placeholder {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 38px;
  background: rgba(255, 255, 255, 0.07);
}

.principal-center h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.principal-center p {
  margin-bottom: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.principal-sign {
  font-weight: 700;
}

.principal-right {
  margin-left: auto;
  font-size: 72px;
  color: var(--gold);
  opacity: 0.18;
}

/* ============================================================
   MISSION / VISION
   ============================================================ */

.mv-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  height: 100%;
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mv-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-card h4 i {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gold-muted);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.mv-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   PROGRAM BOX
   ============================================================ */

.program-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 16px;
  height: 100%;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.program-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.program-box h5 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 12px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.program-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  transition: var(--transition);
  background: var(--surface-soft);
}

.program-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
  background: var(--surface);
}

.pi-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  margin: 0 auto 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  background: var(--ink-mid);
}

.program-item h6 {
  font-size: 14px;
  color: var(--ink);
  margin: 0 0 2px;
  font-weight: 700;
}

.program-item small {
  display: block;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-size: 12px;
}

.program-item a {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
}

.program-item a:hover {
  color: var(--gold-light);
}

/* ============================================================
   LIST CARD (Notices / Events)
   ============================================================ */

.list-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  height: 100%;
  transition: var(--transition);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}

.card-head h5 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  font-size: 20px;
  color: var(--ink);
}

.card-head a {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
}

.card-head a:hover {
  color: var(--gold-light);
}

.notice-row {
  display: grid;
  grid-template-columns: 52px 1fr 18px;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-soft);
}

.notice-row:last-child {
  border-bottom: none;
}

.date-pill {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-soft);
  text-align: center;
  padding: 5px 2px;
  color: var(--ink);
}

.date-pill strong {
  display: block;
  line-height: 1.1;
  font-size: 17px;
  font-family: 'Playfair Display', serif;
  color: var(--ink);
}

.date-pill span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
}

.notice-text p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.45;
}

.notice-row>i {
  color: var(--text-faint);
  font-size: 14px;
}

/* Events vertical items */
.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
}

.icon-row:last-child {
  border-bottom: none;
}

.icon-row i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.icon-row span {
  font-size: 13.5px;
  color: var(--text-mid);
}

/* ============================================================
   FACULTY CAROUSEL
   ============================================================ */

.faculty-carousel-wrap {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 16px 44px;
  box-shadow: var(--shadow-xs);
}

.faculty-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(175px, 1fr);
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.faculty-mini-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 14px 12px;
  text-align: center;
  transition: var(--transition);
}

.faculty-mini-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.faculty-mini-card img,
.fc-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 8px;
  display: block;
  border: 2px solid var(--border);
}

.fc-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 800;
  font-family: 'Playfair Display', serif;
}

.faculty-mini-card h6 {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.faculty-mini-card small {
  color: var(--text-muted);
  font-size: 12px;
}

.fc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink-mid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.fc-arrow:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.fc-arrow.left {
  left: 8px;
}

.fc-arrow.right {
  right: 8px;
}

/* ============================================================
   SEATS TABLE
   ============================================================ */

.seats-table-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  height: 100%;
  box-shadow: var(--shadow-xs);
}

.seats-table-card h5 {
  margin: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  color: #fff;
  background: var(--ink);
}

.seats-table thead th {
  background: var(--ink-mid);
  color: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 12.5px;
  font-weight: 600;
  padding: 10px 12px;
}

.seats-table tbody td {
  font-size: 13px;
  border-color: var(--border-soft);
  padding: 9px 12px;
  color: var(--text-mid);
}

.seats-table tbody tr:nth-child(even) {
  background: var(--surface-soft);
}

.seats-table .total-row td {
  font-weight: 700;
  color: var(--ink);
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-life-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  padding: 16px;
  height: 100%;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.life-grid img,
.life-placeholder {
  width: 100%;
  height: 84px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
}

.life-grid img:hover {
  transform: scale(1.04);
}

.life-placeholder {
  background: var(--surface-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  padding: 6px;
}

/* ============================================================
   ADMISSION CTA
   ============================================================ */

.admission-cta {
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink-mid);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-left i {
  font-size: 34px;
  color: var(--gold-light);
}

.cta-center h4 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.cta-center p {
  margin: 2px 0 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
}

.cta-right {
  margin-left: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.65);
}

.footer-title {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.social-badge {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-badge:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ============================================================
   CARDS (universal)
   ============================================================ */

.card,
.content-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.card:hover,
.content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.content-card {
  padding: 18px;
}

/* ============================================================
   INNER HERO
   ============================================================ */

.inner-hero-card {
  border: 1px solid var(--ink-mid);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-mid) 100%);
  color: #fff;
}

/* ============================================================
   ADMIN
   ============================================================ */

.admin-auth-bg,
.admin-body {
  background: linear-gradient(175deg, #ECF0F7 0%, #DDE5EF 100%);
}

.admin-auth-card {
  max-width: 500px;
  width: 100%;
  padding: 2rem;
}

.admin-sidebar {
  background: linear-gradient(175deg, var(--ink) 0%, var(--ink-mid) 100%);
}

.admin-nav-link {
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.admin-nav-link.active,
.admin-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.admin-thumb {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border);
}

.form-control,
.form-select {
  min-height: 44px;
  border-radius: var(--radius-sm);
  border-color: var(--border);
  font-size: 14px;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(168, 124, 63, 0.15);
}

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

@media (max-width: 1199.98px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .important-links {
    margin: 10px;
  }
}

@media (max-width: 991.98px) {
  .topbar {
    display: none;
  }

  .hero-stage {
    min-height: 420px;
  }

  .hero-content {
    padding: 26px 22px;
  }

  .principal-banner {
    flex-wrap: wrap;
    text-align: center;
  }

  .principal-left {
    min-width: 100%;
  }

  .principal-right {
    display: none;
  }

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

  .cta-right {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .navbar {
    min-height: 68px;
  }

  .brand-mark,
  .site-logo {
    width: 44px;
    height: 44px;
  }

  .brand-title {
    font-size: 22px;
  }

  .brand-subtitle {
    font-size: 11px;
  }

  .hero-stage {
    min-height: 340px;
  }

  .hero-content {
    padding: 18px;
  }

  .hero-kicker {
    font-size: 10px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

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

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

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

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

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

  .faculty-carousel-wrap {
    padding: 10px 36px;
  }

  .faculty-carousel {
    grid-auto-columns: 170px;
  }

  .section-title h3 {
    font-size: 26px;
  }

  .mv-card h4,
  .card-head h5,
  .program-box h5 {
    font-size: 20px;
  }

  .cta-center h4 {
    font-size: 22px;
  }
}
 / *   F a c u l t y   P r o f i l e   E n h a n c e m e n t s   * / 
 . f a c u l t y - c a r d   { 
         t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 1 6 5 ,   0 . 8 4 ,   0 . 4 4 ,   1 ) ; 
 } 
 . f a c u l t y - c a r d : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 8 p x ) ; 
         b o x - s h a d o w :   0   1 5 p x   3 5 p x   r g b a ( 0 , 0 , 0 , 0 . 1 )   ! i m p o r t a n t ; 
 } 
 . f a c u l t y - i m g   { 
         t r a n s i t i o n :   t r a n s f o r m   0 . 5 s   e a s e ; 
 } 
 . f a c u l t y - c a r d : h o v e r   . f a c u l t y - i m g   { 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 } 
 . f a c u l t y - o v e r l a y   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         r i g h t :   0 ; 
         b o t t o m :   0 ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   t o p ,   r g b a ( 8 ,   2 7 ,   5 8 ,   0 . 8 ) ,   t r a n s p a r e n t ) ; 
         o p a c i t y :   0 ; 
         t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ; 
 } 
 . f a c u l t y - c a r d : h o v e r   . f a c u l t y - o v e r l a y   { 
         o p a c i t y :   1 ; 
 } 
 . t r a n s i t i o n - u p   { 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ,   b o x - s h a d o w   0 . 3 s   e a s e ; 
 } 
 . t r a n s i t i o n - u p : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ; 
         b o x - s h a d o w :   0   1 0 p x   2 5 p x   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
 } 
 . b r e a d c r u m b - i t e m   +   . b r e a d c r u m b - i t e m : : b e f o r e   { 
         c o n t e n t :   \  
 \ F 2 8 5 \ ; 
         f o n t - f a m i l y :   ' b o o t s t r a p - i c o n s ' ; 
         f o n t - s i z e :   1 0 p x ; 
         p a d d i n g - t o p :   4 p x ; 
 } 
 . s t i c k y - t o p   { 
         z - i n d e x :   1 0 ; 
 } 
 @ m e d i a   ( m a x - w i d t h :   9 9 1 . 9 8 p x )   { 
         . s t i c k y - t o p   { 
                 p o s i t i o n :   s t a t i c   ! i m p o r t a n t ; 
         } 
 } 
  
 
 / *   P r e m i u m   F a c u l t y   F i l t e r   U I   * / 
 . f a c u l t y - c o n t r o l s - w r a p p e r   { 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 )   ! i m p o r t a n t ; 
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ; 
 } 
 . f i l t e r - p i l l   { 
         p a d d i n g :   8 p x   2 0 p x ; 
         b o r d e r - r a d i u s :   5 0 p x ; 
         b o r d e r :   1 p x   s o l i d   # e e e ; 
         b a c k g r o u n d :   w h i t e ; 
         c o l o r :   # 4 4 4 ; 
         f o n t - s i z e :   1 3 . 5 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         t r a n s i t i o n :   a l l   0 . 2 5 s   e a s e ; 
 } 
 . f i l t e r - p i l l : h o v e r   { 
         b a c k g r o u n d :   # f 8 f 9 f a ; 
         b o r d e r - c o l o r :   # d d d ; 
         c o l o r :   # 0 0 0 ; 
 } 
 . f i l t e r - p i l l . a c t i v e   { 
         b a c k g r o u n d :   v a r ( - - i n k ) ; 
         c o l o r :   w h i t e ; 
         b o r d e r - c o l o r :   v a r ( - - i n k ) ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 8 ,   2 7 ,   5 8 ,   0 . 2 ) ; 
 } 
 . s e a r c h - p i l l   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         b a c k g r o u n d :   # f 8 f 9 f a ; 
         b o r d e r - r a d i u s :   5 0 p x ; 
         p a d d i n g :   2 p x   1 0 p x ; 
         b o r d e r :   1 p x   s o l i d   # e e e ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 . s e a r c h - p i l l : f o c u s - w i t h i n   { 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - c o l o r :   v a r ( - - i n k ) ; 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ; 
 } 
 . s e a r c h - p i l l   i   { 
         c o l o r :   # 8 8 8 ; 
 } 
 . s e a r c h - p i l l   i n p u t : : p l a c e h o l d e r   { 
         c o l o r :   # a a a ; 
         f o n t - s i z e :   1 4 p x ; 
 } 
  
 @importurl('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/*============================================================
DESIGNSYSTEM—DistinguishedAcademicTheme
Primary:DeepNavy#0D1B2A
Secondary:RichSlate#1A2E4A
Accent:BurnishedGold#A87C3F
Surface:WarmWhite#FAFAF8
============================================================*/

:root{
/*—CorePalette—*/
--ink:#0D1B2A;
--ink-mid:#1A2E4A;
--ink-light:#243B55;
--gold:#A87C3F;
--gold-light:#C4993F;
--gold-muted:rgba(168,124,63,0.12);

/*—Surfaces—*/
--surface:#FFFFFF;
--surface-warm:#FAFAF8;
--surface-soft:#F2F4F7;

/*—Text—*/
--text:#111827;
--text-mid:#374151;
--text-muted:#6B7280;
--text-faint:#9CA3AF;

/*—Borders—*/
--border:rgba(13,27,42,0.05);
--border-soft:rgba(13,27,42,0.03);

/*—Semantic(restrained,norainbow)—*/
--status-ok:#2E7D5A;
--status-info:#1A4D7C;
--status-warn:#8B6B1A;

/*—Shadows—*/
--shadow-xs:01px3pxrgba(13,27,42,0.06);
--shadow-sm:02px8pxrgba(13,27,42,0.08);
--shadow-md:06px20pxrgba(13,27,42,0.10);
--shadow-lg:016px48pxrgba(13,27,42,0.14);

/*—Motion—*/
--ease:cubic-bezier(0.4,0,0.2,1);
--duration:0.25s;
--transition:allvar(--duration)var(--ease);

/*—Spacing—*/
--radius:10px;
--radius-sm:6px;
--radius-lg:16px;
}

/*============================================================
BASE
============================================================*/

*,
*::before,
*::after{
box-sizing:border-box;
}

body{
font-family:'DMSans',sans-serif;
background:var(--surface-warm);
color:var(--text);
line-height:1.65;
-webkit-font-smoothing:antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6{
font-family:'PlayfairDisplay',serif;
font-weight:700;
color:var(--ink);
line-height:1.2;
margin-bottom:0.5em;
}

h1{
font-size:clamp(28px,5vw,42px);
font-weight:800;
}

h2{
font-size:clamp(22px,4vw,32px);
font-weight:700;
}

h3{
font-size:clamp(18px,3vw,24px);
font-weight:600;
}

h4{
font-size:18px;
font-weight:600;
}

h5{
font-size:16px;
font-weight:700;
}

h6{
font-size:14px;
font-weight:700;
}

p{
font-size:15px;
color:var(--text-mid);
margin-bottom:0;
}

small{
font-size:13px;
color:var(--text-muted);
}

a{
text-decoration:none;
transition:var(--transition);
}

/*============================================================
BUTTONS
============================================================*/

.btn{
font-family:'DMSans',sans-serif;
font-weight:600;
font-size:14px;
padding:11px24px;
border-radius:var(--radius-sm);
letter-spacing:0.02em;
transition:var(--transition);
display:inline-flex;
align-items:center;
gap:8px;
}

.btn-primary-blue{
background:var(--ink);
color:#fff;
border:1pxsolidvar(--ink);
}

.btn-primary-blue:hover{
background:var(--ink-mid);
color:#fff;
transform:translateY(-1px);
box-shadow:var(--shadow-md);
}

.btn-secondary-blue{
background:var(--ink-mid);
color:#fff;
border:1pxsolidvar(--ink-mid);
}

.btn-accent-gold{
background:var(--gold);
color:#fff;
border:1pxsolidvar(--gold);
}

.btn-accent-gold:hover{
background:var(--gold-light);
color:#fff;
transform:translateY(-1px);
}

.btn-light-blue{
background:#fff;
color:var(--ink);
border:1pxsolidrgba(255,255,255,0.85);
font-weight:700;
}

.btn-light-blue:hover{
background:rgba(255,255,255,0.9);
color:var(--ink);
}

.btn-outline-light-blue{
background:transparent;
color:rgba(255,255,255,0.9);
border:1pxsolidrgba(255,255,255,0.45);
}

.btn-outline-light-blue:hover{
background:rgba(255,255,255,0.1);
color:#fff;
border-color:rgba(255,255,255,0.7);
}

.btn-primary{
background:var(--ink-mid);
border:none;
border-radius:var(--radius-sm);
padding:11px24px;
font-weight:700;
transition:var(--transition);
}

.btn-primary:hover{
background:var(--ink);
transform:translateY(-2px);
box-shadow:var(--shadow-md);
}

/*============================================================
TOPBAR
============================================================*/

.topbar{
height:38px;
background:var(--ink);
color:rgba(255,255,255,0.75);
font-size:12.5px;
display:flex;
align-items:center;
letter-spacing:0.01em;
}

/*============================================================
NAVBAR
============================================================*/

.navbar{
min-height:76px;
background:#fff;
border-bottom:none;
box-shadow:01px0var(--border);
}

.brand-title{
color:var(--ink);
font-weight:800;
font-family:'PlayfairDisplay',serif;
}

.brand-subtitle{
color:var(--text-muted);
font-size:12px;
}

.brand-mark,
.site-logo{
width:52px;
height:52px;
border-radius:var(--radius-sm);
object-fit:cover;
border:1pxsolidvar(--border);
}

.nav-link{
color:var(--ink)!important;
font-weight:600;
font-size:13.5px;
letter-spacing:0.01em;
padding:8px14px!important;
border-radius:var(--radius-sm);
}

.nav-link.active,
.nav-link:hover{
color:var(--gold)!important;
background:var(--gold-muted);
}

/*============================================================
HERO
============================================================*/

.hero-wrap{
padding-top:14px;
}

.hero-main{
border:1pxsolidvar(--border);
border-radius:var(--radius-lg);
overflow:hidden;
background:var(--surface);
}

.hero-stage{
min-height:520px;
background-size:cover;
background-position:center;
display:flex;
align-items:center;
position:relative;
}

/*PremiumFacultyCardUI*/
.faculty-item{
transition:all0.4scubic-bezier(0.165,0.84,0.44,1);
}

.faculty-card{
background:#ffffff;
border-radius:24px!important;
overflow:hidden;
border:1pxsolidrgba(0,0,0,0.04)!important;
transition:all0.4scubic-bezier(0.165,0.84,0.44,1);
height:100%;
}

.faculty-card.position-relative{
overflow:hidden;
margin:8px;
border-radius:18px;
}

.faculty-img{
transition:transform0.6scubic-bezier(0.165,0.84,0.44,1);
object-position:center20%;
}

.faculty-card:hover{
transform:translateY(-10px);
box-shadow:020px40pxrgba(8,27,58,0.12)!important;
border-color:rgba(8,27,58,0.1)!important;
}

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

.faculty-overlay{
background:linear-gradient(totop,rgba(8,27,58,0.9),transparent);
opacity:0;
transition:all0.4sease;
display:flex;
align-items:center;
justify-content:center;
}

.faculty-card:hover.faculty-overlay{
opacity:1;
}

.faculty-cardh5{
font-size:1.15rem;
color:var(--ink);
letter-spacing:-0.3px;
}

.faculty-card.text-primary{
color:#6C5CE7!important;/*SoftPurple/Blueforprofessionallook*/
font-weight:700;
text-transform:uppercase;
letter-spacing:0.5px;
font-size:0.75rem;
}

.dept-badge{
display:inline-block;
padding:4px12px;
background:#f0f2f5;
color:#666;
border-radius:50px;
font-size:11px;
font-weight:600;
}

.faculty-card:hover.dept-badge{
background:rgba(108,92,231,0.1);
color:#6C5CE7;
}

.hero-stage::after{
content:'';
position:absolute;
inset:0;
background:linear-gradient(105deg,rgba(13,27,42,0.82)0%,rgba(13,27,42,0.38)55%,transparent100%);
pointer-events:none;
}

.hero-content{
position:relative;
z-index:2;
padding:42px;
max-width:640px;
color:#fff;
}

.hero-kicker{
font-family:'DMSans',sans-serif;
font-size:11px;
font-weight:700;
text-transform:uppercase;
letter-spacing:0.18em;
color:var(--gold-light);
margin-bottom:12px;
display:flex;
align-items:center;
gap:10px;
}

.hero-kicker::before{
content:'';
width:28px;
height:2px;
background:var(--gold-light);
flex-shrink:0;
}

.hero-contenth1{
font-family:'PlayfairDisplay',serif;
font-size:clamp(36px,5.5vw,62px);
font-weight:800;
line-height:1.05;
margin-bottom:18px;
color:#fff;
}

.hero-contentp{
font-size:17px;
line-height:1.6;
margin-bottom:28px;
color:rgba(255,255,255,0.82);
}

.btn-hero-primary{
background:var(--gold);
color:#fff;
border:1pxsolidvar(--gold);
border-radius:var(--radius-sm);
padding:12px26px;
font-weight:700;
font-size:13.5px;
letter-spacing:0.03em;
}

.btn-hero-primary:hover{
background:var(--gold-light);
color:#fff;
transform:translateY(-2px);
box-shadow:08px24pxrgba(168,124,63,0.35);
}

.btn-hero-secondary{
background:rgba(255,255,255,0.1);
color:#fff;
border:1pxsolidrgba(255,255,255,0.35);
border-radius:var(--radius-sm);
padding:12px26px;
font-weight:600;
font-size:13.5px;
backdrop-filter:blur(4px);
}

.btn-hero-secondary:hover{
background:rgba(255,255,255,0.18);
color:#fff;
border-color:rgba(255,255,255,0.6);
}

/*ImportantLinksPanel*/
.important-links{
height:100%;
background:rgba(13,27,42,0.96);
backdrop-filter:blur(10px);
border-radius:var(--radius-lg);
margin:14px;
padding:20px18px;
color:#fff;
border:1pxsolidrgba(255,255,255,0.08);
}

.important-linksh4{
font-family:'PlayfairDisplay',serif;
font-size:22px;
font-weight:700;
margin-bottom:6px;
color:#fff;
}

.important-links.subtitle-rule{
width:36px;
height:2px;
background:var(--gold);
margin-bottom:14px;
}

.important-linksa{
display:flex;
justify-content:space-between;
align-items:center;
color:rgba(255,255,255,0.78);
border-bottom:1pxsolidrgba(255,255,255,0.09);
padding:10px0;
font-size:13.5px;
font-weight:500;
}

.important-linksa:hover{
color:var(--gold-light);
padding-left:4px;
}

.important-linksai.bi-chevron-right{
opacity:0.4;
font-size:11px;
}

/*============================================================
STATSBAR
============================================================*/

.stats-bar{
margin-top:12px;
border-radius:var(--radius-lg);
overflow:hidden;
border:none;
background:var(--ink);
}

.stats-grid{
display:grid;
grid-template-columns:repeat(6,1fr);
}

.stat{
color:#fff;
text-align:center;
padding:16px10px;
border-right:1pxsolidrgba(255,255,255,0.08);
transition:var(--transition);
}

.stat:last-child{
border-right:none;
}

.stat:hover{
background:rgba(255,255,255,0.04);
}

/*Killtherainbow—unifiedgoldicon*/
.stati{
font-size:22px;
margin-bottom:5px;
display:block;
color:var(--gold-light);
}

.statstrong{
display:block;
font-family:'PlayfairDisplay',serif;
font-size:24px;
font-weight:700;
line-height:1.1;
color:#fff;
}

.statspan{
font-size:12px;
color:rgba(255,255,255,0.58);
font-weight:500;
}

/*============================================================
SECTIONUTILITY
============================================================*/

.section{
padding:18px0;
}

.section-title{
display:flex;
align-items:center;
justify-content:center;
gap:14px;
margin-bottom:16px;
}

.section-titlespan{
width:60px;
height:1.5px;
background:var(--border);
}

.section-titleh3{
font-family:'PlayfairDisplay',serif;
color:var(--ink);
font-size:clamp(26px,4vw,34px);
font-weight:800;
margin:0;
}

/*============================================================
PRINCIPALBANNER
============================================================*/

.principal-banner{
border:none;
border-radius:var(--radius-lg);
background:linear-gradient(100deg,var(--ink)0%,var(--ink-mid)100%);
display:flex;
align-items:center;
gap:20px;
padding:20px;
color:#fff;
}

.principal-left{
min-width:185px;
text-align:center;
}

.principal-photo{
width:140px;
height:170px;
object-fit:cover;
border-radius:var(--radius-sm);
border:2pxsolidrgba(168,124,63,0.45);
}

.principal-photo.placeholder{
display:inline-flex;
justify-content:center;
align-items:center;
font-size:38px;
background:rgba(255,255,255,0.07);
}

.principal-centerh3{
font-family:'PlayfairDisplay',serif;
font-size:28px;
font-weight:700;
margin-bottom:10px;
color:#fff;
}

.principal-centerp{
margin-bottom:10px;
font-size:16px;
color:rgba(255,255,255,0.78);
}

.principal-sign{
font-weight:700;
}

.principal-right{
margin-left:auto;
font-size:72px;
color:var(--gold);
opacity:0.18;
}

/*============================================================
MISSION/VISION
============================================================*/

.mv-card{
border:1pxsolidvar(--border);
border-radius:var(--radius-lg);
background:var(--surface);
box-shadow:var(--shadow-sm);
padding:22px;
height:100%;
transition:var(--transition);
}

.mv-card:hover{
transform:translateY(-4px);
box-shadow:var(--shadow-md);
}

.mv-cardh4{
font-family:'PlayfairDisplay',serif;
color:var(--ink);
font-size:26px;
font-weight:700;
margin-bottom:10px;
display:flex;
align-items:center;
gap:10px;
}

.mv-cardh4i{
width:36px;
height:36px;
border-radius:var(--radius-sm);
background:var(--gold-muted);
color:var(--gold);
display:inline-flex;
align-items:center;
justify-content:center;
font-size:18px;
flex-shrink:0;
}

.mv-cardp{
color:var(--text-muted);
margin:0;
font-size:15px;
line-height:1.7;
}

/*============================================================
PROGRAMBOX
============================================================*/

.program-box{
border:1pxsolidvar(--border);
border-radius:var(--radius-lg);
background:var(--surface);
padding:16px;
height:100%;
box-shadow:var(--shadow-xs);
transition:var(--transition);
}

.program-box:hover{
transform:translateY(-4px);
box-shadow:var(--shadow-md);
}

.program-boxh5{
font-family:'PlayfairDisplay',serif;
font-size:22px;
color:var(--ink);
font-weight:700;
margin-bottom:12px;
}

.program-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
}

.program-item{
border:1pxsolidvar(--border-soft);
border-radius:var(--radius-sm);
padding:14px12px;
text-align:center;
transition:var(--transition);
background:var(--surface-soft);
}

.program-item:hover{
transform:translateY(-3px);
box-shadow:var(--shadow-sm);
border-color:var(--gold);
background:var(--surface);
}

.pi-icon{
width:44px;
height:44px;
border-radius:var(--radius-sm);
margin:0auto8px;
display:inline-flex;
align-items:center;
justify-content:center;
font-size:20px;
color:#fff;
background:var(--ink-mid);
}

.program-itemh6{
font-size:14px;
color:var(--ink);
margin:002px;
font-weight:700;
}

.program-itemsmall{
display:block;
color:var(--text-muted);
margin-bottom:6px;
font-size:12px;
}

.program-itema{
color:var(--gold);
font-weight:700;
font-size:13px;
}

.program-itema:hover{
color:var(--gold-light);
}

/*============================================================
LISTCARD(Notices/Events)
============================================================*/

.list-card{
border:1pxsolidvar(--border);
border-radius:var(--radius-lg);
background:var(--surface);
box-shadow:var(--shadow-sm);
padding:16px;
height:100%;
transition:var(--transition);
}

.card-head{
display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:12px;
padding-bottom:12px;
border-bottom:1pxsolidvar(--border-soft);
}

.card-headh5{
font-family:'PlayfairDisplay',serif;
margin:0;
font-size:20px;
color:var(--ink);
}

.card-heada{
color:var(--gold);
font-weight:700;
font-size:13px;
}

.card-heada:hover{
color:var(--gold-light);
}

.notice-row{
display:grid;
grid-template-columns:52px1fr18px;
align-items:center;
gap:10px;
padding:9px0;
border-bottom:1pxsolidvar(--border-soft);
}

.notice-row:last-child{
border-bottom:none;
}

.date-pill{
border-radius:var(--radius-sm);
border:1pxsolidvar(--border);
background:var(--surface-soft);
text-align:center;
padding:5px2px;
color:var(--ink);
}

.date-pillstrong{
display:block;
line-height:1.1;
font-size:17px;
font-family:'PlayfairDisplay',serif;
color:var(--ink);
}

.date-pillspan{
font-size:10px;
font-weight:700;
text-transform:uppercase;
color:var(--gold);
}

.notice-textp{
margin:0;
font-size:13.5px;
color:var(--text-mid);
line-height:1.45;
}

.notice-row>i{
color:var(--text-faint);
font-size:14px;
}

/*Eventsverticalitems*/
.icon-row{
display:flex;
align-items:center;
gap:12px;
padding:10px0;
border-bottom:1pxsolidvar(--border-soft);
}

.icon-row:last-child{
border-bottom:none;
}

.icon-rowi{
color:var(--gold);
font-size:16px;
flex-shrink:0;
}

.icon-rowspan{
font-size:13.5px;
color:var(--text-mid);
}

/*============================================================
FACULTYCAROUSEL
============================================================*/

.faculty-carousel-wrap{
position:relative;
border:1pxsolidvar(--border);
border-radius:var(--radius-lg);
background:var(--surface);
padding:16px44px;
box-shadow:var(--shadow-xs);
}

.faculty-carousel{
display:grid;
grid-auto-flow:column;
grid-auto-columns:minmax(175px,1fr);
gap:12px;
overflow-x:auto;
scroll-behavior:smooth;
scrollbar-width:thin;
scrollbar-color:var(--border)transparent;
}

.faculty-mini-card{
border:1pxsolidvar(--border-soft);
border-radius:var(--radius-sm);
background:var(--surface);
padding:14px12px;
text-align:center;
transition:var(--transition);
}

.faculty-mini-card:hover{
border-color:var(--gold);
box-shadow:var(--shadow-sm);
transform:translateY(-3px);
}

.faculty-mini-cardimg,
.fc-placeholder{
width:72px;
height:72px;
border-radius:50%;
object-fit:cover;
margin:0auto8px;
display:block;
border:2pxsolidvar(--border);
}

.fc-placeholder{
display:inline-flex;
align-items:center;
justify-content:center;
background:var(--surface-soft);
color:var(--ink);
font-weight:800;
font-family:'PlayfairDisplay',serif;
}

.faculty-mini-cardh6{
margin:0;
color:var(--ink);
font-size:14px;
font-weight:700;
}

.faculty-mini-cardsmall{
color:var(--text-muted);
font-size:12px;
}

.fc-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
width:28px;
height:28px;
border:1pxsolidvar(--border);
border-radius:50%;
background:var(--surface);
color:var(--ink-mid);
display:inline-flex;
align-items:center;
justify-content:center;
cursor:pointer;
transition:var(--transition);
}

.fc-arrow:hover{
background:var(--ink);
color:#fff;
border-color:var(--ink);
}

.fc-arrow.left{
left:8px;
}

.fc-arrow.right{
right:8px;
}

/*============================================================
SEATSTABLE
============================================================*/

.seats-table-card{
border:1pxsolidvar(--border);
border-radius:var(--radius-lg);
overflow:hidden;
background:var(--surface);
height:100%;
box-shadow:var(--shadow-xs);
}

.seats-table-cardh5{
margin:0;
padding:12px16px;
font-size:16px;
font-weight:700;
font-family:'DMSans',sans-serif;
color:#fff;
background:var(--ink);
}

.seats-tabletheadth{
background:var(--ink-mid);
color:rgba(255,255,255,0.9);
border:none;
font-size:12.5px;
font-weight:600;
padding:10px12px;
}

.seats-tabletbodytd{
font-size:13px;
border-color:var(--border-soft);
padding:9px12px;
color:var(--text-mid);
}

.seats-tabletbodytr:nth-child(even){
background:var(--surface-soft);
}

.seats-table.total-rowtd{
font-weight:700;
color:var(--ink);
}

/*============================================================
GALLERY
============================================================*/

.gallery-life-card{
border:1pxsolidvar(--border);
border-radius:var(--radius-lg);
background:var(--surface);
box-shadow:var(--shadow-xs);
padding:16px;
height:100%;
}

.life-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:6px;
}

.life-gridimg,
.life-placeholder{
width:100%;
height:84px;
object-fit:cover;
border-radius:var(--radius-sm);
border:1pxsolidvar(--border-soft);
transition:var(--transition);
}

.life-gridimg:hover{
transform:scale(1.04);
}

.life-placeholder{
background:var(--surface-soft);
display:inline-flex;
align-items:center;
justify-content:center;
text-align:center;
color:var(--text-muted);
font-size:12px;
padding:6px;
}

/*============================================================
ADMISSIONCTA
============================================================*/

.admission-cta{
border-radius:var(--radius-lg);
background:var(--ink);
color:#fff;
border:1pxsolidvar(--ink-mid);
padding:18px22px;
display:flex;
align-items:center;
gap:16px;
}

.cta-lefti{
font-size:34px;
color:var(--gold-light);
}

.cta-centerh4{
margin:0;
font-family:'PlayfairDisplay',serif;
font-size:28px;
font-weight:800;
color:#fff;
}

.cta-centerp{
margin:2px00;
font-size:15px;
color:rgba(255,255,255,0.68);
}

.cta-right{
margin-left:auto;
display:flex;
gap:10px;
flex-wrap:wrap;
}

/*============================================================
FOOTER
============================================================*/

.site-footer{
background:var(--ink);
border-top:1pxsolidrgba(255,255,255,0.07);
color:rgba(255,255,255,0.65);
}

.footer-title{
font-family:'PlayfairDisplay',serif;
color:#fff;
font-size:17px;
font-weight:700;
}

.footer-links{
list-style:none;
padding:0;
}

.footer-linksli{
margin-bottom:10px;
}

.footer-linksa{
color:rgba(255,255,255,0.6);
font-size:13.5px;
transition:var(--transition);
}

.footer-linksa:hover{
color:var(--gold-light);
padding-left:4px;
}

.social-badge{
width:32px;
height:32px;
border-radius:var(--radius-sm);
display:inline-flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,0.08);
color:rgba(255,255,255,0.75);
transition:var(--transition);
border:1pxsolidrgba(255,255,255,0.1);
}

.social-badge:hover{
background:var(--gold);
color:#fff;
border-color:var(--gold);
}

/*============================================================
CARDS(universal)
============================================================*/

.card,
.content-card{
background:var(--surface);
border-radius:var(--radius-lg);
border:1pxsolidvar(--border);
box-shadow:var(--shadow-xs);
transition:var(--transition);
}

.card:hover,
.content-card:hover{
transform:translateY(-4px);
box-shadow:var(--shadow-md);
}

.content-card{
padding:18px;
}

/*============================================================
INNERHERO
============================================================*/

.inner-hero-card{
border:1pxsolidvar(--ink-mid);
border-radius:var(--radius-lg);
background:linear-gradient(120deg,var(--ink)0%,var(--ink-mid)100%);
color:#fff;
}

/*============================================================
ADMIN
============================================================*/

.admin-auth-bg,
.admin-body{
background:linear-gradient(175deg,#ECF0F70%,#DDE5EF100%);
}

.admin-auth-card{
max-width:500px;
width:100%;
padding:2rem;
}

.admin-sidebar{
background:linear-gradient(175deg,var(--ink)0%,var(--ink-mid)100%);
}

.admin-nav-link{
border-radius:var(--radius-sm);
padding:0.7rem0.9rem;
color:rgba(255,255,255,0.8);
font-weight:600;
font-size:14px;
transition:var(--transition);
}

.admin-nav-link.active,
.admin-nav-link:hover{
background:rgba(255,255,255,0.1);
color:#fff;
}

.admin-thumb{
width:96px;
height:96px;
border-radius:var(--radius-sm);
object-fit:cover;
border:1pxsolidvar(--border);
}

.form-control,
.form-select{
min-height:44px;
border-radius:var(--radius-sm);
border-color:var(--border);
font-size:14px;
transition:var(--transition);
}

.form-control:focus,
.form-select:focus{
border-color:var(--gold);
box-shadow:0003pxrgba(168,124,63,0.15);
}

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

@media(max-width:1199.98px){
.stats-grid{
grid-template-columns:repeat(3,1fr);
}

.important-links{
margin:10px;
}
}

@media(max-width:991.98px){
.topbar{
display:none;
}

.hero-stage{
min-height:420px;
}

.hero-content{
padding:26px22px;
}

.principal-banner{
flex-wrap:wrap;
text-align:center;
}

.principal-left{
min-width:100%;
}

.principal-right{
display:none;
}

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

.cta-right{
margin-left:0;
width:100%;
}
}

@media(max-width:575.98px){
.navbar{
min-height:68px;
}

.brand-mark,
.site-logo{
width:44px;
height:44px;
}

.brand-title{
font-size:22px;
}

.brand-subtitle{
font-size:11px;
}

.hero-stage{
min-height:340px;
}

.hero-content{
padding:18px;
}

.hero-kicker{
font-size:10px;
}

.hero-contenth1{
font-size:34px;
}

.hero-contentp{
font-size:15px;
}

.btn-hero-primary,
.btn-hero-secondary{
width:100%;
justify-content:center;
}

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

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

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

.faculty-carousel-wrap{
padding:10px36px;
}

.faculty-carousel{
grid-auto-columns:170px;
}

.section-titleh3{
font-size:26px;
}

.mv-cardh4,
.card-headh5,
.program-boxh5{
font-size:20px;
}

.cta-centerh4{
font-size:22px;
}
}
 / *  F a c u l t y  P r o f i l e  E n h a n c e m e n t s  * / 
 . f a c u l t y - c a r d  { 
     t r a n s i t i o n :  a l l  0 . 3 s  c u b i c - b e z i e r ( 0 . 1 6 5 ,  0 . 8 4 ,  0 . 4 4 ,  1 ) ; 
 } 
 . f a c u l t y - c a r d : h o v e r  { 
     t r a n s f o r m :  t r a n s l a t e Y ( - 8 p x ) ; 
     b o x - s h a d o w :  0  1 5 p x  3 5 p x  r g b a ( 0 , 0 , 0 , 0 . 1 )  ! i m p o r t a n t ; 
 } 
 . f a c u l t y - i m g  { 
     t r a n s i t i o n :  t r a n s f o r m  0 . 5 s  e a s e ; 
 } 
 . f a c u l t y - c a r d : h o v e r  . f a c u l t y - i m g  { 
     t r a n s f o r m :  s c a l e ( 1 . 0 5 ) ; 
 } 
 . f a c u l t y - o v e r l a y  { 
     p o s i t i o n :  a b s o l u t e ; 
     t o p :  0 ; 
     l e f t :  0 ; 
     r i g h t :  0 ; 
     b o t t o m :  0 ; 
     b a c k g r o u n d :  l i n e a r - g r a d i e n t ( t o  t o p ,  r g b a ( 8 ,  2 7 ,  5 8 ,  0 . 8 ) ,  t r a n s p a r e n t ) ; 
     o p a c i t y :  0 ; 
     t r a n s i t i o n :  o p a c i t y  0 . 3 s  e a s e ; 
 } 
 . f a c u l t y - c a r d : h o v e r  . f a c u l t y - o v e r l a y  { 
     o p a c i t y :  1 ; 
 } 
 . t r a n s i t i o n - u p  { 
     t r a n s i t i o n :  t r a n s f o r m  0 . 3 s  e a s e ,  b o x - s h a d o w  0 . 3 s  e a s e ; 
 } 
 . t r a n s i t i o n - u p : h o v e r  { 
     t r a n s f o r m :  t r a n s l a t e Y ( - 5 p x ) ; 
     b o x - s h a d o w :  0  1 0 p x  2 5 p x  r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
 } 
 . b r e a d c r u m b - i t e m  +  . b r e a d c r u m b - i t e m : : b e f o r e  { 
     c o n t e n t :  \  
 \ F 2 8 5 \ ; 
     f o n t - f a m i l y :  ' b o o t s t r a p - i c o n s ' ; 
     f o n t - s i z e :  1 0 p x ; 
     p a d d i n g - t o p :  4 p x ; 
 } 
 . s t i c k y - t o p  { 
     z - i n d e x :  1 0 ; 
 } 
 @ m e d i a  ( m a x - w i d t h :  9 9 1 . 9 8 p x )  { 
     . s t i c k y - t o p  { 
         p o s i t i o n :  s t a t i c  ! i m p o r t a n t ; 
     } 
 } 
  
 
 / *  P r e m i u m  F a c u l t y  F i l t e r  U I  * / 
 . f a c u l t y - c o n t r o l s - w r a p p e r  { 
     b a c k g r o u n d :  r g b a ( 2 5 5 ,  2 5 5 ,  2 5 5 ,  0 . 8 )  ! i m p o r t a n t ; 
     b a c k d r o p - f i l t e r :  b l u r ( 1 0 p x ) ; 
 } 
 . f i l t e r - p i l l  { 
     p a d d i n g :  8 p x  2 0 p x ; 
     b o r d e r - r a d i u s :  5 0 p x ; 
     b o r d e r :  1 p x  s o l i d  # e e e ; 
     b a c k g r o u n d :  w h i t e ; 
     c o l o r :  # 4 4 4 ; 
     f o n t - s i z e :  1 3 . 5 p x ; 
     f o n t - w e i g h t :  6 0 0 ; 
     t r a n s i t i o n :  a l l  0 . 2 5 s  e a s e ; 
 } 
 . f i l t e r - p i l l : h o v e r  { 
     b a c k g r o u n d :  # f 8 f 9 f a ; 
     b o r d e r - c o l o r :  # d d d ; 
     c o l o r :  # 0 0 0 ; 
 } 
 . f i l t e r - p i l l . a c t i v e  { 
     b a c k g r o u n d :  v a r ( - - i n k ) ; 
     c o l o r :  w h i t e ; 
     b o r d e r - c o l o r :  v a r ( - - i n k ) ; 
     b o x - s h a d o w :  0  4 p x  1 2 p x  r g b a ( 8 ,  2 7 ,  5 8 ,  0 . 2 ) ; 
 } 
 . s e a r c h - p i l l  { 
     d i s p l a y :  f l e x ; 
     a l i g n - i t e m s :  c e n t e r ; 
     b a c k g r o u n d :  # f 8 f 9 f a ; 
     b o r d e r - r a d i u s :  5 0 p x ; 
     p a d d i n g :  2 p x  1 0 p x ; 
     b o r d e r :  1 p x  s o l i d  # e e e ; 
     t r a n s i t i o n :  a l l  0 . 3 s  e a s e ; 
 } 
 . s e a r c h - p i l l : f o c u s - w i t h i n  { 
     b a c k g r o u n d :  w h i t e ; 
     b o r d e r - c o l o r :  v a r ( - - i n k ) ; 
     b o x - s h a d o w :  0  4 p x  1 5 p x  r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ; 
 } 
 . s e a r c h - p i l l  i  { 
     c o l o r :  # 8 8 8 ; 
 } 
 . s e a r c h - p i l l  i n p u t : : p l a c e h o l d e r  { 
     c o l o r :  # a a a ; 
     f o n t - s i z e :  1 4 p x ; 
 } 
  
 

/* Premium Faculty Filter UI */
.faculty-controls-wrapper {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(8, 27, 58, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}
.filter-pill {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid #e9ecef;
    background: #ffffff;
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    cursor: pointer;
}
.filter-pill:hover {
    background: #f8f9fa;
    color: var(--ink);
    border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 27, 58, 0.08);
}
.filter-pill.active {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
    box-shadow: 0 8px 25px rgba(8, 27, 58, 0.2);
    transform: translateY(-2px);
}
.search-pill {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 6px 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}
.search-pill:focus-within {
    background: #ffffff;
    border-color: var(--ink);
    box-shadow: 0 0 0 4px rgba(8, 27, 58, 0.05);
}
.search-pill i {
    color: var(--ink);
    font-size: 1.1rem;
    margin-right: 12px;
}
.search-pill input {
    font-weight: 500;
    font-size: 14px;
    color: var(--ink);
}

/* Premium Faculty Card UI */
.faculty-item {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.faculty-card {
    background: #ffffff;
    border-radius: 24px !important;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}
.faculty-card .position-relative {
    overflow: hidden;
    margin: 10px;
    border-radius: 20px;
}
.faculty-img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.faculty-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(8, 27, 58, 0.15) !important;
}
.faculty-card:hover .faculty-img {
    transform: scale(1.08);
}
.faculty-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(8, 27, 58, 0.85), transparent);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faculty-card:hover .faculty-overlay {
    opacity: 1;
}
.faculty-card h5 {
    font-size: 1.2rem;
    color: var(--ink);
    letter-spacing: -0.2px;
}
.faculty-card .text-primary {
    color: #6C5CE7 !important;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
}
.dept-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #f1f3f5;
    color: #495057;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
}

 / *   P r e m i u m   G a l l e r y   U I   * / 
 . g a l l e r y - f i l t e r s - w r a p p e r   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         m a x - w i d t h :   9 0 % ; 
         o v e r f l o w - x :   a u t o ; 
         s c r o l l b a r - w i d t h :   n o n e ;   / *   F i r e f o x   * / 
 } 
 . g a l l e r y - f i l t e r s - w r a p p e r : : - w e b k i t - s c r o l l b a r   { 
         d i s p l a y :   n o n e ;   / *   C h r o m e / S a f a r i   * / 
 } 
 . g a l l e r y - c a r d - p r e m i u m   { 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 5 s   c u b i c - b e z i e r ( 0 . 1 6 5 ,   0 . 8 4 ,   0 . 4 4 ,   1 ) ; 
 } 
 . g a l l e r y - c a r d - p r e m i u m   i m g   { 
         t r a n s i t i o n :   t r a n s f o r m   0 . 8 s   c u b i c - b e z i e r ( 0 . 1 6 5 ,   0 . 8 4 ,   0 . 4 4 ,   1 ) ; 
 } 
 . g a l l e r y - i n f o - o v e r l a y   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         r i g h t :   0 ; 
         b o t t o m :   0 ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   t o p ,   r g b a ( 8 ,   2 7 ,   5 8 ,   0 . 9 5 )   0 % ,   r g b a ( 8 ,   2 7 ,   5 8 ,   0 . 4 )   5 0 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
         o p a c i t y :   0 ; 
         t r a n s f o r m :   t r a n s l a t e Y ( 2 0 p x ) ; 
         t r a n s i t i o n :   a l l   0 . 5 s   c u b i c - b e z i e r ( 0 . 1 6 5 ,   0 . 8 4 ,   0 . 4 4 ,   1 ) ; 
         p o i n t e r - e v e n t s :   n o n e ; 
 } 
 . g a l l e r y - c a r d - p r e m i u m : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x ) ; 
         b o x - s h a d o w :   0   2 5 p x   5 0 p x   r g b a ( 8 ,   2 7 ,   5 8 ,   0 . 2 )   ! i m p o r t a n t ; 
 } 
 . g a l l e r y - c a r d - p r e m i u m : h o v e r   i m g   { 
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
 } 
 . g a l l e r y - c a r d - p r e m i u m : h o v e r   . g a l l e r y - i n f o - o v e r l a y   { 
         o p a c i t y :   1 ; 
         t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ; 
         p o i n t e r - e v e n t s :   a u t o ; 
 } 
 . o v e r l a y - c o n t e n t   { 
         t r a n s f o r m :   t r a n s l a t e Y ( 2 0 p x ) ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 5 s   c u b i c - b e z i e r ( 0 . 1 6 5 ,   0 . 8 4 ,   0 . 4 4 ,   1 )   0 . 1 s ; 
 } 
 . g a l l e r y - c a r d - p r e m i u m : h o v e r   . o v e r l a y - c o n t e n t   { 
         t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ; 
 } 
 . g l i g h t b o x - l i n k   { 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 . g l i g h t b o x - l i n k : h o v e r   { 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
         b a c k g r o u n d :   w h i t e ; 
         c o l o r :   v a r ( - - i n k ) ; 
 } 
  
 
 / *   - - -   C O M P R E H E N S I V E   R E S P O N S I V E N E S S   &   L A R G E   S C R E E N   F I X E S   - - -   * / 
 
 / *   F i x   f o r   M i s s i o n   &   V i s i o n   S e c t i o n   * / 
 . m v - c o n t a i n e r   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
         g a p :   3 0 p x ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   9 9 1 p x )   { 
         . m v - c o n t a i n e r   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         } 
         . m v - c a r d - n e w   { 
                 p a d d i n g :   3 0 p x   ! i m p o r t a n t ; 
         } 
         . m v - c o n t e n t - n e w   h 3   { 
                 f o n t - s i z e :   2 4 p x   ! i m p o r t a n t ; 
         } 
         . m v - c o n t e n t - n e w   p   { 
                 f o n t - s i z e :   1 6 p x   ! i m p o r t a n t ; 
                 l i n e - h e i g h t :   1 . 6   ! i m p o r t a n t ; 
         } 
 } 
 
 / *   G l o b a l   T y p o g r a p h y   R e s p o n s i v e n e s s   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         h 1   {   f o n t - s i z e :   3 2 p x   ! i m p o r t a n t ;   } 
         h 2   {   f o n t - s i z e :   2 8 p x   ! i m p o r t a n t ;   } 
         h 3   {   f o n t - s i z e :   2 2 p x   ! i m p o r t a n t ;   } 
         . s e c t i o n - t i t l e   h 2   {   f o n t - s i z e :   2 8 p x   ! i m p o r t a n t ;   } 
 } 
 
 / *   P r i n c i p a l   S e c t i o n   F i x e s   * / 
 @ m e d i a   ( m a x - w i d t h :   9 9 1 p x )   { 
         . p r i n c i p a l - c a r d - i n n e r   { 
                 f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
                 t e x t - a l i g n :   c e n t e r ; 
         } 
         . p r i n c i p a l - i m g - b o x   { 
                 m a r g i n :   0   a u t o   3 0 p x   ! i m p o r t a n t ; 
                 w i d t h :   2 5 0 p x   ! i m p o r t a n t ; 
                 h e i g h t :   2 5 0 p x   ! i m p o r t a n t ; 
         } 
         . p r i n c i p a l - q u o t e   { 
                 l e f t :   5 0 %   ! i m p o r t a n t ; 
                 t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % )   ! i m p o r t a n t ; 
         } 
 } 
 
 / *   F o o t e r   G r i d   R e s p o n s i v e n e s s   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . f o o t e r - m a i n   . r o w   >   d i v   { 
                 m a r g i n - b o t t o m :   3 0 p x ; 
                 t e x t - a l i g n :   c e n t e r ; 
         } 
         . f o o t e r - s o c i a l   { 
                 j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
         } 
 } 
 
 / *   G a l l e r y   R e s p o n s i v e n e s s   * / 
 @ m e d i a   ( m a x - w i d t h :   5 7 6 p x )   { 
         . g a l l e r y - b o x   { 
                 w i d t h :   1 0 0 %   ! i m p o r t a n t ; 
         } 
 } 
 
 / *   L a r g e   S c r e e n   O p t i m i z a t i o n   ( L a p t o p s / D e s k t o p s )   * / 
 @ m e d i a   ( m i n - w i d t h :   1 4 0 0 p x )   { 
         . c o n t a i n e r   { 
                 m a x - w i d t h :   1 3 2 0 p x   ! i m p o r t a n t ; 
         } 
         . p r i n c i p a l - c a r d - i n n e r   { 
                 m a x - w i d t h :   1 1 0 0 p x ; 
                 m a r g i n :   0   a u t o ; 
         } 
 } 
 
 / *   N a v b a r   T o g g l e   F i x   * / 
 @ m e d i a   ( m a x - w i d t h :   9 9 1 p x )   { 
         . n a v b a r - c o l l a p s e   { 
                 b a c k g r o u n d :   v a r ( - - n a v y - d a r k ) ; 
                 p a d d i n g :   2 0 p x ; 
                 b o r d e r - r a d i u s :   2 0 p x ; 
                 m a r g i n - t o p :   1 5 p x ; 
                 b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 , 0 , 0 , 0 . 5 ) ; 
         } 
 } 
  
 
 / *   - - -   M I S S I O N   &   V I S I O N   U L T I M A T E   M O B I L E   F I X   - - -   * / 
 . m v - s e c t i o n   { 
         p a d d i n g :   6 0 p x   0 ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
 } 
 
 . m v - c o n t a i n e r   { 
         d i s p l a y :   g r i d   ! i m p o r t a n t ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r )   ! i m p o r t a n t ; 
         g a p :   3 0 p x   ! i m p o r t a n t ; 
 } 
 
 . m v - c a r d - n e w   { 
         b a c k g r o u n d :   w h i t e   ! i m p o r t a n t ; 
         p a d d i n g :   4 0 p x   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   3 0 p x   ! i m p o r t a n t ; 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
         a l i g n - i t e m s :   f l e x - s t a r t   ! i m p o r t a n t ; 
         g a p :   2 0 p x   ! i m p o r t a n t ; 
         b o x - s h a d o w :   0   1 5 p x   4 0 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 )   ! i m p o r t a n t ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e   ! i m p o r t a n t ; 
         h e i g h t :   1 0 0 %   ! i m p o r t a n t ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 0 , 0 , 0 , 0 . 0 5 )   ! i m p o r t a n t ; 
 } 
 
 . m v - i c o n - c i r c l e   { 
         w i d t h :   6 0 p x   ! i m p o r t a n t ; 
         h e i g h t :   6 0 p x   ! i m p o r t a n t ; 
         b a c k g r o u n d :   v a r ( - - a c c e n t - g o l d )   ! i m p o r t a n t ; 
         c o l o r :   w h i t e   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   5 0 %   ! i m p o r t a n t ; 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
         f o n t - s i z e :   2 4 p x   ! i m p o r t a n t ; 
         f l e x - s h r i n k :   0   ! i m p o r t a n t ; 
 } 
 
 . m v - m i s s i o n - n e w   . m v - i c o n - c i r c l e   { 
         b a c k g r o u n d :   # 6 3 6 6 f 1   ! i m p o r t a n t ;   / *   I n d i g o   * / 
 } 
 
 . m v - v i s i o n - n e w   . m v - i c o n - c i r c l e   { 
         b a c k g r o u n d :   # f 5 9 e 0 b   ! i m p o r t a n t ;   / *   A m b e r   * / 
 } 
 
 . m v - c o n t e n t - n e w   h 3   { 
         f o n t - s i z e :   2 8 p x   ! i m p o r t a n t ; 
         f o n t - w e i g h t :   8 0 0   ! i m p o r t a n t ; 
         m a r g i n - b o t t o m :   1 5 p x   ! i m p o r t a n t ; 
         c o l o r :   v a r ( - - n a v y - d a r k )   ! i m p o r t a n t ; 
 } 
 
 . m v - c o n t e n t - n e w   p   { 
         f o n t - s i z e :   1 6 p x   ! i m p o r t a n t ; 
         l i n e - h e i g h t :   1 . 8   ! i m p o r t a n t ; 
         c o l o r :   # 6 4 7 4 8 b   ! i m p o r t a n t ; 
         m a r g i n - b o t t o m :   0   ! i m p o r t a n t ; 
 } 
 
 / *   R e s p o n s i v e   O v e r r i d e s   * / 
 @ m e d i a   ( m a x - w i d t h :   9 9 1 p x )   { 
         . m v - c o n t a i n e r   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r   ! i m p o r t a n t ; 
                 g a p :   2 0 p x   ! i m p o r t a n t ; 
         } 
         . m v - c a r d - n e w   { 
                 p a d d i n g :   3 0 p x   ! i m p o r t a n t ; 
                 a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
                 t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
         } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   5 7 6 p x )   { 
         . m v - s e c t i o n   { 
                 p a d d i n g :   4 0 p x   0   ! i m p o r t a n t ; 
         } 
         . m v - c o n t e n t - n e w   h 3   { 
                 f o n t - s i z e :   2 4 p x   ! i m p o r t a n t ; 
         } 
         . m v - c o n t e n t - n e w   p   { 
                 f o n t - s i z e :   1 5 p x   ! i m p o r t a n t ; 
         } 
 } 
  
 