/* ============================================================
   CUSTOM STYLES - Only for things Tailwind can't do easily
   (fonts, marquee animation, reusable buttons)
   ============================================================ */

/* Base font family */
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  background: #fff;
  color: #1e293b;
}

/* Hindi/Devanagari font */
.font-hindi, :lang(hi) {
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* News ticker scrolling animation */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee 35s linear infinite;
}
.animate-marquee:hover {
  animation-play-state: paused;
}

/* Reusable button styles (used across pages) */
.btn-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  background: #f59e0b;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  transition: background-color 0.2s;
  text-decoration: none;
}
.btn-amber:hover { background: #d97706; }

.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  background: #0f2c5c;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  transition: background-color 0.2s;
  text-decoration: none;
}
.btn-navy:hover { background: #0a1f45; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline-white:hover { background: #fff; color: #0f2c5c; }

/* Card style */
.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

/* Line-clamp helper */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Scrollbar */
::-webkit-scrollbar        { width: 10px; height: 10px; }
::-webkit-scrollbar-track  { background: #f1f5f9; }
::-webkit-scrollbar-thumb  { background: #cbd5e1; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Page-header gradient (reused on inner pages) */
.page-header {
  background: linear-gradient(135deg, #0a1f45, #0f2c5c 55%, #173a75);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Small hover lift for cards */
.hover-lift { transition: transform .25s, box-shadow .25s; }
.hover-lift:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(15,44,92,0.12); }
