/* Navbar + footer chrome (aligned with index.jsp / search-results.jsp) */
body.uc-home-chrome {
  padding-top: 70px;
  top: 0 !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f6fb;
  color: #1e293b;
  overflow-x: hidden;
  max-width: 100vw;
}

.uc-home-chrome .navbar {
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  height: 70px;
  z-index: 1050;
}
.uc-home-chrome .navbar-brand {
  transition: transform 0.3s ease;
}
.uc-home-chrome .navbar-brand:hover {
  transform: scale(1.05);
}
.uc-home-chrome .nav-link {
  transition: color 0.3s ease;
  position: relative;
}
.uc-home-chrome .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ff6b35;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.uc-home-chrome .nav-link:hover::after {
  width: 80%;
}
.uc-home-chrome .dropdown-menu {
  border: none;
  margin-top: 0.5rem;
  animation: aboutNavSlideDown 0.3s ease;
  z-index: 1060;
}
@keyframes aboutNavSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.uc-home-chrome .dropdown-item {
  transition: all 0.3s ease;
}
.uc-home-chrome .dropdown-item:hover {
  background-color: #f8f9fa;
  padding-left: 1.5rem;
}
.uc-home-chrome .navbar .btn {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0.5rem 1.5rem;
}
.uc-home-chrome .btn-outline-primary {
  border-width: 2px;
  transition: all 0.3s ease;
}
.uc-home-chrome .btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}
.uc-home-chrome .navbar .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  transition: all 0.3s ease;
}
.uc-home-chrome .navbar .btn-primary:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
.uc-home-chrome .nav-link .bg-light {
  transition: all 0.3s ease;
}
.uc-home-chrome .nav-link:hover .bg-light {
  background-color: #e9ecef !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.uc-home-chrome #translateBtn:hover {
  border-radius: 20px;
  background-color: #f8f9fa;
}
@media (max-width: 991px) {
  .uc-home-chrome .navbar-nav { padding-top: 1rem; }
  .uc-home-chrome .navbar-nav .nav-item { margin-bottom: 0.5rem; }
  .uc-home-chrome .navbar .btn-primary, .uc-home-chrome .navbar .btn-outline-primary { width: 100%; }
}

/* Footer (index.jsp) */
.uc-home-chrome footer {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 50px 0 20px;
  margin-top: 80px;
}
.uc-home-chrome footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.uc-home-chrome footer a:hover {
  color: white;
  transform: translateX(5px);
}
.uc-home-chrome .footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}
.uc-home-chrome .footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: white;
}
.uc-home-chrome .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.uc-home-chrome .footer-links li {
  margin-bottom: 12px;
}
.uc-home-chrome .footer-links a {
  font-size: 0.95rem;
}
.uc-home-chrome .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 12px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.uc-home-chrome .social-icons a:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
}
.uc-home-chrome .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.uc-home-chrome .footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.uc-home-chrome .footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .uc-home-chrome .footer-links a { font-size: 0.85rem; }
  .uc-home-chrome .social-icons a { width: 35px; height: 35px; font-size: 1rem; }
  .uc-home-chrome footer { padding: 40px 0 20px; margin-top: 60px; }
}

/* Google Translate widget cleanup */
.goog-te-banner-frame, .skiptranslate, #goog-gt-tt, .goog-te-balloon-frame {
  display: none !important;
}
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}
