@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
}

.section {
  padding: 100px 0 20px;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

:root {
  --primary-color: #3C65F5;
  --hover-color: #3357db;
  --secondary-color: #E2E8FD;
  --third-color: #ECECEC;
  --muted-color: #000;
  --semi-dark: #353535;
  --white: #ffffff;
}

/* 1. Home Page */

/* Navbar Css Start */
.sticky-nav {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
  height: 50px;
}

.navbar .navbar-collapse {
  justify-content: space-between;
}

.navbar .navbar-nav {
  padding: 0;
  display: flex;
  gap: 2rem;
  margin: 0 auto;
}

.navbar .nav-item {
  list-style: none;
}

.navbar .nav-link {
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar .nav-link.active {
  color: var(--primary-color);
}

.navbar .nav-link:hover {
  color: var(--primary-color);
}

.navbar .register {
  color: var(--muted-color);
  padding: 0.5rem 1rem;
  margin-right: 1rem;
}

.navbar .register:hover {
  color: var(--primary-color);
}

.dropdown-menu.one {
  left: 15px;
  border-radius: 5px;
}

.dropdown-menu.two {
  left: 0;
  border-radius: 5px;
}

.navbar .sign:hover {
  color: var(--white);
}

.btn-brand {
  background-color: var(--primary-color);
  padding: 0.5rem 2rem;
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--hover-color);
  color: var(--white);
}



.btn-brand.dropdown-toggle::after {
  margin-left: 0.5rem;
}

.dropdown-menu-end {
  right: 0;
  left: auto;
}

/* .navbar-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
} */

.navbar-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-nav-actions .nav-link {
  font-weight: 500;
  position: relative;
  font-size: 1.1rem;
}

.navbar-nav-actions .nav-link i {
  font-size: 1.3rem;
}

/* Candidate Dashboard Display None Remove */
.navbar-nav-actions.candidate-dash .nav-link {
  color: var(--primary-color);
  /*display: none;*/
}

.navbar-nav-actions .dropdown-menu {
  min-width: 200px;
}

.navbar-nav-actions .badge {
  font-size: 10px;
  color: var(--white);
}

/* Navbar Css End */

.btn-brand.light {
  background-color: var(--secondary-color);
  color: var(--muted-color);
  transition: background 0.3s ease;
}

.btn-brand.light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-brand.outline {
  background: var(--white);
  border: 1px solid var(--secondary-color);
  color: var(--semi-dark);
  transition: all 0.3s ease;
}

.btn-brand.outline:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* Hero Section Css Start */

.hero-section {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.85)), url('../../../public/images/business_team_street.jpg') center/cover;
  color: var(--white);
  height: 670px;
  position: relative;
}

.hero-content {
  max-width: 600px;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: #F4DB21;
}

.hero-content p {
  margin-bottom: 2.5rem;
}

.hero-section form {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-section .form-input {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.hero-section input.form-control {
  border-radius: 5px;
  padding: 1rem;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-section .form-input button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--secondary-color);
  border: none;
  color: var(--primary-color);
  border-radius: 5px;
  padding: 0 25px;
  font-weight: 500;
  transition: 0.3s;
  max-width: 150px;
}

.hero-section .form-input button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.hero-section .count {
  display: flex;
  justify-content: center;
  gap: 5.5rem;
  line-height: 26px;
  /*padding-top: 3rem;*/
}

.hero-section .count .job-stats {
  font-size: 2rem;
  font-weight: 600;
}

.hero-section .count .job-stats span {
  font-size: 1rem;
}

.title {
  margin-bottom: 2rem;
}

p {
  margin: 0;
}

/* Hero Section Css End */

/* Category Section Css Start */

.category .row {
  row-gap: 1.5rem;
}

.category-card {
  text-decoration: none;
  color: var(--semi-dark);
  border-radius: 8px;
  padding: 1.8rem 1.2rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card:hover,
.category-card:focus {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--primary-color);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
  outline: none;
}

.category-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12), 0 16px 40px rgba(16, 24, 40, 0.08);
}

.category-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.category-content .icon {
  background-color: var(--secondary-color);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  padding: 1rem;
  margin-bottom: 1rem;
  margin-right: 0;
}

.category-content .icon i {
  font-size: 1.6rem;
  font-weight: 500;
}

.category-content h4 {
  font-size: 1rem;
  margin: 0;
  color: var(--semi-dark);
}

/* Category Section Css End */

/* Services Section Css Start */

.service .row {
  row-gap: 1.5rem;
}

.job-card {
  background: var(--white);
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.04);
  margin: 0 auto;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.job-card .card-hero {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--muted-color);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.job-card .card-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.job-card:hover img {
  transform: scale(1.1);
}

.meta-row {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--muted-color);
  font-size: 0.85rem;
  margin-top: 12px;
}

.meta-row .dot {
  width: 6px;
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.job-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 15px 0 8px;
  color: var(--muted-color);
}

.job-title span {
  color: var(--primary-color);
}

.job-desc {
  color: var(--semi-dark);
  font-size: 0.92rem;
  line-height: 1.45;
  margin-bottom: 15px;
}

.tags-row {
  /* display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: space-between;
  margin: 20px 0; */

  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  /* controls spacing between tags */
  margin-top: 10px;
}

.tag-list {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: var(--muted-color);
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: none;
}

.tag.two {
  background: var(--third-color);
  border: 1px solid var(--third-color);
}

.price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.price span {
  color: var(--semi-dark);
  font-size: 10px;
}

.view-btn {
  width: 100%;
  border-radius: 10px;
  padding: 12px 14px;
  border: none;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 4px;
  transition: background 0.3s ease;
}

.view-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.icon-sm {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.9;
}

.card-inner {
  padding-bottom: 18px;
}

/* Services Section Css End */

/* About Job Section Css Start */

.about-job {
  position: relative;
  overflow: hidden;
}

.about-job.bg {
  background: var(--secondary-color);
  padding: 4rem 0;
}

.about-job h2 {
  max-width: 500px;
  margin-bottom: 2rem;
  font-weight: 700;
}

.about-job-content {
  margin-bottom: 2rem;
}

.about-job-content:last-child {
  margin-bottom: 0;
}

.about-job-content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-job-content h4 i {
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-job-content p {
  color: var(--semi-dark);
  line-height: 1.6;
  margin-bottom: 0;
}

.about-back-bg {
  position: relative;
  background: url(../../../public/images/dash_map.png) center center / cover no-repeat;
  min-height: 450px;
  border-radius: 12px;
  overflow: hidden;
}

.top-image {
  position: absolute;
  top: 10px;
  left: 10%;
  z-index: 2;
  animation: floatTop 3s ease-in-out infinite;
}

.top-image img {
  max-width: 220px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.person-image {
  position: absolute;
  bottom: 0;
  left: 18%;
  z-index: 3;
}

.person-image img {
  height: 340px;
  width: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}

/* @keyframes floatTop {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes floatPerson {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
} */

/* About Job Section Css End */


/* Highlight Section Css Start */

.highlight-box {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.highlight-box.two {
  background-color: #DEFDE1;
}

.highlight-content {
  display: block;
  margin: 0 auto;
  max-width: 400px;
}

.highlight-content h3 {
  font-weight: 700;
}

.highlight-content p {
  margin-bottom: 1rem;
}

.highlight .btn.job {
  padding: 0;
  color: var(--primary-color);
  font-weight: 600;
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.highlight .btn.job:hover {
  color: var(--hover-color);
  background: none;
}

.highlight .btn.job i {
  transition: transform 0.3s ease;
}

.highlight .btn.job:hover i {
  transform: translateX(5px);
}

.highlight .btn.job:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Highlight Section Css End */


/* News and Blog Section Css Start */
.blog {
  position: relative;
}

.blog .job-card {
  padding: 0;
}

.blog .job-card .card-hero {
  height: 240px;
}

.blog .card-inner {
  padding: 1.5rem;
}

.blog .job-title {
  margin-top: 0;
}

.blog .job-desc {
  margin-bottom: 1.4rem;
}

.blog .blog-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog .swiper-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.blog .swiper-button-prev,
.blog .swiper-button-next {
  position: relative;
  width: 38px;
  height: 38px;
  background: var(--secondary-color);
  color: var(--semi-dark);
  border-radius: 50%;
  font-size: 14px;
  top: auto;
  left: auto;
  right: auto;
  margin: 0;
  transition: 0.3s ease;
}

.blog .swiper-button-prev:hover,
.blog .swiper-button-next:hover {
  background: var(--primary-color);
  color: var(--white);
}

.blog .swiper-button-prev::after,
.blog .swiper-button-next::after {
  font-size: 0.875rem;
  font-weight: 700;
}


.blog .job-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog .card-hero .blog-tag .blog .card-hero img {
  width: 100%;
  height: auto;
}

.blog .card-hero .blog-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.4rem 1.2rem;
  background: var(--white);
  color: var(--primary-color);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
}

.blog .custom-card-body {
  padding: 1rem;
}


.blog .card-inner .job-card .user-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color, #e5e5e5);
}

.blog .job-card .user-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.75rem;
}

.blog .job-card .user-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color, #007bff);
  color: var(--white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.blog .job-card .user-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
  flex-grow: 1;
}

.blog .job-card .user-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog .job-card .designation {
  font-size: 0.8rem;
  color: var(--text-secondary, #666);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog .job-card .date-time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  text-align: right;
  flex-shrink: 0;
}

.blog .job-card .date-time .date {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.blog .job-card .date-time .time {
  font-size: 0.75rem;
  color: var(--text-secondary, #666);
}


.blog .btn-load {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}

.blog .load-more {
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  transition: background 0.3s ease;
}

.blog .load-more:hover {
  background: var(--hover-color);
}

/* News and Blog Section Css End */

/* Footer Css Start */

.site-footer {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 48px 24px 22px;
  margin-top: 100px;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 26px;
  margin-bottom: 22px;
}

.footer-subscribe {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-subscribe h3 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
  color: #fff;
  flex: 1 1 320px;
}

.subscribe-form {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  flex: 1 1 420px;
  justify-content: flex-end;
}

.subscribe-form .form-control {
  max-width: 350px;
  border-radius: 8px;
  padding: 10px 14px;
  border: none;
}

.subscribe-form .btn {
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  background: var(--white);
  max-width: 180px;
}

.subscribe-form .btn:hover {
  color: var(--primary-color);
}

.footer-columns {
  padding-top: 18px;
}

.brand-block .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.brand-block .logo img {
  height: 50px;
  width: auto;
  display: block;
  /*filter: brightness(0) invert(1);*/
}

.brand-block p {
  color: var(--secondary-color);
  max-width: 260px;
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-title {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--secondary-color);
  display: block;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--muted-color);
  margin-right: 8px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(3, 10, 34, 0.12);
  transition: transform 0.3s ease;
}

.social-btn i {
  transition: transform 0.3s ease;
}

.social-btn:hover i {
  transform: scale(1.2);
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--secondary-color);
}

.footer-bottom .small-links a {
  color: var(--secondary-color);
  text-decoration: none;
  margin-left: 14px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-bottom .small-links a:hover {
  color: var(--white);
}


/* 2. Job Page */
.page-sec {
  background-color: var(--primary-color);
  padding: 1rem 0;
}

.page-sec .page-sec-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.page-sec .left-side h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.page-sec .right-side a {
  position: relative;
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 5px;
}

.page-sec .right-side a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.page-sec .right-side a:hover {
  color: var(--white);
}

.page-sec .right-side a:hover::after {
  width: 100%;
}

.page-sec .right-side .divider {
  margin: 0 5px;
  color: var(--white);
  opacity: 0.8;
}

/* Search & Filter Css */

.search-card {
  max-width: 1150px;
  margin: 3rem auto 0;
  border-radius: 8px;
  border: 2px solid var(--secondary-color);
  background-color: var(--white);
}

.search-card:active,
.search-card:focus-within {
  border: 2px solid var(--primary-color);
}

.search-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-element {
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 16px 12px;
  flex: 1 1 0;
  min-width: 0;
}

.col-bar {
  width: 1px;
  height: 50px;
  background-color: var(--secondary-color);
}

.icon {
  margin-right: 10px;
  opacity: 0.7;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.search-element input {
  border: none;
  outline: none;
  color: var(--semi-dark);
  background: transparent;
  width: 100%;
}

.placeholder {
  color: var(--semi-dark);
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 36, 0.06);
  background: var(--secondary-color);
  cursor: pointer;
  font-weight: 600;
  gap: 8px;
  box-shadow: none;
}

.filter-btn:active {
  transform: translateY(1px)
}

.filter-wrapper {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-submit {
  height: 50px;
  min-width: 120px;
  border-radius: 8px;
  padding: 0 20px;
  margin-right: 4px;
  font-weight: 500;
  color: var(--white);
  border: none;
  cursor: pointer;
  background: var(--primary-color);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.search-submit:hover {
  background-color: var(--hover-color);
  color: var(--white);
}

/* Filter Panel */

.filter-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 370px;
  height: 100vh;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  scroll-behavior: smooth;
  z-index: 9999;
  padding: 1.5rem;
}

.filter-panel.active {
  transform: translateX(0);
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: .5rem;
  margin-bottom: 1rem;
}

.filter-header h4 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--muted-color);
}

.filter-header button {
  border: none;
  background: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--semi-dark);
}

.filter-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: .75rem 0;
  font-size: 14px;
  color: var(--semi-dark);
}

.filter-content input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-content input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.filter-content input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: var(--white);
  border-radius: 50%;
}

.filter-content select {
  width: 100%;
  padding: 10px 14px;
  color: var(--semi-dark);
  border: 1.5px solid var(--secondary-color);
  border-radius: 8px;
  background-color: var(--white);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("../icons_images/down-arrow-5-svgrepo-com.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.filter-content select:focus {
  border-color: var(--primary-color);
}

.filter-content h5 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
}

.range-wrapper {
  position: relative;
  width: 100%;
  height: 6px;
  margin-top: 10px;
}

.range-wrapper input[type="range"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  z-index: 9;
}

.range-wrapper::before {
  content: "";
  position: absolute;
  height: 6px;
  width: 100%;
  border-radius: 5px;
  background: var(--secondary-color);
  top: 0;
  z-index: 1;
}

.range-wrapper .range-progress {
  content: "";
  position: absolute;
  height: 6px;
  border-radius: 5px;
  background: var(--primary-color);
  top: 0;
  z-index: 2;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid #fff;
  pointer-events: auto;
  cursor: pointer;
}

.salary-values {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
  font-weight: 600;
  color: var(--semi-dark);
}

.filter-content.bot-border {
  border-bottom: 1px solid var(--secondary-color);
}

.filter-content .label-salary {
  display: flex;
  gap: 0;
}

.filter-content .label-salary input {
  margin-right: 10px;
}

.filter-content .label-salary i {
  margin-right: 2px;
  font-weight: 600;
}

.filter-content .label-salary span {
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
}

.category-filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.category-filter h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.category-filter a {
  text-decoration: none;
  color: var(--semi-dark);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: block;
}

.category-filter a:hover {
  background: var(--primary-light, #f1f4ff);
  color: var(--primary-color, #3b82f6);
}

.category-filter a.active {
  background: var(--primary-color, #3b82f6);
  color: var(--white);
}

.filter-btn-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2.5rem 0 0;
}

.form-switch .form-check-input:focus {
  box-shadow: none;
}

.btn-filter {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-filter:hover {
  background-color: var(--hover-color);
  color: var(--white);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 9998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.job-page .more-job-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}

.job-page .more-job-btn .btn-brand {
  padding: 1rem 2rem;
}

/* 3. Job Description Css */
.profile-sec {
  border-bottom: 1px solid var(--secondary-color);
}

.profile-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left {
  display: flex;
  gap: 1rem;
  align-items: center;
  min-width: 0
}

.left .company-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px
}

.left .company-icon i {
  font-size: 1.6rem;
  opacity: 0.95
}

.profile .title-row {
  display: flex;
  align-items: center;
  gap: 8px
}

.profile .name {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--muted-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.profile .company-small {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-color);
  font-size: 12px;
}

.company-small img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: cover
}

.company-small .meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.salary {
  background: linear-gradient(90deg, #fef3c7, #fef9c3);
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px
}

.badges {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap
}

.badge {
  background: var(--secondary-color);
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 12px;
  color: var(--semi-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.badges .badge1 {
  background-color: #f9cf98;
}

.badges .badge2 {
  background-color: #93f7dc;
}

.badges .badge3 {
  background-color: #bca3f5;
}

.profile-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.btn-apply {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(14, 165, 164, 0.16)
}

.btn-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--secondary-color);
  background: var(--white);
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

.btn-save:hover {
  background: var(--secondary-color);
}

.btn-save.active {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-save.active i {
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

.description {
  position: relative;
}

.job-description {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.description .content {
  font-size: 1rem;
}

.description .content span {
  font-weight: 600;
  margin-right: 10px;
}

.description .job-descrip {
  margin-bottom: 10px;
  font-weight: 600;
}

.over-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: var(--white);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.over-box:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.over-left,
.over-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: 150px;
  height: 150px;
}

.over-left .label {
  color: var(--semi-dark);
  font-size: 0.875rem;
  font-weight: 500;
}

.over-left .value {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
}

.over-left .period {
  color: var(--semi-dark);
  font-size: 0.875rem;
  font-weight: 500;
}

.over-right i {
  font-size: 1.6rem;
  color: var(--primary-color);
}

.over-right span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--semi-dark);
}

.over-box.job {
  display: block;
}

.over-box .over-job h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.over-box .over-job .job-over {
  display: flex;
  gap: 10px;
  padding-left: 0rem;
  align-items: flex-start;
}

.over-box .over-job .job-over:not(:last-child) {
  margin-bottom: 1rem;
}

.over-box .over-job .job-over .over-icon {
  display: flex;
}

.over-box .over-job .job-over .over-icon i {
  font-size: 1.4rem;
  color: var(--primary-color);
  line-height: normal;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.job-content h5 {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.job-content span {
  font-size: 0.675rem;
}

.over-box.job .job-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.over-box.job .job-badge {
  background-color: var(--secondary-color);
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 500;
}

.share-link {
  display: flex;
  align-items: center;
  border: 1px solid var(--secondary-color);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
}

.share-link input {
  flex: 1;
  border: none;
  padding: 10px 12px;
  font-size: 0.95rem;
  color: var(--semi-dark);
  outline: none;
  background: transparent;
}

.copy-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  width: 48px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.copy-btn:hover {
  background: var(--hover-color);
}

.job-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.job-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.job-social-links a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.over-box.map {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.over-box.job .over-job h4 {
  padding: 1rem 0 0 0rem;
}

.over-box.job .over-job p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

/* 4. Sign In Css Start  */
.sign-in-page {
  position: relative;
}

.sign-in-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}

.sign-in-form {
  flex: 1 1 400px;
  position: relative;
  padding: 2rem 0;
}

.sign-in-form h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.sign-in-form .subtitle {
  color: var(--semi-dark);
  margin-bottom: 1.8rem;
}

.form-label {
  font-weight: 500;
  color: var(--semi-dark);
}

.form-control {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--secondary-color);
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.sign-in-form input::placeholder {
  color: var(--semi-dark);
  opacity: 0.5;
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--semi-dark);
}

.toggle-password:hover {
  color: var(--primary-color);
}

.btn-brand.sign-in {
  width: 100%;
  border-radius: 25px;
}

.forgot-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-link:hover {
  text-decoration: underline;
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 1.5rem;
}

.social-sign-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-color);
  background: var(--white);
  color: var(--semi-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.social-sign-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-sign-btn i {
  font-size: 1.2rem;
}

.social-sign-btn.facebook:hover {
  border-color: #1877f2;
  color: #1877f2;
}

.social-sign-btn.google:hover {
  border-color: #ea4335;
  color: #ea4335;
}

.social-sign-btn.linkedin:hover {
  border-color: #0077b5;
  color: #0077b5;
}

.social-sign-btn.facebook:active {
  background-color: rgba(24, 119, 242, 0.08);
}

.social-sign-btn.google:active {
  background-color: rgba(234, 67, 53, 0.08);
}

.social-sign-btn.linkedin:active {
  background-color: rgba(0, 119, 181, 0.08);
}

.register-text {
  color: var(--semi-dark);
  font-size: 0.9rem;
}

.register-text a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
}

.register-text a:hover {
  text-decoration: underline;
}

.sign-in-image {
  flex: 1 1 450px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sign-in-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* 4. Condidate Register Form Css */

.candidate-page {
  padding: 4rem 0;
}

.candidate-page h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.sign-in-wrapper.candidate {
  justify-content: center;
}

.candidate-page .sign-in-form {
  background-color: var(--white);
  box-shadow: 0 0 18px rgba(72, 69, 69, 0.1);
  border-radius: 8px;
  padding: 4rem 6rem;
  max-width: 800px;
}

.btn-group {
  display: flex;
  gap: 1rem;
}

.btn-group .btn-brand,
.btn-group .btn-brand.outline {
  border-radius: 50px !important;
  text-align: center;
}

.btn-brand.outline.create {
  border-radius: 50px;
  width: 100%;
  text-align: center;
}

.candidate-page .form-check {
  margin-bottom: 1rem;
}

.g-recaptcha {
  display: inline-block;
  transform: scale(1);
  transform-origin: center;
}

/* 5. Candidate Dashboard Css */

.can-dashboard {
  padding: 2rem 0;
  background: #f8f9fa;
}

.can-dashboard .sidebar {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  min-height: 100%;
}

.profile-box {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-box .profile-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.8rem;
}

.profile-box h5 {
  margin-bottom: 0.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.profile-box p {
  font-size: 0.9rem;
  color: var(--semi-dark);
}

.dashboard-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-menu li {
  margin: 5px 0;
}

.dashboard-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--semi-dark);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dashboard-menu li a i {
  font-size: 1.1rem;
}

.dashboard-menu li a:hover,
.dashboard-menu li a.active {
  background: var(--primary-color);
  color: var(--white);
}

.dashboard-menu li.logout a {
  color: #e63946;
}

.dashboard-menu li.logout a:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Sidebar Toggle Button */
.sidebar-toggle {
  position: fixed;
  right: 2rem;
  top: 6rem;
  z-index: 1070;
  border: none;
  background: var(--white);
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1065;
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
  display: none;
}

.can-dashboard .main-content {
  padding: 0 1.5rem;
}

.can-dashboard .main-content h3 {
  font-weight: 600;
  color: var(--semi-dark);
  margin: 0 0 2rem;
}

.can-dashboard .main-content p {
  color: var(--semi-dark);
  margin-bottom: 1.5rem;
}

.can-dashboard .can-box {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.can-dashboard .can-bx {
  background-color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 1 1 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform .2s ease;
}

.can-dashboard .can-bx:hover {
  transform: translateY(-5px);
}

.can-dashboard .can-bx .icon {
  background: var(--secondary-color);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
}

.can-dashboard .can-bx .icon i {
  font-size: 1.35rem;
  color: var(--primary-color);
}

.can-dashboard .can-bx .number {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--semi-dark);
  text-align: right;
}

.can-dashboard .can-bx .post-apply {
  font-size: 0.9rem;
  color: var(--semi-dark);
  opacity: .9;
}

.can-dashboard .recent-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0 1rem;
}

.can-dashboard .recent-group .recent {
  font-size: 1.25rem;
  font-weight: 600;
}

.can-dashboard .recent-group a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.can-dashboard .status-bar {
  display: grid;
  grid-template-columns: 1fr 160px 160px 160px;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  background: var(--secondary-color);
  border-radius: 8px;
  color: var(--semi-dark);
  font-weight: 600;
  margin-bottom: .75rem;
}

.can-dashboard .status-bar .job {
  text-align: left;
}

.can-dashboard .status-bar .date,
.can-dashboard .status-bar .status,
.can-dashboard .status-bar .action {
  text-align: center;
}

.can-dashboard .profile-card {
  gap: 12px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--secondary-color);
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(16, 24, 40, 0.04);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.can-dashboard .profile-card:hover {
  border: 1px solid var(--primary-color);
}

.can-dashboard .profile-card .left {
  display: flex;
  gap: 12px;
  align-items: center;
}

.can-dashboard .company-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.can-dashboard .profile .title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.can-dashboard .profile .name {
  font-weight: 700;
  color: var(--semi-dark);
}

.can-dashboard .badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(59, 130, 246, 0.12);
  color: var(--primary-color);
}

.can-dashboard .company-small .meta {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--semi-dark);
  margin-top: 6px;
  font-size: 0.9rem;
}

.can-dashboard .company-small .meta i {
  margin-right: 4px;
  color: var(--primary-color);
}

.can-dashboard .profile-card .can-date {
  text-align: center;
  color: var(--semi-dark);
  font-size: 0.9rem;
}

.can-dashboard .profile-card .can-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--semi-dark);
}

.can-dashboard .profile-card .can-status i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.can-dashboard .profile-card .profile-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.can-dashboard .btn-apply {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.can-dashboard .btn-apply:hover {
  background-color: var(--hover-color);
}

/* Experience & Education Model CSS Start*/

.edu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.edu-head h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.btn-add {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
}

.btn-add:hover {
  background-color: var(--hover-color);
}

.table-container {
  background: var(--white);
  border-radius: 8px;
  overflow-x: auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  -webkit-overflow-scrolling: touch;
}

.custom-table {
  width: 100%;
  min-width: 500px;
  margin: 0;
}

.custom-table thead {
  background-color: var(--secondary-color);
}

.custom-table th {
  padding: 1rem;
  font-weight: 600;
  color: var(--muted-color);
  border-bottom: 2px solid var(--third-color);
  font-size: 0.9rem;
}

.custom-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--third-color);
  color: var(--semi-dark);
}

.custom-table tbody tr:last-child td {
  border-bottom: none;
}

.action-btn {
  background: none;
  border: none;
  color: var(--semi-dark);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.action-btn:hover {
  color: var(--muted-color);
}

.modal-content {
  border-radius: 10px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-header {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 10px 10px 0 0;
  padding: 1rem 1.5rem;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.modal-header .btn-close:focus {
  box-shadow: none;
}

.modal-body {
  padding: 2rem;
}

.form-select {
  border: 1px solid var(--semi-dark);
  padding: .6rem .8rem;
  font-size: 15px;
  opacity: 0.8;
}

.form-select:focus {
  box-shadow: none;
  border: 1px solid var(--primary-color);
}

.check-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.find-job-search {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border: none;
  border-radius: 8px;
  overflow: visible;
  width: 540px;
  position: relative;
}

.find-job-search .dropdown {
  border-right: 1px solid var(--third-color);
  position: relative;
}

.find-job-search .dropdown-toggle {
  background: transparent;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--semi-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-width: 110px;
  justify-content: space-between;
}

.find-job-search .dropdown-toggle::after {
  display: none !important;
}

.find-job-search .bi-caret {
  font-size: 20px;
}

.find-job-search .dropdown-toggle:focus {
  outline: 0;
  outline-offset: 2px;
}

.find-job-search .chev {
  font-size: 12px;
  margin-left: 6px;
}

.find-job-search .dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--third-color);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  min-width: 180px;
  z-index: 1000;
  display: none;
  padding: 6px 0;
  list-style: none;
  margin: 0;
}

.find-job-search .dropdown-menu.show {
  display: block;
}

.find-job-search .dropdown-item {
  display: block;
  padding: 10px 16px;
  color: var(--semi-dark);
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.find-job-search .dropdown-item[aria-selected="true"],
.find-job-search .dropdown-item:focus,
.find-job-search .dropdown-item:hover {
  background: var(--secondary-color);
  outline: none;
}

.find-job-search .search_box {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 12px;
  min-width: 120px;
}

.find-job-search .search_box i {
  color: var(--primary-color);
  font-size: 16px;
  margin-right: 10px;
}

.find-job-search .search_box input {
  border: none;
  outline: none;
  padding: 12px 0;
  font-size: 14px;
  flex: 1;
  color: var(--semi-dark);
  background: transparent;
}

.find-job-search .search_box input::placeholder {
  color: rgba(51, 51, 51, 0.6);
}

/* Experience & Education Model CSS End*/

/* Candidate Dashboard Css End */

/* 6. Candidates Settings Page Css */

.settings-scroll {
  display: flex;
  gap: .75rem;
  margin-top: .75rem;
  overflow-x: auto;
  padding-bottom: .5rem;
}

.settings-scroll .tab-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .9rem;
  border-radius: 5px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  color: var(--semi-dark);
}

.settings-scroll .tab-btn i {
  font-size: 1.05rem;
}

.settings-scroll .tab-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.12);
}

.tabs {
  margin-top: .75rem;
}

.tab-panel {
  margin-top: .5rem;
}

.tab-panel[hidden] {
  display: none;
}

.tabs .form-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: .4rem;
  color: var(--semi-dark);
}

.form-control {
  padding: .6rem .8rem;
  border-radius: 8px;
  border: 1px solid var(--semi-dark);
  background: var(--white);
}

.upload-btn {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--semi-dark);
  padding: .45rem .8rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.profile-right {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding-top: 1rem;
}

.profile-right .upload-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  margin-top: 2rem;
  transition: 0.3s ease;
}

.profile-right .upload-btn:hover {
  background: var(--hover-color);
}

.profile-preview img {
  border-radius: 8px;
  margin-top: 10px;
  border: 2px solid var(--secondary-color);
}

.resume-upload {
  margin-top: 8px;
  max-width: 450px;
}

.upload-area {
  display: flex;
  align-items: center;
  height: 100px;
  border: 1.5px dashed var(--secondary-color);
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  background: var(--white);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
  outline: none;
}

.upload-area:focus,
.upload-area.dragover {
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.08);
}

.upload-inner {
  display: flex;
  gap: 12px;
  align-items: center;
}

.upload-icon {
  font-size: 1.6rem;
  color: var(--primary-color);
}

.upload-title {
  font-weight: 700;
  color: var(--semi-dark);
}

.upload-sub {
  font-size: 0.9rem;
  color: var(--semi-dark);
}

.resume-info {
  margin-top: 10px;
}

.file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--white);
}

.file-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--secondary-color);
  font-size: 1.1rem;
  color: var(--primary-color);
}

.file-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.file-name {
  font-weight: 600;
  color: var(--semi-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

.file-size {
  font-size: 0.85rem;
  color: var(--semi-dark);
}

.file-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.file-actions a,
.file-actions button {
  background: transparent;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 6px;
}

.file-actions button:hover,
.file-actions a:hover {
  background: rgba(59, 130, 246, 0.06);
}

.text-danger {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* Candidates Settings Css End */

/* Job Applied Css Start */

.can-dashboard .pagination {
  gap: 10px;
}

.can-dashboard .pagination .page-item .page-link {
  border: none;
  color: var(--primary-color);
  font-weight: 500;
  border-radius: 25px;
  width: 40px;
  height: 40px;
  text-align: center;
  padding: 8px 14px;
  transition: all 0.2s ease;
}

.can-dashboard .pagination .page-item.active .page-link {
  background: var(--primary-color);
  color: var(--white);
}

.can-dashboard .pagination .page-item .page-link:focus {
  box-shadow: none;
  outline: 0;
}

.can-dashboard .pagination .page-item .page-link:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Job Applied Css End */

/* Favourite Job Css Start  */
.can-dashboard .profile-card.favourite,
.can-dashboard .profile-card.applied,
.can-dashboard .profile-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.profile-card .left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
}

.can-dashboard .profile-card .can-expired {
  color: #dc3545;
}

.can-dashboard .profile-card .profile-actions .btn-apply.fav {
  background: var(--secondary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.can-checked {
  cursor: pointer;
  font-size: 20px;
  transition: color 0.3s ease;
}

.can-checked:hover i {
  color: var(--primary-color);
}

/* Job Alert Css Start */

.can-dashboard .profile-card .title-row .job-text {
  margin: 0;
}

.can-dashboard .profile-card.job-alert .del i {
  color: #dc3545;
  font-size: 1.4rem;
}

.can-dashboard .profile-card.job-alert {
  grid-template-columns: 1fr 80px;
}


/* Employer Dashboard CSS */
.btn-brand.post {
  border-radius: 5px;
  font-weight: 500;
}

.can-dashboard.employer .status-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-evenly;
}

.can-dashboard.employer .can-date i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.can-dashboard.employer .list i {
  font-size: 1.4rem;
}

.can-dashboard.employer .employer-text {
  margin: 1.4rem 0;
}

.employer-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.employer-bx {
  background-color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: 8px;
  gap: 1rem;
  flex: 1 1 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform .2s ease;
}

.employer-bx:hover {
  transform: translateY(-5px);
}

.employer-bx .number-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.employer-bx .number-text .number {
  font-size: 1.4rem;
  font-weight: 500;
}

.employer-bx .number-text .icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  background: var(--secondary-color);
  border-radius: 25px;
}

.employer-bx .number-text .icon i {
  font-size: 1.2rem;
}

.can-dashboard.employer .profile-card .can-status.employer i,
.can-dashboard.employer .profile-card .can-status.employer span {
  color: #dc3545;
}

/* Employer Profile CSS */

.employer-profile {
  position: relative;
  width: 100%;
  min-height: 670px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 20px;
  overflow: hidden;
}

/* 
.employer-profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../../public/images/emp-pro.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
} */
section.employer-profile {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.employer-profile::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.employer-profile-bx {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  width: 100%;
}

.employer-pro-content {
  background: var(--white);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.employer-pro-content:hover {
  transform: translateY(-5px);
}

.employer-pro-content .logo {
  width: 90px;
  height: 90px;
  padding: 14px;
  background: var(--muted-color);
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.employer-pro-content .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.employer-pro-content .text {
  text-align: left;
  width: 100%;
}

.employer-pro-content h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.employer-pro-content span {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--semi-dark);
  font-weight: 500;
  margin-top: 5px;
}

.employer-pro-content .btn-brand.position {
  border-radius: 5px;
  max-width: 180px;
  width: 100%;
  padding: 1rem 1.4rem;
  transition: transform 0.3s ease;
}

.employer-pro-content .btn-brand.position i {
  display: inline-block;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(.2, .9, .3, 1);
  transform: translateX(0);
  will-change: transform;
}

.employer-pro-content .btn-brand.position:hover i {
  transform: translateX(4px);
}

.description.employer {
  margin-bottom: 5rem;
}

.description.employer .job-description.two {
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 10px;
}

.description.employer .employer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.description.employer .employer-links .share-label {
  font-weight: 600;
  font-size: 1.4rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

.description.employer .employer-links .links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.description.employer .share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 0px;
}

.description.employer .share-link i {
  font-size: 1.1rem;
  line-height: 1;
  display: inline-block;
  color: var(--primary-color);
}

.description.employer .share-link:hover,
.description.employer .share-link:focus {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.description.employer .share-link:hover i {
  color: var(--white) !important;
}

/* .description.employer .share-link.linkedin i {
  color: #0a66c2;
}

.description.employer .share-link.facebook i {
  color: #1877f2;
}

.description.employer .share-link.twitter i {
  color: #353535;
}

.description.employer .share-link.pinterest i {
  color: #e60023;
} */

.open-post-bx {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  text-align: center;
  color: var(--semi-dark);
  background: var(--white);
  border: 1px dashed rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  gap: 1rem;
}

.open-post-bx i {
  font-size: 4rem;
  color: var(--primary-color);
}

.open-post-bx span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--semi-dark, #555);
}

.description.employer .over-left.employer,
.description.employer .over-right.employer {
  flex-direction: row;
  flex-wrap: nowrap;
  width: auto;
  height: 100px;
}

.description.employer .over-left .icon,
.description.employer .over-right .icon {
  margin-right: 0;
}

.description.employer .over-left i,
.description.employer .over-right i {
  font-size: 1.8rem;
}

.description.employer .over-left .label,
.description.employer .over-right .label {
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
}

.description.employer .over-left .value,
.description.employer .over-right .value {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
}

/* Employer My Job CSS */

.job-content {
  /* padding: 1rem 0; 
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);*/
}

.job-content .job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.job-content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
}

.job-content .job-filters {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.job-content .job-status {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.job-content .job-status span {
  font-size: 0.9rem;
  color: var(--semi-dark);
}

.job-content .dropdown {
  border: 1px solid var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  background: var(--white);
  transition: all 0.3s ease;
}

.job-content .dropdown:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.job-content .dropdown i {
  margin-left: 10px;
}

/* Employer Post Job CSS */

.can-dashboard.employer .job-content {
  border-bottom: none;
}

.btn-brand.black {
  background: var(--muted-color);
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.btn-brand.black:hover {
  background: var(--semi-dark);
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.2rem;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--semi-dark);
  pointer-events: none;
}

/* Saved Candidtaes CSS */

.job-content .job-status .fit {
  font-size: 1.2rem;
  font-weight: 600;
}

.job-content .dropdown.save {
  width: 200px;
  display: flex;
  justify-content: space-between;
}

.can-dashboard.employer .job-content.saved {
  margin-bottom: 2rem;
}

.can-dashboard.employer .profile-card .saved-can {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Plan & Billing CSS */

.plan-box {
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  transition: 0.3s ease;
  height: 100%;
}

.plan-box:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.plan-box .plan-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.plan-box .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.btn-brand.small-btn {
  width: auto;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.btn-brand.small-btn:hover {
  background-color: var(--hover-color);
  transform: translateY(-2px);
}

.plan-box .plan-bx span {
  margin-bottom: 0.4rem;
  font-size: 0.785rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-box .plan-bx span i {
  color: var(--primary-color);
}

.table thead {
  background: var(--secondary-color);
  font-weight: 600;
}

.table thead tr th {
  color: var(--semi-dark);
  font-size: 0.875rem;
}

.table tbody tr td {
  font-size: 0.895rem;
}

.badge.plan {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Employer Settings Page CSS */
.can-dashboard.emp-settings .tab-panel h4 {
  font-size: 1.2rem;
  font-weight: 500;
}


/* Blog Home Page CSS */

.blog-sec {
  position: relative;
  width: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  overflow: hidden;
}

.blog-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../../images/blog_4.jpg') center/cover no-repeat;
  z-index: 1;
}

.blog-sec::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2;
}

.blog-title {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
}

.blog-title h1 {
  font-size: 4rem;
  font-weight: 600;
  color: var(--white);
}

.blog-post-sec .post-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-sec .post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.blog-post-sec .post-card .post-content {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.blog-post-sec .post-card .image-left {
  flex: 0 0 390px;
  overflow: hidden;
}

.blog-post-sec .post-card .image-left img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post-sec .post-card:hover .image-left img {
  transform: scale(1.05);
}

.post-card .post-content-right {
  padding: 2rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-card .post-time {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--semi-dark);
  font-size: 0.9rem;
}

.post-card .date,
.post-card .message {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.post-card .date i,
.post-card .message i {
  color: var(--primary-color);
  font-size: 1rem;
}

.post-card .post-content-right h2 {
  margin: 0 0 0.75rem 0;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--muted-color);
}

.post-card .post-content-right p {
  margin-bottom: 1.25rem;
  color: var(--semi-dark);
  line-height: 1.6;
  font-size: 0.95rem;
}

.post-card .post-content-right .btn-brand.blog {
  padding: 0.7rem 1.8rem;
  transition: all 0.3s ease;
}

.post-card .post-content-right .btn-brand.blog i {
  display: inline-block;
  transition: transform 0.3s ease;
}

.post-card .post-content-right .btn-brand.blog:hover i {
  transform: translateX(3px) translateY(-3px);
}

.post-box {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.post-box h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box i {
  position: absolute;
  left: 12px;
  color: var(--semi-dark);
  font-size: 1rem;
  pointer-events: none;
}

.search-box input {
  width: 100%;
  padding: 0.6rem 0.75rem 0.6rem 2.2rem;
  border: 1px solid var(--secondary-color);
  border-radius: 6px;
  outline: none;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-box input:focus {
  border-color: var(--primary-color);
}

.post-box .post-content img {
  max-width: 80px;
  width: 100%;
}

.post-box .post-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 10px;
}

.post-box .post-content .post-content-right a {
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  color: var(--muted-color);
  transition: color 0.3s ease;
}

.post-box .post-content .post-content-right a:hover {
  color: var(--primary-color);
}

.post-box .post-content .post-content-right span {
  font-size: 0.675rem;
}

.blog-post-sec .post-box {
  margin-bottom: 1.4rem;
  transition: transform 0.3s ease;
}

.blog-post-sec .post-box:last-child {
  margin-bottom: 0;
}

.blog-post-sec .post-box:hover {
  transform: translateY(-5px);
}

.blog-post-sec .post-box a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--muted-color);
  transition: color 0.3s ease;
}

.blog-post-sec .post-box a:hover {
  color: var(--primary-color);
}

.blog-post-sec .post-box a:last-child {
  margin-bottom: 0;
}

.blog-post-sec .post-box .badge {
  background: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

.blog-post-sec .post-box .badge:last-child {
  margin-bottom: 0;
}

.blog-post-sec .blog-pagination .page-link {
  border-radius: 50px;
  width: 40px;
  height: 40px;
  text-align: center;
  margin: 0 5px;
}

/* Blog Details CSS */
.blog-post-sec .blog-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.blog-post-sec .blog-image img {
  width: 100%;
  border-radius: 8px;
}

.blog-post-sec .blog-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--white);
  color: var(--primary-color);
  padding: 8px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
  backdrop-filter: blur(4px);
}

.blog-post-sec .blog-badge .blog-number {
  font-weight: 600;
}

.blog-post-sec .blog-badge .blog-date {
  font-size: 14px;
}

.blog-post-sec .blog-post-title {
  margin-top: 2rem;
}

.blog-post-sec .post-sort {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.blog-post-sec .post-sort span {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}

.blog-post-sec .post-sort span i {
  font-size: 1.8rem;
}

.blog-post-sec .blog-disc {
  margin-top: 1.4rem;
}

.comments-section {
  margin: auto;
}

.comment-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  background: var(--white);
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.comment-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.comment-content h6 {
  margin: 0;
  font-weight: 600;
}

.comment-content small {
  color: var(--semi-dark);
  display: block;
  margin-bottom: 8px;
}

.comment-content p {
  margin: 0;
  color: var(--semi-dark);
  line-height: 1.5;
  font-size: 15px;
}

.reply-link {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--muted-color);
  font-size: 14px;
  text-decoration: none;
}

.reply-link i {
  margin-right: 3px;
}

.comment-form h5 {
  margin-bottom: 15px;
  font-weight: 600;
}

.comment-form .form-control {
  background: var(--third-color);
  border: 1px solid var(--third-color);
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.comment-form .form-control:focus {
  background: var(--white);
  outline: none;
  border: 1px solid var(--primary-color);
}

/* Price & Plan Page CSS */
.price-plan-sec {
  position: relative;
}

.price-plan-sec .price-title {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
}

.price-plan-sec .choose-plan {
  text-align: center;
  margin: 4rem 0 1rem;
}

.price-plan-sec .choose-plan h2 {
  color: var(--primary-color);
}

.price-plan-sec .choose-plan p {
  color: var(--muted-color);
  margin: 0;
}

.price-plan-sec .btn-group-toggle {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 0 auto;
}

.price-plan-sec .toggle-btn {
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--third-color);
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  color: var(--semi-dark);
  transition: all .18s ease;
}

.price-plan-sec .toggle-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(59, 91, 253, 0.12);
}

.price-plan-sec .pricing-row {
  margin-top: 5rem;
}

.price-plan-sec .price-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(23, 23, 23, 0.04);
  border: 1px solid var(--third-color);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.price-plan-sec .price-card:hover {
  border: 1px solid var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(59, 91, 253, 0.12);
}

.price-plan-sec .price-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--semi-dark);
}

.price-plan-sec .price-card .price {
  font-weight: 700;
  color: var(--semi-dark);
  margin: 1rem 0;
}

.price-plan-sec .price-card .price .price-amount {
  font-size: 2rem;
  display: inline-block;
}

.price-plan-sec .price-card .price .price-period {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--muted-color);
}

.price-plan-sec .price-card .muted {
  color: var(--muted-color);
  margin-bottom: 0.8rem;
}

.price-plan-sec .features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--semi-dark);
  flex: 1 1 auto;
}

.price-plan-sec .features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.price-plan-sec .features li i {
  color: var(--primary-color);
  font-size: 1.05rem;
}

.price-plan-sec .card-footer {
  position: relative;
  margin-block: 1.5rem;
  padding-top: 1.5rem;
  text-align: center;
}

.price-plan-sec .card-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--third-color);
}

.price-plan-sec .btn {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.price-plan-sec .btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  box-shadow: 0 8px 22px rgba(59, 91, 253, 0.12);
}

.price-plan-sec .btn-outline {
  background: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  transition: all 0.3 ease;
}

.price-plan-sec .btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}

.price-plan-sec .price-card.recommended {
  transform: translateY(-20px);
  box-shadow: 0 18px 40px rgba(59, 91, 253, 0.12);
  border-color: rgba(59, 91, 253, 0.18);
  transition: all 0.3s ease;
}

.price-plan-sec .price-card.recommended:hover {
  border: 1px solid var(--primary-color);
  transform: translateY(-25px);
}

.price-plan-sec .price-card .ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary-color);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* FAQ CSS */
.faq .row {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.faq .col-lg-3 {
  flex: 0 0 280px;
}

.faq .col-lg-9 {
  flex: 1;
}

.faq-head {
  display: block;
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: center;
}

.faq-head h4 {
  font-size: 0.875rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-head h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--muted-color);
}

.faq-head p {
  margin-bottom: 0;
  color: var(--semi-dark);
  font-size: 1rem;
}

/* FAQ Left Sidebar */
.faq-left {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--third-color);
  position: sticky;
  top: 20px;
}

.faq-left h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--muted-color);
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--third-color);
}

.faq-left span {
  display: block;
  padding: 12px 16px;
  margin-bottom: 8px;
  color: var(--semi-dark);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.faq-left span:hover {
  background: rgba(37, 99, 235, 0.05);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.faq-left span.active {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
}

/* FAQ Container */
.faq-container {
  max-width: 100%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--third-color);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--primary-color);
}

.faq-item.is-open {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.faq-header {
  width: 100%;
  padding: 1.4rem;
  border: none;
  outline: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted-color);
  text-align: left;
  transition: background 0.3s ease;
}

.faq-header:hover {
  background: rgba(37, 99, 235, 0.03);
}

.faq-header:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: -2px;
  border-radius: 8px;
}

.faq-question {
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-icon {
  background: var(--primary-color);
  transform: rotate(180deg);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
  background: var(--white);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.4rem;
}

.faq-body-content {
  overflow: hidden;
}

.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
  padding-bottom: 1.4rem;
}

.faq-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--semi-dark);
}

/* Privacy Policy CSS */
.legal-sec p {
  margin-bottom: 2rem;
}

.legal-sec p:last-child {
  margin-bottom: 0;
}

.legal-sec ul li {
  margin-bottom: 1rem;
}

.legal-sec ul li:last-child {
  margin-bottom: 2rem;
}

.legal-sec ul li a {
  word-wrap: break-word;
}

.terms-page ul li,
.refund-page ul li {
  margin-bottom: 0.5rem;
}

/* Get In Touch CSS */
.blog-sec.blog-sec.get-in-touch-bg {
  min-height: 400px;
}

.blog-sec.get-in-touch-bg::before {
  background-image: url(../../images/get.jpg);
  background-size: contain;
}

.blog-sec.get-in-touch-bg::after {
  background: rgba(0, 0, 0, 0.85);
}

.get-in-touch-bg .blog-title h4 {
  font-size: 0.875rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.get-in-touch-bg .blog-title h1 {
  text-transform: uppercase;
  font-size: 3rem;
  letter-spacing: 4px;
}


.get-in-touch h5 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.get-content p {
  color: var(--semi-dark);
  line-height: 1.6;
}

.get-in-touch .contact-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.get-in-touch .contact-box {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  /* flex: 1;
  min-width: 200px; */
}

.get-in-touch .contact-box .get-icon {
  background: var(--secondary-color);
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.get-in-touch .contact-box .get-icon i {
  color: var(--primary-color);
  font-size: 1.4rem;
}

.get-in-touch .contact-detail {
  display: flex;
  flex-direction: column;
}

.get-in-touch .contact-detail span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted-color);
}

.get-in-touch .contact-detail a {
  color: var(--semi-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.get-in-touch .contact-detail a:hover {
  color: var(--primary-color);
}

.get-in-touch .get-map {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
}

.get-in-touch .map-container iframe {
  display: block;
}

.get-in-touch .get-right-box {
  background: var(--third-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.get-in-touch .get-right-box h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--muted-color);
}

.get-in-touch .form-group {
  margin-bottom: 1.25rem;
}

.get-in-touch .form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  /*color: var(--muted-color);*/
  display: block;
}

.get-in-touch .form-control {
  border: 1px solid var(--semi-dark);
  border-radius: 8px;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.get-in-touch .form-control:focus {
  border-color: var(--primary-color);
}

.get-in-touch textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.get-in-touch .checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  cursor: pointer;
}

.get-in-touch .checkbox-wrapper input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 3px solid var(--third-color);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.get-in-touch .checkbox-wrapper input[type="checkbox"]:hover {
  border-color: var(--primary-color);
}

.get-in-touch .checkbox-wrapper input[type="checkbox"]:checked {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.get-in-touch .checkbox-wrapper input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.get-in-touch .checkbox-wrapper input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.get-in-touch .checkbox-wrapper label {
  font-size: 0.95rem;
  color: var(--semi-dark);
  cursor: pointer;
  margin: 0;
}

.get-in-touch .checkbox-wrapper label a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.get-in-touch .checkbox-wrapper label a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.get-in-touch .btn-brand {
  width: 100%;
  text-align: center;
}

.get-in-touch .map-container {
  height: 500px;
}

/* Form error */
.form-group .error {
  font-size: 12px;
  color: #f00;
  border-color: #f00 !important;
}

/* Job application Status */
.status-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid #dee2e6;
  border-radius: 30px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #212529;
  cursor: pointer;
  transition: all 0.2s ease;
}

.status-filter:hover {
  background: #f8f9fa;
}

.status-filter.active {
  border-color: #212529;
  background: #fff;
}

.status-count {
  background: #f1f3f5;
  border-radius: 50px;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 600;
}

.status-filter.active .status-count {
  background: #212529;
  color: #fff;
}

.experience-timeline {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid #0d6efd;
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -8px;
  top: 6px;
  width: 12px;
  height: 12px;
  background-color: #0d6efd;
  border-radius: 50%;
}

.timeline-content {
  padding-left: 15px;
}

.timeline-date {
  color: #0d6efd;
  font-size: 0.9rem;
  font-weight: 500;
}

.popover {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

.featured-jobs {
  background: #f8fafc;
}

.job-card-new {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.job-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.job-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  background: #f1f5f9;
}

.bookmark-icon {
  font-size: 20px;
  color: #94a3b8;
  cursor: pointer;
}

.bookmark-icon:hover {
  color: #2563eb;
}

.skill-badge {
  background: #eef2ff;
  color: #2563eb;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
}

.exp-badge {
  background: #e0f2fe;
  color: #0284c7;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
}



.job-search-bar {
  background: #fff;
  border-radius: 12px;
  padding: 12px 15px;
  gap: 10px;
  max-width: 850px;
  width: 100%;
}

.search-item {
  gap: 10px;
}

.search-icon {
  font-size: 18px;
  color: #0d6efd;
}

.search-divider {
  width: 1px;
  height: 30px;
  background: #dee2e6;
}

.search-btn {
  padding: 10px 24px;
  border-radius: 8px;
  white-space: nowrap;
}

.card {
  border-radius: 12px;
}

.badge {
  font-weight: 500;
}

.promo-card {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: 0.3s;
  height: 100%;
}

.promo-card.active {
  border-color: #6366f1;
  background: #f8f9ff;
}

.promo-preview {
  background: #f3f4f6;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
}

.job-box {
  background: #fff;
  border-radius: 6px;
  height: 40px;
  margin-bottom: 10px;
}

.job-box.featured {
  border: 2px solid #0d6efd;
}

.job-box.highlight {
  border: 2px solid #ffc107;
  background: #fff8e1;
}

.promo-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.job-highlight {
  background: linear-gradient(90deg, #ffe7b3, #ffffff);
  border-left: 5px solid #ff9800;
  transition: all 0.3s ease;
}

.job-highlight:hover {
  box-shadow: 0 10px 30px rgba(255, 152, 0, 0.25);
  transform: translateY(-2px);
}

.header-profile-pic {
  width: 30px;
  border-radius: 50%;
  object-fit: cover;
  /* keeps image from stretching */
}

/* new css by hawa */

.sectop {
  padding: 100px 20px !important;
}

.sectop.secbottom-0 {
  padding-bottom: 0px !important;
}

.text-left {
  text-align: left;
}

.mob-2 {
  margin-bottom: 2rem !important;
}

.padd-all {
  padding: 10px 0px !important;
}

.search_box {
  max-width: 700px;
}

.find-job-search {
  display: flex;
  align-items: center;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.find-job-search select {
  border: none;
  padding: 12px 14px;
  outline: none;
  background: #f5f5f5;
  cursor: pointer;
}

.find-job-search input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  outline: none;
}

.find-job-search button {
  background: #f5f5f5;
  color: #000;
  border: none;
  border-radius: 0px 0px 8px 0px;
  padding: 11px 14px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 0px;
  transition: all 0.3s ease;
}

.find-job-search button i {
  font-size: 16px;
}

.find-job-search button:hover {
  background: #3357db;
  color: #fff;
}

.over-box span.label {
  font-size: 0.7rem !important;
}

.over-box span.value {
  font-size: 0.9rem !important;
}

.over-box.job.map,
.description.employer.section .over-box {
  padding: 1.5rem;
}

.over-box.job.map .over-job p {
  padding-left: 0rem;
}

.open-post-bx.open-postbox-new {
  height: auto;
  border: none;
  border-radius: 0px;
  text-align: -webkit-auto;
  gap: 0px;
  /* color: transparent; */
}

.open-postbox-new .bi.bi-bookmark.bookmark-icon {
  font-size: 20px;
  color: #94a3b8;
  cursor: pointer;
}

.open-postbox-new .small i {
  font-size: 14px;
  color: rgba(33, 37, 41, 0.75);
}

.open-postbox-new span.badge.skill-badge {
  background: #eef2ff;
  color: #2563eb;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.open-postbox-new span.badge.exp-badge {
  font-size: 12px;
  color: #0284c7;
}

.description.employer .over-box.job .over-job h4 {
  padding: 0rem 0 0 0rem;
}

.description.employer .employer {
  height: auto !important;
}

div#OpenPositions {
  margin-bottom: 2rem;
  border-bottom: none;
  padding-bottom: 0px;
}

div#resumeUpload {
  border: 1.5px dashed var(--secondary-color);
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  background: var(--white);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
  outline: none;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

label#uploadArea {
  border: none;
  padding: 0px;
  height: auto;
  margin-bottom: 20px;
}

.btnupload,
.delt {
  background-color: var(--primary-color);
  padding: 0.5rem 2rem;
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 0.375rem;
}

.btnupload:hover,
.delt:hover {
  background-color: #3357db;
}

.profile-main {
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  margin-top: 0px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gap-20{
  row-gap: 20px!important;
  column-gap: 20px!important;
}

.gap-20 .profile-main label.upload-btn {
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.searchbox-new input {
    padding: 12px 14px 12px 20px;
    border-radius: 50px;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    color: #212529;
}

.searchbox-new input::placeholder{
  color: #212529;
}

.searchbox-new form {
    width: 100%;
}
.search-box.searchbox-new i {
    left: auto;
    margin: 0px;
    right: 0px;
    text-align: end;
    top: 12px;
    padding-right: 30px;
}

section.sign-in-page {
    padding-top: 100px;
}

.logo.logoleft {
    padding-left: 1.25rem;
}

