/* ==========================================================================
   MATSYA ITI KHERLI — REFINED PREMIUM LIGHT DESIGN SYSTEM
   Brand Colors:
   - Deep Navy Blue: #0b2545 (primary text & brand)
   - Professional / Royal Blue: #1a56db (secondary brand & links)
   - Flame Orange Accent: #f97316 (sparingly used for highlights & CTAs)
   - Light Backgrounds: #ffffff (75%), #f8fafc & #f1f5f9 (25%)
   ========================================================================== */

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

:root {
  --navy-dark: #07172c;
  --navy-primary: #0b2545;
  --navy-light: #163660;
  --blue-primary: #1a56db;
  --blue-hover: #1442a8;
  --blue-soft: #f0f7ff;
  --blue-border: #dbeafe;
  --orange-flame: #f97316;
  --orange-hover: #ea580c;
  --orange-soft: #fff7ed;
  --bg-slate: #f8fafc;
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
  --border-subtle: #edf2f7;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(11, 37, 69, 0.04), 0 1px 2px rgba(11, 37, 69, 0.02);
  --shadow-md: 0 4px 14px rgba(11, 37, 69, 0.06);
  --shadow-lg: 0 10px 30px rgba(11, 37, 69, 0.08);
  --sidebar-width: 260px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy-primary);
  font-weight: 700;
  letter-spacing: -0.015em;
}

/* -------------------------------------------------------------
   Top Information Strip (Subtle, Thin, Professional)
   ------------------------------------------------------------- */
.top-bar-strip {
  background: var(--navy-primary);
  color: #cbd5e1;
  font-size: 0.8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar-strip a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}
.top-bar-strip a:hover {
  color: #ffffff;
}
.top-social-link {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.top-social-link:hover {
  color: #ffffff;
}

/* -------------------------------------------------------------
   Header & Navbar (Clean, White, Compact)
   ------------------------------------------------------------- */
.main-navbar {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(11, 37, 69, 0.04);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}
.main-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(11, 37, 69, 0.08);
}
.brand-text-wrap {
  line-height: 1.15;
}
.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-primary);
  letter-spacing: -0.01em;
  margin: 0;
}
.brand-subtitle {
  font-size: 0.72rem;
  color: var(--orange-flame);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 2px 0 0;
}

.main-navbar .nav-link {
  color: var(--navy-primary) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  position: relative;
  transition: color 0.2s ease;
}
.main-navbar .nav-link:hover {
  color: var(--blue-primary) !important;
}
.main-navbar .nav-link.active {
  color: var(--blue-primary) !important;
}
.main-navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 14px;
  right: 14px;
  height: 2.5px;
  background-color: var(--blue-primary);
  border-radius: 2px;
}

/* -------------------------------------------------------------
   Buttons
   ------------------------------------------------------------- */
.btn-iti-navy, .btn-iti-primary {
  background-color: var(--navy-primary);
  color: #ffffff;
  border: 1.5px solid var(--navy-primary);
  font-weight: 600;
  border-radius: 8px;
  padding: 9px 20px;
  font-size: 0.92rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-iti-navy:hover, .btn-iti-primary:hover {
  background-color: var(--navy-dark);
  border-color: var(--navy-dark);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(11, 37, 69, 0.2);
}

.btn-iti-blue {
  background-color: var(--blue-primary);
  color: #ffffff;
  border: 1.5px solid var(--blue-primary);
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-iti-blue:hover {
  background-color: var(--blue-hover);
  border-color: var(--blue-hover);
  color: #ffffff;
}

.btn-iti-outline-navy, .btn-iti-outline {
  background-color: #ffffff;
  color: var(--navy-primary);
  border: 1.5px solid var(--navy-primary);
  font-weight: 600;
  border-radius: 8px;
  padding: 9px 20px;
  font-size: 0.92rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-iti-outline-navy:hover, .btn-iti-outline:hover {
  background-color: #f8fafc;
  color: var(--blue-primary);
  border-color: var(--blue-primary);
}

.btn-iti-orange {
  background-color: var(--orange-flame);
  color: #ffffff;
  border: 1.5px solid var(--orange-flame);
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 0.94rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-iti-orange:hover {
  background-color: var(--orange-hover);
  border-color: var(--orange-hover);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-iti-pill-outline {
  background: transparent;
  color: var(--navy-primary);
  border: 1.5px solid var(--border-light);
  font-weight: 600;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.84rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-iti-pill-outline:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  background-color: var(--blue-soft);
}

/* -------------------------------------------------------------
   Hero Section (Light, Airy, White with Campus Image & Logo)
   ------------------------------------------------------------- */
.hero-clean-section {
  background: #ffffff;
  padding: 50px 0 35px;
  position: relative;
  overflow: hidden;
}
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  color: #b45309;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.hero-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1.1;
  margin: 0 0 6px 0;
  letter-spacing: -0.02em;
}
.hero-sub-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin: 0 0 14px 0;
  line-height: 1.2;
}
.hero-tagline-bold {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 12px 0;
}
.hero-desc-text {
  font-size: 0.95rem;
  color: #64748b;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Hero Right Side (Campus Building + Floating Round Logo) */
.hero-visual-wrap {
  position: relative;
  width: 100%;
}
.hero-campus-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.hero-floating-logo-card {
  position: absolute;
  top: -15px;
  right: -10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 10px 14px 8px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(11, 37, 69, 0.14);
  border: 1px solid rgba(226, 232, 240, 0.9);
  text-align: center;
  max-width: 175px;
}
.hero-floating-logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.hero-floating-logo-text {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-primary);
  line-height: 1.1;
  margin-top: 4px;
}

/* -------------------------------------------------------------
   Information Strip Below Hero (Clean 4-item card)
   ------------------------------------------------------------- */
.info-strip-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 16px 20px;
  margin-top: 15px;
  margin-bottom: 45px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
}
.info-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.info-item-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin: 0;
  line-height: 1.2;
}
.info-item-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 2px 0 0;
}

/* -------------------------------------------------------------
   Section Headers (Underlined Accent)
   ------------------------------------------------------------- */
.section-heading-wrap {
  position: relative;
  margin-bottom: 28px;
}
.section-main-title {
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--navy-primary);
  position: relative;
  display: inline-block;
  margin: 0;
}
.section-main-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--orange-flame);
  border-radius: 2px;
}
.section-main-title span {
  color: var(--blue-primary);
}

/* -------------------------------------------------------------
   About Section
   ------------------------------------------------------------- */
.about-section {
  padding: 40px 0 50px;
  background: #ffffff;
}
.about-workshop-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.about-feature-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  transition: transform 0.2s, box-shadow 0.2s;
}
.about-feature-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--blue-border);
}
.about-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.about-feature-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin: 0;
}

/* -------------------------------------------------------------
   Trades / Courses Cards
   ------------------------------------------------------------- */
.trades-section {
  padding: 45px 0 55px;
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.clean-trade-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 18px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.clean-trade-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-primary);
}
.trade-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
}
.clean-trade-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trade-meta-pill {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 14px;
}
.trade-view-link {
  color: var(--blue-primary);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}
.trade-view-link:hover {
  color: var(--blue-hover);
  gap: 8px;
}

/* -------------------------------------------------------------
   Facilities Clean Icons Grid
   ------------------------------------------------------------- */
.facility-clean-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  transition: all 0.2s;
  height: 100%;
}
.facility-clean-box:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.facility-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 10px;
}
.facility-clean-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin: 0;
}

/* -------------------------------------------------------------
   Notices List (Clean Date Badge)
   ------------------------------------------------------------- */
.notice-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.2s;
  text-decoration: none;
}
.notice-item-row:hover {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-sm);
}
.notice-date-badge {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 4px 8px;
  text-align: center;
  min-width: 46px;
  flex-shrink: 0;
}
.notice-date-day {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1;
}
.notice-date-month {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--navy-light);
  text-transform: uppercase;
  margin-top: 2px;
}
.notice-text-content {
  flex-grow: 1;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-primary);
  margin: 0;
}
.badge-notice-new {
  background: #fee2e2;
  color: #dc2626;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

/* -------------------------------------------------------------
   Admission CTA Bar (Navy Blue Horizontal Section)
   ------------------------------------------------------------- */
.admission-cta-bar {
  background: linear-gradient(90deg, #07172c 0%, #0b2545 100%);
  color: #ffffff;
  padding: 28px 0;
}
.admission-cta-icon {
  font-size: 2.5rem;
  color: #ffffff;
  opacity: 0.9;
}
.admission-cta-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 2px 0;
}
.admission-cta-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin: 0;
}

/* -------------------------------------------------------------
   Footer (Deep Navy Blue, Simple, Clean)
   ------------------------------------------------------------- */
.public-footer {
  background: #07172c;
  color: #94a3b8;
  padding: 50px 0 20px;
  font-size: 0.88rem;
}
.footer-brand-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
}
.footer-brand-sub {
  color: #cbd5e1;
  font-size: 0.75rem;
  margin: 2px 0 6px 0;
}
.footer-motto-cursive {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: #93c5fd;
  margin-top: 4px;
}
.footer-col-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-clean-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-clean-links li {
  margin-bottom: 8px;
}
.footer-clean-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-clean-links a:hover {
  color: #ffffff;
  padding-left: 3px;
}
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  margin-top: 35px;
  font-size: 0.8rem;
  color: #64748b;
}

/* Scroll To Top Button */
.scroll-top-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}
.scroll-top-btn:hover {
  background: var(--blue-hover);
  color: #ffffff;
}

/* -------------------------------------------------------------
   Inner Pages Clean Header Banner
   ------------------------------------------------------------- */
.inner-page-banner {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 30px 0 25px;
}
.inner-page-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 6px;
}
.breadcrumb-clean {
  font-size: 0.82rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb-clean a {
  color: var(--blue-primary);
  text-decoration: none;
}

/* -------------------------------------------------------------
   Admin & Accountant Layout CSS
   ------------------------------------------------------------- */
.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
}
.dashboard-sidebar {
  width: var(--sidebar-width);
  background: var(--navy-dark);
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 1000;
}
.sidebar-brand {
  padding: 20px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
}
.sidebar-brand-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}
.sidebar-brand-role {
  font-size: 0.7rem;
  color: var(--orange-flame);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sidebar-nav {
  list-style: none;
  padding: 14px 12px;
  margin: 0;
  flex-grow: 1;
}
.sidebar-heading {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 10px 4px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  margin-bottom: 2px;
}
.sidebar-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}
.sidebar-link.active {
  color: #ffffff;
  background: var(--blue-primary);
  box-shadow: 0 4px 10px rgba(26, 86, 219, 0.3);
}
.sidebar-link i {
  font-size: 1.15rem;
  width: 22px;
  text-align: center;
}

.dashboard-main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #f8fafc;
}

.dashboard-topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
}
.dashboard-content {
  padding: 24px;
  flex-grow: 1;
}

/* -------------------------------------------------------------
   Dashboard Metric KPI Cards
   ------------------------------------------------------------- */
.kpi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease;
}
.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.kpi-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.kpi-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1.1;
  margin: 0;
}
.kpi-subtitle {
  font-size: 0.76rem;
  color: #64748b;
  margin-top: 4px;
}
.kpi-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* -------------------------------------------------------------
   Tables
   ------------------------------------------------------------- */
.table-custom {
  margin-bottom: 0;
}
.table-custom thead th {
  background: #f1f5f9;
  color: var(--navy-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--border-light);
  padding: 12px 14px;
  white-space: nowrap;
}
.table-custom tbody td {
  padding: 12px 14px;
  font-size: 0.88rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--border-light);
}
.table-custom tbody tr:hover {
  background-color: #f8fafc;
}

/* -------------------------------------------------------------
   Badges
   ------------------------------------------------------------- */
.badge-iti-active {
  background-color: #dcfce7;
  color: #15803d;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
}
.badge-iti-pending {
  background-color: #fef3c7;
  color: #b45309;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
}
.badge-iti-admin {
  background-color: #dbeafe;
  color: #1e40af;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
}
.badge-iti-accountant {
  background-color: #ffedd5;
  color: #c2410c;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
}

/* -------------------------------------------------------------
   Strict Correction Notice for Accountant
   ------------------------------------------------------------- */
.correction-notice-box {
  background-color: #fff7ed;
  border: 1.5px dashed var(--orange-flame);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.correction-notice-box i {
  font-size: 1.8rem;
  color: var(--orange-flame);
  flex-shrink: 0;
}
.correction-notice-box h6 {
  margin: 0;
  color: #9a3412;
  font-weight: 700;
}
.correction-notice-box p {
  margin: 3px 0 0;
  font-size: 0.84rem;
  color: #c2410c;
}

/* -------------------------------------------------------------
   Receipt Card
   ------------------------------------------------------------- */
.receipt-paper {
  background: #ffffff;
  border: 2px solid #0b2545;
  border-radius: var(--radius-sm);
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  position: relative;
}
.receipt-header-row {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 2px solid #0b2545;
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.receipt-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.receipt-inst-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin: 0;
  text-transform: uppercase;
}
.receipt-inst-sub {
  font-size: 0.8rem;
  color: #475569;
  margin: 2px 0 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .dashboard-wrapper {
    flex-direction: column;
  }
  .dashboard-sidebar {
    width: 100%;
    height: auto;
    position: static;
  }
  .hero-main-title {
    font-size: 2.1rem;
  }
  .hero-sub-title {
    font-size: 1.35rem;
  }
  .hero-campus-img {
    height: 220px;
  }
  .hero-floating-logo-card {
    position: static;
    margin: 15px auto 0;
    max-width: 140px;
  }
}
