/* Quality Fresh Exporters — site.css */

/* Page fade-in on load */
body { animation: pageFadeIn 0.35s ease both; }
@keyframes pageFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Consistent nav transition */
#topnav { transition: box-shadow 0.3s ease; }

/* Form focus ring using brand green */
.qf-input:focus {
  outline: none;
  border-color: #1B4D3E;
  box-shadow: 0 0 0 2px rgba(27,77,62,0.15);
}

/* Ambient card shadow */
.qf-card {
  box-shadow: 0 4px 20px -5px rgba(27,77,62,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.qf-card:hover {
  box-shadow: 0 8px 32px -6px rgba(27,77,62,0.12);
  transform: translateY(-2px);
}

/* Gold underline accent on headings */
.gold-accent::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #D4AF37;
  margin-top: 12px;
  border-radius: 2px;
}

/* Stat number pulse on hover */
.stat-number { transition: color 0.2s ease; }
.stat-number:hover { color: #D4AF37; }

/* Mobile menu slide */
#mobile-menu {
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Page-link active indicator */
[data-nav-link].active {
  color: #1B4D3E;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 4px;
}

/* Smooth image hover zoom for cards */
.img-zoom img {
  transition: transform 0.6s ease;
}
.img-zoom:hover img {
  transform: scale(1.04);
}
