/* ============================================
   SITE - Sindh Institute of Teacher Education
   Design System & Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary-green: #6f8f6a;
  --primary-navy: #314153;
  --muted-teal: #89ada6;
  --green-dark: #5a7a55;
  --teal-dark: #6e9a93;
  --navy-light: #3d5166;
  --white: #ffffff;
  --light-bg: #f7f9f8;
  --light-gray: #eef1f0;
  --text-dark: #1e2d3a;
  --text-muted: #6c7a85;
  --border-color: #dde4e2;
  --shadow-sm: 0 2px 8px rgba(49,65,83,0.08);
  --shadow-md: 0 4px 20px rgba(49,65,83,0.12);
  --shadow-lg: 0 8px 40px rgba(49,65,83,0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ---- Utility ---- */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.bg-light { background: var(--light-bg); }
.bg-navy { background: var(--primary-navy); }
.bg-green { background: var(--primary-green); }
.text-green { color: var(--primary-green); }
.text-navy { color: var(--primary-navy); }
.text-teal { color: var(--muted-teal); }
.text-muted { color: var(--text-muted); }

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}
.divider-green {
  width: 50px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ---- Buttons ---- */
.btn-primary-site {
  background: var(--primary-green);
  color: var(--white);
  border: 2px solid var(--primary-green);
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-primary-site:hover {
  background: var(--muted-teal);
  border-color: var(--muted-teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-site {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-outline-site:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white-site {
  background: var(--white);
  color: var(--primary-navy);
  border: 2px solid var(--white);
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white-site:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- TOP BAR ---- */
#top-bar {
  background: var(--primary-navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 7px 0;
  position: relative;
  z-index: 1050;
  width: 100%;
  overflow: hidden;
}
#top-bar a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 3px;
  transition: var(--transition);
  white-space: nowrap;
}
#top-bar a:hover { color: var(--white); background: rgba(111,143,106,0.3); }
#top-bar .top-bar-left span { margin-right: 14px; font-size: 0.78rem; }
#top-bar .top-bar-left i { color: var(--primary-green); margin-right: 5px; }
.top-bar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); display: inline-block; margin: 0 4px; vertical-align: middle; }

/* ---- MAIN NAVBAR ---- */
#main-navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: var(--transition);
  width: 100%;
  max-width: 100vw;
}
#main-navbar.scrolled {
  box-shadow: var(--shadow-md);
}
#main-navbar .navbar-brand img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
#main-navbar .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 0.82rem;
  padding: 20px 10px !important;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}
#main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 3px;
  background: var(--primary-green);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px 2px 0 0;
}
#main-navbar .nav-link:hover,
#main-navbar .nav-link.active { color: var(--primary-green) !important; }
#main-navbar .nav-link:hover::after,
#main-navbar .nav-link.active::after { transform: scaleX(1); }
#main-navbar .nav-item.dropdown:hover > .dropdown-menu { display: block; }

/* Mega Menu */
.mega-menu {
  padding: 28px 32px;
  border: none;
  border-top: 3px solid var(--primary-green);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.mega-menu .mega-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-green);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mega-menu .dropdown-item {
  font-size: 0.85rem;
  color: var(--text-dark);
  padding: 7px 0;
  font-weight: 400;
  background: none;
  border-radius: 0;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mega-menu .dropdown-item:hover {
  color: var(--primary-green);
  padding-left: 6px;
  background: none;
}
.mega-menu .dropdown-item i {
  color: var(--muted-teal);
  font-size: 0.75rem;
  width: 14px;
  flex-shrink: 0;
}

/* Prevent mega menu from going off-screen on right side */
.has-mega { position: static !important; }
.has-mega .mega-menu {
  position: absolute;
  top: 100%;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: unset !important;
}
/* Anchor mega menu to navbar container left edge */
#main-navbar .navbar-nav {
  position: static;
}
#main-navbar .container {
  position: relative;
}
/* Ensure mega menu row doesn't wrap */
.mega-menu > .row {
  flex-wrap: nowrap !important;
}
.mega-menu .col-md-3 {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 20px 0 0;
}
.mega-menu .col-md-3:last-child {
  padding-right: 0;
}
.mega-menu .col-md-6 {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 20px 0 0;
}
.mega-menu .col-md-6:last-child {
  padding-right: 0;
}

/* Search bar in nav */
.nav-search-form { position: relative; flex-shrink: 0; }
.nav-search-form input {
  border: 1.5px solid var(--border-color);
  border-radius: 20px;
  padding: 6px 32px 6px 14px;
  font-size: 0.8rem;
  width: 140px;
  transition: var(--transition);
  outline: none;
  color: var(--text-dark);
}
.nav-search-form input:focus {
  border-color: var(--primary-green);
  width: 180px;
  box-shadow: 0 0 0 3px rgba(111,143,106,0.15);
}
.nav-search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--primary-green);
  cursor: pointer;
  font-size: 0.82rem;
}

/* ---- HERO SLIDER ---- */
#hero-slider { position: relative; overflow: hidden; }
.hero-slide {
  min-height: 580px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(49,65,83,0.82) 0%, rgba(49,65,83,0.45) 60%, rgba(111,143,106,0.25) 100%);
}
.hero-content { position: relative; z-index: 2; color: var(--white); }
.hero-badge {
  display: inline-block;
  background: var(--primary-green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-desc {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 520px;
  font-weight: 300;
}
.hero-slider-controls .carousel-control-prev,
.hero-slider-controls .carousel-control-next {
  width: 44px;
  height: 44px;
  background: rgba(111,143,106,0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
}
.carousel-indicators .active { background: var(--primary-green); }

/* ---- QUICK ACCESS CARDS ---- */
.quick-access-section {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
.quick-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  height: 100%;
}
.quick-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--primary-green);
  box-shadow: var(--shadow-lg);
}
.quick-card .icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(111,143,106,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: var(--transition);
}
.quick-card:hover .icon-wrap { background: var(--primary-green); }
.quick-card .icon-wrap i {
  font-size: 1.4rem;
  color: var(--primary-green);
  transition: var(--transition);
}
.quick-card:hover .icon-wrap i { color: var(--white); }
.quick-card h6 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-navy);
  margin-bottom: 6px;
}
.quick-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ---- ABOUT SECTION ---- */
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-green);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-box .num { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge-box .lbl { font-size: 0.75rem; font-weight: 500; opacity: 0.9; }
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.about-feature-item .icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(111,143,106,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1rem;
}
.about-feature-item h6 { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.about-feature-item p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ---- PROGRAMS SECTION ---- */
.program-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary-green);
  transform: scaleX(0);
  transition: var(--transition);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card:hover::before { transform: scaleX(1); }
.program-card .prog-icon {
  width: 64px;
  height: 64px;
  background: rgba(111,143,106,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}
.program-card:hover .prog-icon { background: var(--primary-green); }
.program-card .prog-icon i {
  font-size: 1.6rem;
  color: var(--primary-green);
  transition: var(--transition);
}
.program-card:hover .prog-icon i { color: var(--white); }
.program-card h5 { font-weight: 700; font-size: 1.05rem; color: var(--primary-navy); margin-bottom: 10px; }
.program-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.program-card .prog-count {
  font-size: 0.78rem;
  color: var(--primary-green);
  font-weight: 600;
  background: rgba(111,143,106,0.1);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}

/* ---- STATS COUNTER ---- */
.stats-section { background: var(--primary-navy); color: var(--white); padding: 60px 0; }
.stat-item { text-align: center; padding: 20px; }
.stat-item .stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .stat-label { font-size: 0.9rem; opacity: 0.8; font-weight: 400; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); }

/* ---- NEWS & EVENTS ---- */
.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card .news-img {
  height: 200px;
  background: var(--light-gray);
  overflow: hidden;
  position: relative;
}
.news-card .news-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-card .news-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.news-card .news-body { padding: 20px; }
.news-card .news-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.news-card .news-date i { color: var(--primary-green); margin-right: 5px; }
.news-card h6 { font-weight: 600; font-size: 0.95rem; color: var(--primary-navy); margin-bottom: 8px; line-height: 1.4; }
.news-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; }
.news-card .read-more { font-size: 0.82rem; color: var(--primary-green); font-weight: 600; }
.news-card .read-more:hover { color: var(--muted-teal); }

/* Event list item */
.event-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}
.event-item:last-child { border-bottom: none; }
.event-item:hover { padding-left: 6px; }
.event-date-box {
  min-width: 52px;
  height: 56px;
  background: var(--primary-green);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.event-date-box .day { font-size: 1.3rem; font-weight: 800; line-height: 1; }
.event-date-box .mon { font-size: 0.65rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.event-info h6 { font-size: 0.88rem; font-weight: 600; color: var(--primary-navy); margin-bottom: 4px; }
.event-info span { font-size: 0.75rem; color: var(--text-muted); }
.event-info span i { color: var(--muted-teal); margin-right: 4px; }

/* ---- TESTIMONIALS ---- */
.testimonial-section { background: var(--light-bg); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}
.testimonial-card .quote-icon {
  font-size: 3rem;
  color: rgba(111,143,106,0.15);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}
.testimonial-card p { font-size: 0.9rem; color: var(--text-muted); font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-green);
}
.testimonial-author .name { font-weight: 600; font-size: 0.9rem; color: var(--primary-navy); }
.testimonial-author .role { font-size: 0.75rem; color: var(--text-muted); }
.stars { color: #f4b942; font-size: 0.8rem; margin-bottom: 12px; }

/* ---- FOOTER ---- */
#main-footer {
  background: #1e2d3a;
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
}
.footer-brand img { height: 64px; width: auto; max-width: 240px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; opacity: 0.7; line-height: 1.8; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary-green); color: var(--white); transform: translateY(-3px); }
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-green);
  display: inline-block;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i { color: var(--primary-green); font-size: 0.7rem; }
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item i { color: var(--primary-green); margin-top: 3px; min-width: 16px; }
.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 16px 0;
  margin-top: 50px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--primary-green); }

/* ---- BACK TO TOP ---- */
#back-to-top {
  position: fixed;
  bottom: 96px;  /* sits above the chat FAB (56px height + 28px bottom + 12px gap) */
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9988; /* below chat (9989/9990) but above everything else */
  transition: var(--transition);
}
#back-to-top:hover { background: var(--muted-teal); transform: translateY(-3px); }
#back-to-top.show { display: flex; }

/* On mobile, keep same stacking */
@media (max-width: 480px) {
  #back-to-top { bottom: 88px; right: 12px; }
}

/* ---- ANNOUNCEMENT TICKER ---- */
.ticker-bar {
  background: var(--primary-green);
  color: var(--white);
  padding: 0;
  font-size: 0.82rem;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  height: 38px;
}
.ticker-label {
  background: var(--primary-navy);
  color: var(--white);
  padding: 0 18px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}
.ticker-label::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 0;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 10px solid var(--primary-navy);
}
.ticker-content {
  display: flex;
  align-items: center;
  overflow: hidden;
  flex: 1;
  padding-left: 20px;
}
.ticker-track {
  display: flex;
  gap: 80px;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; }
.ticker-item i { opacity: 0.85; font-size: 0.75rem; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1199px) {
  #main-navbar .nav-link { font-size: 0.78rem; padding: 20px 7px !important; }
  .nav-search-form input { width: 140px; }
}
@media (max-width: 991px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .mega-menu { min-width: 100%; }
  .about-badge-box { position: static; margin-top: 16px; display: inline-block; }
  #main-navbar .nav-link { padding: 12px 14px !important; }
  #main-navbar .nav-link::after { display: none; }
  #main-navbar .navbar-brand img { height: 48px; }
}
@media (max-width: 767px) {
  .hero-slide { min-height: 420px; }
  .hero-title { font-size: 1.6rem; }
  .section-pad { padding: 50px 0; }
  .quick-access-section { margin-top: 0; }
  .stat-item .stat-num { font-size: 2.2rem; }
  #top-bar .top-bar-left { display: none; }
  #main-navbar .navbar-brand img { height: 44px; max-width: 160px; }
}
