/* ═══════════════════════════════════════════════════════════════════
   HURL – Hindustan Urvarak & Rasayan Limited
   Complete Professional Government Website Stylesheet
   ═══════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
  --green-dark:   #0d5c2e;
  --green-main:   #1a6b3a;
  --green-mid:    #2d8a50;
  --green-light:  #3da865;
  --lime-main:    #7fae09;
  --line-main:     #668b0a;
  --green-pale:   #e8f5ee;
  --green-bg:     #f0f9f4;
  --gold:         #d5b44eb3;
  --gold-light:   #f0d878;
  --gold-dark:    #a07828;
  --navy:         #1a2744e0;
  --navy-mid:     #253560f0;
  --red-accent:   #d32f2f;
  --orange:       #e65100;
  --white:        #ffffff;
  --off-white:    #f8f9fa;
  --gray-100:     #f4f5f6;
  --gray-200:     #e9ecef;
  --gray-300:     #dee2e6;
  --gray-400:     #ced4da;
  --gray-500:     #adb5bd;
  --gray-600:     #6c757d;
  --gray-700:     #495057;
  --gray-800:     #343a40;
  --gray-900:     #212529;
  --text-main:    #2c2c2c;
  --text-light:   #555;
  --border:       #dde3e8;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.15);
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    12px;
  --radius-xl:    20px;
  --sidebar-w:    300px;
  --header-h:     90px;
  --nav-h:        48px;
  --transition:   0.25s ease;
  --font-main: Arial, Helvetica, sans-serif;
}

/* ── Base Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text-main);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: var(--green-main); transition: color var(--transition); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; }

/* HURL reload-only caution popup */
.hurl-reload-caution-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 12px;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.hurl-reload-caution-backdrop.show {
  opacity: 1;
  visibility: visible;
}
.hurl-reload-caution-modal {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  transform: translateY(-30px);
  transition: transform var(--transition);
}
.hurl-reload-caution-backdrop.show .hurl-reload-caution-modal {
  transform: translateY(0);
}
.hurl-reload-caution-header {
  background: var(--line-main);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 4px solid var(--gold);
}
.hurl-reload-caution-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.hurl-reload-caution-x {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.16);
  color: white;
  cursor: pointer;
  font-size: 16px;
  flex-shrink: 0;
  transition: all var(--transition);
}
.hurl-reload-caution-x:hover {
  background: var(--gold);
  color: var(--navy);
}
.hurl-reload-caution-logo {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 28px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.hurl-reload-caution-logo img {
  /* max-width: 44px; */
  /* max-height: 44px; */
  object-fit: contain;
}
.hurl-reload-caution-name {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.4px;
}
.hurl-reload-caution-full {
  margin-top: 3px;
  color: var(--off-white);
  font-size: 17px;
  font-weight: 500;
}
.hurl-reload-full{
  font-size: 11px;
}
.hurl-reload-caution-body {
  padding: 24px 30px 18px;
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
}
.hurl-reload-caution-body h2 {
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-align: center;
}
.hurl-reload-caution-footer {
  background: var(--green-pale);
  border-top: 1px solid var(--border);
  padding: 12px 18px;
  display: flex;
  justify-content: flex-end;
}
.hurl-reload-caution-close {
  border: none;
  background: var(--line-main);
  color: white;
  padding: 9px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}


/* ══════════════════════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════════════════════ */
.top-bar {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 2px solid var(--gold);
  position: relative;
  z-index: 1000;
}
.top-bar .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 18px;
}
.top-bar .contact-info span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.8);
}
.top-bar .contact-info i { color: var(--gold); font-size: 11px; }
.top-bar .social-links { display: flex; gap: 8px; align-items: center; }
.top-bar .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border-radius: 50%;
  font-size: 11px;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}
.top-bar .social-links a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}
.weather-widget {
  position: relative;
}
.weather-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 11px;
  cursor: pointer;
  transition: all var(--transition);
}
.weather-toggle:hover,
.weather-toggle:focus {
  background: var(--gold);
  color: var(--navy);
  outline: none;
  transform: translateY(-1px);
}
.weather-popover {
  position: absolute;
  top: 34px;
  right: 0;
  width: min(320px, calc(100vw - 24px));
  background: white;
  color: var(--text-main);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 1300;
  overflow: hidden;
}
.weather-popover.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.weather-popover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: var(--line-main);
  color: white;
  font-size: 12px;
  font-weight: 700;
}
.weather-popover-header button {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.16);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.weather-list {
  padding: 8px;
  max-height: 320px;
  overflow-y: auto;
}
.weather-loading,
.weather-error {
  padding: 14px 10px;
  color: var(--gray-600);
  font-size: 12px;
  text-align: center;
}
.weather-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--off-white);
}
.weather-card + .weather-card {
  margin-top: 8px;
}
.weather-place {
  font-size: 13px;
  font-weight: 800;
  color: var(--green-dark);
}
.weather-desc {
  font-size: 11px;
  color: var(--gray-600);
  margin-top: 2px;
}
.weather-temp {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  text-align: right;
}
.weather-meta {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--gray-600);
  font-size: 11px;
}
.top-bar .admin-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gold-light);
  font-size: 11px;
  padding: 3px 10px;
  border: 1px solid rgba(200,169,74,0.4);
  border-radius: 3px;
  transition: all var(--transition);
}
.top-bar .admin-link:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Accessibility bar */
.access-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--border);
  padding: 3px 0;
  font-size: 11px;
  color: var(--gray-600);
}
.access-bar .container-fluid {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
.access-bar a {
  color: var(--gray-600);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.access-bar a:hover { color: var(--green-main); }

/* ══════════════════════════════════════════════════════════════════
   SITE HEADER
═══════════════════════════════════════════════════════════════════ */
.site-header {
  /* background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 45%, var(--green-mid) 100%); */
  background-color: var(--lime-main);
  padding: 12px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.site-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -100px;
  width: 400px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,169,74,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  border-radius: 50%;
}
.logo-placeholder {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(200,169,74,0.6);
  font-size: 30px;
  color: var(--gold);
}
.logo-text { line-height: 1.25; }
.org-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.org-full {
  font-size: 19px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}
.org-tagline {
  font-size: 19px;
  color: rgb(245 255 0 / 98%);
  margin-top: 2px;
  font-style: italic;

}
.header-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.header-emblem img {
  height: 60px;
  filter: brightness(0) invert(1) opacity(0.9);
}
.header-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 24px;
  overflow: hidden;
  height: 36px;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}
.header-search:focus-within {
  background: rgba(255,255,255,0.25);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,74,0.2);
}
.header-search input {
  background: transparent;
  border: none;
  outline: none;
  padding: 0 14px;
  color: white;
  font-size: 13px;
  width: 230px;
}
.header-search input::placeholder { color: rgba(255,255,255,0.65); }
.header-search button {
  background: var(--gold);
  border: none;
  height: 36px;
  width: 40px;
  color: var(--navy);
  cursor: pointer;
  font-size: 13px;
  transition: background var(--transition);
}
.header-search button:hover { background: var(--gold-light); }
.header-quick-links {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}
.header-quick-links a {
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}
.header-quick-links a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════════════════════════════
   NEWS TICKER
═══════════════════════════════════════════════════════════════════ */
.updates-ticker {
  /* background: linear-gradient(90deg, var(--green-dark), var(--green-main)); */
  background-color: var(--lime-main);
  color: white;
  display: flex;
  align-items: center;
  height: 36px;
  overflow: hidden;
  border-bottom: 2px solid var(--gold);
}
.ticker-label {
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.ticker-wrap {
  overflow: hidden;
  flex: 1;
  height: 100%;
  position: relative;
}
.ticker-content {
  display: inline-flex;
  align-items: center;
  height: 100%;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
  gap: 0;
}
.ticker-content:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.ticker-item {
  font-size: 12px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ticker-item a { color: rgba(255,255,255,0.9); }
.ticker-item a:hover { color: var(--gold-light); }
.ticker-separator { color: var(--gold); opacity: 0.6; font-size: 10px; }
.new-badge {
  background: #ff4444;
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 2px;
  text-transform: uppercase;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.6; }
}

/* ══════════════════════════════════════════════════════════════════
   MAIN NAVIGATION
═══════════════════════════════════════════════════════════════════ */
.main-nav {
  /* background: linear-gradient(180deg, #1e7a42 0%, var(--green-main) 100%); */
  background-color: var(--lime-main);
  position: static;
  z-index: 990;
  box-shadow: 0 3px 15px rgba(0,0,0,0.2);
  border-bottom: 2px solid rgba(200,169,74,0.5);
}
.main-nav .navbar {
  min-height: var(--nav-h);
  padding: 0;
  position: relative;
}
.main-nav .menu-toggle {
  min-width: 90px;
  min-height: 56px;
  background: rgba(255,255,255,0.12);
  color: white;
  padding: 6px 12px;
  margin: 4px 0;
  border-radius: var(--radius-sm);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  transition: all var(--transition);
}
.main-nav .menu-toggle span {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.7px;
}
.main-nav .menu-toggle i {
  font-size: 30px;
}
.main-nav .menu-toggle:hover,
.main-nav .menu-toggle:focus {
  background: var(--gold);
  color: var(--navy) !important;
  outline: none;
}
.main-nav .navbar-collapse {
  position: absolute;
  top: 100%;
  right: 8px;
  z-index: 1200;
  flex-basis: auto;
  flex-grow: 0;
  width: min(320px, calc(100vw - 16px));
  justify-content: flex-end;
  background: var(--line-main);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.main-nav .menu-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.main-nav .menu-close {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.main-nav .menu-close:hover,
.main-nav .menu-close:focus {
  background: var(--gold);
  color: var(--navy);
  outline: none;
}
.main-nav .navbar-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 6px;
  padding: 8px;
  margin-left: auto;
}
.main-nav .nav-item { position: relative; }
.main-nav .nav-link {
  color: rgba(255,255,255,0.92) !important;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: all var(--transition);
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  height: 100%;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--gold-light) !important;
  background: rgba(255,255,255,0.1);
}
.main-nav .dropdown-menu {
  background: white;
  border: none;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 6px 0;
  margin-top: 0;
  animation: dropIn 0.2s ease;
}
.main-nav .navbar-nav .dropdown-menu {
  position: static;
  width: 100%;
  min-width: 0;
  box-shadow: none;
  border-radius: var(--radius-sm);
  margin: 2px 0 6px;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.main-nav .dropdown-item {
  font-size: 12.5px;
  color: var(--text-main);
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.main-nav .dropdown-item:hover {
  background: var(--green-pale);
  color: var(--green-main);
  border-left-color: var(--green-main);
  padding-left: 22px;
}
.badge-new {
  background: #ff4444;
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 3px;
  text-transform: uppercase;
}



/* ══════════════════════════════════════════════════════════════════
   PAGE BANNER / BREADCRUMB
═══════════════════════════════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 50%, var(--green-mid) 100%);
  padding: 5px 0 5px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner .container-fluid {
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}
.breadcrumb-item { font-size: 12px; }
.breadcrumb-item a { color: var(--gold-light); }
.breadcrumb-item.active { color: rgba(255,255,255,0.8); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.page-banner .banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,74,0.2);
  border: 1px solid rgba(200,169,74,0.5);
  color: var(--gold-light);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ══════════════════════════════════════════════════════════════════
   CONTENT WRAPPER + LAYOUT
═══════════════════════════════════════════════════════════════════ */
.content-wrapper {
  display: flex;
  gap: 0;
  align-items: flex-start;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
  min-height: 60vh;
}
.main-content {
  flex: 1;
  min-width: 0;
  padding: 28px 24px 40px;
}
.right-sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  padding: 20px 16px;
  background: var(--white);
  border-left: 1px solid var(--border);
  min-height: 500px;
}

/* ══════════════════════════════════════════════════════════════════
   SIDEBAR WIDGETS
═══════════════════════════════════════════════════════════════════ */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.widget-title {
  /* background: linear-gradient(90deg, var(--green-main), var(--green-mid)); */
  background-color: var(--lime-main);
  color: white;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.widget-body { padding: 12px; }
.sidebar-update-item {
  border-bottom: 1px solid var(--gray-100);
  padding: 8px 12px;
  transition: background var(--transition);
}
.sidebar-update-item:last-child { border-bottom: none; }
.sidebar-update-item:hover { background: var(--green-pale); }
.sidebar-update-item a { font-size: 12px; color: var(--text-main); line-height: 1.4; }
.sidebar-update-item a:hover { color: var(--green-main); }
.sidebar-update-item .date { font-size: 10px; color: var(--gray-500); margin-top: 2px; }
.new-tag {
  background: #ff4444;
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 2px;
  margin-right: 4px;
  text-transform: uppercase;
}
.quick-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 12.5px;
  color: var(--text-main);
  border-bottom: 1px dashed var(--gray-200);
  transition: all var(--transition);
}
.quick-link-item:last-child { border-bottom: none; }
.quick-link-item i { color: var(--green-main); font-size: 11px; width: 14px; }
.quick-link-item:hover {
  color: var(--green-main);
  padding-left: 6px;
}

/* ══════════════════════════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-carousel { border-radius: 0; }
.hero-slide {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide .slide-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    90deg,
    rgba(13,92,46,0.82) 0%,
    rgba(13,92,46,0.55) 50%,
    rgba(13,92,46,0.15) 100%
  ); */
}
.hero-slide .slide-content {
  position: relative;
  z-index: 2;
  padding: 40px 60px;
  max-width: 700px;
  color: white;
}
.hero-slide .slide-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,74,0.25);
  border: 1px solid rgba(200,169,74,0.6);
  color: var(--navy);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 900;
}
.hero-slide h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-slide p {
  font-size: 15px;
  opacity: 0.88;
  margin-bottom: 24px;
  line-height: 1.7;
}
.hero-slide .slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 24px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(200,169,74,0.4);
}
.btn-hero-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,169,74,0.5);
}
.btn-hero-outline {
  background: transparent;
  color: white;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 13px;
  border: 2px solid rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
}
/* Carousel controls */
.carousel-control-prev, .carousel-control-next {
  width: 50px;
  background: rgba(0,0,0,0.25);
  opacity: 1;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
  background: rgba(0,0,0,0.45);
}
.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid transparent;
}
.carousel-indicators .active {
  background: var(--gold);
  border-color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════════
   STAT CARDS
═══════════════════════════════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41z'/%3E%3C/g%3E%3C/svg%3E");
}
.stat-card-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.stat-card-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.stat-card-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(200,169,74,0.4);
}
.stat-card-item:hover::before { transform: scaleX(1); }
.stat-icon {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}
.stat-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ══════════════════════════════════════════════════════════════════
   SECTION HEADINGS
═══════════════════════════════════════════════════════════════════ */
.section-heading {
  margin-bottom: 36px;
  text-align: center;
}
.section-heading .pre-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-main);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.section-heading .pre-title::before,
.section-heading .pre-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 1px;
}
.section-heading h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
}
.section-heading p {
  font-size: 14px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-main), var(--gold));
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ══════════════════════════════════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════════════════════════════════ */
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.product-card .card-img-wrap {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--green-pale), var(--green-bg));
}
.product-card .card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .card-img-wrap img { transform: scale(1.05); }
.product-card .card-img-wrap .card-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--line-main);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}
.product-card .card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .card-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--green-mid);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.product-card .card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card .card-text {
  font-size: 12.5px;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
}
.product-card .card-footer-wrap {
  padding: 12px 16px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ══════════════════════════════════════════════════════════════════
   LEADER CARDS
═══════════════════════════════════════════════════════════════════ */
.leader-card {
  text-align: center;
  padding: 28px 20px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.leader-card .avatar-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 4px solid var(--green-pale);
  box-shadow: 0 4px 15px rgba(26,107,58,0.2);
}
.leader-card .avatar-wrap img {  object-fit: cover; }
.leader-card .avatar-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
}
.leader-card .leader-name { font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.leader-card .leader-title { font-size: 12px; color: var(--green-main); font-weight: 600; }
.leader-card .leader-quote {
  font-size: 12px;
  color: var(--gray-600);
  font-style: italic;
  margin-top: 10px;
  line-height: 1.6;
  border-top: 1px dashed var(--border);
  padding-top: 10px;
}

/* ══════════════════════════════════════════════════════════════════
   TENDER TABLE
═══════════════════════════════════════════════════════════════════ */
.tender-portal-header {
  /* background: linear-gradient(135deg, var(--green-dark), var(--green-main)); */
  background-color: var(--lime-main);
  padding: 30px;
  border-radius: var(--radius-lg);
  color: white;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.tender-portal-header::before {
  content: '\f15c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  opacity: 0.08;
}
.tender-stats-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.tender-stat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: all var(--transition);
}
.tender-stat-badge:hover,
.tender-stat-badge.active-tab {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.tender-stat-badge .count {
  background: rgba(255,255,255,0.25);
  padding: 1px 7px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 11px;
}
.tender-filter-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.tender-table-wrap {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.hurl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.hurl-table thead th {
  background: linear-gradient(90deg, var(--lime-main), var(--line-main));
  color: white;
  padding: 13px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border: none;
}
.hurl-table thead th:first-child { border-radius: 0; }
.hurl-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.hurl-table tbody tr:last-child { border-bottom: none; }
.hurl-table tbody tr:hover { background: var(--green-pale); }
.hurl-table tbody td {
  padding: 13px 16px;
  color: var(--text-main);
  vertical-align: middle;
}
.hurl-table tbody tr:nth-child(even) { background: var(--gray-100); }
.hurl-table tbody tr:nth-child(even):hover { background: var(--green-pale); }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.status-open    { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.status-closed  { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.status-upcoming{ background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.status-open::before    { content: '●'; color: #28a745; }
.status-closed::before  { content: '●'; color: #dc3545; }
.status-upcoming::before{ content: '●'; color: #ffc107; }

/* ══════════════════════════════════════════════════════════════════
   JOB PORTAL
═══════════════════════════════════════════════════════════════════ */
.job-portal-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 30px;
  border-radius: var(--radius-lg);
  color: white;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.job-portal-header::before {
  content: '\f0b1';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  opacity: 0.08;
}
.job-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.job-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green-main), var(--green-mid));
  transform: scaleY(0);
  transition: transform var(--transition);
}
.job-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--green-light);
}
.job-card:hover::before { transform: scaleY(1); }
.job-card .job-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.job-card .job-dept {
  font-size: 12px;
  color: var(--green-main);
  font-weight: 600;
  margin-bottom: 10px;
}
.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gray-600);
}
.job-meta-item i { color: var(--green-main); font-size: 11px; }
.deadline-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════════ */
.btn-hurl-primary {
  /* background: linear-gradient(135deg, var(--green-main), var(--green-mid)); */
  background-color: var(--line-main);
  color: white;
  border: none;
  padding: 9px 22px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 3px 10px rgba(26,107,58,0.3);
}
.btn-hurl-primary:hover {
  /* background: linear-gradient(135deg, var(--green-dark), var(--green-main)); */
  background-color: var(--lime-main);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,58,0.4);
  color: white;
}
.btn-hurl-outline {
  background: transparent;
  color: var(--green-main);
  border: 2px solid var(--green-main);
  padding: 7px 18px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-hurl-outline:hover {
  background: var(--green-main);
  color: white;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border: none;
  padding: 9px 22px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 3px 10px rgba(200,169,74,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,169,74,0.4);
}
.btn-download {
  background: var(--navy);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-download:hover {
  background: var(--navy-mid);
  color: white;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════════
   HOME PAGE SECTIONS
═══════════════════════════════════════════════════════════════════ */
.home-section { padding: 56px 0; }
.home-section-alt { background: var(--gray-100); }
.home-section-dark {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
}
.home-section-green {
  /* background: linear-gradient(135deg, var(--green-dark), var(--green-main)); */
  background-color: var(--lime-main);
  color: white;
}
.achievement-card {
  text-align: center;
  padding: 24px 18px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--transition);
}
.achievement-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.achievement-card .ach-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
  color: var(--navy);
}
.achievement-card .ach-year {
  font-size: 11px;
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.achievement-card .ach-title { font-size: 13px; color: white; font-weight: 600; }
.partner-logo {
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 80px;
}
.partner-logo:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
  transform: scale(1.04);
}
.partner-logo img { max-height: 50px; max-width: 140px; object-fit: contain; }
.partner-logo-placeholder {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-main);
  text-align: center;
}
.update-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}
.update-item:last-child { border-bottom: none; }
.update-date-box {
  min-width: 48px;
  text-align: center;
  background: var(--line-main);
  color: white;
  border-radius: var(--radius-sm);
  padding: 6px 4px;
}
.update-date-box .day { font-size: 18px; font-weight: 700; line-height: 1; }
.update-date-box .month { font-size: 9px; text-transform: uppercase; letter-spacing: 0.5px; }
.update-content .update-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 3px;
}
.update-content .update-title a { color: var(--text-main); }
.update-content .update-title a:hover { color: var(--green-main); }
.update-content .update-meta { font-size: 11px; color: var(--gray-500); }

/* Business Unit Cards */
.business-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.business-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.business-card .bc-header {
  /* background: linear-gradient(135deg, var(--green-main), var(--green-mid)); */
  background-color: var(--line-main);
  padding: 24px 20px;
  color: white;
  position: relative;
}
.business-card .bc-header .bc-icon {
  font-size: 36px;
  opacity: 0.25;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.business-card .bc-body { padding: 18px 20px; }
.business-card .bc-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.business-card .bc-location { font-size: 12px; opacity: 0.8; display: flex; align-items: center; gap: 5px; }
.business-card .bc-stat { font-size: 22px; font-weight: 800; color: var(--green-main); }
.business-card .bc-stat-label { font-size: 11px; color: var(--gray-600); }

/* ══════════════════════════════════════════════════════════════════
   CHATBOT WIDGET
═══════════════════════════════════════════════════════════════════ */
.chatbot-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}
.chatbot-toggle {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  box-shadow: 0 6px 25px rgba(26,107,58,0.5);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.chatbot-toggle:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 35px rgba(26,107,58,0.6);
}
.pulse-ring {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(26,107,58,0.25);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0%   { transform: translate(-50%,-50%) scale(0.85); opacity: 0.8; }
  70%  { transform: translate(-50%,-50%) scale(1.2);  opacity: 0; }
  100% { transform: translate(-50%,-50%) scale(1.2);  opacity: 0; }
}
.chatbot-window {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 360px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 15px 60px rgba(0,0,0,0.2);
  overflow: hidden;
  border: 1px solid var(--border);
  transform: scale(0.8) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.chatbot-window.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.chatbot-header {
  /* background: linear-gradient(135deg, var(--green-dark), var(--green-main)); */
  background-color: var(--lime-main);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bot-avatar { font-size: 28px; }
.bot-name { font-size: 14px; font-weight: 700; color: white; }
.bot-status { font-size: 11px; color: rgba(255,255,255,0.8); }
.close-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: auto;
  font-size: 12px;
  transition: background var(--transition);
}
.close-btn:hover { background: rgba(255,255,255,0.3); }
.chatbot-messages {
  height: 280px;
  overflow-y: auto;
  padding: 14px;
  background: var(--gray-100);
  scroll-behavior: smooth;
}
.chatbot-messages::-webkit-scrollbar { width: 5px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
.chat-msg {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  align-items: flex-end;
}
.chat-msg.user { flex-direction: row-reverse; }
.msg-avatar { font-size: 20px; flex-shrink: 0; }
.msg-bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12.5px;
  line-height: 1.5;
}
.chat-msg.bot .msg-bubble {
  background: white;
  color: var(--text-main);
  border-radius: 14px 14px 14px 4px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.chat-msg.user .msg-bubble {
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  color: white;
  border-radius: 14px 14px 4px 14px;
}
.chatbot-suggestions {
  padding: 8px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: white;
  border-top: 1px solid var(--gray-100);
}
.suggestion-chip {
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green-light);
  padding: 4px 11px;
  border-radius: 14px;
  font-size: 11px;
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 500;
}
.suggestion-chip:hover {
  background: var(--green-main);
  color: white;
  border-color: var(--green-main);
}
.chatbot-input {
  padding: 10px 12px;
  background: white;
  border-top: 1px solid var(--gray-200);
}
.chatbot-input form {
  display: flex;
  gap: 8px;
  align-items: center;
}
.chatbot-input input {
  flex: 1;
  border: 1px solid var(--gray-300);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 12.5px;
  outline: none;
  transition: border var(--transition);
}
.chatbot-input input:focus { border-color: var(--green-main); }
.chatbot-input button {
  background: var(--green-main);
  color: white;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-input button:hover { background: var(--green-dark); }

/* Full-page chatbot */
.chatbot-page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 0;
}
.chatbot-main-window {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.chatbot-main-header {
  /* background: linear-gradient(135deg, var(--green-dark), var(--green-main)); */
  background-color: var(--lime-main);
  padding: 24px 28px;
  color: white;
  display: flex;
  align-items: center;
  gap: 16px;
}
.chatbot-main-header .bot-big-avatar {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 3px solid rgba(200,169,74,0.5);
}
.chatbot-main-messages {
  height: 440px;
  overflow-y: auto;
  padding: 20px 24px;
  background: var(--gray-100);
}
.chatbot-main-input {
  padding: 16px 24px;
  background: white;
  border-top: 1px solid var(--gray-200);
}
.chatbot-main-input form {
  display: flex;
  gap: 10px;
}
.chatbot-main-input input {
  flex: 1;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  padding: 11px 18px;
  font-size: 14px;
  outline: none;
  transition: border var(--transition);
}
.chatbot-main-input input:focus { border-color: var(--green-main); }
.chatbot-main-input button {
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  color: white;
  border: none;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.chatbot-main-input button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.site-footer {
  /* background: linear-gradient(180deg, var(--gray-900) 0%, var(--navy) 100%); */
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
  margin-top: 0;
  border-top: 4px solid var(--gold);
}
.footer-heading {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200,169,74,0.3);
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links li {
  margin-bottom: 7px;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-info-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.72);
}
.footer-info-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.footer-bottom {
  margin-top: 40px;
  background: rgb(0 0 0 / 14%);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════════
   ADMIN PANEL
═══════════════════════════════════════════════════════════════════ */
.admin-body {
  font-family: var(--font-main);
  background: var(--gray-100);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.admin-layout {
  display: flex;
  min-height: calc(100vh - 64px);
}

/* Admin Topbar */
.admin-topbar {
  background: linear-gradient(90deg, var(--green-dark), var(--green-main));
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 16px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1001;
}
.admin-topbar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}
.admin-topbar .brand-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  border: 1px solid rgba(200,169,74,0.4);
}
.admin-topbar .topbar-title { font-size: 14px; color: rgba(255,255,255,0.85); margin-left: auto; }
.admin-topbar .topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.admin-topbar .topbar-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all var(--transition);
}
.admin-topbar .topbar-btn:hover {
  background: rgba(255,255,255,0.25);
  color: white;
}
.admin-topbar .topbar-btn.danger:hover {
  background: var(--red-accent);
  border-color: var(--red-accent);
}
.admin-sidebar-toggle {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background var(--transition);
}
.admin-sidebar-toggle:hover { background: rgba(255,255,255,0.15); }

/* Admin Sidebar */
.admin-sidebar {
  width: 260px;
  background: white;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  overflow-y: auto;
  overflow-x: hidden;
  transition: width var(--transition);
  box-shadow: 3px 0 15px rgba(0,0,0,0.06);
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
}
.admin-sidebar.collapsed { width: 60px; }
.admin-sidebar-section {
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
}
.admin-sidebar-section-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  padding: 8px 16px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 16px;
  color: var(--gray-700);
  font-size: 13px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}
.admin-nav-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--green-main);
  transform: scaleY(0);
  transition: transform var(--transition);
}
.admin-nav-item:hover, .admin-nav-item.active {
  background: var(--green-pale);
  color: var(--green-dark);
}
.admin-nav-item:hover::before, .admin-nav-item.active::before {
  transform: scaleY(1);
}
.admin-nav-item i {
  font-size: 14px;
  width: 20px;
  text-align: center;
  color: var(--green-main);
  flex-shrink: 0;
}
.admin-nav-item .nav-badge {
  margin-left: auto;
  background: var(--green-main);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 10px;
}
.admin-nav-item.danger i { color: var(--red-accent); }
.admin-nav-item.danger:hover { background: #fff5f5; color: var(--red-accent); }

/* Admin Main Content */
.admin-main {
  flex: 1;
  min-width: 0;
  padding: 24px;
  overflow-y: auto;
}
.admin-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-page-header h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-page-header h1 i { color: var(--green-main); }
.admin-breadcrumb {
  font-size: 12px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}
.admin-breadcrumb a { color: var(--green-main); }
.admin-breadcrumb .sep { color: var(--gray-400); }

/* Admin Cards */
.admin-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}
.admin-card-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-100);
}
.admin-card-header h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.admin-card-header h5 i { color: var(--green-main); }
.admin-card-body { padding: 20px; }

/* Stats widgets */
.stat-widget {
  background: white;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-widget::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}
.stat-widget:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.stat-widget.green::before  { background: var(--green-main); }
.stat-widget.blue::before   { background: #0d6efd; }
.stat-widget.gold::before   { background: var(--gold); }
.stat-widget.red::before    { background: var(--red-accent); }
.stat-widget.navy::before   { background: var(--navy); }
.stat-widget.orange::before { background: var(--orange); }
.sw-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.stat-widget.green .sw-icon  { background: rgba(26,107,58,0.12);  color: var(--green-main); }
.stat-widget.blue .sw-icon   { background: rgba(13,110,253,0.12);  color: #0d6efd; }
.stat-widget.gold .sw-icon   { background: rgba(200,169,74,0.15);  color: var(--gold-dark); }
.stat-widget.red .sw-icon    { background: rgba(211,47,47,0.12);   color: var(--red-accent); }
.stat-widget.navy .sw-icon   { background: rgba(26,39,68,0.12);    color: var(--navy); }
.stat-widget.orange .sw-icon { background: rgba(230,81,0,0.12);    color: var(--orange); }
.sw-value { font-size: 28px; font-weight: 800; color: var(--gray-800); line-height: 1; margin-bottom: 3px; }
.sw-label { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.sw-link {
  margin-left: auto;
  font-size: 11px;
  color: var(--green-main);
  font-weight: 600;
  white-space: nowrap;
}

/* Admin Table */
.admin-table-wrap {
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.admin-table thead th {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 11px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.admin-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.admin-table tbody tr:hover { background: var(--green-pale); }
.admin-table tbody td {
  padding: 11px 14px;
  color: var(--text-main);
  vertical-align: middle;
}
.admin-table tbody td .img-thumb {
  width: 44px; height: 44px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* Action buttons */
.action-btns { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.btn-action {
  padding: 5px 11px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-edit   { background: #fff3cd; color: #856404; border: 1px solid #ffc107; }
.btn-delete { background: #f8d7da; color: #721c24; border: 1px solid #dc3545; }
.btn-view   { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.btn-add    { background: #d4edda; color: #155724; border: 1px solid #28a745; }
.btn-edit:hover   { background: #ffc107; color: white; }
.btn-delete:hover { background: #dc3545; color: white; }
.btn-view:hover   { background: #17a2b8; color: white; }
.btn-add:hover    { background: #28a745; color: white; }
.toggle-switch {
  position: relative;
  width: 38px; height: 20px;
  display: inline-block;
  cursor: pointer;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-300);
  border-radius: 10px;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
}
.toggle-switch input:checked + .toggle-slider { background: var(--green-main); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }

/* Admin Forms */
.admin-form-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  max-width: 800px;
}
.admin-form-card.wide { max-width: 1000px; }
.admin-form-header {
  padding: 16px 24px;
  /* background: linear-gradient(90deg, var(--green-main), var(--green-mid)); */
  background-color: var(--lime-main);
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-form-header h5 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}
.admin-form-body { padding: 24px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 5px;
}
.form-label .required { color: var(--red-accent); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 9px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-main);
  outline: none;
  transition: all var(--transition);
  background: white;
  font-family: var(--font-main);
}
.form-control:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(26,107,58,0.1);
}
.form-control.is-invalid { border-color: var(--red-accent); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%236c757d'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  appearance: none;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.form-check input[type=checkbox] {
  width: 16px; height: 16px;
  accent-color: var(--green-main);
  cursor: pointer;
}
.form-hint { font-size: 11.5px; color: var(--gray-500); margin-top: 4px; }
.form-divider {
  border: none;
  border-top: 1px dashed var(--gray-200);
  margin: 22px 0;
}
.form-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--green-main);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.form-footer {
  padding: 16px 24px;
  background: var(--gray-100);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn-submit {
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  color: white;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 3px 10px rgba(26,107,58,0.3);
}
.btn-submit:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26,107,58,0.4);
}
.btn-cancel {
  background: white;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-300);
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-cancel:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

/* Upload preview */
.upload-area {
  border: 2px dashed var(--gray-300);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--gray-100);
}
.upload-area:hover {
  border-color: var(--green-main);
  background: var(--green-pale);
}
.upload-area i { font-size: 32px; color: var(--gray-400); margin-bottom: 8px; }
.upload-area .upload-text { font-size: 13px; color: var(--gray-600); }
.upload-area.has-file { border-color: var(--green-main); background: var(--green-pale); }
.current-file-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--green-pale);
  border-radius: 6px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--green-dark);
  border: 1px solid var(--green-light);
}
.current-file-preview img { max-height: 50px; max-width: 80px; object-fit: contain; border-radius: 4px; }

/* Admin alerts */
.admin-alert {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.admin-alert.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.admin-alert.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.admin-alert.warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.admin-alert.info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ══════════════════════════════════════════════════════════════════
   UTILITY / MISC
═══════════════════════════════════════════════════════════════════ */
.text-green { color: var(--green-main); }
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.bg-green-pale { background: var(--green-pale); }
.divider-gold {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, var(--green-main), var(--gold), var(--green-main));
  border-radius: 2px;
  margin: 20px 0;
}
.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}
.badge-active   { background: #d4edda; color: #155724; }
.badge-inactive { background: #f8d7da; color: #721c24; }
.info-box {
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-left: 4px solid var(--green-main);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--green-dark);
}
.info-box.warning {
  background: #fff8e1;
  border-color: #ffc107;
  border-left-color: var(--gold-dark);
  color: #6d4c00;
}
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--gray-500);
}
.empty-state i { font-size: 48px; margin-bottom: 14px; color: var(--gray-300); display: block; }
.empty-state h4 { font-size: 16px; font-weight: 600; color: var(--gray-600); margin-bottom: 8px; }
.empty-state p { font-size: 13px; max-width: 340px; margin: 0 auto; }
.search-box {
  position: relative;
}
.search-box input {
  padding-left: 36px;
}
.search-box i {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 13px;
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  :root { --sidebar-w: 260px; }
  .org-name { font-size: 24px; }
}
@media (max-width: 992px) {
  .content-wrapper { flex-direction: column; }
  .right-sidebar {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
  }
  .hero-slide { min-height: 380px; }
  .hero-slide h1 { font-size: 28px; }
  .hero-slide .slide-content { padding: 30px 30px; }
  .main-nav .navbar-nav { justify-content: flex-start; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: static; }
}
@media (max-width: 768px) {
  .org-name { font-size: 20px; }
  .org-full  { font-size: 11px; }
  .logo-img  { height: 55px; }
  .hero-slide { min-height: 300px; }
  .hero-slide h1 { font-size: 22px; }
  .hero-slide .slide-content { padding: 20px; }
  .right-sidebar { grid-template-columns: 1fr; }
  .chatbot-window { width: 310px; }
  .main-content { padding: 18px 14px; }
  .tender-stats-bar { flex-direction: column; }
  .top-bar .contact-info { display: none; }
  .admin-main { padding: 14px; }
}
@media (max-width: 576px) {
  .top-bar .d-flex.align-items-center { gap: 8px; }
  .section-heading h2 { font-size: 22px; }
  .stat-value { font-size: 28px; }
  .hero-slide h1 { font-size: 18px; }
}
