html,
body {
  height: 100%;
  margin: 0;
}

* {
  font-family: 'DM Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

:root {
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --border-color: #e2e8f0;
  --accent: #f59e0b;
  --accent-hover: #8c0101;
  --single-job-color: #8c0101;
  --text-color: black;
}

.dark-mode {
  --bg-main: #0f172a;
  --bg-card: #1e293b;
  --bg-card-hover: #334155;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --border-color: #334155;
  --single-job-color: #fbbf24;
  --text-color: wheat;
}



body {
  background: var(--bg-main);
  color: var(--text-primary);
  /* transition: background 0.3s, color 0.3s;
  overflow-x: hidden; */
}


.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.dark-mode .glass-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-gradient {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1a1a2e 100%);
  width: 100%;
}

.ticker-strip {
  overflow: hidden;
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.ticker-content {
  display: flex;
  gap: 3rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px) scale(1.05);
}

.badge-new {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
}

.badge-hot {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
}

.badge-update {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-anim 2s infinite;
}

@keyframes pulse-anim {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.tab-btn {
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: var(--text-secondary);
}

.tab-btn.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.tab-btn:not(.active):hover {
  background: var(--bg-card-hover);
}

.stagger-in {
  opacity: 0;
  transform: translateY(20px);
  animation: stagger-fade 0.5s ease forwards;
}

@keyframes stagger-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-box {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 1rem;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
}

.search-box:focus-within {
  border-color: var(--accent);
}

.search-box input {
  background: transparent;
  color: var(--text-primary);
  outline: none;
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: none;
}

.search-box input::placeholder {
  color: var(--text-secondary);
}

.dark-toggle {
  width: 52px;
  height: 28px;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

.dark-toggle .knob {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.dark-mode .dark-toggle .knob {
  transform: translateX(24px);
}

.stat-card {
  text-align: center;
  padding: 16px;
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s;
}

.navbar-brand {
  color: var(--text-color);
  text-decoration: none;
  font-size: 22px;
}

.navbar-brand:hover {
  color: var(--text-color);
  text-decoration: none;
  font-size: 22px;
}

#app-root {
  height: 100%;
  overflow-y: auto;
}

/* Job Details Page Styles */
.breadcrumb-link {
  cursor: pointer;
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

.job-header {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1a1a2e 100%);
  color: white;
  padding: 2rem 0;
  border-radius: 1rem;
  position: relative;
}

.shares-btn {
  position: absolute;
  /* background: linear-gradient(135deg, #f59e0b, #d97706); */
  color: white;
  font-size: 22px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.5px;
  bottom: 15px;
  right: 15px;
}

.social-icons a {
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-card-hover);
  border-radius: 0.75rem;
  font-size: 0.95rem;
}

.info-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-section h5 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--single-job-color);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.75rem;
  height: 1;
}

.link-bg-color {
  background-color: #8c0101;
}
.link-bg-color:hover {
  background-color: #8c0101;
}

.requirement-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.requirement-item:last-child {
  border-bottom: none;
}

.apply-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.apply-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.important-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.important-date:last-child {
  border-bottom: none;
}

.date-label {
  font-weight: 600;
  color: var(--text-primary);
}

.date-value {
  color: var(--accent);
  font-weight: 700;
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.share-btn {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-card-hover);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
  font-weight: 600;
}

.generic-button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.share-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.page-hidden {
  display: none;
}

.page-visible {
  display: block;
}

.links-table-row {
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s;
}

.links-table-row:hover {
  background-color: var(--bg-card-hover);
}

.links-table-row:last-child {
  border-bottom: none;
}

.links-table-row td {
  padding: 12px 0 !important;
  vertical-align: middle;
}

.link-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
  margin-right: 8px;
}

.link-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.link-desc {
  font-size: 12px;
  color: var(--text-secondary);
}

.link-action {
  text-align: right;
}

.link-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.link-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Home 2 css */

a {
  text-decoration: none;
  /* color: white; */
}

.row {
  transform: translateZ(0);
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  border-radius: 2px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 10px;

}

.job-card:hover {
  /* will-change: transform; */
  transform: translateY(-2px);   /* instead of -8px */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  /* color: #fff; */
}

/* Colors */
.bg1 {
  background: #8c0101;
}

.bg2 {
  background: #fb0303;
}

.bg3 {
  background: #0b610b;
}

.bg4 {
  background: #0404b4;
}

.bg5 {
  background: #d35400;
}

.bg6 {
  background: #16a085;
}
.bg7 {
  background: #d97706;
}
.bg8 {
  background: #25D366;
}


.stylish-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}

.stylish-underline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -3px;
  background: #fff;
  transition: width 0.3s ease;
}

.stylish-underline:hover::after {
  width: 100%;
}

.clean-curve {
  display: inline-block;
  position: relative;
  color: chocolate;
  font-weight: 500;
}

.clean-curve::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg width='120' height='6' viewBox='0 0 120 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 3 Q 10 0 20 3 T 40 3 T 60 3 T 80 3 T 100 3 T 120 3' stroke='%23ffffff' fill='none' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
  background-size: 120px 6px;
}

.sarkari-box {
  
  border: 1px solid #ab183d;
  /* background: #fff; */
  position: relative;
  /* REQUIRED */
  padding-bottom: 40px;
  /* space for button */
}

.sarkari-header {
  background: #ab183d;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  font-size: 23px;
}

.sarkari-list {
  list-style: circle;
  padding: 10px 35px;
  margin: 0;
}

.sarkari-list li {
  margin-bottom: 8px;
}

.sarkari-list a {
  text-decoration: none;
  color: #0000ee;
  font-size: 18px;
}

/* 🔥 View More Button */
.view-more-btn {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #b30000;
  text-decoration: none;
  transition: 0.2s;
}

.view-more-btn:hover {
  text-decoration: underline;
}


/* Latest Updates Section CSS */


.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.social-btn {
  flex: 1;
  min-width: 120px;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: white;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.social-btn.whatsapp {
  background: #25D366;
}

.social-btn.whatsapp:hover {
  background: #20BA5A;
}

.social-btn.facebook {
  background: #1877F2;
}

.social-btn.facebook:hover {
  background: #0A66C2;
}

.social-btn.telegram {
  background: #0088cc;
}

.social-btn.telegram:hover {
  background: #006699;
}

.social-btn.twitter {
  background: black;

}

.social-btn.twitter:hover {
  transform: translateY(-2px) scale(1.02);
}


/* FAQs and Disclaimer */

.disclaimer-box {
  background: var(--bg-card);
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
  color: var(--text-primary);
}

.faq-box {
  background: var(--bg-card);
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-item h5 {
  font-weight: 600;
  color: var(--text-primary)
}

.faq-item p {
  margin: 5px 0 0;
  font-size: 14px;
}

.footer-links a {
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #b30000;
  transition: width 0.3s;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Why  CSS*/

.why-title {
  font-weight: 700;
  color: #ab183d;;
}

.why-subtitle {
  /* color: #555; */
  font-size: 15px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  transition: 0.3s;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.why-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: #666;
}


/* Info Card */

.info-title {
  font-weight: 700;
  color: #ab183d;;
}

.info-subtitle {
  color: #555;
  font-size: 15px;
}

.info-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  transition: 0.3s;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.info-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 14px;
  color: #666;
}
