/*floating button*/
/* Base styles */
/* Hide button on homepage */
body, html {
  overflow-x: visible !important;
}
.home .floating-back-btn,
.front-page .floating-back-btn {
  display: none !important;
}

/* Base styles */
.floating-back-btn {
  position: fixed;
  z-index: 99999 !important;;
  background: #24484e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 20px;
  border-radius: 7px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateZ(0); /* Forces GPU rendering */
  will-change: transform, opacity;
}
.floating-back-btn:hover {
  background: #33c2ae;
  color: #fff;
}
.floating-back-btn.show {
  opacity: 1;
  pointer-events: auto;
}

/* Desktop layout */
@media (min-width: 769px) {
  .floating-back-btn {
    bottom: 50px;
    right: 100px;
  }
}

/* Tablet & mobile layout */
@media (max-width: 768px) {
  .floating-back-btn {
    bottom: 50px;
    right: 20px;
  }
}
.floating-back-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.floating-back-btn:hover svg {
  transform: translateX(-4px);
}
/*floating button end*/
.reasons-img img {
  max-width: 100%;
}
.single-job-details-section .headder-container {
  margin-bottom: 32px;
  margin-top: 32px;
}
.headder-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
.headder-container .single-job-title {
  margin: 0;
  font-size: 2.5rem;
}
.single-job-details-section .headder-container .apply {
  background: #24484e;
  color: #fff;
  padding: 5px 20px;
  font-size: 16px;
  border-radius: 7px;
  transition: 0.1s;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  box-sizing: border-box;
}
.single-job-details-section .headder-container .apply:hover {
  background: #33c2ae;
  color: #fff;
}
.single-job-details {
  margin-bottom: 64px;
}
.single-job-details h4 {
  margin: 24px 0;
}
.single-job-details-section .single-job-details ul {
  margin: 0;
  padding: 0;
}
.single-job-details-section .single-job-details > ul > li {
  font-size: 16px;
  font-weight: 400;
  background: url(images/small-dot.png) no-repeat left 9px;
  padding-left: 18px;
  margin-bottom: 15px;
}
.single-job-details-section .single-job-details li li {
  font-size: 14px;
  font-weight: 500;
  background: url(images/small-dot.png) no-repeat left 7px;
  padding-left: 18px;
  margin-bottom: 15px;
}
.single-job-details-section .single-job-details li li:first-child {
  margin-top: 15px;
}
@media only screen and (max-width: 768px) {
  .headder-container .single-job-title {
    font-size: 1.5rem;
  }
  .openings-section .openings .openings-block-outer .openings-block {
    padding: 48px 64px 24px !important;
  }
  .col-lg-3.col-md-6.col-sm-6.openings-block-outer {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .headder-container .single-job-title {
    font-size: 2rem;
  }
  .openings-section .openings .openings-block-outer .openings-block {
    padding: 60px 24px 35px !important;
  }
}
