@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;
}
/* 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: 2;
}
.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: "Oswald", sans-serif;
  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: 14px;
  font-family: "Oswald", 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;
}
.job-seeker-banner-module,
.employer-banner-module {
  position: relative;
  padding: 80px 60px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  z-index: 1;
}
.job-seeker-banner-module::before,
.employer-banner-module::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.job-seeker-banner-module::before {
  background: #075185;
  opacity: 0.7;
}
.employer-banner-module::before {
  background: #990000;
  opacity: 0.7;
}
.job-seeker-banner-module {
  background: url(../images/job_seeker_banner.png);
}
.employer-banner-module {
  background: url(../images/employeer_banner.png);
}
.job-seeker-banner-module div,
.employer-banner-module div {
  width: 410px;
}
.job-seeker-banner-module div {
  margin-left: auto;
}
.employer-banner-module div {
  margin-right: auto;
}
.job-seeker-banner-module h2,
.employer-banner-module h2 {
  color: #f6f6f6;
}
.job-seeker-banner-module p,
.employer-banner-module p {
  padding: 20px 0px 40px;
  color: #f6f6f6;
}
.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 strong,
.vacancy-description p,
.vacancy-specification strong,
.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 strong,
.vacancy-description p,
.vacancy-specification strong,
.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);

  /* 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: 14px;
  color: var(--grey-color);
}
.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: 50px!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;
  }
  h2 {
    font-size: 38px;
  }
  .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: 10px;
    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: 400;
    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: 40px;
    font-weight: bold;
    line-height: 57.6px;
  }
  h2,
  .error-text h2 {
    font-size: 35px;
    font-weight: bold;
    line-height: 48px;
  }
  h3 {
    font-size: 30px;
    line-height: 39.6px;
  }
  h4 {
    font-size: 25px;
    font-weight: 400;
    line-height: 33.6px;
  }
  h5 {
    font-size: 20px;
    line-height: 27.6px;
  }
  h6 {
    font-size: 18px;
    line-height: 22.8px;
  }
  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;
  }
  .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 strong,
  .vacancy-description p,
  .vacancy-specification strong,
  .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*/
.pb-200 {
  padding-bottom: 220px;
}

/*NEW-CSS*/
.office-info-box-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 5px;
  overflow: hidden;
}
.office-info-box-module {
  position: relative;
  padding: 80px 60px;
  background: #f8fcff;
  border-radius: 0px 5px 5px 0px;
  overflow: hidden;
  z-index: 1;
}
.office-info-box-module h6 {
  padding: 20px 0px;
}
.office-box-list li {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}
.office-box-list li a {
  color: var(--grey-color);
  transition: all 0.5s ease-in-out;
}
.office-box-list li a:hover {
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.office-info-box-left-pattern {
  position: absolute;
  top: -25px;
  left: 0px;
  width: 30%;
  rotate: -90deg;
  opacity: 0.29;
  z-index: -1;
}
.office-info-box-right-pattern {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  opacity: 0.29;
  z-index: -1;
}
.google-maps iframe {
  border-radius: 5px 0px 0px 5px;
}
.contact-form {
  padding: 40px;
  margin-top: -200px;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 2px 32px rgba(0, 0, 0, 0.1);
}
.contact-form h6 {
  font-weight: 700;
}
@media (max-width: 950px) {
  .pb-200 {
    padding-bottom: 200px;
  }
  .office-info-box-wrap {
    grid-template-columns: 1fr;
  }
  .office-info-box-left-pattern {
    top: -35px;
  }
  .office-info-box-wrap .office-info-box-module.mt-60 {
    margin-top: 0;
  }
}
@media (max-width: 550px) {
  .office-info-box-module,
  .contact-form {
    padding: 30px;
  }
}

