:root {
  /* ================= BRAND COLORS ================= */
  --primary: #004aad;
  --primary-dark: #0057c9;
  --secondary: #5ea3d8;
  --success: #258976;
  --yellow: #ffd700;
  --white: #ffffff;
  --black: #000000;

  /* ================= TEXT ================= */
  --text-dark: #000000;
  --text-light: #ffffff;
  --text-muted: #555555;
  --text-gray: #333333;

  /* ================= BACKGROUNDS ================= */
  --bg-white: #ffffff;
  --bg-light: #f1f8ff;
  --bg-soft: #e0f7fa;
  --bg-tag: #f0f0f0;
  --bg-badge: #c2d6d8;

  /* ================= BORDERS ================= */
  --border-gray: #aaaaaa;
  --border-light: #dddddd;
  --border-soft: #e0e0e0;

  /* ================= RADIUS ================= */
  --radius-sm: 5px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-round: 50%;

  /* ================= SHADOWS ================= */
  --shadow-soft: 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 6px 18px rgba(0, 0, 0, 0.1);
  --shadow-blue: 0 4px 10px rgba(94, 163, 216, 0.6);
  --shadow-card: 4px 8px 24px rgba(0, 0, 0, 0.1);

  /* ================= TRANSITIONS ================= */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

 /* Base font size */
  --fs-base: 16px;

  /* Scales */
  --fs-heading: 2.5rem;     /* 40px */
   --fs-subtitle: 1.4375rem; /*23px */
  --fs-paragraph: 1.125rem; /* 18px */
  --fw-heading: 600;
  --fw-subtitle:600;
  --fw-paragraph: 500;
  --lh-subtitle: 1.5;
  --lh-paragraph: 2.1875rem; /* 35px */
 


/* Spacing scale */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 1rem;     /* 16px */
  --space-md: 1.25rem;  /* 20px */
  --space-lg: 3.125rem; /* 50px */

}

* {
  margin: 0;
  padding: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Segoe UI', sans-serif;
}

p {
  font-family: 'Inter', sans-serif;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: var(--primary) !important;
}

.report-btn:hover img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.web-blog {
  width: 100%;
}

.login-btn {
  width: 100%;
  padding: 8px;
  font-size: 24px;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* ================= ACCORDION ================= */

.accordion-button {
  color: var(--text-dark) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
}

.accordion-button:not(.collapsed) {
  background-color: #94d7e0  !important;
  color: var(--primary) !important;
  box-shadow: none;
}

.accordion-body {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ================= FORM ================= */

.register-input {
  margin-bottom: 30px;
}

.register-input input,
.register-input textarea {
  background: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--border-light);
  padding: 20px;
}

/* ================= BUTTONS ================= */

.btn {
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 17px;
  width: 100px;
}

/* OUTLINE */
.btn-outline-custom {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: var(--text-light);
}

.btn-outline-custom:hover {
  background-color: var(--primary);
  color: var(--text-light) !important;
  box-shadow: var(--shadow-hover);
}

.btn-outline-custom:active,
.btn-outline-custom:focus,
button.btn.btn-outline-custom:focus-visible,
button.btn.btn-outline-custom:active:focus {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
  box-shadow: none !important;
  outline: none !important;
}

button.btn-outline-custom:hover img {
  filter: brightness(0) invert(1);
}

/* FILLED */
button.btn-filled-custom {
  background-color: var(--primary);
  color: var(--text-light);
  border: 1px solid var(--primary);
}

button.btn-filled-custom:hover img {
  filter: brightness(0) invert(1);
}

button.btn-filled-custom:focus,
button.btn-filled-custom:active,
button.btn-filled-custom:focus-visible,
button.btn-filled-custom:active:focus {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--text-light) !important;
  box-shadow: none !important;
  outline: none !important;
}

button.btn-filled-custom:hover {
  background-color: var(--text-light);
  color: var(--primary);
  border-color: var(--primary) !important;
}

/* ANCHOR BUTTONS */

a.btn.btn-outline-custom {
  background-color: var(--text-light);
  color: var(--primary);
  border: 1px solid var(--primary);
}

a.btn.btn-outline-custom:hover,
a.btn.btn-outline-custom:focus,
a.btn.btn-outline-custom:active,
a.btn.btn-outline-custom:focus-visible,
a.btn.btn-outline-custom:active:focus {
  background-color: var(--primary) !important;
  color: var(--text-light) !important;
  border-color: var(--primary) !important;
  box-shadow: none !important;
  outline: none !important;
}

a.btn.btn-filled-custom {
  background-color: var(--primary);
  color: var(--text-light);
  border: 2px solid var(--primary);
}

a.btn.btn-filled-custom:hover,
a.btn.btn-filled-custom:focus,
a.btn.btn-filled-custom:active,
a.btn.btn-filled-custom:focus-visible,
a.btn.btn-filled-custom:active:focus {
  background-color: var(--text-light) !important;
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  box-shadow: none !important;
  outline: none !important;
}

.heading {
  font-size: var(--fs-heading);
  font-weight: var(--fw-heading);
  text-align: center;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.head-paragrph {
  font-size: var(--fs-paragraph);
  font-weight: var(--fw-paragraph);
  line-height: var(--lh-paragraph);
  margin-bottom: var(--space-sm);
  color: var(--text-light);
}

.searching {
  text-align: left !important;
}

.paragrph {
  font-size: var(--fs-paragraph);
  text-align: justify;
  line-height: var(--lh-paragraph);
  color: var(--text-muted);
  hyphens: auto;
  word-spacing: -0.09em !important;
}

/* ================= ICON ================= */

.search-icon {
  height: 40px;
  width: 40px;
  background: var(--primary);
  font-size: 21px;
  padding: 7px;
  color: var(--text-light);
}

/* ================= STEPS ================= */

.steps-box {
  padding: 1.5rem;
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.steps-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.step-icon i {
  color: var(--primary);
}

.top {
  background-image: linear-gradient(to right, var(--bg-soft), var(--bg-light));
}

.jobs {
  height: 300px;
  padding: 10px;
}

.subtitle {
  font-size:var(--fs-subtitle);
  font-weight: var(--fw-subtitle);
  line-height:var(--lh-subtitle);
  margin: 15px 0;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
}

/* ================= PROCESS ================= */

.process-card {
  box-shadow: var(--shadow-blue);
  transition: transform 0.3s ease;
  height: 90%;
  border-top-left-radius: 20%;
  border-bottom-right-radius: 20%;
  margin-bottom: 20px;
}

.jobs:hover {
  border: 1px solid var(--secondary);
  transform: translateY(-5px);
}

/* ================= CATEGORY ================= */

.categry {
  border-radius: 20px;
  height: 200px;
  text-align: center;
  padding: 15px;
  background: linear-gradient(100deg, #b2f0ef, #a8c6fa);
}

.categry:hover {
  transform: translateY(-5px);
}

/* ================= BOX ================= */

.search-img {
  height: 230px;
}

.box-style {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.box-style:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ================= TITLES ================= */

.main-title {
  font-size: 44px;
  font-weight: 640 !important;
  color: var(--text-light);
  text-align: center;
  line-height: 54px;
}

.main-heading {
  font-size: 44px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  line-height: 54px;
}

.top-heading {
  margin-top: 200px;
}

/* ================= MAP ================= */

path,
rect,
text {
  cursor: pointer;
}

#info-panel {
  width: 400px !important;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 20px 24px;
  border: 1px solid #e2e8f0;
}
#info-panel h2{
  font-size: 23px;

}
#info-panel a {
  color: #1d4ed8;
  margin-bottom: 8px;
  display: block;
  text-decoration: none;
  font-size: 18px;
}

#info-panel a:hover {
  color: #2563eb;
  padding-left: 4px;
}

/* ================= CARDS ================= */

.jobseeker,
.recruitr {
  box-shadow: var(--shadow-blue);
  border: 1px solid var(--border-soft);
  background-color: var(--bg-white);
}

.jobseeker:hover,
.recruitr:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ================= CIRCLE ================= */

.custom-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-light);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.custom-circle:hover {
  background-color: var(--primary-dark);
}

/* ================= CAROUSEL ================= */

.carousel-control-prev,
.carousel-control-next {
  background-color: var(--text-dark);
  height: 50px;
  width: 50px;
  border-radius: 50px;
  position: absolute;
  top: 350px;
  margin: 20px;
}

.carousel-btn {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

.carousel-wrapper .btn {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper .btn:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

/* ================= SWIPER ================= */

.swiper-slide {
  border: 1px solid var(--text-muted);
  border-radius: 20px;
  cursor: pointer;
}

.swiper-slide a h3 {
  color: var(--text-dark);
}

/* ================= BLOG ================= */

.blog-card {
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.service-read {
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  color: var(--link-blue) !important;
}

.service-icon {
  width: 20px;
}

/* ================= FOOTER ================= */

.footer-icon {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
}

.footer-heading {
  text-align: left;
}

.menu {
  list-style: none;
  text-align: left;
}

.menu a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
}

.menu a:hover {
  color: var(--secondary);
}

.footer-para {
  color: var(--text-light);
  font-size: 18px;
  text-align: left;
}

.footer-icon a:hover {
  background-color: var(--secondary);
}

.footer-icon i {
  color: var(--text-light);
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.social-icons a i {
  font-size: 18px;
}

/* ================= MAP ================= */

text {
  fill: var(--text-light);
  font-size: 20px;
  stroke-width: 1px;
  font-family: "Jost", sans-serif;
  letter-spacing: 3px;
}

path,
rect {
  fill: var(--primary);
}

path.active {
  fill: orange;
}

text.active {
  stroke: var(--text-dark);
}

.region:hover text {
  fill: var(--text-dark);
  stroke: var(--text-dark);
}

.region:hover path,
.region:hover rect {
  fill: var(--secondary);
  transition: fill 0.3s ease;
}

svg {
  height: 600px;
}

/* ================= SEARCH ================= */

.clear-icon {
  position: absolute;
  right: 10px;
  top: 49%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #636060;
  font-size: 30px;
  font-weight: 500;
}

.clear-icon:hover {
  color: var(--text-dark);
}

#suggestionList .suggestion-active,
#suggestionList2 .suggestion-active {
  background: #4488b9;
  color: var(--text-light);
}

.search-bar input,
.search-bar select {
  max-width: 100%;
}

/* ================= RESUME ================= */

.resume-btn {
  padding-top: 150px;
}

.resume-progress {
  height: 20px;
}

.links {
  font-size: 20px;
  font-weight: 600;
}

.step1,
.step2 {
  box-shadow: var(--shadow-blue);
  background-color: var(--bg-white);
  border-radius: 20px;
}

/* ================= FORMS ================= */

input {
  border-color: var(--border-gray) !important;
}

textarea {
  height: 134px;
  padding: 1em;
}

label {
  font-size: 18px;
}

.details {
  color: var(--text-dark);
}

.no-decoration-important {
  text-decoration: none !important;
}

/* ================= SELECT2 / CHOICES ================= */

.select2-container .select2-selection--single {
  padding: 6px 0 12px !important;
  height: 38px !important;
  font-size: 18px;
}

.select2-container--default 
.select2-selection--single 
.select2-selection__arrow {
  top: 5px !important;
}

.select2-container--default 
.select2-selection--single 
.select2-selection__placeholder {
  color: var(--text-muted) !important;
}

.choices__inner,
.choices__input {
  background-color: var(--bg-white) !important;
  font-size: 18px !important;
  border-color: var(--border-gray) !important;
}

/* ================= JOB LIST ================= */

.job-card {
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-blue);
}

.job-card a {
  text-decoration: none;
  color: var(--primary);
}

.job-details {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-details li {
  background: var(--bg-soft);
  padding: 5px 10px;
  border-radius: 5px;
}

/* ================= TAGS ================= */

#custom-tags,
#benefit-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tag {
  background-color: var(--bg-tag);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
}

/* ================= DROPDOWN ================= */

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background: var(--bg-white);
  display: none;
  z-index: 1050;
}

.dropdown-list div {
  padding: 8px;
  cursor: pointer;
}

/* ================= TOAST ================= */

#toast-container > div {
  border-radius: 10px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
}

#toast-container > .toast-success {
  background-color: var(--primary) !important;
  color: var(--text-light) !important;
}

#toast-container > .toast-success .toast-progress,
#toast-container > .toast-success .toast-close-button {
  background: var(--primary) !important;
  color: var(--text-light) !important;
}

/* ================= ALERT ================= */

.alert {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  min-width: 300px;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 20px;
  animation: fadeInUp 0.5s ease;
}

.alert-success {
  background-color: var(--primary);
  color:white;
}

.alert-danger {
  background-color: #ef4444;
  color: white;
}

.alert-warning {
  background-color: #f59e0b;
}

.alert-info {
  background-color: #3b82f6;
}

.alert .btn-close {
  filter: invert(1);
}

/* #pageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;     
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.loader {
  width: 60px;
  height: 60px;
  border: 6px solid #e5e7eb;  
  border-top: 6px solid #004AAD; 
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
} */


.desktop-img {
  height: 100px;
  width: 100px;
  background-color: var(--bg-badge);
  border-radius: 50%;
}

/* ================= TABLE ================= */

.table-striped tbody tr:nth-of-type(odd) {
  background-color: var(--bg-soft);
}

.table th,
.table td {
  padding: 12px;
  vertical-align: middle;
}

.custom-table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border-light);
  border-radius: 10px;
}

.custom-table thead tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

.custom-table thead tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

.custom-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.custom-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

/* ================= TOM SELECT ================= */

.ts-dropdown,
.ts-control,
.ts-control input {
  color: var(--text-gray) !important;
  font-family: inherit !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.ts-dropdown .active {
  background: var(--primary) !important;
  color: var(--text-light) !important;
}

.ts-control {
  border-radius: 6px !important;
  border: 1px solid var(--border-gray) !important;
}

/* ================= NOTIFICATION ================= */

.notification-count {
  position: absolute;
  top: -4px;
  right: -1px;
  padding: 5px 11px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-light);
  font-size: 12px;
}

/* ================= PAGINATION ================= */

.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination .page-link {
  color: var(--primary);
  font-weight: 600;
}

.pagination .page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
}

.pagination .page-link:hover {
  background-color: var(--bg-light);
}

/* ================= HERO ================= */

.hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--success));
  color: var(--text-light);
  text-align: center;
}

/* ================= MODAL ================= */

.custom-close {
  background-color: var(--primary);
  padding: 0.5rem;
  opacity: 1;
}

#interviewModal > .modal-content,
#interviewDetailModal > .modal-content {
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

#interviewModal > .form-label,
#interviewDetailModal > .form-label {
  font-weight: 500;
}

#interviewModal > #dynamic-field {
  transition: all 0.3s ease-in-out;
}

/* ================= SWEET ALERT ================= */

.swal2-popup {
  border-radius: 20px;
}

.swal2-confirm {
  background-color: var(--success) !important;
}

.swal2-cancel {
  background-color: var(--primary);
}

div:where(.swal2-icon).swal2-warning {
  border-color: var(--primary) !important;
  color: var(--success) !important;
}

/* ================= CLEAR ICON ================= */

.clear-icon1 {
  position: absolute;
  right: 10px;
  top: 67%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #636060;
  font-size: 30px;
  font-weight: 500;
}

.clear-icon1:hover {
  color: var(--text-dark);
}

/* ================= OTP ================= */

.otp-input {
  text-align: center;
}

@media (max-width: 768px) {
  .otp-input {
    width: 34px !important;
    height: 34px !important;
  }
}

/* ================= STATUS BUTTONS ================= */

.btn-status-pending {
  background-color: #E8A203 !important;
  color: var(--text-light) !important;
  border: none;
}

.btn-status-closed {
  background-color: #6C757D !important;
  color: var(--text-light) !important;
  border: none;
}

.btn-status-done {
  background-color: #209736 !important;
  color: var(--text-light) !important;
  border: none;
}

.btn-status-rejected {
  background-color: #e71e1e !important;
  color: var(--text-light) !important;
  border: none;
}

/* ================= SUGGESTION ================= */

.suggestion-list {
  display: none;
  z-index: 1000;
  max-height: 212px;
  overflow-y: auto;
  cursor: pointer;
  color: var(--text-light) !important;
}

.suggestion-active {
  background: var(--primary) !important;
  color: var(--text-light) !important;
}

/* ================= SELECT2 ================= */

.ui-menu-item .ui-menu-item-wrapper:hover,
.ui-state-active,
.select2-container--default
.select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--primary) !important;
  color: var(--text-light) !important;
}
.ui-menu {
  display: none;
  z-index: 1000;
  max-height: 212px;
  overflow-y: auto;
  overflow-x: hidden;
}

.ui-state-active {
  background-color: #004aad !important;
  color: white !important;
}





.navbar-nav .dropdown-menu {
  position: absolute;
}

.dropdown-menu .notification-items {
  white-space: normal;
  word-wrap: break-word;
}

.dropdown-notification {
  overflow: auto;
  max-height: 300px;
  min-height: auto;
}


.description {
  margin-top: -20px;
}
/* ================= PLANS ================= */

.plan1 {
  background: linear-gradient(135deg, #2193b0, #6499a5);
  color: var(--text-light);
}

.plan2 {
  background: linear-gradient(135deg, #792abe, #4a00e0);
  color: var(--text-light);
}

.plan3 {
  background: linear-gradient(135deg, #4e72b6, #0a3f7a);
  color: var(--text-light);
}

/* ================= MISC ================= */

.posted {
  font-size: 18px;
}

.tag {
  background-color: var(--bg-tag);
}

.text-decoration-none {
  text-decoration: none !important;
  color: inherit !important;
}

.toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.toolbar button {
  border: 1px solid var(--primary);
  background: var(--white);
  padding: 6px 8px;
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--primary);
}

.toolbar button.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ================= EDITOR ================= */

.editor {
  min-height: 150px;
  overflow: auto;
  padding: 20px;
  transition: border var(--transition-fast),
              background var(--transition-fast),
              color var(--transition-fast);
}

.description-div {
  overflow: auto;
  border: 1px solid var(--border-gray);
  padding: 20px;
  transition: border var(--transition-fast),
              background var(--transition-fast),
              color var(--transition-fast);
}

.editor:focus {
  border-color: #f4f5f5;
  outline: none;
}

/* ================= PROFILE ================= */

.profile-img img {
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: var(--radius-round);
}

.user-img {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-round);
  object-fit: cover;
}

/* ================= TABLE ================= */

.application-container td {
  font-size: 17px !important;
}

.connect,
.verify,
.hired td {
  font-size: 15px !important;
}

/* ================= TOGGLE ================= */

.toggle-content {
  display: block;
}

@media (max-width: 768px) {
  .toggle-content {
    display: none;
  }

  .toggle-header {
    cursor: pointer;
    border-radius: var(--radius-sm);
  }
}

/* ================= COUPON ================= */

.price-strike {
  position: relative;
  display: inline-block;
  color: var(--white);
}

.price-strike::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0,
    var(--yellow) 4px,
    transparent 4px,
    transparent 8px
  );
}

#couponCode {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

#applyCouponBtn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/* ================= SECTION ================= */

.selection-process {
  padding-top: 100px !important;
}

/* ================= FOOTER ================= */

.footer_logo ul {
  /* margin-top: 30px; */
  gap: 9px;
}

.footer_logo ul li {
  list-style: none;
}

.footer_logo ul li a {
  color: var(--white);
  width: 30px;
  height: 30px;
  border: 1px solid var(--white);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all linear var(--transition-normal);
}

.footer_logo ul a:hover {
  background-color: var(--white);
}

/* .footer_logo ul a i:hover {
  color: var(--primary);
} */
.footer_logo ul a:hover i {
  color: var(--primary);
}

/* ================= JOB CARD ================= */

.card.job-card {
  position: relative;
}

.urgent-banner {
  background: var(--primary-dark);
  color: var(--white);
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 600;
  position: absolute;
  top: 0;
  right: 0;
  clip-path: polygon(
    0 0,
    8% 50%,
    0 100%,
    100% 100%,
    100% 0
  );
}

/* ================= HEADER CARD ================= */

.header-card {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 25vh;
  background-color: var(--white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  z-index: 9999;
  box-sizing: border-box;
  transition: all var(--transition-normal);
  flex-wrap: wrap;
}

.company-item:hover .header-card {
  display: flex;
}

.header-card ul li:hover {
  color: var(--primary);
}

.company-item .nav-link {
  font-size: 20px;
  font-weight: bold;
}

/* ================= CONTENT ================= */

.category-card {
  margin-top: 30px;
}

.process-title {
  font-size: 20px;
  font-weight: 600;
}

.blog-contnt {
  padding-top: 50px;
}

.categry p {
  font-size: 30px;
}

.circle img {
  height: 50px;
}

.prev-icons,
.next-icons {
  height: 25px;
}

/* jobseeker */


/* Optional: subtle pulse effect on image container */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.6);
  }

  70% {
    box-shadow: 0 0 0 25px rgba(79, 70, 229, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
  }
}
/* ================= MOBILE IMAGE AUTO SCROLL ================= */

@media (max-width: 992px) {
  .img-boxx img.hover-img {
    transform: translateY(0);
    animation: mobileScroll 10s linear infinite alternate;
  }

  .jobseekr-section {
    flex-direction: column;
  }

  .img-boxx:hover img.hover-img {
    transform: none;
  }
}

/* Keyframes */
@keyframes mobileScroll {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-20%);
  }
}

/* ================= TIMELINE ================= */

.timeline {
  border-left: 3px solid var(--black);
  padding-left: 30px;
}

.timeline-item {
  position: relative;
  margin-bottom: 35px;
}

.dot {
  width: 16px;
  height: 16px;
  background: var(--black);
  border-radius: var(--radius-round);
  position: absolute;
  left: -40px;
  top: 5px;
  transition: transform var(--transition-fast);
}

.dot:hover {
  transform: scale(1.5);
}

/* ================= IMAGE BOX ================= */

.img-boxx {
  width: 100%;
  max-width: 500px;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, var(--primary), var(--white));
  box-shadow: var(--shadow-soft);
}

.img-boxx img.hover-img {
  width: 100%;
  min-height: 120%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.img-boxx:hover img.hover-img {
  transform: translateY(-20%);
}

/* ================= RECRUITER ================= */

.recruiter-img {
  height: 180px;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.recruiter-step:hover .recruiter-img {
  transform: translateY(-10px) scale(1.02);
  filter: hue-rotate(313deg) saturate(1);
}

/* ================= JOB CAROUSEL ================= */

.job-btn {
  margin-top: auto;
}

/* .job-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.jobs-card {
  cursor: pointer;
}

/* .job-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 10px 0 0 22px
}


/* ================= JOB CARD ================= */

.job-cards {
  /* width: 270px;
  min-width: 270px;
  max-width: 270px; */
  flex: 0 0 22%;
  height: 280px;
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;

  
}


@media (max-width: 768px) {
   .job-cards {
    flex: 0 0 100%;   /* 1 card per row */
  }
  .job-carousel{
    margin: 0px !important;
  }
}



.company {
  font-size: 18px;
  font-weight: 500;
}

.salary-details {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 15px;
}

.details-job {
  margin: 15px 0 20px;
}

/* ================= GRADIENT VARIANTS ================= */

.job-cards.gradient-1 {
  background: linear-gradient(100deg, #a0bcef, var(--white));
}

.job-cards.gradient-2 {
  background: linear-gradient(100deg, #75bfbe, var(--white));
}

.job-cards.gradient-3 {
  background: linear-gradient(100deg, #b2f0ef, #a8c6fa, var(--white));
}

.job-cards.gradient-4 {
  background: linear-gradient(357deg, #a8c6fa, var(--white), #b2f0ef);
}

.job-cards.gradient-5 {
  background: linear-gradient(32deg, #a8c6fa, #b2f0ef, var(--white));
}

.job-cards.gradient-6 {
  background: linear-gradient(75deg, #a8c6fa, #c8eeed, var(--white));
}

/* ================= MOBILE ================= */

@media (max-width: 767.98px) {
  .nav {
    display: none !important;
  }

  .job-carousel {
    gap: 50px !important;
  }

  .job-cards {
    transform: none !important;
  }
}



/* .job-cards::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  transition: 0.6s;
} */
/* ================= MOBILE ================= */

@media (max-width: 767.98px) {
  .carousel-wrapper {
    padding: 0;
  }
}

/* ================= SHARED ================= */

.share-img img {
  height: 40px;
}

.jobseekr-section {
  margin-top: 100px;
}

.download-contnt {
  margin-top: -100px;
}

/* ================= RECRUITER ================= */

.recruiter-step {
  width: 250px;
  height: 250px;
  background-image: url(../images/rs-shape.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruiter-section {
  margin-top: -40px;
}

/* ================= NAV BUTTONS ================= */

/* .nav {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px;
  border-radius: var(--radius-round);
  cursor: pointer;
  height: 40px;
}

.previous {
  margin-right: 10px;
}

.continue {
  margin-left: 10px;
} */

/* ================= JOB TEXT ================= */

.job-subtitle {
  font-size: var(--fs-subtitle);
  font-weight: 600;
  line-height: 1.5;
  margin: 15px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.description-company {
  max-width: 700px;
  width: 100%;
  text-align: justify;
}

/* ================= CTA ================= */

.cta {
  padding-bottom: 60px;
}


.ts-control > *{
  font-weight: 500;
}

