/* ==========================================================================
   websnew / the-newjobs.com - JobYarri Style Organic SEO & Community Theme
   Modern, Fast, Accessible & Optimized for High Social Engagement & Organic CTR
   ========================================================================== */

:root {
  --primary-color: #1e3a8a;       /* Royal Blue */
  --primary-dark: #0f172a;        /* Midnight Slate */
  --primary-accent: #2563eb;      /* Vivid Electric Blue */
  --secondary-color: #059669;     /* Emerald Green */
  --whatsapp-color: #25d366;      /* WhatsApp Brand Color */
  --telegram-color: #0088cc;      /* Telegram Brand Color */
  --facebook-color: #1877f2;      /* Facebook Brand Color */
  --twitter-color: #000000;       /* X/Twitter Brand Color */
  --accent-orange: #d97706;       /* Warm Amber */
  --accent-red: #dc2626;          /* Crimson Red */
  --bg-light: #f8fafc;            /* Pearl Soft Grey */
  --card-bg: #ffffff;             /* Pure White */
  --text-primary: #0f172a;        /* Slate Dark */
  --text-muted: #475569;          /* High Contrast Dark Grey */
  --border-color: #cbd5e1;        /* Clean Border */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.12);
  --font-heading: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

a {
  color: var(--primary-accent);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Header & Ticker */
.top-ticker-bar {
  background: linear-gradient(90deg, #0f172a, #1e3a8a);
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.ticker-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
}

.ticker-wrapper:hover .ticker-content {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.navbar-brand-logo {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--primary-dark) !important;
  letter-spacing: -0.5px;
}

.navbar-brand-logo span.badge-new {
  background: linear-gradient(135deg, #dc2626, #d97706);
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 20px;
  vertical-align: super;
}

/* Hero Search */
.hero-search-card {
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
  color: #ffffff;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.hero-search-card h1 {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 800;
}

.filter-badge-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 3px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.filter-badge-btn:hover {
  background: #ffffff;
  color: var(--primary-dark);
  text-decoration: none;
}

/* 8-Box Dashboard Grid */
.dashboard-box-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-box-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.dashboard-box-header {
  padding: 12px 16px;
  font-weight: 800;
  font-size: 1.05rem;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hdr-top-online { background: linear-gradient(135deg, #b91c1c, #dc2626); }
.hdr-latest-jobs { background: linear-gradient(135deg, #1e3a8a, #2563eb); }
.hdr-admit-card { background: linear-gradient(135deg, #d97706, #b45309); }
.hdr-result { background: linear-gradient(135deg, #059669, #10b981); }
.hdr-answer-key { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.hdr-syllabus { background: linear-gradient(135deg, #0284c7, #0369a1); }
.hdr-admission { background: linear-gradient(135deg, #475569, #334155); }
.hdr-important { background: linear-gradient(135deg, #db2777, #be185d); }

.job-list-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-list-li {
  padding: 10px 14px;
  border-bottom: 1px dashed #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.job-list-li:last-child {
  border-bottom: none;
}

.job-list-li a {
  font-weight: 600;
  font-size: 0.92rem;
  color: #1e293b;
  line-height: 1.4;
}

.job-list-li a:hover {
  color: var(--primary-accent);
}

.job-tag-badge {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ==========================================================================
   JobYarri Style Social Community Banners & Floating Share Bar
   ========================================================================== */

.join-community-card {
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-md);
}

.join-whatsapp-card {
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.join-telegram-card {
  background: linear-gradient(135deg, #0088cc, #229ed9);
}

.btn-social-join {
  background: #ffffff;
  color: #0f172a !important;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  font-size: 0.9rem;
}

.btn-social-join:hover {
  transform: scale(1.04);
  text-decoration: none;
}

/* Social Share Button Pills */
.social-share-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-share-wa { background-color: var(--whatsapp-color); color: #ffffff !important; font-weight: 700; }
.btn-share-tg { background-color: var(--telegram-color); color: #ffffff !important; font-weight: 700; }
.btn-share-fb { background-color: var(--facebook-color); color: #ffffff !important; font-weight: 700; }
.btn-share-tw { background-color: var(--twitter-color); color: #ffffff !important; font-weight: 700; }
.btn-share-li { background-color: #0a66c2; color: #ffffff !important; font-weight: 700; }
.btn-share-copy { background-color: #475569; color: #ffffff !important; font-weight: 700; }

.btn-share-wa:hover, .btn-share-tg:hover, .btn-share-fb:hover, .btn-share-tw:hover, .btn-share-li:hover, .btn-share-copy:hover {
  opacity: 0.9;
  text-decoration: none;
}

/* Floating Share Bar on Side */
.floating-share-bar {
  position: fixed;
  left: 10px;
  top: 40%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1050;
}

.floating-share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

.floating-share-btn:hover {
  transform: scale(1.15);
}

@media (max-width: 991px) {
  .floating-share-bar {
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    justify-content: space-around;
    background: rgba(15, 23, 42, 0.95);
    padding: 8px 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .floating-share-btn {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    box-shadow: none;
  }
}

/* Sarkari Tables */
.sarkari-table-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.sarkari-table-title {
  background: #0f172a;
  color: #ffffff;
  padding: 12px 18px;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
}

.sarkari-table {
  width: 100%;
  margin-bottom: 0;
}

.sarkari-table th {
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 700;
  padding: 10px 14px;
}

.sarkari-table td {
  padding: 10px 14px;
  vertical-align: middle;
  border-color: #e2e8f0;
}

.action-link-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff !important;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.action-link-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  text-decoration: none;
}

.ad-container-slot {
  margin: 1.5rem 0;
  text-align: center;
  min-height: 90px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
}

footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 3rem 0 1.5rem;
}

footer a {
  color: #cbd5e1;
}

footer a:hover {
  color: #ffffff;
}
