/* ================================================================
   SRTTC — Main Stylesheet  v2.0
   ================================================================ */

/* ── CSS Variables ── */
:root {
  --primary:        #c0392b;
  --primary-dark:   #8B1A1A;
  --primary-light:  #e74c3c;
  --primary-xlight: #fff4f4;
  --secondary:      #1a2744;
  --secondary-light:#2c3e6b;
  --gold:           #e8a317;
  --gold-light:     #f5c150;
  --white:          #ffffff;
  --gray-50:        #f8f9fa;
  --gray-100:       #f0f2f5;
  --border:         #e2e8f0;
  --text:           #1e2d40;
  --text-light:     #64748b;
  --radius:         10px;
  --radius-lg:      16px;
  --shadow:         0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:      0 12px 36px rgba(0,0,0,.14);
  --transition:     all .25s ease;
  --font-main:      'Plus Jakarta Sans', sans-serif;
  --font-display:   'Playfair Display', serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
ul { list-style: none; margin: 0; padding: 0; }

/* ── Utility ── */
.fw-700 { font-weight: 700 !important; }
.section-pad { padding: 70px 0; }
section { padding: 60px 0; }
.hero-slider { padding: 0 !important; }

/* ── Buttons ── */
.btn-primary-fill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 11px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
  border: 2px solid var(--primary);
  cursor: pointer;
  text-decoration: none;
}
.btn-primary-fill:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,.35);
}
.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 11px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: .9rem;
  border: 2px solid var(--primary);
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-sm-custom { padding: 6px 16px; font-size: .8rem; }

/* ── Section Headers ── */
.section-header { margin-bottom: 2rem; }
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-xlight);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.25;
  margin-bottom: .5rem;
}
.section-title span { color: var(--primary); }
.section-title.text-white { color: #fff; }
.section-subtitle { color: var(--text-light); font-size: .9rem; max-width: 560px; }
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
  margin-top: 14px;
}

/* ── Hero Slider ── */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 70vh;
  min-height: 460px;
  max-height: 680px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; z-index: 2; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,.82) 0%, rgba(139,26,26,.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 660px;
  padding: 20px 0;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: #0b1f3a;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.hero-subtitle {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-slider-nav {
  position: absolute;
  right: 20px; bottom: 50%;
  transform: translateY(50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-nav-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: .85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.hero-nav-btn:hover { background: var(--primary); border-color: var(--primary); }
.hero-dots {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none; cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--gold); transform: scale(1.35); }

/* ── Notice Bar ── */
.notice-bar {
  background: var(--secondary);
  padding: 9px 0;
  overflow: hidden;
}
.notice-label {
  background: var(--primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 14px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.notice-ticker { overflow: hidden; position: relative; flex: 1; }
.notice-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}
.notice-ticker:hover .notice-track { animation-play-state: paused; }
.notice-item { color: rgba(255,255,255,.85); font-size: .82rem; flex-shrink: 0; }
.notice-item a { color: rgba(255,255,255,.85); }
.notice-item a:hover { color: var(--gold); }
.notice-new {
  background: var(--gold);
  color: #0b1f3a;
  font-size: .65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: middle;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Stats Section ── */
.stats-section { background: var(--secondary); }
.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 8px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,.65); font-size: .8rem; margin-top: 4px; }

/* About section – stats (about.php) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stats-grid .stat-item {
  background: var(--secondary);
  border-right: 1px solid rgba(255,255,255,.1);
}
.stats-grid .stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
}
.stats-grid .stat-item p { color: rgba(255,255,255,.7); font-size: .82rem; margin: 4px 0 0; }
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item { border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
}

/* ── About Section (Home) ── */
.about-home-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-home-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: 20px; right: -15px;
  background: var(--gold);
  color: #0b1f3a;
  padding: 14px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232,163,23,.45);
  min-width: 110px;
}
.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-text { font-size: .78rem; font-weight: 600; opacity: .9; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.feature-icon {
  width: 44px; height: 44px;
  background: var(--primary-xlight);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-text h6 { font-size: .88rem; font-weight: 700; margin-bottom: 2px; }
.feature-text p { font-size: .8rem; color: var(--text-light); margin: 0; }

/* ── Notice Board ── */
.notice-board {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.notice-board-header {
  background: var(--secondary);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notice-board-header h4 { color: #fff; font-size: .95rem; font-weight: 700; margin: 0; }
.notice-board-body { max-height: 400px; overflow-y: auto; }
.notice-item-row {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.notice-item-row:last-child { border-bottom: none; }
.notice-item-row:hover { background: var(--gray-50); }
.notice-icon-box {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--primary-xlight);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}
.notice-item-text a { font-size: .82rem; font-weight: 600; color: var(--text); line-height: 1.4; display: block; }
.notice-item-text a:hover { color: var(--primary); }
.notice-date { font-size: .72rem; color: var(--text-light); margin-top: 3px; }

/* ── Department Cards ── */
.dept-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  background: #fff;
}
.dept-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dept-card-header {
  padding: 26px 22px 20px;
  position: relative;
}
.dept-icon { font-size: 2rem; color: #fff; margin-bottom: 10px; display: block; }
.dept-card-header h5 { color: #fff; font-size: 1rem; font-weight: 700; margin: 6px 0 4px; }
.dept-type { color: rgba(255,255,255,.7); font-size: .74rem; }
.dept-card-body { padding: 18px 22px; }
.dept-card-body p { font-size: .84rem; color: var(--text-light); line-height: 1.65; margin-bottom: 12px; }
.dept-intake { font-size: .78rem; color: var(--text-light); margin-bottom: 14px; }
.dept-link { color: var(--primary); font-size: .84rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.dept-link:hover { gap: 10px; }

/* ── Company Logos ── */
.company-logo-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  display: flex; align-items: center; justify-content: center;
  min-height: 70px;
  transition: var(--transition);
}
.company-logo-item:hover { background: rgba(255,255,255,.14); }
.company-logo-item span { color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 600; }

/* ── Event Cards ── */
.event-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  transition: var(--transition);
  height: 100%;
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.event-img { position: relative; overflow: hidden; height: 200px; }
.event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.event-card:hover .event-img img { transform: scale(1.06); }
.event-category {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
}
.event-body { padding: 18px; }
.event-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }
.event-meta span { font-size: .74rem; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.event-body h5 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.event-body p { font-size: .82rem; color: var(--text-light); margin: 0; }

/* ── Testimonial Cards ── */
/* ── Testimonials Carousel ── */
.testimonials-carousel .testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  margin: 8px 4px 24px;
}
.t-quote {
  font-size: 1.8rem;
  color: var(--gold, #e8a317);
  margin-bottom: 10px;
  opacity: .7;
}
.testimonial-text {
  font-size: .88rem;
  color: #475569;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonials-carousel .owl-nav button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff !important;
  border: 2px solid var(--primary, #c0392b) !important;
  color: var(--primary, #c0392b) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: .2s;
}
.testimonials-carousel .owl-nav button:hover {
  background: var(--primary, #c0392b) !important;
  color: #fff !important;
}
.testimonials-carousel .owl-dots .owl-dot span {
  background: #e2e8f0;
}
.testimonials-carousel .owl-dots .owl-dot.active span {
  background: var(--primary, #c0392b);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-text { font-size: .9rem; color: var(--text); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-name { font-weight: 700; font-size: .9rem; color: var(--secondary); }
.t-designation { font-size: .78rem; color: var(--text-light); }
.t-stars { color: var(--gold); font-size: .75rem; margin-top: 3px; }

/* ── Owl Carousel — item padding ── */
.owl-carousel .owl-item { padding: 8px; }
.owl-carousel .owl-dots .owl-dot span {
  background: var(--border);
  width: 8px; height: 8px;
  border-radius: 50%;
}
.owl-carousel .owl-dots .owl-dot.active span { background: var(--primary); }

/* ── Footer ── */
.main-footer { background: #0b1120; color: rgba(255,255,255,.75); }
.footer-top { padding: 60px 0 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.f-logo-abbr {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--gold);
  background: rgba(232,163,23,.12);
  border: 2px solid var(--gold);
  padding: 6px 14px;
  border-radius: 8px;
}
.f-logo-text { font-size: .8rem; color: rgba(255,255,255,.7); line-height: 1.4; }
.footer-about { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 16px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.footer-badges span {
  font-size: .72rem; font-weight: 600;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 4px 10px;
  border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-title {
  font-size: .88rem; font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .82rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; opacity: .5; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact .fc-item { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-contact .fc-item > i { font-size: 1rem; color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.footer-contact .fc-item strong { display: block; font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 3px; }
.footer-contact .fc-item p { font-size: .8rem; color: rgba(255,255,255,.6); margin: 0; }
.footer-contact .fc-item a { color: rgba(255,255,255,.6); }
.footer-contact .fc-item a:hover { color: var(--gold); }
.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  padding: 7px 18px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-map:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.4); font-size: .8rem; margin-left: 16px; transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.visitor-count { color: rgba(255,255,255,.4); font-size: .8rem; }
.visitor-count i { margin-right: 4px; }

/* ── Back to Top ── */
#backToTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: .9rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(192,57,43,.45);
  z-index: 9998;
  transition: var(--transition);
}
#backToTop:hover { background: var(--primary-dark); transform: translateY(-3px); }
#backToTop.visible { display: flex; }

/* ── Popup ── */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 580px;
  width: 94%;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  animation: popupIn .35s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
@keyframes popupIn { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-close {
  position: absolute;
  top: 10px; right: 12px;
  background: rgba(0,0,0,.55);
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: .85rem;
  z-index: 10;
  transition: background .2s, transform .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.popup-close:hover { background: var(--primary); border-color: var(--primary); transform: scale(1.1); }
/* When popup has only image — close button is bright white circle over it */
.popup-close-over-img {
  background: rgba(0,0,0,.6);
  border-color: rgba(255,255,255,.9);
  top: 12px; right: 12px;
}
.popup-img { width: 100%; max-height: 400px; object-fit: contain; display: block; background: #000; }
/* Image-only popup — no bottom white gap */
.popup-img-only { display: block; max-height: 92vh; width: 100%; object-fit: contain; background:#000; }
.popup-body { padding: 22px; }
.popup-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--secondary); }
.btn-popup-action {
  display: inline-block;
  margin-top: 14px;
  background: var(--primary);
  color: #fff;
  padding: 9px 22px;
  border-radius: 20px;
  font-weight: 700;
  font-size: .85rem;
}

/* ── Scroll Animations ──
   Elements visible by default. JS adds 'anim-ready' to body,
   which then hides them so IntersectionObserver can reveal.
   If JS fails, all content stays visible. ── */
.fade-in, .fade-left, .fade-right {
  transition: opacity .65s ease, transform .65s ease;
}
body.anim-ready .fade-in    { opacity: 0; transform: translateY(22px); }
body.anim-ready .fade-left  { opacity: 0; transform: translateX(-28px); }
body.anim-ready .fade-right { opacity: 0; transform: translateX(28px); }
.fade-in.animated,
.fade-left.animated,
.fade-right.animated { opacity: 1 !important; transform: none !important; }

/* ── Committees Page ── */
.committee-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
  height: 100%;
}
.committee-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.committee-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--secondary); margin-bottom: 10px; }
.committee-card p { font-size: .85rem; color: var(--text-light); margin: 0; }
.committee-card .c-icon { font-size: 1.6rem; color: var(--primary); margin-bottom: 12px; }

/* ── Misc Pages ── */
.rounded-lg { border-radius: var(--radius-lg) !important; }
.shadow { box-shadow: var(--shadow) !important; }
.bg-light { background: var(--gray-50) !important; }

/* ── Placements Page ── */
.placement-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.placement-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.placement-card h5 { font-size: .9rem; font-weight: 700; margin: 12px 0 4px; color: var(--secondary); }
.placement-card p { font-size: .78rem; color: var(--text-light); margin: 0; }
.placement-card .pkg { font-size: .75rem; font-weight: 700; color: var(--primary); margin-top: 6px; }

/* ── IQAC Page ── */
.iqac-doc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  margin-bottom: 10px;
  transition: var(--transition);
}
.iqac-doc-item:hover { box-shadow: var(--shadow); }
.iqac-doc-item i { font-size: 1.4rem; color: var(--primary); flex-shrink: 0; }
.iqac-doc-item h6 { font-size: .86rem; font-weight: 700; margin: 0 0 2px; color: var(--secondary); }
.iqac-doc-item span { font-size: .76rem; color: var(--text-light); }
.iqac-doc-item a {
  margin-left: auto;
  background: var(--primary-xlight);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  transition: var(--transition);
}
.iqac-doc-item a:hover { background: var(--primary); color: #fff; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-slider { height: 55vh; min-height: 360px; }
  .hero-title { font-size: 1.6rem; }
  .hero-subtitle { font-size: .88rem; }
  section { padding: 40px 0; }
  .stat-item { padding: 20px 10px; }
  .about-badge { right: 10px; }
  .footer-top { padding: 40px 0 24px; }
}
@media (max-width: 480px) {
  .hero-slider { height: 50vh; min-height: 300px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary-fill, .btn-primary-outline { width: 100%; justify-content: center; }
}

/* ── OWL Carousel Fallback ──
   If OWL JS fails to init, show items as responsive flex grid ── */
.owl-carousel:not(.owl-loaded) {
  display: flex !important;
  flex-wrap: wrap;
  gap: 20px;
}
.owl-carousel:not(.owl-loaded) > div {
  flex: 0 0 calc(33.33% - 14px);
  min-width: 280px;
}
@media (max-width: 991px) {
  .owl-carousel:not(.owl-loaded) > div { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 599px) {
  .owl-carousel:not(.owl-loaded) > div { flex: 0 0 100%; }
}