
/* Rishi Ganga Group — custom styles on top of Tailwind CDN */
html { -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', system-ui, sans-serif; letter-spacing: -0.02em; }
.font-poppins { font-family: 'Poppins', system-ui, sans-serif; }
.font-inter { font-family: 'Inter', system-ui, sans-serif; }
.brand-gradient-text {
  background: linear-gradient(135deg, #0B5FA5 0%, #16A34A 60%, #F59E0B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Scroll-shadow header enhancement */
.header-scrolled #nav-shell {
  box-shadow: 0 10px 40px -12px rgba(11, 95, 165, 0.25);
  background-color: rgba(255,255,255,0.85);
}
.dark .header-scrolled #nav-shell {
  background-color: rgba(15, 23, 42, 0.85);
}
/* Toast */
.toast {
  pointer-events: auto;
  background: white;
  border: 1px solid rgb(226 232 240);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.15);
  display: flex; align-items: flex-start; gap: 10px;
  min-width: 280px; max-width: 420px;
  animation: toast-in .3s ease-out;
}
.dark .toast { background: rgb(15 23 42); border-color: rgb(30 41 59); color: rgb(226 232 240); }
.toast.success { border-left: 4px solid #16A34A; }
.toast .toast-title { font-weight: 600; font-size: 14px; }
.toast .toast-desc { font-size: 13px; color: rgb(100 116 139); margin-top: 2px; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-10px) scale(0.95); } to { opacity: 1; transform: none; } }
/* Line-clamp fallback */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
