:root {
    --bg-lighter-gray: #f8fafc;
    --bg-light-gray: #f5f5f5;
    --bg-dark-blue: #00c6ff;
    --bg-light-blue: #81d4fa;
    --bg-light-yellow: #fff9c4;
    --bg-dark-yellow: #ffe066;
    --bg-dark-red: #e11d48;
    --bg-white: #ffffff;
    --bg-dark: #212121;
    --bg-mark-color: #fff176;
    --color-lighter-gray: #e5e7eb;
    --color-light: #343a40;
    --color-light-1: #bdbdbd;
    --color-light-2: #e0e0e0;
    --color-dark-1: #030712;
    --color-dark-2: #1f2937;
    --color-dark-3: #4b5563;
    --color-white: #ffffff;
    --color-dark-red: #e11d48;
    --color-green: #2e7d32;
}

body {
  margin: 0;
  padding: 0;
  border: 0;
  background: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

html {
    font-family: Roboto, sans-serif;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

.header-outer,
.menu-icon,
.nav-link {
  position: relative;
}

:after,
:before {
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.container,
.header-inner,
.input {
  box-sizing: border-box;
}

::marker {
  font-weight: 700;
}

.site-content {
  max-width: 950px;
  margin: 0 auto 60px;
  padding: 25px 15px;
  word-break: break-word;
}

.header-outer,
.nav-link,
.site-content a {
  font-family: Roboto, sans-serif;
}

.header-outer {
  background: linear-gradient(to right,#0072ff,#00c6ff);
  padding: 11px 16px 14px;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-title-link {
  color: #fafafa;
  font-weight: 700;
  align-items: center !important;
  display: flex !important;
  text-decoration: none;
}
span.site-title {
  font-size: 26px;
  font-weight: 700;
  display: block;
}
@media (max-width: 580px) {
  .site-title-link {
    font-size: 23px;
  }
}

.nav-link {
  text-decoration: none;
  font-size: 16px;
}
.main-nav {
  display: flex;
  align-items: center;
  color: #fff;
  padding-top: 5px;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}
.nav-link {
  color: #fff;
  padding: 8px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.mobile-menu-toggle {
  display: none;
  background: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #fff;
  margin: 0;
}
.menu-icon {
  display: block;
  width: 20px;
  height: 20px;
}
.menu-line,
.menu-line:after,
.menu-line:before {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: 0.3s ease-in-out;
}
.menu-line {
  top: 50%;
  transform: translateY(-50%);
}
.menu-line:after,
.menu-line:before {
  content: "";
}
.menu-line:before {
  top: -8px;
}
.menu-line:after {
  bottom: -8px;
}
@media (max-width: 981px) {
  .mobile-menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 15px;
    gap: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: color-mix(in srgb, var(--color-primary) 90%, #000);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .nav-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to right,#0072ff,#00c6ff);
  }
  .nav-link {
    display: block;
    padding: 15px;
    transition: background-color 0.3s, padding-left 0.3s;
  }
  .nav-link:hover {
    background-color: color-mix(in srgb, var(--color-primary) 80%, #000);
    padding-left: 20px;
    text-decoration: none;
    background-color: color-mix(in srgb, var(--color-primary) 90%, #fff);
  }
  .nav-link::after {
    display: none;
  }
  .mobile-menu-toggle[aria-expanded="true"] .menu-line {
    background: 0;
  }
  .mobile-menu-toggle[aria-expanded="true"] .menu-line:before {
    top: 0;
    transform: rotate(45deg);
  }
  .mobile-menu-toggle[aria-expanded="true"] .menu-line:after {
    top: 0;
    transform: rotate(-45deg);
  }
}

.bold, strong {
    color:#000;
}

h1, h2, h3, h4, a { 
    font-family: Roboto, sans-serif;
    line-height: 1.2;
    color: var(--color-dark-1);
}

.post-date {
    display: block;
    color: var(--color-dark-3);
    margin-bottom: 1.2rem;
}

.firstPara {
    text-align: justify;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--color-dark-2);
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--color-dark-2);
    padding: 0 5px 0 5px;
    text-align: justify;
}

@media (max-width: 768px) {
    p {
      font-size: 1rem;
    }
  }

mark {
    background-color: var(--bg-mark-color);
}

em {
    font-style: italic;
}

.popular-categories {
    margin: 10px 0 20px;
    border: 1px solid var(--color-light-1);
    border-radius: 10px;
}

h1 {
    font-size: 1.3rem;
    font-weight: 500;
}

h2 {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    padding: 10px 0 10px 0;
    margin-bottom: 0;
    background: linear-gradient(to right,#0072ff,#00c6ff);
    color: #ffffff;
}

h3 {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 10px 0 10px 0;
    margin-bottom: 0;
    background: linear-gradient(to right,#0072ff,#00c6ff);
    color: #ffffff;
}

.h2TitleRed{
font-size: 1.5rem;
  text-align: center;
  background: linear-gradient(90deg, #e11d48, #e11d48);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: bold;
    padding: 0;
}

.totalPosts{
    text-align: center;
    vertical-align: center;
    font-size: 25px !important;
    font-weight: bold;
    background: linear-gradient(90deg, #e11d48, #e11d48);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.redColor{
    background: linear-gradient(90deg, #e11d48, #e11d48);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.greenColor{
   background: linear-gradient(90deg, #008000, #008000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
}

.pinkColor{
   background: linear-gradient(90deg, #ff00ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
}

@media (max-width: 480px) {
    .h2TitleRed {
      font-size: 1.1rem;
    }
  }
  
  .h2TitleGreen{
font-size: 1.5rem;
  text-align: center;
  background: linear-gradient(90deg, #008000, #008000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    padding: 10px 1px 10px 1px;
}

@media (max-width: 768px) {
    .h2TitleGreen {
      font-size: 1.1rem;
      display: inline-block;
    }
    .site-content ul, li{
        font-size: 1rem !important;
    }
    p{
        font-size: 1rem;
    }
  }

.site-content ul, li {
    font-size: 1.2rem;
    color: var(--color-dark-2);
    margin-bottom: 10px;
    line-height: 1.4;
}

.site-content ul{
        padding-left: 27px;
    }

.inside-site-info {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 6px;
  background-color: #181818;
}

.copyright-bar{
    box-sizing: inherit;
  text-align: center;
  color: #fff;
}

.footer-inner {
    background-color: #ffffff;
    padding: 10px 0 10px 0;
    border-radius: 50px;
    color: #1e293b;
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.2);
    margin: 10px 0 10px 0;
}
.footer-widget {
  justify-content: space-between;
  gap: 60px 20px;
  margin-bottom: 60px;
}
@media (min-width: 721px) {
  .about-us {
    max-width: 45%;
  }
}

.site-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}


.container {
  background: #f0eedc;
  padding: 40px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 20px auto;
}

/* job eligibility css starts here */

/* ---------------------------
   CONTAINER
----------------------------*/
.eligibilitycontainer,
.container {
  max-width: 420px;
  margin: 28px auto;
  padding: 12px;
}

/* ---------------------------
   CARD PANEL
----------------------------*/
.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
  animation: fadeSlide 0.35s ease;
}

/* ---------------------------
   LABELS & INPUTS
----------------------------*/
label {
  display: block;
  margin: 14px 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

select,
input[type="date"] {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #d0d7e2;
  font-size: 15px;
  background: #fdfdfd;
  transition: border-color 0.2s, box-shadow 0.2s;
}

select:focus,
input[type="date"]:focus {
  outline: none;
  border-color: #1976d2;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.15);
}

/* ---------------------------
   BUTTONS
----------------------------*/
button {
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

button:active {
  transform: scale(0.98);
}

.primary {
  background: linear-gradient(135deg, #1976d2, #2196f3);
  color: #fff;
  box-shadow: 0 6px 14px rgba(33, 150, 243, 0.35);
}

.success {
  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: #fff;
  box-shadow: 0 6px 14px rgba(67, 160, 71, 0.35);
}

.dark {
  background: linear-gradient(135deg, #333, #555);
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

/* ---------------------------
   IMAGE VIEWER
----------------------------*/
.image-viewer {
  margin-top: 10px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e0e6ef;
  background: #fafafa;
  touch-action: pan-y;
}

#jobImage {
  display: block;
  width: 100%;
  user-select: none;
  transition: transform 0.25s ease;
}

/* ---------------------------
   SLIDER CONTROLS
----------------------------*/
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.slider-controls button {
  width: 42px;
  height: 36px;
  padding: 0;
  border-radius: 10px;
  background: #eef2f7;
  color: #333;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

#imgCounter {
  font-size: 13px;
  color: #555;
}

/* ---------------------------
   DOB DISPLAY
----------------------------*/
.dob-display {
  margin-top: 10px;
  padding: 10px 12px;
  background: #f3f6fb;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* ---------------------------
   RESULT MESSAGE
----------------------------*/
.result {
  margin-top: 16px;
  padding: 12px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.result.green {
  background: #e8f5e9;
  color: #1b5e20;
}

.result.red {
  background: #ffebee;
  color: #b71c1c;
}

/* ---------------------------
   FULLSCREEN IMAGE VIEWER
----------------------------*/
.fullscreen {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.fullscreen img {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.25s ease;
}

#closeFull {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

/* ---------------------------
   VISIBILITY HELPERS
----------------------------*/
.hidden {
  display: none;
}

/* ---------------------------
   ANIMATION
----------------------------*/
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* job eligibility css ends here */

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 5px;
}

  details {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  details[open] {
    border-color: #22c55e;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
  }

  summary {
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
  }

  summary::marker {
    display: none; /* Removes default marker */
  }

  summary::after {
    content: "➕";
    font-size: 18px;
    color: #64748b;
    transition: transform 0.3s ease;
  }

  details[open] summary::after {
    content: "➖";
    color: #22c55e;
    transform: rotate(180deg);
  }

  details p {
    margin-top: 10px;
    color: #475569;
  }

  /* Hover/Focus states */
  summary:hover {
    color: #22c55e;
  }
  /* job css */
      /* ===================================== BASE TABLE STYLING ===================================== */
      .jobheading-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
      }

      /* Column width control */
      .jobheading-table colgroup col:first-child {
        width: 57%;
      }

      .jobheading-table colgroup col:last-child {
        width: 43%;
      }

      .jobheading-table th,
      .jobheading-table td {
        border: 1px solid #ddd;
        padding: 12px;
        /* vertical-align: top; */
        font-size: 1.1rem;
        color: var(--color-dark-2);
      }

      .jobheading-table th {
        background: linear-gradient(to right, #00c6ff, #00c6ff);;
        text-align: center;
      }

      /* List styling (plain) */
      .jobheading-table ul {
        margin: 0;
        padding-left: 18px;
      }

      .jobheading-table li {
        margin-bottom: 15px;
        line-height: 1.5;
      }

      /* ===================================== TOTAL POST TEXT ===================================== */
      .jobheading-table td p:first-child {
        margin: 8px 0;
      }

      /* ===================================== MOBILE – KEEP 2 COLUMNS ===================================== */
      @media (max-width: 768px) {

        .jobheading-table th,
        .jobheading-table td {
          font-size: 1rem;
          padding: 8px;
        }

        .jobheading-table ul {
          padding-left: 16px;
        }

        .jobheading-table li {
          margin-bottom: 15px;
          line-height: 1.6;
          font-size: 15px;
        }
      }

      /* vacancy name & eligibility panel start */
      /* ===================================== BASE TABLE STYLING ===================================== */
      .vacancy-eligibility-table {
        width: 100%;
        border-collapse: collapse;
      }

      /* Column width control */
      .vacancy-eligibility-table colgroup col:first-child {
        width: 43%;
      }

      .vacancy-eligibility-table colgroup col:last-child {
        width: 57%;
      }

      .vacancy-eligibility-table th,
      .vacancy-eligibility-table td {
        border: 1px solid #ddd;
        padding: 12px;
        vertical-align: top;
        font-size: 1.1rem;
        color: var(--color-dark-2);
      }

      .vacancy-eligibility-table th {
        background: #f7f7f7;
        text-align: center;
      }

      /* List styling (plain) */
      .vacancy-eligibility-table ul {
        margin: 0;
        padding-left: 18px;
      }

      .vacancy-eligibility-table li {
        margin-bottom: 6px;
        line-height: 1.5;
      }

      /* ===================================== TOTAL POST TEXT ===================================== */
      .vacancy-eligibility-table td p:first-child {
        margin: 8px 0;
      }

      /* ===================================== MOBILE – KEEP 2 COLUMNS ===================================== */
      @media (max-width: 768px) {

        .vacancy-eligibility-table th,
        .vacancy-eligibility-table td {
          font-size: 1rem;
          padding: 8px;
        }

        .vacancy-eligibility-table ul {
          padding-left: 16px;
        }

        .vacancy-eligibility-table li {
          margin-bottom: 5px;
          line-height: 1.4;
        }
      }

      /* vacancy name & eligibility panel ends */
      /* salary panel start */
      /* ===================================== BASE TABLE STYLING ===================================== */
      .salary-table {
        width: 100%;
        border-collapse: collapse;
      }

      /* Column width control */
      .salary-table colgroup col:first-child {
        width: 50%;
      }

      .salary-table colgroup col:last-child {
        width: 50%;
      }

      .salary-table th,
      .salary-table td {
        border: 1px solid #ddd;
        padding: 12px;
        vertical-align: top;
        font-size: 1.1rem;
        color: var(--color-dark-2);
      }

      .salary-table th {
        background: #f7f7f7;
        text-align: center;
      }

      /* List styling (plain) */
      .salary-table ul {
        margin: 0;
        padding-left: 18px;
      }

      .salary-table li {
        margin-bottom: 6px;
        line-height: 1.5;
      }

      /* ===================================== TOTAL POST TEXT ===================================== */
      .salary-table td p:first-child {
        margin: 8px 0;
      }

      /* ===================================== MOBILE – KEEP 2 COLUMNS ===================================== */
      @media (max-width: 768px) {

        .salary-table th,
        .salary-table td {
          font-size: 1rem;
          padding: 8px;
        }

        .salary-table ul {
          padding-left: 16px;
        }

        .salary-table li {
          margin-bottom: 5px;
          line-height: 1.4;
        }
      }

      /* salary panel ends */
      /* job links panel start */
      .job-links-table {
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
        font-family: Arial, sans-serif;
        font-size: 14px;
      }

      /* 50% / 50% column widths */
      .job-links-table col:first-child {
        width: 50%;
      }

      .job-links-table col:last-child {
        width: 50%;
      }

      .job-links-table th,
      .job-links-table tr td {
        text-align: center;
        border: 2px solid #ffffff;
        background-color: #ffe066;
        font-weight: bold;
        font-size: 1.2rem;
        line-height: 1.4;
        border-radius: .4rem;
        padding: 5px 0 5px;
      }

      .job-links-table tr td a {
        text-decoration: none;
        font-size: 1.3rem;
        color: #1d4ed8;
      }
      
      .job-links-table tr td a:hover{
          text-decoration: underline;
      }

      @media (max-width: 648px) {
        .job-links-table {
          font-size: 16px;
        }
        
        .job-links-table tr td{
            font-size: 1.1rem;
        }
        
        .job-links-table tr td a {
            font-size: 1.1rem;
        }
      }

      /* job-links panel ends */
      .job-table-link tr td {}

      /* Dynamic Vacancy Table & salary css starts here */
      .vacancy-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 8px;
        font-size: 14px;
      }

      .vacancy-table td {
        border: 1px solid #ddd;
        padding: 8px 10px;
      }

      .vacancy-table td:first-child {
        width: 50%;
        font-weight: 600;
        background: #f7f7f7;
      }

      @media (max-width: 600px) {
        .vacancy-table {
          font-size: 13px;
        }
      }

      .max-vacancy {
        background: #e9f7ef;
        font-weight: 700;
      }

      .total-row {
        background: #333;
        color: #fff;
        font-weight: 700;
      }

      .salary-info {
        margin-top: 10px;
        padding: 10px 12px;
        background: #f4f8ff;
        border-left: 4px solid #2b6cb0;
        font-size: 14px;
        line-height: 1.5;
      }

      .salary-info strong {
        font-weight: 700;
      }

      .tooltip-wrap {
        position: relative;
        display: inline-block;
        margin-left: 6px;
        cursor: pointer;
        color: #2b6cb0;
        font-weight: 700;
        z-index: 10;
      }

      .tooltip {
        position: absolute;
        left: 50%;
        bottom: 130%;
        transform: translateX(-50%);
        background: #222;
        color: #fff;
        padding: 8px 10px;
        border-radius: 6px;
        font-size: 12px;
        line-height: 1.4;
        width: 220px;
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s ease;
        z-index: 999;
      }

      .tooltip::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -6px;
        border-width: 6px;
        border-style: solid;
        border-color: #222 transparent transparent transparent;
      }

      .tooltip-wrap:hover .tooltip,
      .tooltip-wrap:focus .tooltip {
        opacity: 1;
        visibility: visible;
      }

      /* Mobile tap support */
      
      @media (hover: none) {
  .tooltip {
    pointer-events: none;
  }
  .tooltip-wrap:active .tooltip {
    pointer-events: auto;
  }
}

      /* Dynamic apply online & notification button css */
      .quick-links {
        margin-top: 12px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }

      .quick-links button {
        padding: 8px 14px;
        border: none;
        border-radius: 4px;
        font-size: 14px;
        cursor: pointer;
        line-height: 1.3;
        white-space: normal;
        text-align: center;
      }

      .quick-links .apply {
        background: #2e7d32;
        color: #fff;
      }

      .quick-links .read {
        background: #1565c0;
        color: #fff;
      }
      
      .image-wrapper {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.image-card {
    max-width: 800px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 10;
}

.figure {
    margin: 10px 10px auto;
    text-align: center;
    border-radius: .4rem;
    overflow: hidden;
}

.figure img {
    aspect-ratio: auto 16 / 9;
    width: 100%;
    height: auto;
}
.figcaption {
    font-size: 1rem;
    margin-top: 1.5rem;
    color: #616161;
}

.job-panel {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: #ffffff;
  border-bottom: 2px solid #e5e7eb;
}

.job-tabs {
  max-width: 950px;
  margin: 0 auto;
  display: flex !important;
  gap: 8px;
  overflow-x: auto;
  padding: 8px;
}

.job-tabs a {
  position: relative;
  flex-shrink: 0;
  padding: 8px 16px;
  background: #e5e7eb;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  transition: 0.2s;
}

.job-tabs a.active {
  background: linear-gradient(to right,#0072ff,#00c6ff);
  color: #fff;
}

.job-tabs a.hidden {
  display: none !important;
}

.dynamic-box {
  background: #f8fafc;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0;
  animation: fadeSlide 0.3s ease;
}

.badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #e11d48;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 700;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.home-page-link {
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--color-light-2);
    font-size: 1.1rem;
    border-radius: 3rem;
    padding: .6rem 1.8rem;
    margin: 0;
    transition: .35s;
    font-weight: bold;
}