﻿@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --primary-color: #027dcf;
  --red-color: #e70000;
  --light-red-color: #ff8b8b;
  --dark-grey-color: #3d3d3d;
  --grey-color: #4a4a4a;
  --black-color: #000000;
  --light-white-color: #edf6ff;
  --white-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

body {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.5;
  font-weight: 400;
  color: var(--black-color);
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

/* IMAGE-CLASS */
.img-responsive {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.company-img-big {
  height: 100px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  color: var(--black-color);
  font-weight: 700;
  line-height: 1.4;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 34px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

p {
  font-size: 16px;
  font-weight: 400;
}

input,
textarea,
::placeholder {
  font-family: "Inter", sans-serif;
  font-size: 15px;
}

/* margin */
.m-0-auto {
  margin: 0 auto;
}

.mr-7 {
  margin-right: 7px;
}

.ml-7 {
  margin-left: 7px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 70px;
}

/* padding */
.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-250 {
  padding-bottom: 250px;
}

/* flex */
.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

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

.align-center {
  align-items: center;
}

.space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

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

/* GRID */
.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3-1 {
  grid-template-columns: 3fr 1fr;
}

.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* gap */
.gap-5 {
  gap: 5px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.gap-60 {
  gap: 60px;
}

/* WIDTHS */
.w-15 {
  width: 15px;
}

.w-35 {
  width: 35px;
}

.w-48 {
  width: 48px;
}

.w-52 {
  width: 52px;
}

.w-70 {
  width: 70px;
}

.h-70 {
  height: 70px;
}

.w-110 {
  width: 110px;
}

.h-110 {
  height: 110px;
}

.w-150 {
  width: 150px !important;
}

.grey-bg {
  position: relative;
  background: #f5f5f9;
}

.section_top_margin {
  margin-top: 120px;
}

/* Float */
.hvr-float {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-float:hover,
.hvr-float:focus,
.hvr-float:active {
  transform: translateY(-8px);
}

/* IMAGES-EFFECT */
.image-effect {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.image-effect img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.image-effect:hover img {
  transform: scale(1.03);
  transition: transform 0.3s ease-in-out;
}

/* Buttons */
button {
  background: transparent;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-size: 14px;
  color: var(--white-color);
  border-radius: 30px;
  font-weight: normal;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: fit-content;
}

.primary-btn {
  color: var(--white-color) !important;
  border: 1px solid var(--primary-color) !important;
  transition: all 0.5s ease-in-out;
}

.primary-btn::after {
  content: "";
  position: absolute;
  height: 120%;
  width: 150%;
  background: var(--primary-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}

.primary-btn:hover {
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;
  transition: all 0.5s ease-in-out;
}

.primary-btn:hover::after {
  left: 120%;
  transition: all 0.5s ease-in-out;
}

.border-btn {
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease-in-out;
  color: var(--primary-color);
}

.border-btn::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 150%;
  background: var(--primary-color);
  transform: skewX(45deg);
  top: 0;
  left: -220%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}

.border-btn:hover {
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  transition: all 0.5s ease-in-out;
}

.border-btn:hover::after {
  left: -20%;
  transition: all 0.5s ease-in-out;
}

.white-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: fit-content;
  color: var(--primary-color);
  border: 1px solid var(--white-color);
  background: var(--white-color);
  box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.08);
}

/* hover effect */
.hvr-link {
  position: relative;
}

.hvr-link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: all 0.5s ease-in-out;
}

.hvr-link:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.small-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  font-size: 12px;
  background: #027dcf;
  color: #fff;
  border-radius: 30px;
  font-weight: normal;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: fit-content;
}

a.small-btn {
  color: #fff !important;
}

.small-btn:hover {
  background: red;
}

/* 1.index */
/* header */
.upper-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 0px;
  box-shadow: 0px 2px 42px 0px rgba(2, 125, 207, 0.2);
  background: var(--white-color);
  z-index: 999;
}

.nav-bar {
  display: flex;
  align-items: center;
}

.nav-bar .menu-list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-bar .menu-list li a {
  text-decoration: none;
  list-style: none;
  transition: all 0.5s ease-in-out;
  color: var(--black-color);
}

.nav-bar .menu-list li a:hover {
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}

.logo-wrapper {
  width: 215px;
}

img.companylogosmall {
  max-height: 40px;
  width: auto;
}

.nav-active {
  color: var(--primary-color) !important;
}

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
  overflow-x: clip;
  box-shadow: 0px 2px 32px rgba(0, 0, 0, 0.2);
  background: var(--white-color);
  z-index: 999;
}

.sticky-nav .nav-bar .menu-list li:hover a {
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}

.dropdown {
  color: var(--white-color);
}

.dropdown:hover {
  color: var(--primary-color);
}

.nav-contentsdiff .dropdownmenu {
  position: absolute;
  padding: 20px;
  margin-top: 60px;
  margin-left: -10px;
  text-align: left;
  min-width: -moz-fit-content;
  min-width: fit-content;
  border-radius: 6px;
  background: var(--white-color);
  box-shadow: 0px 2px 16px 2px rgba(0, 0, 0, 0.16);
  list-style: none;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.nav-contentsdiff .dropdownmenu li {
  transition: all 0.5s ease-in-out;
  padding-bottom: 2px;
  padding-top: 2px;
}

.nav-contentsdiff .dropdownmenu li:first-child {
  padding-top: 0px;
}

.nav-contentsdiff .dropdownmenu li a {
  font-size: 15px;
  color: var(--black-color);
  border: none;
  transition: all 0.5s ease-in-out;
}

.nav-contentsdiff .dropdownmenu li:hover a {
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}

.nav-contentsdiff:hover a .drop {
  filter: invert(0) brightness(1);
  transition: all 0.5s ease-in-out;
}

.nav-contentsdiff:hover .dropdownmenu {
  margin-top: 25px;
  opacity: 1;
  z-index: 99;
  visibility: visible;
  transition: all 0.5s ease-in-out;
}

/* mobile menu */
.mobile-view {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--white-color);
  padding: 15px 0px;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}

.mobile-menu {
  display: none;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 99;
  align-items: center;
}

.mobile-sticky {
  position: fixed;
  left: 0;
  top: 0;
  background: var(--white-color);
  z-index: 99;
  width: 100%;
}

.slidein-menu {
  display: none;
}

/* FOOTER-SECTION-STARTS-HERE*/
/* COUNTER-SECTION-CSS-STARTS-HERE */
.counter-section .pink-left-pattern {
  width: 20%;
  z-index: -1;
}

.counter-section .pink-right-pattern {
  width: 92%;
  z-index: -1;
}

.counter {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.column .count {
  font-size: 40px;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  color: #f0f8ff;
  padding-top: 15px;
}

.counter-line {
  background: #38b1f8;
  width: 40px;
  height: 2px;
}

.counter h4 {
  color: #edf6ff;
  padding: 25px 0px 15px 0px;
}

/* COUNTER-SECTION-CSS-ENDS-HERE */
.footer-section,
.counter-section,
.main-banner-section,
.pink-pattern,
.error-banner {
  position: relative;
  z-index: 1;
}

/* .footer-section::before, */
/* .counter-section::before, */
.pink-pattern::before {
  content: "";
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.counter-section {
  background: var(--primary-color);
}

/* .counter-section::before {
  background-image: url(../images/counter_banner.svg);
} */
.footer-section {
  background: #f8fcff;
}

/* .footer-section::before {
  background-image: url(../images/footer_banner.svg);
} */
.main-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.8fr 0.6fr 1.2fr 0.5fr 2.5fr;
  gap: 60px;
}

.company-intro {
  padding: 30px 0px 20px 0px;
}

.main-footer p {
  color: var(--grey-color);
  font-size: 13px;
}

.social-link a i {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--grey-color);
  height: 34px;
  width: 34px;
  font-size: 14px;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

.social-link a:hover i {
  color: var(--primary-color);
  background: #bae2fd;
  transition: all 0.5s ease-in-out;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-compact {
  gap: 5px !important;
}

.menu-compact li.listhead {
  font-weight: 600;
  padding-top: 10px;
}

.footer-bar h6,
.footer-logo h6 {
  font-size: 14px;
  color: var(--dark-grey-color);
}

.footer-bar h6 {
  padding-bottom: 30px;
}

.footer-menu li {
  width: fit-content;
  font-size: 13px;
}

.footer-menu li a,
.footer-menu a i,
.footer-menu a p {
  color: var(--grey-color);
  font-size: 13px;
  transition: all 0.5s ease-in-out;
}

.footer-menu li a:hover,
.footer-menu a:hover i,
.footer-menu a:hover p {
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}

.address-grid a i {
  color: var(--dark-grey-color);
}

.copyright-section {
  background: #075185;
  padding: 20px 0px;
}

.copyright p {
  font-size: 13px;
  color: var(--white-color);
  text-align: center;
}

/* 1.INDEX-PAGE-STARTS-FROM-HERE */
.main-banner-section {
  background: linear-gradient(to top, #e0f0fe, #c4e8ff);
}

.left-content p {
  padding: 18px 0px;
}

.right-content-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.male-builder-img {
  width: 250px;
}

.green-right-shape,
.green-left-shape {
  position: absolute;
  width: 160px;
  z-index: -1;
  animation: zoomInOut 7s ease-in-out infinite;
}

.green-right-shape {
  right: 95px;
  bottom: 165px;
}

.green-left-shape {
  left: 95px;
  bottom: 20px;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.candidates-btn {
  position: absolute;
  left: 55px;
  top: 160px;
}

.companies-btn {
  position: absolute;
  right: 50px;
  bottom: 40px;
}

.upload-area {
  cursor: pointer;
  position: absolute;
  left: 50px;
  bottom: 65px;
}

.upload-area .file-input {
  display: none;
}

.upload-area label img {
  position: relative;
  cursor: pointer;
  padding: 12px 15px;
  width: 55px;
  border-radius: 5px;
  background: var(--white-color);
  box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: -35px;
  margin-left: -35px;
  z-index: 2;
}

.upload-area label p {
  cursor: pointer;
}

.main-banner-section .pink-left-pattern,
.archieve-banner .pink-left-pattern,
.footer-section .pink-left-pattern {
  width: 50%;
  z-index: -1;
}

.main-banner-section .pink-right-pattern,
.archieve-banner .pink-right-pattern,
.footer-section .pink-right-pattern {
  width: 15%;
  z-index: -1;
}

.main-banner-section .left-content .search-module,
.banner-content .search-module {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 7px 7px 7px 30px;
}

.main-banner-section .left-content .search-module {
  width: 500px;
}

.main-banner-section .left-content .search-module input,
.banner-content .search-module input {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  border: none;
}

.main-banner-section .left-content .search-module input::placeholder,
.banner-content .search-module input::placeholder {
  color: #5d5d5d;
}

.main-banner-section .left-content .divider,
.banner-content .divider {
  width: 1px;
  height: 36px;
  background: #b0b0b0;
}

.main-banner-section .left-content .select-container,
.banner-content .select-container {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 5px;
}

.main-banner-section .left-content .select-container i {
  color: #0c446e;
}

.main-banner-section .left-content .select-location,
.banner-content .select-location {
  border: none;
  background: transparent;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  outline: none;
  cursor: pointer;
  appearance: none;
  padding: 0px 20px;
  width: 220px;
}

.main-banner-section .left-content .select-location {
  color: #0c446e;
}

.main-banner-section .left-content .select-location option,
.banner-content .select-location option {
  font-size: 16px;
  padding: 10px;
}

.main-banner-section .left-content .select-container i:last-child,
.banner-content .select-container i:last-child {
  position: absolute;
  right: 20px;
  font-size: 14px;
  pointer-events: none;
}

.search-btn-mobile-view {
  display: none;
}

.search-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 10px;
}

/* ========================================
   MODERN CTA SECTION - JOB SEEKER & EMPLOYER
   ======================================== */

.cta-section-modern {
  background: linear-gradient(135deg, #f8fcff 0%, #e8f4fd 100%);
  position: relative;
  overflow: hidden;
}

.cta-section-modern::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 91, 168, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section-modern::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 47, 47, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Card Base Styling */
.cta-card {
  position: relative;
  background: var(--white-color);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Icon Styling */
.cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-icon svg {
  position: relative;
  z-index: 2;
  color: var(--white-color);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-card:hover .cta-icon {
  transform: scale(1.1) rotate(5deg);
}

.cta-card:hover .cta-icon svg {
  transform: scale(1.1);
}

/* Blue Theme */
.cta-icon-blue {
  background: linear-gradient(135deg, #1e5ba8 0%, #3d8ed7 100%);
  box-shadow: 0 8px 24px rgba(30, 91, 168, 0.3);
}

.cta-card-blue:hover .cta-icon-blue {
  box-shadow: 0 12px 32px rgba(30, 91, 168, 0.4);
}

/* Red Theme */
.cta-icon-red {
  background: linear-gradient(135deg, #d92f2f 0%, #ef5350 100%);
  box-shadow: 0 8px 24px rgba(217, 47, 47, 0.3);
}

.cta-card-red:hover .cta-icon-red {
  box-shadow: 0 12px 32px rgba(217, 47, 47, 0.4);
}

/* Content Styling */
.cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-grey-color);
  margin-bottom: 16px;
  line-height: 1.3;
  font-family: "Oswald", sans-serif;
}

.cta-description {
  font-size: 16px;
  color: var(--grey-color);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Features List */
.cta-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--dark-grey-color);
  transition: all 0.3s ease;
}

.cta-features li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  transition: all 0.3s ease;
}

.cta-card-blue .cta-features li svg {
  stroke: #1e5ba8;
}

.cta-card-red .cta-features li svg {
  stroke: #d92f2f;
}

.cta-features li:hover {
  transform: translateX(5px);
}

.cta-features li:hover svg {
  transform: scale(1.2);
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: var(--white-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn svg {
  transition: transform 0.3s ease;
}

.cta-btn:hover svg {
  transform: translateX(5px);
}

/* Blue Button */
.cta-btn-blue {
  background: linear-gradient(135deg, #1e5ba8 0%, #3d8ed7 100%);
  box-shadow: 0 4px 16px rgba(30, 91, 168, 0.3);
}

.cta-btn-blue:hover {
  background: linear-gradient(135deg, #1a4d8f 0%, #2e7ac4 100%);
  box-shadow: 0 8px 24px rgba(30, 91, 168, 0.4);
  transform: translateY(-2px);
}

/* Red Button */
.cta-btn-red {
  background: linear-gradient(135deg, #d92f2f 0%, #ef5350 100%);
  box-shadow: 0 4px 16px rgba(217, 47, 47, 0.3);
}

.cta-btn-red:hover {
  background: linear-gradient(135deg, #c62828 0%, #e53935 100%);
  box-shadow: 0 8px 24px rgba(217, 47, 47, 0.4);
  transform: translateY(-2px);
}

/* Decorative Elements */
.cta-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
  transition: all 0.6s ease;
}

.cta-decoration-blue {
  background: radial-gradient(circle, #1e5ba8 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
}

.cta-decoration-red {
  background: radial-gradient(circle, #d92f2f 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
}

.cta-card:hover .cta-decoration {
  transform: scale(1.5);
  opacity: 0.15;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cta-card {
    padding: 40px 30px;
    min-height: 480px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .cta-section-modern .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-card {
    padding: 35px 25px;
    min-height: auto;
  }

  .cta-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }

  .cta-icon svg {
    width: 35px;
    height: 35px;
  }

  .cta-title {
    font-size: 22px;
  }

  .cta-description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .cta-features {
    margin-bottom: 30px;
    gap: 14px;
  }

  .cta-features li {
    font-size: 14px;
  }

  .cta-btn {
    width: 100%;
    padding: 14px 28px;
  }
}

@media (max-width: 480px) {
  .cta-card {
    padding: 30px 20px;
  }

  .cta-title {
    font-size: 20px;
  }

  .cta-features li {
    font-size: 13px;
  }
}


.main-paragraph-info {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.main-paragraph-info p {
  padding: 15px 0px 40px 0px;
}

/* Tab Styling */
.index-tab {
  display: flex;
  gap: 30px;
  margin: 0 auto;
  width: fit-content;
}

.index-tablinks {
  padding: 13px 28px;
  border: 1px solid var(--primary-color);
  /* Primary color border */
  border-radius: 30px;
  /* Rounded corners */
  background-color: transparent;
  color: var(--primary-color);
  /* Primary color text */
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.index-tablinks.active {
  background-color: var(--primary-color);
  /* Blue background for active tab */
  color: white;
  /* White text for active tab */
}

.index-tablinks:hover {
  background-color: var(--primary-color);
  /* Blue background on hover */
  color: white;
  /* White text on hover */
}

/* Tab Content Styling */
.index-tabcontent {
  display: none;
  padding-top: 60px;
}

.index-tabcontent.active {
  display: block;
}

.pink-pattern {
  background: #fff7f7;
}

.pink-pattern::before {
  background-image: url(../images/pink_pattern.svg);
  opacity: 0.21;
}

.category-module,
.top-category-module {
  padding: 30px 30px;
  background: var(--white-color);
  border-radius: 5px;
  box-shadow: 0px 5px 25px 0px rgba(0, 77, 144, 0.12);
  transition: all 0.5s ease-in-out;
}

.category-module-img,
.top-category-module-img {
  height: 65px;
  width: 65px;
  margin: 0 auto;
  transition: all 0.5s ease-in-out;
}

.category-module-img img,
.top-category-module-img img {
  transition: all 0.5s ease-in-out;
}

.category-module h6,
.top-category-module h6 {
  font-weight: 400;
  text-align: center;
  padding: 5px 0px 5px 0px;
  transition: all 0.5s ease-in-out;
}

.category-module h6 {
  font-weight: 700;
  font-size: 18px;
  color: var(--black-color);
}

.top-category-module h6 {
  color: var(--grey-color);
}

.category-module p,
.top-category-module p {
  font-size: 13px;
  text-align: center;
  transition: all 0.5s ease-in-out;
}

.category-module p {
  color: var(--light-red-color);
}

.top-category-module p {
  color: #b0b0b0;
}

.category-module:hover,
.top-category-module:hover {
  background: var(--red-color);
}

.category-module:hover h6,
.category-module:hover p,
.top-category-module:hover h6,
.top-category-module:hover p {
  color: var(--light-white-color);
  transition: all 0.3s ease-in-out;
}

.category-module:hover .category-module-img img {
  filter: brightness(0) invert(1);
  transition: all 0.3s ease-in-out;
}

.top-category-module:hover .top-category-module-img img {
  filter: brightness(2);
  transition: all 0.3s ease-in-out;
}

.left-bdr {
  background: var(--red-color);
  border-radius: 30px;
  width: 6px;
  height: 72px;
}

.carrer-process-module h4 {
  padding-bottom: 40px;
}

.carrer-process-module p {
  font-size: 14px;
  padding-top: 15px;
}

.carrer-process-left-module {
  position: relative;
  width: 100%;
}

.girl-img {
  width: 450px;
}

.green-shape {
  position: absolute;
  bottom: 0;
  left: 24px;
  width: 320px;
  z-index: -1;
}

.happy-candid-module {
  display: flex;
  align-items: center;
  padding: 13px 26px;
  background: var(--white-color);
  box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  position: absolute;
  right: 45px;
  bottom: 60px;
}

.happy-candid-module img {
  margin-left: -12px;
}

.happy-candid-module strong,
.happy-candid-module p {
  color: var(--red-color);
  font-size: 14px;
  margin-left: 5px;
  width: max-content;
}

.main-icon-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.dot-icon {
  position: absolute;
  top: 0px;
  left: 150px;
  z-index: -1;
}

.main-icon-module {
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.main-icon-module h6 {
  font-size: 14px;
  padding: 35px 0px 10px 0px;
  text-align: center;
}

.main-icon-module p {
  font-size: 13px;
  text-align: center;
}

.icon-module {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 120px;
  width: 120px;
  background: var(--white-color);
  padding: 40px;
  border-radius: 50%;
  box-shadow: 0px 25px 70px 0px rgba(1, 33, 58, 0.07);
  transition: all 0.5s ease-in-out;
}

.main-icon-module:hover .icon-module {
  background: var(--primary-color);
  transition: all 0.5s ease-in-out;
}

.main-icon-module:hover .icon-module img {
  filter: brightness(105);
}

.archieve-banner {
  position: relative;
  background-image: linear-gradient(to top, #e0f0fe, #c4e8ff);
  padding-top: 60px;
  margin-top: 80px;
  z-index: 1;
}

.top-category-details {
  padding-bottom: 60px;
}

.top-category-details h1 {
  font-size: 45px;
}

.top-category-details p {
  width: 90%;
  padding-top: 20px;
}

.top-category-details-img {
  display: flex;
  justify-content: flex-end;
  align-items: end;
}

.top-category-details-img img {
  width: 80%;
}

/* PUBLIC-PAGE-STARTS-FROM-HERE */
.about-company-wrap {
  background: var(--white-color);
  border-radius: 5px;
  padding: 30px;
  overflow: hidden;
}

.company-info {
  padding-bottom: 30px;
}

.company-info p {
  color: var(--primary-color);
  padding: 20px 0px 10px 0px;
}

.company-info span,
.about-company p,
.about-company span,
.vacancy-description p,
.vacancy-specification p {
  font-size: 16px;
}

.vacancy-description ol {
  margin-left: 30px;
  margin-top: 10px;
}

.about-company,
.vacancy-details,
.vacancy-specification {
  border-top: 1px solid #b0b0b0;
  border-bottom: 1px solid #b0b0b0;
  padding: 20px 0px;
}

.about-company p,
.vacancy-description p,
.vacancy-specification p {
  padding-top: 10px;
}

.about-company span,
.vacancy-description p,
.vacancy-specification p {
  color: #3d3d3d;
}

.vacancy-title,
.vacancy-description {
  padding: 20px 0px;
}

.vacancy-title h1 {
  color: var(--red-color);
  font-size: 22px;
}

.vacancy-title h6 {
  color: var(--red-color);
}

.vacancy-title p {
  font-size: 13px;
}

.vacancy-details {
  padding: 8px 0px;
}

.vacancy-details table {
  border-collapse: collapse;
  width: 100%;
}

.vacancy-details table td,
.list-by-sub-module span {
  font-size: 16px;
}

.vacancy-details table td a {
  color: var(--dark-grey-color);
  transition: all 0.5s ease-in-out;
}

.vacancy-details table td {
  border: none;
  text-align: left;
  padding: 13px 20px;
}

.vacancy-details table tr:first-child {
  border-top: none;
}

.vacancy-details table tr:not(:first-child) {
  border-top: 1px solid #ececec;
  padding: 13px 0px;
  transition: all 0.5s ease-in-out;
}

.share-div p,
.Congratulations-module span {
  font-size: 14px;
}

.sticky-module {
  position: sticky;
  top: 120px;
}

.Congratulations-module,
.list-by-module {
  position: relative;
  background: var(--white-color);
  border-radius: 5px;
  overflow: hidden;
}

.Congratulations-module {
  text-align: center;
}

.Congratulations-module-bg {
  background-image: linear-gradient(to right, #0c86d6, #34acf5);
  height: 80px;
}

.Congratulations-sub-module {
  padding: 30px;
}

.Congratulations-sub-module-img-border {
  position: absolute;
  top: 35px;
  left: 100px;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  height: 86px;
  width: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Congratulations-sub-module-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  width: 76px;
  border-radius: 50%;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  background: var(--white-color);
}

.Congratulations-sub-module-img img {
  width: 46px;
}

.Congratulations-sub-module h6 {
  font-weight: 400;
  padding: 6px 0px;
  color: var(--red-color);
  padding-top: 20px;
}

.Congratulations-sub-module span {
  color: #454545;
}

.pink-left-pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.29;
}

.pink-right-pattern {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  opacity: 0.29;
}

.list-by-module {
  margin-bottom: 30px;
}

.list-by-module h6 {
  color: var(--white-color);
  background: var(--red-color);
  padding: 12px 20px;
  font-weight: 400;
  overflow: hidden;
}

.list-by-sub-module {
  position: relative;
  padding: 12px 20px;
}

.list-by-sub-module img {
  border-radius: 50%;
}

.list-by-sub-module p {
  padding: 12px 0px 6px 0px;
}

.right--60 {
  right: -60px;
}

/* PUBLIC-PAGE-ENDS-FROM-HERE  */
/* RECOMMENDED-VACANCIES-PAGE-STARTS-FROM-HERE */
.company-vacancy-module {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 6px;
  background: var(--white-color);
  box-shadow: 0px 25px 70px 0px rgba(1, 33, 58, 0.07);
  min-height: 220px;

  /* Add transition for smooth hover effect */
  transition: transform 0.3s ease;
}

.company-vacancy-module:hover {
  transform: scale(1.05);
}

.company-vacancy-module h6 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* .company-vacancy-module img{
  width:60%;
} */
.company-vacancy-module p {
  color: var(--primary-color);
  padding: 20px 0px;
  font-size: 16px;
}

.company-vacancy-icon-module {
  display: flex;
  grid-gap: 10px;
}

.company-vacancy-icon-module i {
  color: var(--red-color);
  margin-top: 2px;
  font-size: 14px;
  width: 18px;

}

.company-vacancy-icon-module span {
  font-size: 12px;
  font-weight: 400;
  color: #000;
}

/* Company name should be medium bold - targeting the first info module after logo/title */
.vacancy-card-link .company-vacancy-icon-module:first-of-type span {
  font-weight: 500;
}

.company-vacancy-module-hover {
  -webkit-transition: transform 0.3s ease-out;
  /* Safari/Chrome */
  -moz-transition: transform 0.3s ease-out;
  /* Firefox */
  -o-transition: transform 0.3s ease-out;
  /* Opera */
  transition: transform 0.3s ease-out;
  /* Standard syntax */
}

.company-vacancy-module-hover:hover {
  -webkit-transform: scale(1.03);
  /* Safari/Chrome */
  -moz-transform: scale(1.03);
  /* Firefox */
  -o-transform: scale(1.03);
  /* Opera */
  transform: scale(1.03);
  /* Standard syntax */
}

.vacancy-grid {}

.vacancy-grid .logo img {
  max-height: 38px !important;
  width: auto;
}

.whitebox {
  padding: 20px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bookmark [type="checkbox"]:not(:checked),
.bookmark [type="checkbox"]:checked {
  display: none;
}

.bookmark [type="checkbox"]:not(:checked)+label,
.bookmark [type="checkbox"]:checked+label {
  position: relative;
}

/* Default (Unchecked) Bookmark Icon */
.bookmark [type="checkbox"]:not(:checked)+label:before,
.bookmark [type="checkbox"]:checked+label:before {
  content: "\f02e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 22px;
}

.bookmark [type="checkbox"]:not(:checked)+label:before {
  color: #bae2fd;
}

/* Checked (Filled) Bookmark Icon */
.bookmark [type="checkbox"]:checked+label:before {
  color: var(--primary-color);
}

.page-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 8px 15px;
  background: var(--white-color);
  border-radius: 30px;
  box-shadow: 0px 25px 70px 0px rgba(1, 33, 58, 0.07);
  width: fit-content;
  margin: 80px auto 0;
}

.page-links a {
  color: var(--dark-grey-color);
  padding: 8px;
  width: 28px;
  height: 28px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.page-links a i {
  font-size: 14px;
}

.page-links a.active {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.page-links a:not(.active):hover {
  background-color: #e9ecef;
}

.page-links a.prev,
.page-links a.next {
  width: auto;
  padding: 0;
}

.page-links a.prev:not(.active):hover,
.page-links a.next:not(.active):hover {
  background: transparent;
  color: var(--primary-color);
}

.page-links a.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

/* RECOMMENDED-VACANCIES-PAGE-ENDS-FROM-HERE */

/* SEARCH-ARCHIEVE-PAGE-STARTS-FROM-HERE */
.banner-content h4 {
  font-size: 28px;
}

.banner-content p {
  padding: 20px 0px;
}

.banner-content .search-module {
  width: 100%;
}

.banner-content .select-location {
  color: var(--dark-grey-color);
}

.results-count {
  color: var(--dark-grey-color);
}

.sort-by {
  display: flex;
  align-items: center;
  color: var(--dark-grey-color);
}

.sort-by label {
  color: var(--dark-grey-color);
}

.sort-by select {
  font-family: "Oswald", sans-serif;
  padding: 10px 12px;
  font-size: 16px;
  border: none;
  color: var(--dark-grey-color);
  background: transparent;
}

.sort-by select option {
  font-size: 14px;
}

/* CONTACT-US-PAGE-STARTS-FROM-HERE */
.contact-grid {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  border-radius: 6px;
  overflow: hidden;
}

.contact-module-wrap {
  position: relative;
  background: #e0f0fe;
  padding: 40px;
  z-index: 1;
}

.contact-module-wrap .pink-left-pattern,
.contact-module-wrap .pink-right-pattern {
  z-index: -1;
}

.contact-module {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.contact-module i {
  color: var(--primary-color);
  font-size: 17px;
  width: 16px;
}

.contact-module p {
  padding-top: 5px;
}

.contact-form {
  padding: 25px;
  background: var(--white-color);
}

.contact-form h6 {
  font-weight: 400;
}

.contact-module-wrap .social-link a i {
  background: #f0f8ff;
}

.contact-module-wrap .social-link a i:hover {
  background: #bae2fd;
}

.fill-form {
  margin-top: 25px;
}

textarea {
  padding: 20px;
  border-radius: 6px;
}

.fill-form-module,
.fill-form textarea {
  padding: 20px;
  border-radius: 6px;
  background: #f0f8ff;
  width: 100%;
}

.fill-form-module i,
.fill-form-module input::placeholder,
.fill-form-module textarea::placeholder {
  color: #888888;
}

.fill-form-module input {
  background: transparent;
  border: none;
  width: 100%;
}

.fill-form textarea {
  border: none;
}

.join-us-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  border-radius: 5px;
  overflow: hidden;
}

.join-us {
  position: relative;
  padding: 80px 60px 0px 40px;
  background: #f8fcff;
}

.join-us-left-pattern {
  position: absolute;
  top: -55px;
  left: 0;
  width: 55%;
  rotate: -90deg;
  opacity: 0.29;
}

.join-us-right-pattern {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  opacity: 0.29;
}

.join-us p {
  padding: 15px 0px 60px 0px;
}

.join-us-img {
  width: 260px;
  margin: 0 auto;
}

.google-maps {
  position: relative;
  /* padding-bottom: 30%; */
  height: 100%;
  overflow: hidden;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* 404-ERROR-PAGE-STARTS-FROM-HERE */
.error-banner {
  padding-top: 225px;
}

.error-shape {
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 85%;
  opacity: 0.2;
  z-index: -1;
}

.error-text h2 {
  font-size: 48px;
}

.error-text p {
  padding: 20px 0px;
}

.error-img-wrap {
  position: relative;
}

/* MEDIA-QUERY-STARTS-FROM-HERE */
@media (max-width: 1200px) {
  .container {
    width: 90%;
  }

  .icon-module {
    height: 80px;
    width: 80px;
    padding: 25px;
  }

  .dot-icon {
    top: -10px;
    left: 115px;
    width: 80%;
  }
}

@media (max-width: 1100px) {
  .main-footer {
    grid-template-columns: 2.3fr 0.6fr 1fr 0.4fr 1.6fr;
    gap: 30px;
  }
}

@media (max-width: 1080px) {
  .companies-btn {
    right: -20px;
  }

  .candidates-btn {
    left: -20px;
  }

  .upload-area {
    left: 0px;
  }

  .green-left-shape {
    left: 35px;
  }

  .green-right-shape {
    right: 10px;
  }
}

@media (max-width: 1024px) {

  h1,
  .error-text h2 {
    font-size: 45px;
    line-height: 1.2;
  }

  h2 {
    font-size: 38px;
    line-height: 1.25;
  }

  h3 {
    font-size: 30px;
    line-height: 1.3;
  }

  h4 {
    font-size: 24px;
    line-height: 1.35;
  }

  h5 {
    font-size: 20px;
    line-height: 1.4;
  }

  h6 {
    font-size: 17px;
    line-height: 1.4;
  }

  .pt-80 {
    padding-top: 60px;
  }

  .pb-80 {
    padding-bottom: 60px;
  }

  .pt-60,
  .index-tabcontent {
    padding-top: 40px;
  }

  .pb-40 {
    padding-bottom: 30px;
  }

  .pt-40 {
    padding-top: 30px;
  }

  .mt-60 {
    margin-top: 40px;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-3-1 {
    grid-template-columns: 3fr 1.4fr;
  }

  .gap-40 {
    gap: 25px;
  }

  .gap-60 {
    gap: 40px;
  }

  .w-35 {
    width: 27px;
  }

  .w-48 {
    width: 36px;
  }

  .w-52 {
    width: 42px;
  }

  .w-70 {
    width: 55px;
  }

  .logo-wrapper {
    width: 200px;
  }

  .nav-bar .menu-list {
    gap: 25px;
  }

  .counter-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .counter h4 {
    font-size: 25px;
  }

  .column .count {
    font-size: 35px;
  }

  .copyright-section {
    padding: 10px 0px;
  }

  .main-paragraph-info {
    width: 60%;
  }

  .job-seeker-banner-module,
  .employer-banner-module {
    padding: 60px;
  }

  .job-seeker-banner-module div,
  .employer-banner-module div {
    width: 390px;
  }

  .index-tab {
    gap: 15px;
  }

  .happy-candid-module {
    right: 0px;
  }

  /* PUBLIC-PAGE */
  .vacancy-title,
  .vacancy-description,
  .about-company,
  .vacancy-details,
  .vacancy-specification {
    padding: 15px 0px;
  }

  .about-company p,
  .vacancy-description p,
  .vacancy-specification p {
    padding-top: 5px;
  }

  .vacancy-title p {
    font-size: 14px;
  }

  .vacancy-title h6 {}

  .page-links {
    margin: 40px auto 0;
  }
}

@media (max-width: 1023px) {

  .mt-80,
  .archieve-banner {
    margin-top: 65px;
  }

  .grid-3-1 {
    grid-template-columns: 1fr;
  }

  .flex-space-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .main-upper-header,
  .sub-menu {
    display: none;
  }

  .mobile-menu,
  .mobile-view {
    display: block;
  }

  .slidein-menu {
    display: block;
  }

  .slidein-logo img {
    width: 170px;
  }

  .ham-btn {
    padding: 12px 8px;
    height: 30px;
    width: 25px;
    right: 0px;
    position: relative;
    cursor: pointer;
  }

  .ham-btn span {
    position: absolute;
    width: 100%;
    height: 3px;
    right: -5px;
    background: #29689c;
    display: block;
  }

  .ham-btn span:nth-child(1) {
    top: 9px;
  }

  .ham-btn span:nth-child(2) {
    top: 16px;
  }

  .ham-btn span:nth-child(3) {
    bottom: 4px;
  }

  .slidein-menu {
    position: fixed;
    width: 400px;
    height: 100%;
    top: 0;
    left: -120%;
    background: var(--white-color);
    padding: 20px 40px;
    box-sizing: border-box;
    transition: all 0.5s ease-in-out;
    z-index: 99;
  }

  .slidein-menu.open {
    left: 0;
    transition: all 0.5s ease-in-out;
  }

  .ham-btn.cross span {
    background: #29689c;
  }

  .ham-btn.cross span:nth-child(2) {
    display: none;
  }

  .ham-btn.cross span:nth-child(1) {
    transform: rotate(45deg);
    top: 16px;
    background: #29689c;
  }

  .ham-btn.cross span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: auto;
    top: 16px;
    background: #29689c;
  }

  /* .slidein-menu .m-nav-bar {
    margin-top: 25px;
    border-top: 1px solid var(--primary-color);
  } */
  .bdr-bottom {
    background-image: linear-gradient(45deg,
        rgb(37, 105, 160),
        rgb(216, 68, 68));
    height: 1px;
    width: 100%;
    margin-top: 20px;
  }

  .sub-menu {
    padding-left: 20px;
  }

  .m-menu-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 25px;
  }

  .slidein-menu .m-nav-bar .m-menu-list li {
    position: relative;
  }

  .m-menu-list li a {
    color: var(--dark-grey-color);
    font-weight: 700;
    display: block;
    line-height: 2;
  }

  .m-menu-list li a:hover {
    color: var(--primary-color);
  }

  .expand i {
    color: var(--dark-grey-color);
  }

  .main-footer {
    grid-template-columns: 2.3fr 1fr 1fr;
  }

  .footer-logo {
    padding-right: 70px;
  }

  .job-seeker-banner-module div,
  .employer-banner-module div {
    width: 360px;
  }

  .social-link {
    gap: 10px;
  }

  /* PUBLIC-PAGE-STARTS-HERE */
  .sticky-module {
    position: relative;
  }

  .Congratulations-list-wrap {
    display: flex;
    justify-content: center;
    gap: 30px;
  }

  .Congratulations-module {
    width: 295px;
  }

  .Congratulations-list-wrap .list-by-module {
    margin-top: 0;
  }
}

@media (max-width: 950px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .green-right-shape {
    right: 215px;
  }

  .green-left-shape {
    left: 225px;
  }

  .companies-btn {
    right: 175px;
  }

  .candidates-btn {
    left: 180px;
  }

  .upload-area {
    left: 165px;
  }

  .happy-candid-module {
    padding: 10px 20px;
    left: 230px;
    right: auto;
  }

  .job-seeker-banner-module div {
    margin-left: unset;
  }

  /* RECOMMENDED-VACANCIES */
  .top-category-details {
    padding-bottom: 0;
  }

  .top-category-details-img {
    justify-content: center;
  }

  /* CONTACT-US-PAGE-SECTION-STARTS-HERE */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-module-wrap {
    padding: 25px;
  }

  .contact-module-wrap .pink-left-pattern {
    width: 90%;
  }

  .contact-module-wrap .pink-right-pattern {
    width: 20%;
  }

  .contact-module.pt-60 {
    padding: 30px 0px;
  }

  .fill-form-module input,
  .fill-form textarea,
  .fill-form-module i {
    font-size: 13px;
  }

  .fill-form.gap-25 {
    gap: 15px;
  }

  .fill-form {
    margin-top: 15px;
  }

  .join-us-grid {
    grid-template-columns: 1fr;
  }

  .join-us {
    padding: 40px;
  }

  .google-maps {
    padding-bottom: 30%;
    height: 0;
  }

  /* ERROR-PAGE-STARTS-FROM-HERE */
  .error-banner {
    padding-top: 180px;
  }

  .error-text {
    grid-area: 2;
  }

  .error-img-wrap img {
    width: 50%;
  }

  .error-shape {
    right: auto;
    width: 50%;
  }
}

@media (max-width: 900px) {
  .main-icon-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .main-icon-module {
    background: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
  }

  .main-icon-module h6 {
    padding: 15px 0px 10px 0px;
  }

  .dot-icon {
    display: none;
  }
}

@media (max-width: 850px) {
  h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  h2,
  .error-text h2 {
    font-size: 30px;
    line-height: 1.25;
  }

  h3 {
    font-size: 26px;
    line-height: 1.3;
  }

  h4 {
    font-size: 22px;
    line-height: 1.35;
  }

  h5 {
    font-size: 18px;
    line-height: 1.4;
  }

  h6 {
    font-size: 16px;
    line-height: 1.4;
  }

  p,
  body,
  .sort-by select {
    font-size: 15px;
  }

  .w-35 {
    width: 24px !important;
  }

  .w-48 {
    width: 32px;
  }

  .w-52 {
    width: 35px;
  }

  .w-70 {
    width: 45px !important;
  }

  .count {
    font-size: 35px;
  }

  .main-footer .footer-logo {
    padding-right: 25px;
  }
}

@media (max-width: 770px) {
  .green-left-shape {
    left: 150px;
  }

  .green-right-shape {
    right: 135px;
  }

  .candidates-btn {
    left: 90px;
  }

  .upload-area {
    left: 80px;
  }

  .companies-btn {
    right: 95px;
  }
}

@media (max-width: 768px) {

  .pt-80,
  .pt-60 {
    padding-top: 45px;
  }

  .pb-80 {
    padding-bottom: 45px;
  }

  .pb-40 {
    padding-bottom: 20px;
  }

  .pt-40 {
    padding-top: 20px;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .gap-30,
  .main-icon-wrap {
    gap: 20px;
  }

  .btn,
  .index-tablinks {
    padding: 10px 22px;
    font-size: 13px;
  }

  .counter-section {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .main-footer {
    grid-template-columns: 2fr 1fr;
  }

  .job-seeker-banner-module,
  .employer-banner-module {
    position: relative;
    padding: 45px;
  }

  .main-paragraph-info {
    width: 85%;
  }

  .main-paragraph-info p {
    padding: 15px 0px 25px 0px;
  }

  .category-module,
  .top-category-module {
    padding: 30px;
  }

  .category-module-img,
  .top-category-module-img {
    height: 35px;
    width: 35px;
  }

  .left-content p {
    padding: 15px 0px;
  }

  .job-seeker-banner-module p,
  .employer-banner-module p {
    padding: 15px 0px 25px;
    color: #f6f6f6;
  }

  .carrer-process-module h4 {
    padding-bottom: 25px;
  }

  .carrer-process-module p {
    padding-top: 5px;
  }

  .left-bdr {
    height: 50px;
  }

  /* SEARCH-ARCHIEVE-PAGE */
  .banner-content p {
    padding: 15px 0px;
  }

  .banner-content .search-module {
    padding: 5px 5px 5px 15px;
  }

  .search-module .gap-30 {
    gap: 5px;
  }

  .search-module i,
  .banner-content .select-location,
  .banner-content .select-location option,
  .page-links a {
    font-size: 14px;
  }

  .banner-content .select-location {
    width: 115px;
    padding: 0px 5px;
    font-size: 14px;
  }

  .page-links {
    gap: 10px;
    margin: 25px auto 0;
  }

  .page-links a {
    width: 20px;
    height: 20px;
  }

  .archieve-banner {
    padding-top: 45px;
  }

  .top-category-details p {
    padding-top: 10px;
  }

  /* CONTACT-US-PAGE */
  .join-us {
    padding: 25px;
  }

  .join-us-img {
    width: 200px;
  }

  .google-maps {
    padding-bottom: 40%;
  }
}

@media (max-width: 650px) {
  .gap-30 {
    gap: 20px;
  }

  .counter {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .green-right-shape {
    right: 80px;
  }

  .green-left-shape {
    left: 100px;
  }

  .companies-btn {
    right: 40px;
  }

  .candidates-btn,
  .upload-area {
    left: 45px;
  }

  /* PUBLIC-PAGE-STARTS-HERE */
  .apply-public-wrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .vacancy-title {
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
  }

  /* SEARCH-ARCHIEVE-PAGE-STARTS-FROM-HERE */
  .banner-content .search-module input {
    width: 110px;
  }

  .banner-content .divider {
    height: 20px;
  }

  .search-btn {
    height: 30px;
    width: 30px;
  }

  /* ERROR-SECTION-STARTS-HERE */
  .error-banner {
    padding-top: 140px;
  }
}

@media (max-width: 550px) {
  .pt-40 {
    padding-top: 20px;
  }

  .pb-40 {
    padding-bottom: 20px;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .main-banner-section .left-content .search-module,
  .Congratulations-module,
  .top-category-details p {
    width: 100%;
  }

  .male-builder-img {
    width: 175px;
  }

  .green-right-shape,
  .green-left-shape {
    width: 100px;
  }

  .green-right-shape {
    right: 125px;
    bottom: 100px;
  }

  .green-left-shape {
    left: 120px;
  }

  .white-btn {
    padding: 7px 14px;
    font-size: 14px;
  }

  .candidates-btn {
    left: 70px;
    top: 120px;
  }

  .companies-btn {
    right: 85px;
    bottom: 40px;
  }

  .upload-area label img {
    padding: 5px 8px;
    width: 35px;
    margin-bottom: -25px;
    margin-left: -25px;
  }

  .main-paragraph-info p {
    padding: 15px 0px 25px 0px;
  }

  .index-tab {
    flex-wrap: wrap;
  }

  .main-icon-wrap {
    gap: 20px;
  }

  .girl-img {
    width: 290px;
  }

  .green-shape {
    left: 19px;
    width: 198px;
  }

  .happy-candid-module {
    left: 145px;
    bottom: 20px;
  }

  /* PUBLIC-PAGE-CSS-STARTS-HERE */
  .about-company-wrap {
    padding: 20px;
  }

  .vacancy-details table td {
    padding: 9px 0;
  }

  .Congratulations-list-wrap {
    flex-direction: column;
  }

  /* SEARCH-ARCHIEVE-PAGE-STARTS-HERE */
  .search-results-container .flex.space-between {
    flex-direction: column;
  }

  .banner-content .search-module {
    flex-direction: column;
    gap: 10px;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .banner-content .search-module .flex {
    background: var(--white-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 12px 24px;
    width: 100%;
  }

  .banner-content .divider,
  .banner-content .search-btn {
    display: none;
  }

  .banner-content .select-container {
    padding: 0;
  }

  .banner-content .select-location {
    width: 82vw;
    padding: 0px 9px;
  }

  .search-btn-mobile-view {
    display: block;
    width: 100%;
  }

  /* CONTACT-US-PAGE-STARTS-FROM-HERE */
  .fill-form.flex {
    flex-direction: column;
  }

  .fill-form-module,
  .fill-form textarea {
    padding: 14px 16px;
  }

  .google-maps {
    padding-bottom: 60%;
  }
}

@media (max-width: 525px) {
  .main-footer {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    padding-right: 0px;
  }

  .footer-bar h6 {
    padding-bottom: 15px;
  }

  .company-intro {
    padding: 15px 0px 12px 0px;
  }

  .job-seeker-banner-module div,
  .employer-banner-module div {
    width: 100%;
  }

  .main-paragraph-info {
    width: 100%;
  }

  /* ERROR-PAGE-STARTS-HERE */
  .error-banner {
    padding-top: 115px;
  }
}

@media (max-width: 480px) {
  .green-left-shape {
    left: 65px;
  }

  .green-right-shape {
    right: 80px;
  }

  .candidates-btn {
    left: 40px;
  }

  .companies-btn {
    right: 40px;
  }

  .upload-area {
    left: 26px;
  }

  .main-banner-section .left-content .search-module input,
  .banner-content .search-module input,
  .main-banner-section .left-content .select-location,
  .banner-content .select-location,
  .main-banner-section .left-content .select-container i,
  .banner-content .select-location option {
    font-size: 14px;
  }

  .main-banner-section .left-content .select-container,
  .banner-content .select-container {
    padding: 0;
  }

  .main-banner-section .left-content .select-location {
    padding: 0px 10px;
    width: 110px;
  }

  .main-banner-section .left-content .search-module {
    padding: 5px 5px 5px 15px;
  }

  .main-banner-section .left-content .divider,
  .banner-content .divider {
    height: 20px;
  }

  .search-btn {
    width: 30px;
    height: 30px;
  }

  .main-icon-wrap {
    grid-template-columns: 1fr;
  }

  /* ERROR-PAGE */
  .error-banner {
    padding-top: 190px;
  }

  .error-img-wrap img {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .slidein-menu {
    width: 100%;
  }

  .green-shape {
    left: 13px;
    width: 135px;
  }

  .job-seeker-banner-module,
  .employer-banner-module {
    padding: 40px 35px;
  }

  .girl-img {
    width: 197px;
  }

  .happy-candid-module {
    left: 95px;
    bottom: 10px;
    padding: 6px 15px;
  }

  .happy-candid-module img {
    width: 35px;
  }

  .happy-candid-module strong,
  .happy-candid-module p,
  .company-info span,
  .about-company p,
  .about-company span,
  .vacancy-description p,
  .vacancy-specification p {
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .gap-15 {
    gap: 5px;
  }

  .logo-wrapper img {
    width: 165px;
  }

  .job-seeker-banner-module,
  .employer-banner-module {
    padding: 45px 25px;
  }

  /* ERROR-PAGE */
  .error-banner {
    padding-top: 155px;
  }
}

img.profile-pic-50 {
  width: 50px;
  height: 50px;
  border-radius: 50px;
}

.lighttable {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  margin-top: 0px !important;
}

.lighttable th {
  background-color: #027dcf;
  color: white;
  padding: 10px;
  text-align: left;
  border: 1px solid #dddddd;
}

.lighttable td {
  background-color: white;
  padding: 8px 10px;
  border: 1px solid #dddddd;
  color: #000000;
}

.lighttable td a {
  color: #0c446e;
}

.lighttable tr:nth-child(even) td {
  background-color: #f9f9f9;
  /* optional light gray alternate row coloring */
}



.toast {
  opacity: 1 !important;
}

.toast-success {
  background-color: #51a351 !important;
}

.toast-error {
  background-color: #bd362f !important;
}

.toast-info {
  background-color: #2f96b4 !important;
}

.toast-warning {
  background-color: #f89406 !important;
}

.error-message {
  font-size: 14px;
  color: red !important;
  display: block;
}

/* Style for the dimming effect */
.logouploadindicator.dimmed {
  opacity: 0.5;
  /* Dim the container */
  pointer-events: none;
  /* Prevent interaction with the container while dimmed */
}

.file_upload_area {
  text-align: center;
  border: 1px dashed #cccccc;
  border-radius: 10px;
  padding: 10px;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}

.file_upload_area a,
.file_upload_area a p {
  color: #5d5d5d;
  font-size: 14px;
}

.pdf-preview {
  line-height: 1.2rem;
}

.pill {
  font-size: 11px;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
}

.pill-green {
  background: #51a351;
  color: #fff;
}

.pill-red {
  background: #e70000;
  color: #fff;
}

.pill-blue {
  background: #027dcf;
  color: #fff;
}

.pill-orange {
  background: #db6516;
  color: #fff;
}

.pill-grey {
  background: #7e7e7e;
  color: #fff;
}

/*PAGINATION*/
.pagination-container {
  display: flex;
  justify-content: flex-start;
  margin-top: 2rem;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
}

.page-item {
  display: flex;
  align-items: center;
  /* Vertically center icon and text */
  height: 38px;
  /* Uniform height like Bootstrap default */
  margin-right: 4px;
  background: #ffffff;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  text-align: center;
  color: #027dcf;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

.page-link:hover,
.page-link:focus {
  background-color: #e9f1fb;
  border-color: #b4d8f5;
  color: #027dcf;
}

.page-item.active .page-link {
  background-color: #027dcf;
  color: white;
  border-color: #027dcf;
}

.page-link i {
  vertical-align: middle;
}

/*PAGINATION*/
/* ========================================
   EMPLOYEE DASHBOARD MODERN STYLES
   ======================================== */

/* Modern Welcome Card - Brand Colors */
.emp-dashboard-welcome-card {
  background: linear-gradient(135deg, #0066B3 0%, #004A85 100%);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 102, 179, 0.15);
  overflow: hidden;
  position: relative;
}

.emp-dashboard-welcome-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.emp-dashboard-welcome-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.emp-dashboard-welcome-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.emp-dashboard-welcome-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
  max-width: 450px;
}

.emp-dashboard-welcome-illustration img {
  max-width: 140px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

/* Statistics Grid - Compact with Brand Colors */
.emp-dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.emp-dashboard-stat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.emp-dashboard-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.emp-dashboard-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.emp-dashboard-stat-icon i {
  color: #ffffff !important;
}

.emp-dashboard-stat-card-blue .emp-dashboard-stat-icon {
  background: linear-gradient(135deg, #0066B3 0%, #004A85 100%);
}

.emp-dashboard-stat-card-red .emp-dashboard-stat-icon {
  background: linear-gradient(135deg, #E31E24 0%, #B01519 100%);
}

.emp-dashboard-stat-card-orange .emp-dashboard-stat-icon {
  background: linear-gradient(135deg, #FF8C00 0%, #CC7000 100%);
}

.emp-dashboard-stat-card-green .emp-dashboard-stat-icon {
  background: linear-gradient(135deg, #00A86B 0%, #008556 100%);
}

.emp-dashboard-stat-label {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 2px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.emp-dashboard-stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1;
}

/* Section Header - Compact */
.emp-dashboard-section-header {
  margin-bottom: 16px;
}

.emp-dashboard-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

.emp-dashboard-section-subtitle {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* Vacancy Cards Grid - Very Compact */
.emp-dashboard-vacancy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.emp-dashboard-vacancy-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.emp-dashboard-vacancy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.emp-dashboard-vacancy-header {
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #f1f5f9;
}

.emp-dashboard-company-info {
  display: flex;
  gap: 10px;
  flex: 1;
}

.emp-dashboard-company-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emp-dashboard-company-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emp-dashboard-company-logo-placeholder {
  font-size: 18px;
  color: #94a3b8;
}

.emp-dashboard-job-title {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2px;
  line-height: 1.3;
}

.emp-dashboard-company-name {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

/* Status Badges - Brand Colors */
.emp-dashboard-status-badge {
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
}

.emp-dashboard-status-blue {
  background: #dbeafe;
  color: #0066B3;
}

.emp-dashboard-status-purple {
  background: #f3e8ff;
  color: #7c3aed;
}

.emp-dashboard-status-orange {
  background: #fed7aa;
  color: #c2410c;
}

.emp-dashboard-status-teal {
  background: #ccfbf1;
  color: #0f766e;
}

.emp-dashboard-status-green {
  background: #d1fae5;
  color: #065f46;
}

.emp-dashboard-status-success {
  background: #d1fae5;
  color: #047857;
}

.emp-dashboard-status-red {
  background: #fee2e2;
  color: #E31E24;
}

.emp-dashboard-status-gray {
  background: #f1f5f9;
  color: #475569;
}

.emp-dashboard-vacancy-body {
  padding: 8px 12px;
}

.emp-dashboard-vacancy-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.emp-dashboard-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #64748b;
}

.emp-dashboard-meta-item i {
  font-size: 14px;
  color: #94a3b8;
}

.emp-dashboard-vacancy-footer {
  padding: 8px 12px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
}

.emp-dashboard-btn-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0066B3;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.emp-dashboard-btn-view:hover {
  color: #E31E24;
  gap: 10px;
}

.emp-dashboard-btn-view i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.emp-dashboard-btn-view:hover i {
  transform: translateX(3px);
}

/* Empty State - Brand Colors */
.emp-dashboard-empty-state {
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  border: 2px dashed #e2e8f0;
}

.emp-dashboard-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #0066B3 0%, #004A85 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.emp-dashboard-empty-icon i {
  color: #ffffff !important;
}

.emp-dashboard-empty-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.emp-dashboard-empty-text {
  font-size: 14px;
  color: #64748b;
  max-width: 450px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.emp-dashboard-btn-large {
  padding: 12px 28px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .emp-dashboard-welcome-content {
    flex-direction: column;
    text-align: center;
  }

  .emp-dashboard-welcome-illustration {
    margin-top: 16px;
  }

  .emp-dashboard-welcome-title {
    font-size: 20px;
  }

  .emp-dashboard-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .emp-dashboard-vacancy-grid {
    grid-template-columns: 1fr;
  }

  .emp-dashboard-welcome-card {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .emp-dashboard-stats-grid {
    grid-template-columns: 1fr;
  }

  .emp-dashboard-stat-card {
    padding: 12px;
  }
}

/* ========================================
   APPLIED VACANCIES SECTION - MODERN STYLES
   ======================================== */

/* Section Header with Gradient */
.applied-vac-section-header {
  background: linear-gradient(135deg, #38b1f8 0%, #027dcf 100%);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(2, 125, 207, 0.15);
  position: relative;
  overflow: hidden;
}

.applied-vac-section-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.applied-vac-section-header h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.applied-vac-section-header h2 i {
  font-size: 28px;
}

.applied-vac-section-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Vacancy Cards Grid */
.applied-vac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.applied-vac-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.applied-vac-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2, 125, 207, 0.12);
  border-color: var(--primary-color);
}

/* Card Header */
.applied-vac-card-header {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
}

.applied-vac-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.applied-vac-date i {
  font-size: 16px;
  color: var(--primary-color);
}

/* Status Badges - Theme Aligned */
.applied-vac-status-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.applied-vac-status-applied {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: var(--primary-color);
  border: 1px solid #93c5fd;
}

.applied-vac-status-interview {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
  color: #7c3aed;
  border: 1px solid #c4b5fd;
}

.applied-vac-status-rejected {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: var(--red-color);
  border: 1px solid #fca5a5;
}

.applied-vac-status-hired {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #047857;
  border: 1px solid #6ee7b7;
}

/* Card Body */
.applied-vac-card-body {
  padding: 16px;
  display: flex;
  gap: 12px;
}

.applied-vac-company-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
}

.applied-vac-company-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.applied-vac-company-logo-placeholder {
  font-size: 20px;
  color: #94a3b8;
}

.applied-vac-company-info {
  flex: 1;
  min-width: 0;
}

.applied-vac-company {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.applied-vac-company:hover {
  color: var(--primary-color);
}

.applied-vac-company i {
  font-size: 16px;
  color: var(--primary-color);
}

.applied-vac-title {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.applied-vac-title:hover {
  color: var(--primary-color);
}

/* Card Footer */
.applied-vac-card-footer {
  padding: 12px 16px;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.applied-vac-btn-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 6px 0;
}

.applied-vac-btn-view:hover {
  color: var(--red-color);
  gap: 12px;
}

.applied-vac-btn-view i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.applied-vac-btn-view:hover i {
  transform: translateX(4px);
}

/* Empty State */
.applied-vac-empty-state {
  background: #ffffff;
  border-radius: 16px;
  padding: 56px 32px;
  text-align: center;
  border: 2px dashed #e2e8f0;
  grid-column: 1 / -1;
}

.applied-vac-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  /* Gradient set per item below */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.applied-vac-empty-icon i {
  color: #ffffff !important;
}

.applied-vac-empty-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.applied-vac-empty-text {
  font-size: 14px;
  color: #64748b;
  max-width: 450px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .applied-vac-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .applied-vac-section-header {
    padding: 20px 16px;
  }

  .applied-vac-section-header h2 {
    font-size: 20px;
  }

  .applied-vac-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .applied-vac-empty-state {
    padding: 40px 20px;
  }

  .applied-vac-empty-icon {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }
}

/* ========================================
   VACANCY DETAILS PAGE - MODERN STYLES
   ======================================== */

/* Page Header */
.vac-details-header {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.vac-details-header h5 {
  color: #1e293b;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

/* Modern Card Styling */
.vac-details-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.vac-details-card:hover {
  box-shadow: 0 8px 24px rgba(2, 125, 207, 0.1);
  border-color: #cbd5e1;
}

.vac-details-section-header {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.vac-details-section-header h6 {
  color: #1e293b;
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vac-details-section-header h6 i {
  color: var(--primary-color);
  font-size: 20px;
}

.vac-details-section-body {
  padding: 24px;
}

/* Application Details */
.vac-application-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.vac-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vac-meta-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vac-meta-value {
  font-size: 15px;
  color: #1e293b;
  font-weight: 500;
}

/* Status Badges */
.vac-status-applied {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: var(--primary-color);
  border: 1px solid #93c5fd;
}

.vac-status-interview {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
  color: #7c3aed;
  border: 1px solid #c4b5fd;
}

.vac-status-rejected {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: var(--red-color);
  border: 1px solid #fca5a5;
}

.vac-status-hired {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #047857;
  border: 1px solid #6ee7b7;
}

.vac-status-pending,
.vac-status-scheduled {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
  color: #c2410c;
  border: 1px solid #fb923c;
}

.vac-status-completed {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #047857;
  border: 1px solid #6ee7b7;
}

.vac-status-cancelled {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #475569;
  border: 1px solid #cbd5e1;
}

/* View More Link */
.vac-view-more {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 8px;
  transition: color 0.2s ease;
}

.vac-view-more:hover {
  color: var(--red-color);
  text-decoration: underline;
}

/* Interview Details */
.vac-interview-details {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid #f1f5f9;
}

.vac-interview-details>h6 {
  color: #1e293b;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vac-interview-details>h6 i {
  color: var(--primary-color);
}

.vac-interview-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid #e2e8f0;
}

.vac-interview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.vac-interview-header h6 {
  color: #1e293b;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.vac-interview-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vac-interview-date,
.vac-interview-location,
.vac-interview-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #475569;
}

.vac-interview-date i,
.vac-interview-location i,
.vac-interview-link i {
  color: var(--primary-color);
  font-size: 16px;
}

.vac-interview-link a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.vac-interview-link a:hover {
  color: var(--red-color);
  text-decoration: underline;
}

.vac-interview-notes,
.vac-interview-feedback {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.vac-interview-notes h5,
.vac-interview-feedback h5 {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vac-interview-notes p,
.vac-interview-feedback p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Employer Profile */
.vac-employer-profile {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.vac-employer-logo {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
}

.vac-employer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vac-employer-info h6 {
  color: #1e293b;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.vac-employer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vac-employer-meta p {
  font-size: 14px;
  color: #475569;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vac-employer-meta i {
  width: 20px;
  text-align: center;
  color: var(--primary-color);
  font-size: 14px;
}

.vac-employer-meta a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.vac-employer-meta a:hover {
  color: var(--red-color);
  text-decoration: underline;
}

.vac-employer-description {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.vac-employer-description h6 {
  color: #1e293b;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.vac-employer-description .description-content {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

/* Job Details */
.vac-job-header {
  margin-bottom: 20px;
}

.vac-job-header h6 {
  color: #1e293b;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.vac-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vac-job-meta .badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vac-job-meta .badge.category {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: var(--primary-color);
  border: 1px solid #93c5fd;
}

.vac-job-meta .badge.salary {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #047857;
  border: 1px solid #6ee7b7;
}

.vac-job-meta .badge.location {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
  color: #7c3aed;
  border: 1px solid #c4b5fd;
}

.vac-job-meta .badge.deadline {
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
  color: #c2410c;
  border: 1px solid #fb923c;
}

.vac-job-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vac-detail-row h6 {
  color: #1e293b;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.vac-detail-row p {
  font-size: 14px;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.vac-detail-content {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

.vac-detail-content ul,
.vac-detail-content ol {
  padding-left: 20px;
  margin: 8px 0;
}

.vac-detail-content li {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .vac-employer-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vac-employer-meta p {
    justify-content: center;
  }

  .vac-application-meta {
    grid-template-columns: 1fr;
  }

  .vac-job-meta {
    flex-direction: column;
  }

  .vac-details-header {
    padding: 20px 16px;
  }

  .vac-details-section-body {
    padding: 16px;
  }
}

/* ========================================
   ENHANCED VACANCY DETAILS - MODERN PILLS & LAYOUT
   ======================================== */

/* Two-Column Layout */
.vac-details-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
  margin-bottom: 24px;
}

.vac-details-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vac-details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Modern Pill Badges */
.vac-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.vac-pill i {
  font-size: 13px;
}

/* Pill Colors - Standard Modern Palette */
.vac-pill-blue {
  background: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
}

.vac-pill-green {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

.vac-pill-purple {
  background: #F5F3FF;
  color: #7C3AED;
  border: 1px solid #DDD6FE;
}

.vac-pill-orange {
  background: #FFF7ED;
  color: #C2410C;
  border: 1px solid #FED7AA;
}

.vac-pill-red {
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
}

.vac-pill-gray {
  background: #F8FAFC;
  color: #475569;
  border: 1px solid #E2E8F0;
}

.vac-pill-teal {
  background: #F0FDFA;
  color: #0F766E;
  border: 1px solid #99F6E4;
}

.vac-pill-indigo {
  background: #EEF2FF;
  color: #4F46E5;
  border: 1px solid #C7D2FE;
}

/* Quick Stats Card */
.vac-quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.vac-stat-item {
  background: #F8FAFC;
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  border: 1px solid #E2E8F0;
  transition: all 0.2s ease;
}

.vac-stat-item:hover {
  background: #F1F5F9;
  transform: translateY(-2px);
}

.vac-stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  /* Gradient set per item below */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
}

.vac-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.vac-stat-label {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Job Overview Pills Grid */
.vac-overview-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

/* Deadline Countdown */
.vac-deadline-countdown {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
  border: 2px solid #FED7AA;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.vac-countdown-label {
  font-size: 12px;
  color: #C2410C;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.vac-countdown-value {
  font-size: 28px;
  font-weight: 700;
  color: #EA580C;
  margin-bottom: 4px;
}

.vac-countdown-text {
  font-size: 13px;
  color: #9A3412;
}

/* Application Timeline */
.vac-timeline {
  position: relative;
  padding-left: 32px;
}

.vac-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #E2E8F0;
}

.vac-timeline-item {
  position: relative;
  padding-bottom: 24px;
}

.vac-timeline-item:last-child {
  padding-bottom: 0;
}

.vac-timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #E2E8F0;
  z-index: 1;
}

.vac-timeline-item.active .vac-timeline-dot {
  border-color: var(--primary-color);
  background: var(--primary-color);
}

.vac-timeline-item.completed .vac-timeline-dot {
  border-color: #10B981;
  background: #10B981;
}

.vac-timeline-content {
  background: #F8FAFC;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #E2E8F0;
}

.vac-timeline-title {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.vac-timeline-date {
  font-size: 11px;
  color: #64748b;
}

/* Sidebar Sticky */
.vac-sidebar-sticky {
  position: sticky;
  top: 20px;
}

/* Quick Actions Card */
.vac-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vac-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.vac-action-btn-primary {
  /* Gradient set per item below */
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 125, 207, 0.2);
}

.vac-action-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 125, 207, 0.3);
}

.vac-action-btn-secondary {
  background: #F8FAFC;
  color: #475569;
  border: 1px solid #E2E8F0;
}

.vac-action-btn-secondary:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
}

/* Info List */
.vac-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vac-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #F8FAFC;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
}

.vac-info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  /* Gradient set per item below */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
}

.vac-info-content h6 {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.vac-info-content p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Section with Icon Header */
.vac-section-icon-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.vac-section-icon {
  width: 44px;
  height: 44px;
  /* Gradient set per item below */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
}

.vac-section-icon-header h6 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

/* List with Checkmarks */
.vac-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vac-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #F1F5F9;
}

.vac-checklist li:last-child {
  border-bottom: none;
}

.vac-checklist li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #10B981;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
  .vac-details-layout {
    grid-template-columns: 1fr;
  }

  .vac-details-sidebar {
    order: -1;
  }

  .vac-sidebar-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .vac-quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .vac-overview-pills {
    flex-direction: column;
  }

  .vac-pill {
    justify-content: center;
  }
}


/* ========================================
   EMPLOYEE DASHBOARD - MODERN DESIGN
   ======================================== */

/* Modern Welcome Card */
.emp-dashboard-welcome-card {
  /* Gradient set per item below */
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(2, 125, 207, 0.15);
  overflow: hidden;
  position: relative;
}

.emp-dashboard-welcome-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.emp-welcome-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.emp-welcome-text h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.emp-welcome-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 16px;
}

.emp-welcome-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.emp-welcome-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

button.emp-welcome-cta {
  cursor: pointer;
  font-family: inherit;
}

.emp-welcome-cta--generate {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #ffffff !important;
  border: none;
  box-shadow: 0 4px 18px rgba(220, 38, 38, 0.55);
  animation: cvPulse 2.4s ease-in-out infinite;
}

.emp-welcome-cta--generate:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(220, 38, 38, 0.75);
}

@keyframes cvPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(220, 38, 38, 0.55); }
  50%       { box-shadow: 0 4px 28px rgba(220, 38, 38, 0.9); }
}

.emp-welcome-illustration img {
  max-width: 160px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

/* Statistics Grid */
.emp-dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.emp-dashboard-stat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.emp-dashboard-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.emp-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  color: #ffffff;
}

.emp-stat-icon-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.emp-stat-icon-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.emp-stat-icon-orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.emp-stat-icon-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.emp-stat-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 2px 0;
  line-height: 1;
}

.emp-stat-content p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Section Header */
.emp-section-header {
  margin-bottom: 16px;
}

.emp-section-header h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.emp-section-header p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* Application Cards Grid */
.emp-application-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.emp-application-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.emp-application-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.emp-application-card-header {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #f1f5f9;
}

.emp-company-info {
  display: flex;
  gap: 12px;
  flex: 1;
}

.emp-company-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emp-company-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emp-company-logo-placeholder {
  font-size: 18px;
  color: #94a3b8;
}

.emp-company-details h6 {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2px;
  line-height: 1.3;
}

.emp-company-details p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

/* Status Badges */
.emp-dashboard-status-badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
}

.emp-status-applied {
  background: #dbeafe;
  color: #1e40af;
}

.emp-status-shortlisted {
  background: #f3e8ff;
  color: #7c3aed;
}

.emp-status-interview {
  background: #fed7aa;
  color: #c2410c;
}

.emp-status-interviewed {
  background: #ccfbf1;
  color: #0f766e;
}

.emp-status-offer {
  background: #d1fae5;
  color: #065f46;
}

.emp-status-hired {
  background: #d1fae5;
  color: #047857;
}

.emp-status-rejected {
  background: #fee2e2;
  color: #b91c1c;
}

.emp-application-card-body {
  padding: 12px 16px;
}

.emp-application-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.emp-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
}

.emp-meta-item i {
  font-size: 14px;
  color: #94a3b8;
  width: 16px;
}

.emp-application-card-footer {
  padding: 12px 16px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
}

.emp-btn-view-details {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.emp-btn-view-details:hover {
  color: #0066a8;
  gap: 10px;
}

.emp-btn-view-details i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.emp-btn-view-details:hover i {
  transform: translateX(3px);
}

/* Empty State */
.emp-empty-state {
  background: #ffffff;
  border-radius: 16px;
  padding: 60px 32px;
  text-align: center;
  border: 2px dashed #e2e8f0;
}

.emp-empty-state-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  /* Gradient set per item below */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: #ffffff;
}

.emp-empty-state h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.emp-empty-state p {
  font-size: 14px;
  color: #64748b;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.emp-btn-large {
  padding: 14px 32px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .emp-welcome-content {
    flex-direction: column;
    text-align: center;
  }

  .emp-welcome-illustration {
    display: none;
  }

  .emp-welcome-text h2 {
    font-size: 20px;
  }

  .emp-dashboard-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .emp-application-cards-grid {
    grid-template-columns: 1fr;
  }

  .emp-dashboard-welcome-card {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .emp-dashboard-stats-grid {
    grid-template-columns: 1fr;
  }

  .emp-dashboard-stat-card {
    padding: 14px 16px;
  }
}


/* ========================================
   VACANCY SINGLE PAGE - MODERN DESIGN
   ======================================== */

/* Hero Section */
.vacancy-single-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 40px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.vacancy-hero-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.vacancy-hero-logo {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 15px;
}

.vacancy-hero-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.vacancy-hero-info {
  flex: 1;
}

.vacancy-hero-company {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 4px;
  font-weight: 500;
}

.vacancy-hero-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.2;
}

.vacancy-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.vacancy-pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vacancy-pill i {
  font-size: 14px;
}

.vacancy-pill-location {
  background: #dbeafe;
  color: #1e40af;
}

.vacancy-pill-type {
  background: #f3e8ff;
  color: #7c3aed;
}

.vacancy-pill-salary {
  background: #d1fae5;
  color: #065f46;
}

.vacancy-pill-experience {
  background: #fed7aa;
  color: #c2410c;
}

.vacancy-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.vacancy-status-active {
  background: #d1fae5;
  color: #047857;
}

.vacancy-status-expired {
  background: #fee2e2;
  color: #b91c1c;
}

/* Quick Stats Bar */
.vacancy-quick-stats {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.vacancy-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vacancy-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  /* Gradient set per item below */
}

.vacancy-stat-content h4 {
  font-size: 11px;
  color: #64748b;
  margin: 0 0 2px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.vacancy-stat-content p {
  font-size: 16px;
  color: #1e293b;
  margin: 0;
  font-weight: 600;
}

/* Two Column Layout */
.vacancy-content-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  align-items: start;
}

/* Content Cards */
.vacancy-content-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.vacancy-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.vacancy-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  /* Gradient set per item below */
}

.vacancy-card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.vacancy-card-body {
  color: #475569;
  line-height: 1.7;
  font-size: 15px;
}

.vacancy-card-body h1,
.vacancy-card-body h2,
.vacancy-card-body h3,
.vacancy-card-body h4,
.vacancy-card-body h5,
.vacancy-card-body h6 {
  color: #1e293b;
  margin-top: 16px;
  margin-bottom: 8px;
}

.vacancy-card-body ul,
.vacancy-card-body ol {
  margin: 12px 0;
  padding-left: 24px;
}

.vacancy-card-body li {
  margin-bottom: 6px;
}

/* Job Details Grid */
.vacancy-details-grid {
  display: grid;
  gap: 12px;
}

.vacancy-detail-item {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.vacancy-detail-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  min-width: 140px;
}

.vacancy-detail-value {
  font-size: 14px;
  color: #1e293b;
  font-weight: 500;
}

/* Sidebar */
.vacancy-sidebar {
  position: sticky;
  top: 20px;
}

.vacancy-sidebar-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.vacancy-apply-section {
  text-align: center;
}

.vacancy-apply-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.vacancy-bookmark-btn {
  width: 100%;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.vacancy-bookmark-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.vacancy-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.vacancy-alert-success {
  background: #d1fae5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.vacancy-alert-danger {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Recruiter Card */
.vacancy-recruiter-card {
  text-align: center;
}

.vacancy-recruiter-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 12px;
  object-fit: cover;
  border: 3px solid #f1f5f9;
}

.vacancy-recruiter-initial {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
}

.vacancy-recruiter-name {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.vacancy-recruiter-address {
  font-size: 13px;
  color: #64748b;
}

/* Share Section */
.vacancy-share {
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.vacancy-share-title {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
  font-weight: 600;
}

.vacancy-share-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.vacancy-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  transition: all 0.2s ease;
  text-decoration: none;
}

.vacancy-share-btn:hover {
  transform: translateY(-2px);
}

.vacancy-share-facebook {
  background: #1877f2;
}

.vacancy-share-twitter {
  background: #000000;
}

.vacancy-share-linkedin {
  background: #0a66c2;
}

/* Responsive */
@media (max-width: 1024px) {
  .vacancy-content-layout {
    grid-template-columns: 1fr;
  }

  .vacancy-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .vacancy-hero-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 16px;
  }

  .vacancy-hero-logo {
    margin: 0 auto;
  }

  .vacancy-hero-title {
    font-size: 24px;
  }

  .vacancy-quick-stats {
    grid-template-columns: 1fr;
  }

  .vacancy-hero-pills,
  .vacancy-hero-actions {
    justify-content: center;
    text-align: center;
  }

  .vacancy-detail-item {
    justify-content: flex-start;
    text-align: left;
  }
}



/* Bookmark button in hero section */
.vacancy-hero-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vacancy-bookmark-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vacancy-bookmark-icon-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: scale(1.05);
}

.vacancy-bookmark-icon-btn.bookmarked {
  background: var(--primary-color);
  color: #ffffff;
}

/* Vacancy Hero Wrapper - for positioning bookmark */
.vacancy-hero-wrapper {
  position: relative;
}

.vacancy-bookmark-wrapper {
  position: absolute;
  top: 0;
  right: 0;
}

.vacancy-bookmark-toggle-btn {
  padding: 10px 20px;
  border-radius: 8px;
  background: #ffffff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.vacancy-bookmark-toggle-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 125, 207, 0.2);
}

.vacancy-bookmark-toggle-btn i {
  font-size: 18px;
}

.vacancy-bookmark-toggle-btn.bookmarked {
  background: var(--primary-color);
  color: #ffffff;
}

.vacancy-bookmark-toggle-btn.bookmarked:hover {
  background: #0066a8;
}

/* Bookmark Toggle Button with Text */
.bookmark-toggle-container {
  display: inline-block;
}

.bookmark-checkbox {
  display: none;
}

.bookmark-toggle-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  background: #ffffff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  user-select: none;
}

.bookmark-toggle-label:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 125, 207, 0.15);
}

.bookmark-toggle-label i {
  font-size: 18px;
}

/* Show "Bookmark" text when not bookmarked */
.bookmark-checkbox:not(:checked)+.bookmark-toggle-label .bookmark-text-saved {
  display: none;
}

.bookmark-checkbox:not(:checked)+.bookmark-toggle-label .bookmark-text-not-saved {
  display: inline;
}

/* Show "Bookmarked" text when bookmarked */
.bookmark-checkbox:checked+.bookmark-toggle-label {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.bookmark-checkbox:checked+.bookmark-toggle-label:hover {
  background: #0066a8;
  border-color: #0066a8;
}

.bookmark-checkbox:checked+.bookmark-toggle-label .bookmark-text-not-saved {
  display: none;
}

.bookmark-checkbox:checked+.bookmark-toggle-label .bookmark-text-saved {
  display: inline;
}

.bookmark-checkbox:checked+.bookmark-toggle-label i {
  animation: bookmarkPulse 0.3s ease;
}

@keyframes bookmarkPulse {

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

  50% {
    transform: scale(1.2);
  }
}





/* Modern gradient backgrounds for stats icons */
.vacancy-stat-item:nth-child(1) .vacancy-stat-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.vacancy-stat-item:nth-child(2) .vacancy-stat-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.vacancy-stat-item:nth-child(3) .vacancy-stat-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.vacancy-stat-item:nth-child(4) .vacancy-stat-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Simple Icon-Only Bookmark Button */
.bookmark-simple .bookmark-toggle-label {
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  /* Maintain rounded corners */
}

/* Ensure the icon is centered and visible */
.bookmark-simple .bookmark-toggle-label i {
  font-size: 20px;
  margin: 0;
}

/* Modern Vacancy Cards */
.modern-vacancy-card {
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.modern-vacancy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.modern-vacancy-card .companylogosmall {
  max-height: 45px;
  width: auto;
  height: auto;
  max-width: 100px;
  border: none;
  padding: 0;
  background: transparent;
  object-fit: contain;
}

.modern-vacancy-card h6 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 16px 0 12px;
  line-height: 1.4;
  height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.modern-vacancy-card .company-vacancy-icon-module {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 13px;
}

.modern-vacancy-card .company-vacancy-icon-module i {
  color: #94a3b8;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.modern-vacancy-card .vacancy-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.modern-vacancy-card .vacancy-card-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #475569;
}

.content-inner li {
  font-size: 1rem;
  line-height: 30px;
}

.premium-excerpt {
  margin-bottom: 30px;
}

.content-inner img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* MOBILE RESPONSIVE OVERRIDES */
@media (max-width: 768px) {

  /* Reduce heavy vertical padding */
  .py-80 {
    padding: 30px 0 !important;
  }

  /* Reduce large padding boxes */
  .p-md-50 {
    padding: 20px !important;
  }

  /* Premium Excerpt Mobile Adjustments */
  .premium-excerpt {
    padding: 20px !important;
  }

  .premium-excerpt p {
    font-size: 1rem !important;
  }

  /* Mobile height for featured content image */
  .content-featured-image {
    height: 233px !important;
  }

  /* Mobile margin for utility classes */
  .mt-30 {
    margin-top: 10px !important;
  }

  /* Category Header Mobile Font */
  .top-category-details h1 {
    font-size: 30px !important;
    line-height: 1.3 !important;
  }

  /* Auto-scroll animation for horizontal icon menu on mobile */
  .main-header-login .main-sidebar .sidebar ul {
    animation: autoScrollHint 4s ease-in-out infinite;
  }
}

/* Keyframe animation for auto-scroll hint - makes menu scroll left/right */
@keyframes autoScrollHint {

  0%,
  100% {
    transform: translateX(0);
  }

  15% {
    transform: translateX(-15px);
  }

  30% {
    transform: translateX(0);
  }

  45% {
    transform: translateX(15px);
  }

  60% {
    transform: translateX(0);
  }
}

/* Footer Copyright Links Styling */
.copyright-content a {
  color: #ffffff !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.copyright-content a:hover {
  color: #ffffff !important;
  opacity: 0.8;
  text-decoration: none;
}

/* Contact Detail Links in Footer */
.contact-detail a {
  color: inherit;
  text-decoration: none;
}

.contact-detail a:hover {
  color: #1e5ba8;
}

/* Offices Grid on Contact Page */
.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 1200px) {
  .offices-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Contact Page Layout & Components */
.office-info-box-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.office-info-box-module {
  padding: 50px;
}

.color-primary {
  color: var(--primary-color);
}

.m-0-auto {
  margin: 0 auto;
}

.fw-700 {
  font-weight: 700;
}

.contact-box-custom {
  border-radius: 6px;
  padding: 60px;
  background: #fff;
}

@media (max-width: 991px) {
  .office-info-box-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .contact-box-custom {
    padding: 25px;
  }

  .office-info-box-module {
    padding: 25px;
  }

  .contact-form h6 {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.8;
  }
}

/* --- MODERN CONTACT US REVAMP --- */
:root {
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --premium-shadow: 0 15px 35px rgba(30, 91, 168, 0.1);
}

.offices-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.modern-office-card {
  background: var(--white-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--premium-shadow);
  transition: all 0.4s ease;
  border: 1px solid #f0f4f8;
  display: flex;
  flex-direction: column;
}

.modern-office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(30, 91, 168, 0.15);
}

.office-map-container {
  height: 250px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #f8fcff;
}

.office-map-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.office-card-content {
  padding: 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
}



.office-badge {
  display: inline-block;
  padding: 6px 15px;
  background: rgba(30, 91, 168, 0.1);
  color: var(--primary-color);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.modern-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  background: #f8fcff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.modern-office-card:hover .contact-icon-box {
  background: var(--primary-color);
  color: white;
}

.contact-info-text h6 {
  font-size: 20px;
  color: #6c757d;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-info-text p,
.contact-info-text a {
  color: #2c3e50;
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* Glassmorphism Form Section */
.modern-contact-form-wrap {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--premium-shadow);
}

.modern-input-group {
  position: relative;
  margin-bottom: 25px;
}

.modern-input-group i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #cbd5e0;
  transition: all 0.3s ease;
}

.modern-field {
  width: 100%;
  padding: 16px 50px 16px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.modern-field:focus {
  background: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(30, 91, 168, 0.05);
  outline: none;
}

.modern-field:focus+i {
  color: var(--primary-color);
}

.modern-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .offices-container {
    grid-template-columns: 1fr;
  }

  .modern-contact-form-wrap {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .office-card-content {
    padding: 25px;
  }
}


/* --- CONSOLIDATED FOOTER STYLES --- */
.footer-section-modern {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.footer-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e5ba8' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  gap: 25px;
}

.logo-wrapper-modern {
  width: 200px;
}

.logo-wrapper-modern img {
  width: 100%;
  height: auto;
}

.company-description {
  font-size: 14px;
  line-height: 1.8;
  color: #111111;
  margin: 0;
}

.social-section {
  margin-top: auto;
}

.social-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.social-links-modern {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e5ba8 0%, #3d8ed7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(30, 91, 168, 0.3);
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #1e5ba8;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  font-size: 14px;
  color: #111111;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1e5ba8;
  transition: width 0.3s ease;
}

.footer-links li a:hover {
  color: #1e5ba8;
  padding-left: 8px;
}

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

.count-badge {
  color: #1e5ba8;
  font-size: 12px;
  font-weight: 600;
}

.view-all-link {
  color: #1e5ba8 !important;
  font-weight: 600;
  margin-top: 5px;
}

.view-all-link:hover {
  color: #d32f2f !important;
}

.footer-contact {
  gap: 25px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-label {
  font-size: 14px;
  font-weight: 700;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.contact-label i {
  color: #1e5ba8;
  font-size: 14px;
}

.contact-detail {
  font-size: 13px;
  color: #111111;
  margin: 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-detail i {
  color: #1e5ba8;
  font-size: 12px;
  width: 14px;
  flex-shrink: 0;
}

.copyright-section-modern {
  background: linear-gradient(135deg, #1e5ba8 0%, #075185 100%);
  padding: 25px 0;
}

.copyright-content {
  text-align: center;
}

.copyright-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
  }

  .footer-column:nth-child(4) {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-column:nth-child(1),
  .footer-column:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .footer-column:nth-child(1),
  .footer-column:nth-child(2),
  .footer-column:nth-child(3),
  .footer-column:nth-child(4),
  .footer-column:nth-child(5) {
    grid-column: span 1 !important;
  }

  .logo-wrapper-modern {
    width: 160px;
  }
}

/*--------------------------------------------------------------
# Content Typography Standard (Blog & Pages)
--------------------------------------------------------------*/
.blog-content h1,
.custom-typography h1,
.blog-content h2,
.custom-typography h2,
.blog-content h3,
.custom-typography h3,
.blog-content h4,
.custom-typography h4,
.blog-content h5,
.custom-typography h5,
.blog-content h6,
.custom-typography h6 {
  font-weight: 500;
  line-height: 1.3;
}

.blog-content h1,
.custom-typography h1 {
  font-size: 48px;
  margin-top: 28px;
  margin-bottom: 10px;
}

.blog-content h2,
.custom-typography h2 {
  font-size: 40px;
  margin-top: 24px;
  margin-bottom: 10px;
}

.blog-content h3,
.custom-typography h3 {
  font-size: 32px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.blog-content h4,
.custom-typography h4 {
  font-size: 24px;
  margin-top: 18px;
  margin-bottom: 8px;
}

.blog-content h5,
.custom-typography h5 {
  font-size: 20px;
  margin-top: 16px;
  margin-bottom: 6px;
}

.blog-content h6,
.custom-typography h6 {
  font-size: 18px;
  margin-top: 14px;
  margin-bottom: 6px;
}

.blog-content p,
.custom-typography p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.blog-content ul,
.custom-typography ul,
.blog-content ol,
.custom-typography ol {
  margin-bottom: 20px;
  padding-left: 1.5rem;
}

.blog-content ul,
.custom-typography ul {
  list-style: disc;
}

.blog-content ol,
.custom-typography ol {
  list-style: decimal;
}

.blog-content ul li,
.custom-typography ul li,
.blog-content ol li,
.custom-typography ol li {
  margin-bottom: 10px;
  line-height: 1.7;
  list-style: inherit;
}

.blog-content ul li::marker,
.custom-typography ul li::marker,
.blog-content ol li::marker,
.custom-typography ol li::marker {
  font-weight: 600;
}

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {

  .blog-content h1,
  .custom-typography h1 {
    font-size: 40px;
    margin-bottom: 22px;
  }

  .blog-content h2,
  .custom-typography h2 {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .blog-content h3,
  .custom-typography h3 {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .blog-content h4,
  .custom-typography h4 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .blog-content h5,
  .custom-typography h5 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .blog-content h6,
  .custom-typography h6 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

/* Mobile (Below 768px) */
@media (max-width: 767px) {

  .blog-content h1,
  .custom-typography h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .blog-content h2,
  .custom-typography h2 {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .blog-content h3,
  .custom-typography h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .blog-content h4,
  .custom-typography h4 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .blog-content h5,
  .custom-typography h5 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .blog-content h6,
  .custom-typography h6 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

/* ===== Guest Dropdown Menu ===== */
/* Override narrow width caused by 40px right padding in user-dashboard-style.css */
.notification .nav-contentsdiff .company-profile-dropdownmenu.guest-profile-dd {
  width: 280px !important;
  padding: 20px !important;
  margin-left: -250px !important;
}
.guest-dd-section { padding: 0; margin-bottom: 10px; background: transparent; }
.guest-dd-section:last-child { margin-bottom: 0; }
.guest-dd-badge { display: inline-block; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .9px; padding: 2px 10px; border-radius: 20px; margin-bottom: 7px; color: #fff; }
.guest-dd-badge--login { background: #1e5ba8; }
.guest-dd-badge--register { background: #0d9488; }
.guest-dd-link { display: block !important; padding: 7px 10px !important; margin-bottom: 6px !important; text-decoration: none !important; background: #fff !important; border: none !important; box-shadow: 0 2px 8px rgba(0,0,0,0.09) !important; color: inherit !important; border-radius: 10px !important; transition: box-shadow .15s; }
.guest-dd-link:last-child { margin-bottom: 0 !important; }
.guest-dd-link:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.14) !important; }
.guest-dd-row { display: flex !important; align-items: center !important; gap: 8px; padding: 2px 0; }
.guest-dd-icon { width: 28px; height: 28px; min-width: 28px; border-radius: 50%; display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0; }
.guest-dd-icon--login { background: #dbeafe; }
.guest-dd-icon--register { background: #ccfbf1; }
.guest-dd-icon i { font-size: 11px; margin: 0 !important; padding: 0 !important; width: auto !important; }
.guest-dd-icon--login i { color: #1e5ba8; }
.guest-dd-icon--register i { color: #0d9488; }
.guest-dd-label { font-size: 12.5px; font-weight: 600; color: #1e293b; flex: 1; }
.guest-dd-arrow { font-size: 10px; color: #94a3b8; flex-shrink: 0; }
