/*/* vars specific to each client */
* {
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  background: #fff;
  box-sizing: border-box;
  color: #555;
  font-size: 17px;
  font-family: "Arial", sans-serif;
  font-weight: 400;
  height: 100%;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.block {
  display: block;
}

ul {
  margin-bottom: 0;
}

.margin-t-20 {
  margin-top: 20px;
}

.margin-t-40 {
  margin-top: 40px;
}

.margin-b-10 {
  margin-bottom: 10px;
}

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

.margin-b-40 {
  margin-bottom: 40px;
}

.margin-b-60 {
  margin-bottom: 60px;
}

.margin-b-80 {
  margin-bottom: 80px;
}

.padded-section {
  padding: 20px;
}

.padding-t-10 {
  padding-top: 10px;
}

.padding-t-20 {
  padding-top: 20px;
}

.padding-t-30 {
  padding-top: 30px;
}

.padding-b-20 {
  padding-bottom: 20px;
}

.padding-r-10 {
  padding-right: 10px;
}

.padding-l-10 {
  padding-left: 10px;
}

.no-padding {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

h1 {
  font-size: 34px;
  line-height: 40px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
h1.huge {
  font-size: 160px;
  line-height: 200px;
}
@media (max-width: 768px) {
  h1.huge {
    font-size: 100px;
    line-height: 140px;
  }
}

h2 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  color: #555;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 22px;
    line-height: 30px;
  }
}

h3 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  color: #555;
}
@media (max-width: 768px) {
  h3 {
    font-size: 18px;
    line-height: 20px;
  }
}

h1,
h2,
h3 {
  text-transform: uppercase;
}

h4 {
  font-size: 17px;
  line-height: 19px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000;
}
@media (max-width: 768px) {
  h4 {
    font-size: 16px;
    line-height: 18px;
  }
}

p {
  color: #555;
  line-height: 22px;
  font-size: 17px;
}
p a {
  text-decoration: underline;
}

.underline {
  text-decoration: underline;
}

.uppercase {
  text-transform: uppercase;
}

.bold {
  font-weight: 500;
}

.semi-bold {
  font-weight: 500;
  color: #555;
}

.small-text {
  font-size: 17px;
  line-height: 18px;
}

.spaced-text {
  font-size: 18px;
  line-height: 24px;
  color: #005587;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.primary-color {
  color: #005587;
}

.secondary-color {
  color: #555;
}

a {
  color: #000;
}
a:hover {
  color: #005587;
}

h1, h2 {
  font-family: "Tw Cen MT", Arial, sans-serif;
  font-weight: bold;
}

h3 {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: bold;
}

p, span, li {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: normal;
  font-size: 17px;
  line-height: 1.5;
}

h4 {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
  font-size: 18px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
  }
}
.cs-select {
  position: relative;
  outline: none;
  z-index: 10;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  border-bottom: 1px solid #000;
  padding: 0 15px 0 0;
}

.cs-hidden {
  displaY: none;
}

.cs-options {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  transform: translateY(100%);
  z-index: 20;
  outline: none;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
}
.cs-options ul {
  margin: 0;
  padding: 0;
  outline: none;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 1px;
}
.cs-active .cs-options {
  max-height: 10000px;
  overflow: visible;
}

.cs-option {
  width: 100%;
  display: block;
  transition: 0.4s;
  padding: 5px;
  transform: translateY(-5px);
  opacity: 0;
  cursor: pointer;
}
.cs-option:hover {
  background: #000;
  color: #fff;
}
.cs-option span {
  cursor: pointer;
}
.cs-active .cs-option {
  transform: translateY(0);
  opacity: 1;
}
.cs-option.cs-selected {
  background: #000;
  color: #fff;
}

.cs-placeholder {
  line-height: 25px;
  width: 100%;
  display: block;
  position: relative;
  padding-left: 10px;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  line-height: 40px;
  padding: 0;
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  z-index: 11;
}
.logo img {
  display: block;
  max-height: 90px;
  width: auto;
}
.logo:hover {
  opacity: 0.8;
  transition: 0.3s ease all;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  height: auto;
}
.header .header-inner {
  position: relative;
  width: 100%;
  height: 90px;
  padding: 0;
}

.cover {
  background-color: #dedede;
  background-size: cover;
  background-position: center center;
  font-size: 40px;
  padding: 220px 0 200px;
  width: 100%;
}
@media (max-width: 768px) {
  .cover {
    padding: 160px 10px 80px;
  }
}

.cover-home {
  background-image: url("../images/home-cover.jpg");
  padding: 220px 0 230px;
  position: relative;
}

.department-banner {
  position: relative;
  width: 100%;
  height: 500px; /* Good height for banner */
  margin-top: 0; /* Remove margin - start from top */
  padding-top: 90px; /* Account for header height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0; /* Fallback background */
}
.department-banner .department-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This will cover the container like background-size: cover */
  object-position: center center; /* Center the image */
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .department-banner {
    height: 400px; /* Good height on mobile */
    margin-top: 0; /* Still no margin on mobile */
    padding-top: 70px; /* Smaller header padding on mobile */
  }
}

.cover-job {
  background-image: url("../images/job-cover.jpg");
}

.cover-results {
  background-image: url("../images/results-cover.jpg");
}

.cover-apply {
  background-image: url("../images/job-cover.jpg");
}

.search-section {
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .search-section {
    margin-bottom: 200px;
  }
}

.search {
  border-radius: 8px;
  /*box-shadow: rgba(87,87,87, 0.4) 1px 1px 1px;*/
  border: 1px solid #dedede;
  margin: 0 auto;
  width: calc(100% - 30px);
  background: #fff;
  padding: 30px 20px 20px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 1;
}

.input {
  background: none;
  border-radius: 4px;
  color: #555;
  font-size: 17px;
  line-height: 40px;
  outline: none;
  vertical-align: middle;
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  border-bottom: 1px solid #005587;
  padding: 0;
}
.input::-webkit-input-placeholder {
  color: #555;
}
.input::-moz-placeholder {
  color: #555;
}
.input:-ms-input-placeholder {
  color: #555;
}
.input:-moz-placeholder {
  color: #555;
}
@media (max-width: 768px) {
  .input {
    margin-bottom: 10px;
  }
}

.select {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  color: #555;
  font-size: 17px;
  height: 40px;
  outline: none;
  vertical-align: middle;
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  border-bottom: 1px solid #005587;
  padding: 0 15px 0 0;
}
@media (max-width: 768px) {
  .select {
    margin-bottom: 10px;
  }
}

.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #555;
  content: "";
  height: 0;
  position: absolute;
  right: 15px;
  bottom: 20px;
  width: 0;
}
.select-wrapper:nth-child(2) {
  z-index: 2;
}
.select-wrapper:nth-child(3) {
  z-index: 1;
}

.submit {
  width: 100%;
}

.section {
  padding: 80px 0;
  width: 100%;
  border-bottom: 1px solid #dedede;
}
.section h2 {
  color: #005587;
  position: relative;
  text-align: center;
}
.section h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #005b8e, #0ea5e9);
  border-radius: 2px;
}
.section [data-dep-title],
.section [data-benefits-title],
.section [data-teamwork-title],
.section [data-benefits-section] h2,
.section .section-title,
.section .text-center h2,
.section [data-teamwork-section] h2 {
  color: #005587 !important;
  position: relative;
  text-align: center;
}
.section [data-dep-title]::after,
.section [data-benefits-title]::after,
.section [data-teamwork-title]::after,
.section [data-benefits-section] h2::after,
.section .section-title::after,
.section .text-center h2::after,
.section [data-teamwork-section] h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #005b8e, #0ea5e9);
  border-radius: 2px;
}
.section h2.text-left::after {
  left: 0 !important;
  transform: translateX(0) !important;
}
.section.no-padding-t {
  padding-top: 0;
}
.section.no-border {
  border-bottom: none;
}

body[data-page=job] .breadcrumb {
  padding-bottom: 5px !important;
}
body[data-page=job] .section {
  padding-top: 0px !important;
}
body[data-page=job] .section h2[data-api-job-title] {
  text-align: center !important;
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}
@media (max-width: 768px) {
  body[data-page=job] .section {
    padding-top: 0px !important;
  }
  body[data-page=job] .section h2.text-left {
    margin-bottom: 15px !important;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
  .section.no-padding {
    padding: 0 20px 40px;
  }
}
.section [data-dep-intro] {
  max-width: 900px;
  margin: 0 auto;
}
.section [data-dep-intro] p {
  margin-bottom: 0;
}

.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 100%;
}
.container h2:not(.carousel-caption h2) {
  color: #005587;
  position: relative;
  text-align: center;
}
.container h2:not(.carousel-caption h2)::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #005b8e, #0ea5e9);
  border-radius: 2px;
}

.border-btm {
  border-bottom: 1px solid #dedede;
}

.border {
  border: 1px solid #dedede;
}

.list-header {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 17px;
  background-color: #fff;
  color: #000;
  padding: 20px;
  border-bottom: 1px solid #dedede;
  width: 100%;
  margin-left: 0;
}

.list {
  list-style-type: none;
  font-size: 17px;
}
.list li {
  padding: 20px;
  border-bottom: 1px solid #dedede;
}
.list li:nth-child(odd) {
  background: #fff;
}
.list li:nth-child(even) {
  background: #fff;
}
@media (max-width: 768px) {
  .list li div {
    margin-bottom: 10px;
  }
}
.list li div:last-child() {
  text-align: right;
}
@media (max-width: 768px) {
  .list li div:last-child() {
    text-align: left;
    margin-bottom: 0;
  }
}
.list li a {
  font-weight: 500;
  font-size: 17px !important;
}

.list-columns {
  list-style-type: none;
}
.list-columns > div:nth-last-child(2) a {
  border-bottom: none;
}
@media (max-width: 768px) {
  .list-columns > div:nth-last-child(2) a {
    border-bottom: 1px solid #dedede;
  }
}
.list-columns > div:last-child() a {
  border-bottom: none;
}
.list-columns a {
  padding: 20px 5px;
  border-bottom: 1px solid #dedede;
  display: block;
}
.list-columns a:hover {
  opacity: 0.8;
  transition: 0.3s ease all;
}
.list-columns h4 {
  display: inline-block;
  margin-bottom: 0;
}
.list-columns span {
  text-align: right;
  color: #dedede;
  float: right;
}

.list-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
  list-style: none;
}
.list-card li {
  margin-bottom: 2rem;
}
.list-card li a {
  display: block;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  height: 100%;
  text-decoration: none;
}
.list-card li a:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.list-card li a .image, .list-card li a .image-tall {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.list-card li a .card-content {
  padding: 1rem;
}
.list-card li a .card-content h3 {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  text-transform: none;
}
.list-card li a p {
  padding: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  text-transform: none;
}

.link {
  color: #000;
  transition: 0.4s;
}
.link:hover {
  color: #005587;
  text-decoration: none;
}

.breadcrumb {
  text-transform: uppercase;
  font-weight: 500;
  background-color: #f6f4f0;
  border-bottom: 1px solid #dedede;
  margin-bottom: 0;
}

.btn {
  background: transparent;
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  font-weight: 500;
  display: inline-block;
  font-size: 17px;
  line-height: 1.2;
  outline: none;
  padding: 12px 0;
  transition: 0.4s;
  vertical-align: bottom;
}
.btn:hover {
  background: #000;
  color: #fff;
}

.btn-big {
  min-width: 220px;
  padding: 12px;
}

.btn-clear, .list li a {
  color: #005587;
  display: inline-block;
  font-size: 18px;
  padding: 0 20px 0 0;
  position: relative;
  transition: all 0.3s ease;
  font-size: 17px;
  box-shadow: 0 2px 8px rgba(0, 91, 142, 0.1);
  border-radius: 6px;
  padding: 8px 16px 8px 0;
  overflow: hidden;
}
.btn-clear::before, .list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 91, 142, 0.15), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}
.btn-clear:hover, .list li a:hover {
  color: #000 !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 91, 142, 0.2);
}
.btn-clear:hover::before, .list li a:hover::before {
  left: 100%;
}
.btn-clear:active, .list li a:active {
  transform: translateY(-1px);
}

.btn-clear::after, .list li a::after {
  content: "";
  background-image: url("../images/arrow-right.svg");
  background-position: center bottom;
  display: inline-block;
  width: 10px;
  height: 8px;
  margin-left: 8px;
  background-size: 100%;
}

.image, .image-tall {
  height: 155px;
  background: #dedede;
  background-size: cover;
  background-position: center;
  color: #555;
}

.image--about {
  min-height: 275px;
}

.image-tall {
  min-height: 350px;
}

body {
  opacity: 1;
  transition: 0.4s;
}
body.hidden {
  opacity: 0;
  transition: 0s;
}

.footer-icon {
  margin-right: 20px;
}
.footer-icon:last-child {
  margin-right: 0;
}

.error-404 {
  min-height: 70%;
  min-height: calc(100% - 312px);
}

.bg-color-1 {
  background-color: #f6f4f0;
}

.intro_title, .intro_text {
  text-transform: none !important;
}

.list-card img {
  display: block;
  margin: 0 auto;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  background: none;
  opacity: 1;
  border: none;
  cursor: pointer;
}

/*.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0); // you can tone this down more if needed
  background-size: 60% 60%;
  width: 40px;
  height: 40px;
  border-radius: 0;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3)); // subtle contrast
}

.carousel-control-prev-icon {
  background-image: url('../images/arrow-left.svg'); // or use Bootstrap default

}

.carousel-control-next-icon {
  background-image: url('../images/arrow-right.svg'); // or use Bootstrap default
}*/
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin: 10;
  list-style: circle;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 50%;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  margin: 0 6px;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #333;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

/* --- Fix carousel bullets centering --- */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 50%;
  opacity: 0.6;
  margin: 0 5px;
  transition: opacity 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #333;
}

/* --- Enforce carousel fade transitions --- */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
  position: relative;
  z-index: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.carousel-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.carousel-content h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  pointer-events: auto;
}

.carousel-item {
  position: relative;
}
.carousel-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  top: 80%;
  left: 20px;
  right: auto;
  bottom: auto;
  transform: translateY(-50%);
  text-align: left;
  z-index: 5;
  color: white;
  max-width: 800px;
  padding: 0;
}
.carousel-caption h2 {
  padding: 0;
  margin: 0;
  display: inline-block;
  position: relative;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: none;
  font-family: "Inter", "Tw Cen MT", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6), 1px 2px 0 rgba(0, 0, 0, 0.9);
}
.carousel-caption h2 .caption-line {
  display: block;
  font-size: 2rem;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6), 1px 2px 0 rgba(0, 0, 0, 0.9);
}
@media (max-width: 768px) {
  .carousel-caption {
    top: 80%;
    left: 20px;
  }
  .carousel-caption h2 {
    font-size: 2rem;
    padding: 0;
    line-height: 1.2;
    letter-spacing: 0.005em;
  }
  .carousel-caption h2 .caption-line {
    font-size: 1.6rem;
    margin-top: 6px;
    letter-spacing: 0.01em;
  }
}
@media (max-width: 480px) {
  .carousel-caption {
    top: 75%;
    left: 15px;
  }
  .carousel-caption h2 {
    font-size: 1.7rem;
    padding: 0;
    line-height: 1.2;
    letter-spacing: 0.005em;
  }
  .carousel-caption h2 .caption-line {
    font-size: 1.4rem;
    margin-top: 5px;
    letter-spacing: 0.01em;
  }
}
@media (max-width: 360px) {
  .carousel-caption {
    top: 70%;
    left: 10px;
  }
  .carousel-caption h2 {
    font-size: 1.5rem;
    padding: 0;
    line-height: 1.2;
    letter-spacing: 0.005em;
  }
  .carousel-caption h2 .caption-line {
    font-size: 1.2rem;
    margin-top: 4px;
    letter-spacing: 0.01em;
  }
}

.footer {
  background: #1a355e;
  padding: 40px 0;
  color: #fff;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-logo {
  flex: 0 0 auto;
  text-align: center;
}
.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
  filter: none;
}
.footer-logo .tagline {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}
.footer-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 80px;
}
.footer-nav .nav-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-nav .nav-group a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s;
}
.footer-nav .nav-group a:hover {
  opacity: 0.8;
}
.footer-social {
  flex: 0 0 auto;
  display: flex;
  gap: 15px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  transition: opacity 0.2s;
}
.footer-social a img {
  width: 20px;
  height: 20px;
  filter: none;
}
.footer-social a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
  .footer .container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }
  .footer-nav {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
  .footer-nav .nav-group {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}
.margin-b-80 {
  margin-bottom: 40px;
}

.margin-b-40 {
  margin-bottom: 25px;
}

.margin-b-20 {
  margin-bottom: 15px;
}

.cover-carousel {
  margin-bottom: 40px;
}

.lead {
  margin-bottom: 1.5rem !important;
}

.row:not(:last-child) {
  margin-bottom: 30px;
}

.social-icons {
  margin-bottom: 30px;
}

[data-benefits-subtitle] {
  margin-bottom: 2rem !important;
}

.list-card {
  margin-top: 20px;
}

.glassdoor-card,
.twitter-feed {
  margin-bottom: 20px;
}

[data-dep-title],
[data-benefits-title],
[data-teamwork-title] {
  color: #005587;
}

[data-teamwork-title],
[data-benefits-title] {
  color: #005587 !important;
}

[data-teamwork-section] h2,
[data-benefits-section] h2 {
  color: #005587 !important;
}

#results-department-filter,
#state-department-filter {
  font-size: 14px;
}
#results-department-filter optgroup,
#state-department-filter optgroup {
  font-weight: 600;
  color: #005b8e;
  background-color: #f8fafc;
  font-size: 13px;
  padding: 4px 8px;
  border-bottom: 1px solid #e2e8f0;
}
#results-department-filter optgroup option,
#state-department-filter optgroup option {
  font-weight: 400;
  color: #4a5568;
  background-color: #ffffff;
  padding: 6px 8px;
  font-size: 13px;
}
#results-department-filter optgroup option:hover,
#state-department-filter optgroup option:hover {
  background-color: #f1f5f9;
}
#results-department-filter optgroup option[value*=" "],
#state-department-filter optgroup option[value*=" "] {
  font-style: italic;
}
#results-department-filter > option,
#state-department-filter > option {
  font-weight: 500;
  padding: 8px 12px;
}
#results-department-filter > option:first-child,
#state-department-filter > option:first-child {
  font-weight: 600;
  color: #1a202c;
}
#results-department-filter > option[value=Other],
#state-department-filter > option[value=Other] {
  border-top: 1px solid #e2e8f0;
  margin-top: 4px;
}

.why-qualderm-enhanced {
  padding: 60px 0 80px 0;
  position: relative;
}
.why-qualderm-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  opacity: 0.6;
  z-index: 0;
}
.why-qualderm-enhanced .container {
  position: relative;
  z-index: 1;
}
.why-qualderm-enhanced .content-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0, 91, 142, 0.08), 0 1px 2px rgba(0, 91, 142, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.why-qualderm-enhanced .content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}
.why-qualderm-enhanced .content-card h2 {
  font-size: 26px;
  font-weight: 600;
  color: #005587;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}
.why-qualderm-enhanced .content-card h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #005587, #0ea5e9);
  border-radius: 2px;
}
.why-qualderm-enhanced .content-card .text-content {
  max-width: 800px;
  margin: 0 auto;
}
.why-qualderm-enhanced .content-card .text-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #2d3748;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
}
.why-qualderm-enhanced .content-card .text-content p:last-of-type {
  margin-bottom: 0;
}

.btn.view-all-openings {
  margin-top: 2.5rem;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 91, 142, 0.2), 0 1px 3px rgba(0, 91, 142, 0.1);
  background: linear-gradient(135deg, #005587 0%, #0074b7 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.btn.view-all-openings::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.btn.view-all-openings:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 91, 142, 0.3), 0 3px 8px rgba(0, 91, 142, 0.15);
  text-decoration: none;
}
.btn.view-all-openings:hover::before {
  left: 100%;
}
.btn.view-all-openings:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .why-qualderm-enhanced {
    padding: 30px 0 40px 0;
  }
  .why-qualderm-enhanced .content-card {
    margin: 0 20px;
    padding: 32px 24px;
    border-radius: 20px;
  }
  .why-qualderm-enhanced .content-card h2 {
    font-size: 22px;
    margin-bottom: 1.5rem;
  }
  .why-qualderm-enhanced .content-card h2::after {
    width: 40px;
    height: 2px;
  }
  .why-qualderm-enhanced .content-card .text-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .why-qualderm-enhanced .btn.view-all-openings {
    margin-top: 2rem;
    padding: 14px 28px;
    font-size: 1rem;
  }
  .btn.explore-opportunities {
    margin-top: 2rem;
    padding: 14px 28px !important;
    font-size: 1rem !important;
  }
}
@media (max-width: 480px) {
  .why-qualderm-enhanced .content-card {
    margin: 0 16px;
    padding: 24px 20px;
  }
  .why-qualderm-enhanced .content-card h2 {
    font-size: 22px;
  }
  .why-qualderm-enhanced .btn.view-all-openings {
    padding: 12px 24px;
    font-size: 0.95rem;
    margin-top: 1.5rem;
  }
  .why-qualderm-enhanced .btn.explore-opportunities {
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
    margin-top: 1.5rem;
  }
}
.btn-primary {
  background-color: #005587 !important;
  color: #fff !important;
  border: 1px solid #005587 !important;
  border-radius: 4px;
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.btn-primary:hover {
  background-color: rgb(0, 52.8888888889, 84) !important;
  border-color: rgb(0, 52.8888888889, 84) !important;
  color: #fff !important;
}

.btn.btn-primary {
  background-color: #005587 !important;
  color: #fff !important;
  border-color: #005587 !important;
}

a.btn.btn-primary,
a.btn-primary,
.btn-primary a,
a[href*=apply].btn {
  background-color: #005587 !important;
  background: #005587 !important;
  color: #fff !important;
  border: 1px solid #005587 !important;
  border-color: #005587 !important;
  text-decoration: none !important;
}
a.btn.btn-primary:hover, a.btn.btn-primary:focus, a.btn.btn-primary:active,
a.btn-primary:hover,
a.btn-primary:focus,
a.btn-primary:active,
.btn-primary a:hover,
.btn-primary a:focus,
.btn-primary a:active,
a[href*=apply].btn:hover,
a[href*=apply].btn:focus,
a[href*=apply].btn:active {
  background-color: rgb(0, 52.8888888889, 84) !important;
  background: rgb(0, 52.8888888889, 84) !important;
  color: #fff !important;
  border-color: rgb(0, 52.8888888889, 84) !important;
}

body[data-page=apply] .header .header-inner {
  height: 110px;
}
body[data-page=apply] .logo img {
  height: 80px !important;
  width: auto;
  max-height: none !important;
  max-width: none !important;
}
body[data-page=apply] .logo {
  top: 15px;
}
body[data-page=apply] .main {
  padding-top: 110px;
}
body[data-page=apply] .breadcrumb {
  padding-top: 10px;
  padding-bottom: 10px;
}

.explore-button-container {
  margin-top: 40px;
  margin-bottom: 20px;
  width: 100%;
}

.btn.explore-opportunities {
  font-size: 1rem;
  min-width: 220px;
  cursor: pointer;
  margin-top: 2.5rem;
  padding: 16px 32px !important;
  font-size: 1.1rem !important;
  font-weight: 600;
  border-radius: 12px !important;
  text-decoration: none;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 91, 142, 0.2), 0 1px 3px rgba(0, 91, 142, 0.1) !important;
  background: linear-gradient(135deg, #005587 0%, #0074b7 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  position: relative;
  overflow: hidden;
}
.btn.explore-opportunities::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.btn.explore-opportunities:hover {
  cursor: pointer;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(0, 91, 142, 0.3), 0 3px 8px rgba(0, 91, 142, 0.15) !important;
  text-decoration: none;
  background: linear-gradient(135deg, #005587 0%, #0074b7 100%) !important;
}
.btn.explore-opportunities:hover::before {
  left: 100%;
}
.btn.explore-opportunities:active {
  transform: translateY(-1px) !important;
}

[data-dep-desc] {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 0;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

[data-dep-title] {
  font-size: 26px;
  margin-bottom: 24px;
  font-weight: 600;
}

.subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 1.5rem;
  font-weight: 500;
  margin-top: 10px;
}

.testimonials-section {
  background-color: #f8f9fa;
}
.testimonials-section h2 {
  color: #005587;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
}
.testimonials-section h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #005b8e, #0ea5e9);
  border-radius: 2px;
}
.testimonials-section .row {
  display: flex;
  flex-wrap: wrap;
}
.testimonials-section .video-testimonial,
.testimonials-section .testimonial-card {
  height: 100%;
  margin-bottom: 2rem;
}

.video-testimonial {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  max-width: 1000px;
  margin: 0 auto 40px;
}
.video-testimonial .embed-responsive {
  position: relative;
  width: 100%;
  height: 350px;
}
.video-testimonial .embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.testimonial-card .testimonial-image {
  width: 30%;
  min-width: 30%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.testimonial-card .testimonial-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 91, 142, 0.1) 0%, transparent 50%);
}
.testimonial-card .testimonial-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.testimonial-card .testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
  position: relative;
}
.testimonial-card .testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: rgba(0, 91, 142, 0.2);
  position: absolute;
  top: -10px;
  left: -15px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card .testimonial-author {
  font-weight: 600;
  color: #005587;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}
.testimonial-card .testimonial-position {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.4;
}
.testimonial-card .testimonial-image[style*="display: none"] {
  display: none !important;
}
.testimonial-card .testimonial-image[style*="display: none"] + .testimonial-content {
  width: 100% !important;
  flex: 1 !important;
  text-align: center;
  padding: 2.5rem;
}

@media (max-width: 992px) and (min-width: 769px) {
  .testimonial-card .testimonial-content {
    padding: 1.5rem;
  }
  .testimonial-card .testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  .video-testimonial .embed-responsive {
    height: 250px;
  }
  .testimonial-card {
    margin-bottom: 2rem;
    flex-direction: column;
  }
  .testimonial-card .testimonial-image {
    width: 100%;
    height: 220px;
    min-width: auto;
  }
  .testimonial-card .testimonial-content {
    padding: 1.5rem;
  }
  .testimonial-card .testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .testimonial-card .testimonial-text::before {
    top: -5px;
    left: -10px;
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .testimonial-card .testimonial-image {
    height: 200px;
  }
  .testimonial-card .testimonial-content {
    padding: 1.25rem;
  }
  .testimonial-card .testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  .testimonial-card .testimonial-text::before {
    font-size: 2rem;
    top: -3px;
    left: -8px;
  }
  .testimonial-card .testimonial-author {
    font-size: 1rem;
  }
  .testimonial-card .testimonial-position {
    font-size: 0.9rem;
  }
}
.benefits-overview-section {
  background-color: #fff;
}
.benefits-overview-section h2 {
  color: #005587;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.3;
  position: relative;
  text-align: center;
}
.benefits-overview-section h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #005b8e, #0ea5e9);
  border-radius: 2px;
}
.benefits-overview-section .benefits-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .benefits-overview-section h2 {
    font-size: 22px;
    padding: 0 15px;
  }
  .benefits-overview-section .benefits-description p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 15px;
  }
}
.locations-section {
  background-color: #fff;
  padding: 80px 0;
}
.locations-section h2 {
  color: #005587;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
}
.locations-section h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #005b8e, #0ea5e9);
  border-radius: 2px;
}
.locations-section .map-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.locations-section .map-container #us-map {
  width: 100%;
  height: auto;
  display: block;
}

.map-tooltip {
  position: absolute;
  display: none;
  z-index: 1000;
  pointer-events: none;
  transform: translateX(-50%);
}
.map-tooltip .location-tooltip {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 12px 16px;
  min-width: 200px;
}
.map-tooltip .location-tooltip h4 {
  color: #005587;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.2;
}
.map-tooltip .location-tooltip p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

:root {
  --state-fill: #e0e0e0;
  --state-hover: #c0c0c0;
  --headquarters-fill: #005587;
  --headquarters-hover: #003d66;
}

#us-map path {
  fill: var(--state-fill);
  transition: fill 0.3s ease;
}
#us-map path.state-hover:hover {
  fill: var(--state-hover);
  cursor: pointer;
}
#us-map path.headquarters {
  fill: var(--headquarters-fill);
}
#us-map path.headquarters:hover {
  fill: var(--headquarters-hover);
}

@media (max-width: 768px) {
  .locations-section {
    padding: 40px 0;
  }
  .locations-section h2 {
    font-size: 22px;
  }
  .locations-section .map-container {
    padding: 0 15px;
  }
}
.custom-tooltip {
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0;
  margin-bottom: 10px;
}
.custom-tooltip::before {
  display: none;
}
.custom-tooltip .location-tooltip {
  padding: 12px 16px;
}
.custom-tooltip .location-tooltip h4 {
  color: #005587;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.2;
}
.custom-tooltip .location-tooltip p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

#show-more-jobs-btn {
  display: block;
  margin: 30px auto 0 auto;
  text-align: center;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 91, 142, 0.2), 0 1px 3px rgba(0, 91, 142, 0.1);
  background: linear-gradient(135deg, #005587 0%, #0074b7 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
#show-more-jobs-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
#show-more-jobs-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 91, 142, 0.3), 0 3px 8px rgba(0, 91, 142, 0.15);
  text-decoration: none;
  color: #fff;
}
#show-more-jobs-btn:hover::before {
  left: 100%;
}
#show-more-jobs-btn:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  #show-more-jobs-btn {
    margin: 20px auto 0 auto;
    padding: 14px 28px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  #show-more-jobs-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    margin: 15px auto 0 auto;
  }
}
/* Department Intro Enhanced - Matching Why Qualderm Styling */
.department-intro-enhanced {
  padding: 60px 0 80px 0;
  position: relative;
}
.department-intro-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  opacity: 0.6;
  z-index: 0;
}
.department-intro-enhanced .container {
  position: relative;
  z-index: 1;
}
.department-intro-enhanced .content-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0, 91, 142, 0.08), 0 1px 2px rgba(0, 91, 142, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.department-intro-enhanced .content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}
.department-intro-enhanced .content-card h2 {
  font-size: 26px;
  font-weight: 600;
  color: #005587;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}
.department-intro-enhanced .content-card h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #005587, #0ea5e9);
  border-radius: 2px;
}
.department-intro-enhanced .content-card .text-content {
  max-width: 800px;
  margin: 0 auto;
}
.department-intro-enhanced .content-card .text-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 1.5rem;
  text-align: center;
}
.department-intro-enhanced .content-card .text-content p:first-of-type {
  font-weight: 500;
  color: #2d3748;
}
.department-intro-enhanced .content-card .text-content p:last-of-type {
  margin-bottom: 0;
}

/* Responsive design for department intro enhanced */
@media (max-width: 768px) {
  .department-intro-enhanced {
    padding: 30px 0 40px 0;
  }
  .department-intro-enhanced .content-card {
    padding: 32px 24px;
    border-radius: 16px;
  }
  .department-intro-enhanced .content-card h2 {
    font-size: 22px;
  }
  .department-intro-enhanced .content-card .text-content p {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .department-intro-enhanced .content-card {
    padding: 24px 20px;
  }
  .department-intro-enhanced .content-card h2 {
    font-size: 22px;
  }
}
.float-line {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.float-line:after {
  content: "";
  flex: 1;
  height: 1px;
  background: #dedede;
  display: inline-block;
}
.float-line span {
  padding-right: 10px;
}

.job__content p {
  margin-bottom: 20px;
}
.job__content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.job__content ul li {
  line-height: 32px;
}

@media (min-width: 768px) {
  .job__content--section {
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .job__sidebar {
    padding-top: 60px;
  }
}
.job__sidebar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.job__sidebar ul li {
  padding: 0 0 40px;
}

.application-form {
  height: 1650px;
}

.share-icon {
  text-decoration: none;
  display: inline-block;
  padding: 5px 10px 5px 0;
  margin: 0;
  float: left;
}
.share-icon img {
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}
.share-icon img:hover {
  opacity: 0.8;
  transition: 0.3s ease all;
}

.section h2 {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .section h2 {
    margin-top: 1.5rem;
  }
}
.section:first-of-type h2 {
  margin-top: 0;
}

.why-work-here-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 100px 0 80px 0;
  position: relative;
}
.why-work-here-section .container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
}
.why-work-here-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}
.why-work-here-section h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #005b8e, #0ea5e9);
  border-radius: 2px;
}
.why-work-here-section .why-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 35px 45px;
  height: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  border: 1px solid rgba(0, 91, 142, 0.08);
  position: relative;
  margin: 0 15px;
}
.why-work-here-section .why-card .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
}
.why-work-here-section .why-card .icon-container .why-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 87, 135, 0.2);
}
.why-work-here-section .why-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #005b8e;
  margin: 0 0 1.25rem 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
}
.why-work-here-section .why-card p {
  font-size: 1rem;
  color: #4a5568;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .why-work-here-section {
    padding: 60px 0 40px 0;
  }
  .why-work-here-section h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .why-work-here-section .why-card {
    padding: 28px 35px;
    margin-bottom: 2rem;
    height: 460px;
    width: 100%;
    margin: 0 10px 2rem 10px;
  }
  .why-work-here-section .why-card .icon-container {
    margin-bottom: 1.8rem;
  }
  .why-work-here-section .why-card .icon-container .why-icon {
    width: 56px;
    height: 56px;
  }
  .why-work-here-section .why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .why-work-here-section .why-card p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

html, body {
  overflow-x: hidden;
}

.header {
  box-sizing: border-box;
}
.header .header-inner {
  box-sizing: border-box;
  min-height: 90px;
  width: 100%;
  max-width: 100%;
}

.logo {
  position: absolute;
  top: 15px !important;
  left: 20px !important;
  z-index: 999 !important;
}
.logo img {
  max-height: 90px !important;
  width: auto;
  display: block;
}

.carousel-caption {
  left: 20px !important;
  z-index: 500;
}

.cover, .cover-home {
  padding-top: 160px !important;
}
@media (min-width: 992px) {
  .cover, .cover-home {
    padding-top: 220px !important;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 90px !important;
  }
  .cover, .cover-home {
    padding-top: 140px !important;
  }
}
@media (max-width: 576px) {
  .logo {
    top: 15px !important;
    left: 20px !important;
  }
}
.carousel-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.carousel-caption h2 {
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border-radius: none !important;
  padding: 0 !important;
}
.carousel-caption h2 .caption-line {
  display: block !important;
  margin-top: 8px !important;
  font-size: 85% !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
}

.section p[data-home-short-desc],
.section p[data-home-long-desc] {
  font-family: "Roboto", Arial, sans-serif !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
  font-weight: normal !important;
  margin-bottom: 1rem !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
.section p[data-home-short-desc] {
  color: #000 !important;
}
.section p[data-home-long-desc] {
  color: #000 !important;
}

.benefits-grid .benefit-item,
.benefit-card {
  text-align: center;
  padding: 20px;
}
.benefits-grid .benefit-item .benefit-icon,
.benefits-grid .benefit-item .benefit-icon-img,
.benefit-card .benefit-icon,
.benefit-card .benefit-icon-img {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
  fill: #2B6CA3 !important;
  color: #2B6CA3 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
.benefits-grid .benefit-item .benefit-title,
.benefit-card .benefit-title {
  color: #2B6CA3;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.benefits-grid .benefit-item .benefit-description,
.benefit-card .benefit-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .benefits-grid .benefit-item,
  .benefit-card {
    margin-bottom: 2rem;
  }
  .benefits-grid .benefit-item .benefit-icon,
  .benefits-grid .benefit-item .benefit-icon-img,
  .benefit-card .benefit-icon,
  .benefit-card .benefit-icon-img {
    width: 56px;
    height: 56px;
  }
  .benefits-grid .benefit-item .benefit-title,
  .benefit-card .benefit-title {
    font-size: 1rem;
  }
  .benefits-grid .benefit-item .benefit-description,
  .benefit-card .benefit-description {
    font-size: 0.9rem;
  }
}
.connect-section {
  padding: 2rem;
  text-align: center;
}
.connect-section h2 {
  color: #2B6CA3;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.twitter-feed {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.twitter-feed .twitter-header {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.twitter-feed .twitter-header h2.text-primary {
  color: #2B6CA3 !important;
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.twitter-feed .twitter-timeline {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}
.twitter-feed .twitter-timeline .social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.twitter-feed .twitter-timeline .social-icons .social-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.twitter-feed .twitter-timeline .social-icons .social-icon:hover {
  transform: translateY(-2px);
}
.twitter-feed .twitter-timeline .social-icons .social-icon img {
  width: 24px;
  height: 24px;
}

.carousel-caption--dermatology h2 {
  padding: 0 !important;
  max-width: 700px !important;
  width: auto !important;
  white-space: normal !important;
}

body[data-page=job] .header {
  min-height: 140px !important;
  height: 140px !important;
  max-height: none !important;
  background: #f8f7f2 !important; /* Restore original color */
}

body[data-page=job] .header-inner {
  min-height: 140px !important;
  height: 140px !important;
  max-height: none !important;
  display: flex !important;
  align-items: center !important;
}

body[data-page=job] .logo {
  position: absolute !important;
  top: 25px !important;
  left: 20px !important;
  margin-left: 0;
}

body[data-page=job] .logo img {
  max-height: 90px !important;
  height: auto !important;
  max-width: none !important;
  width: auto !important;
}

body[data-page=job] .breadcrumb {
  margin-top: 20px !important;
}

body[data-page=job] main, body[data-page=job] .main, body[data-page=job] .container {
  padding-top: 40px !important;
}

body[data-page=job] .breadcrumb, body[data-page=department] .breadcrumb {
  padding-top: 10px !important;
  padding-bottom: 15px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 40px !important;
}
body[data-page=job] .section, body[data-page=department] .section {
  padding-top: 20px !important;
  padding-bottom: 60px !important;
}
body[data-page=job] main, body[data-page=job] .main, body[data-page=department] main, body[data-page=department] .main {
  padding-top: 20px !important;
}
body[data-page=job] .list-header, body[data-page=department] .list-header {
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 15px 0 !important;
  background-color: #f8f9fa !important;
  border-radius: 4px 4px 0 0 !important;
  font-weight: 600 !important;
  border-bottom: 2px solid #dee2e6 !important;
  border-left: 1px solid #dee2e6 !important;
  border-right: 1px solid #dee2e6 !important;
  border-top: 1px solid #dee2e6 !important;
  width: 100% !important;
}
body[data-page=job] .list-header .col-md-3, body[data-page=department] .list-header .col-md-3 {
  padding-left: 23px !important;
  padding-right: 12px !important;
}
body[data-page=job] .list-header .col-md-3:first-child, body[data-page=department] .list-header .col-md-3:first-child {
  padding-left: 27px !important;
}
body[data-page=job] .list-header .col-md-3:nth-child(2), body[data-page=department] .list-header .col-md-3:nth-child(2) {
  padding-left: 18px !important;
}
body[data-page=job] .list-header .col-md-3:nth-child(3), body[data-page=department] .list-header .col-md-3:nth-child(3) {
  padding-left: 18px !important;
}
body[data-page=job] .list-header .col-md-3:last-child, body[data-page=department] .list-header .col-md-3:last-child {
  padding-right: 25px !important;
}
body[data-page=job] .row.margin-b-20, body[data-page=department] .row.margin-b-20 {
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 15px 0 20px 0 !important;
  background-color: #fff !important;
  border-left: 1px solid #dee2e6 !important;
  border-right: 1px solid #dee2e6 !important;
  width: 100% !important;
}
body[data-page=job] .row.margin-b-20 .col-md-3, body[data-page=department] .row.margin-b-20 .col-md-3 {
  padding-left: 23px !important;
  padding-right: 12px !important;
}
body[data-page=job] .row.margin-b-20 .col-md-3:first-child, body[data-page=department] .row.margin-b-20 .col-md-3:first-child {
  padding-left: 27px !important;
}
body[data-page=job] .row.margin-b-20 .col-md-3:nth-child(2), body[data-page=department] .row.margin-b-20 .col-md-3:nth-child(2) {
  padding-left: 18px !important;
}
body[data-page=job] .row.margin-b-20 .col-md-3:nth-child(3), body[data-page=department] .row.margin-b-20 .col-md-3:nth-child(3) {
  padding-left: 18px !important;
}
body[data-page=job] .row.margin-b-20 .col-md-3:last-child, body[data-page=department] .row.margin-b-20 .col-md-3:last-child {
  padding-right: 25px !important;
}
body[data-page=job] .row.margin-b-20 .form-control, body[data-page=department] .row.margin-b-20 .form-control {
  border-radius: 4px !important;
  border: 1px solid #ced4da !important;
  padding: 8px 12px !important;
  font-size: 14px !important;
  width: 100% !important;
}
body[data-page=job] .list, body[data-page=department] .list {
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border: 1px solid #dee2e6 !important;
  border-top: none !important;
  border-radius: 0 0 4px 4px !important;
  width: 100% !important;
}
body[data-page=job] .list li, body[data-page=department] .list li {
  padding: 15px 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body[data-page=job] .list li .col-md-3, body[data-page=department] .list li .col-md-3 {
  padding-left: 23px !important;
  padding-right: 12px !important;
}
body[data-page=job] .list li .col-md-3:first-child, body[data-page=department] .list li .col-md-3:first-child {
  padding-left: 27px !important;
}
body[data-page=job] .list li .col-md-3:nth-child(2), body[data-page=department] .list li .col-md-3:nth-child(2) {
  padding-left: 18px !important;
}
body[data-page=job] .list li .col-md-3:nth-child(3), body[data-page=department] .list li .col-md-3:nth-child(3) {
  padding-left: 18px !important;
}
body[data-page=job] .list li .col-md-3:last-child, body[data-page=department] .list li .col-md-3:last-child {
  padding-right: 25px !important;
  text-align: right !important;
}

@media (max-width: 768px) {
  body[data-page=job] .breadcrumb, body[data-page=department] .breadcrumb {
    padding-top: 8px !important;
    padding-bottom: 12px !important;
  }
  body[data-page=job] .section, body[data-page=department] .section {
    padding-top: 15px !important;
    padding-bottom: 40px !important;
  }
  body[data-page=job] main, body[data-page=job] .main, body[data-page=department] main, body[data-page=department] .main {
    padding-top: 15px !important;
  }
  body[data-page=job] .list-header, body[data-page=department] .list-header {
    display: none !important;
  }
  body[data-page=job] .row.margin-b-20, body[data-page=department] .row.margin-b-20 {
    border: none !important;
    padding: 10px 15px 15px 15px !important;
  }
  body[data-page=job] .row.margin-b-20 .col-12, body[data-page=job] .row.margin-b-20 .col-md-3, body[data-page=department] .row.margin-b-20 .col-12, body[data-page=department] .row.margin-b-20 .col-md-3 {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-bottom: 10px !important;
  }
  body[data-page=job] .row.margin-b-20 .col-12:last-child, body[data-page=job] .row.margin-b-20 .col-md-3:last-child, body[data-page=department] .row.margin-b-20 .col-12:last-child, body[data-page=department] .row.margin-b-20 .col-md-3:last-child {
    margin-bottom: 0 !important;
  }
  body[data-page=job] .list, body[data-page=department] .list {
    border: none !important;
    border-radius: 0 !important;
  }
  body[data-page=job] .list li, body[data-page=department] .list li {
    padding: 15px !important;
  }
  body[data-page=job] .list li .col-12, body[data-page=department] .list li .col-12 {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-bottom: 8px !important;
  }
  body[data-page=job] .list li .col-12:last-child, body[data-page=department] .list li .col-12:last-child {
    text-align: left !important;
    margin-bottom: 0 !important;
  }
}
.image--about {
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
}
.image--about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .image--about {
    height: 200px;
  }
}
.breadcrumb .container {
  visibility: hidden;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.social-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
  border: 2.5px solid #e3f0ff;
  transition: transform 0.22s cubic-bezier(0.4, 0.2, 0.6, 1), box-shadow 0.22s, border-color 0.22s;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.social-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(0, 85, 135, 0.18);
  border-color: #b3d6f7;
  background: #f8fafc;
}

.social-icon .icon {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
}

.social-icon-group {
  gap: 80px;
}

.icon-label {
  margin-top: 1rem;
  font-size: 1.18rem;
  color: #2b6ca3;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  user-select: none;
}

@media (max-width: 768px) {
  .social-icons {
    gap: 20px;
  }
  .social-icon {
    width: 70px;
    height: 70px;
  }
  .social-icon .icon {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
  .icon-label {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  .social-icon-group {
    gap: 28px;
  }
}
.glassdoor-card, .twitter-feed {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  height: 100%;
}

.glassdoor-brand, .twitter-header {
  padding: 15px 20px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.glassdoor-brand img, .twitter-header img {
  height: 24px;
  width: auto;
}
.glassdoor-brand span, .twitter-header span {
  font-weight: 600;
  color: #333;
}

.glassdoor-review {
  padding: 20px;
}

.review-header {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.company-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review-content {
  flex-grow: 1;
}

.pros-heading {
  color: #2da562;
  font-size: 17px;
  margin-bottom: 8px;
}

.cons-heading {
  color: #cf2127;
  font-size: 17px;
  margin-bottom: 8px;
  margin-top: 16px;
}

.review-date {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.rating-stars {
  color: #0077C8;
  margin-bottom: 5px;
}

.review-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.reviewer {
  color: #666;
  font-size: 14px;
}

.recommends-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 15px;
}

.recommends {
  color: #28a745;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 17px;
}

.review-links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-links a {
  color: #0077C8;
  text-decoration: none;
  font-size: 17px;
}
.review-links a:hover {
  text-decoration: underline;
}

.twitter-timeline {
  padding: 20px;
  min-height: 400px;
}

.twitter-feed {
  background: linear-gradient(135deg, #f8fafc 0%, #e3f0ff 100%);
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.connect-subtitle {
  color: #4a6fa1;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.social-icons-curve {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 2.5rem;
}

.social-icon-group {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 60px;
  width: 100%;
}

.social-icon-group .social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  /* Curve effect */
}

.social-icon-group .social-icon:nth-child(1) {
  transform: translateY(18px) rotate(-8deg);
}

.social-icon-group .social-icon:nth-child(2) {
  transform: translateY(0);
}

.social-icon-group .social-icon:nth-child(3) {
  transform: translateY(18px) rotate(8deg);
}

.icon-label {
  margin-top: 0.7rem;
  font-size: 1.05rem;
  color: #4a6fa1;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  user-select: none;
}

.social-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.25s cubic-bezier(0.4, 2, 0.6, 1);
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.social-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(0, 85, 135, 0.18);
  border-color: #b3d6f7;
  background: #f8fafc;
}

.social-icon .icon {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .social-icons-curve {
    margin-top: 1.5rem;
  }
  .social-icon-group {
    gap: 20px;
  }
  .social-icon {
    width: 60px;
    height: 60px;
  }
  .social-icon .icon {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
  .icon-label {
    font-size: 0.95rem;
    margin-top: 0.4rem;
  }
  .social-icon-group .social-icon:nth-child(1),
  .social-icon-group .social-icon:nth-child(3) {
    transform: translateY(8px) rotate(-6deg);
  }
}
.connect-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 15px 30px 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.connect-section .connect-header {
  text-align: center;
  margin-bottom: 35px;
  margin-top: 0;
}
.connect-section .connect-header h2 {
  color: #2B6CA3;
  font-size: 26px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.connect-section .connect-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #005b8e, #0ea5e9);
  border-radius: 2px;
}
.connect-section .connect-header .connect-subtitle {
  color: #6c757d;
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
  margin-top: 16px;
}

.social-links-professional {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.social-links-professional .social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.social-links-professional .social-link:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.social-links-professional .social-link[href*=linkedin]:hover {
  border-color: #0077b5;
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.15);
}
.social-links-professional .social-link[href*=youtube]:hover {
  border-color: #ff0000;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.15);
}
.social-links-professional .social-link[href*=facebook]:hover {
  border-color: #1877f2;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.15);
}
.social-links-professional .social-link .social-icon-professional {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
  background: transparent;
}
.social-links-professional .social-link .social-icon-professional img {
  width: 24px;
  height: 24px;
}
.social-links-professional .social-link .social-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.social-links-professional .social-link .social-info .social-platform {
  color: #2B6CA3;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.1;
  margin-bottom: 2px;
}
.social-links-professional .social-link .social-info .social-description {
  color: #6c757d;
  font-size: 0.75rem;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .connect-section {
    padding: 30px 20px;
    margin-bottom: 2rem;
  }
  .connect-section .connect-header {
    margin-bottom: 25px;
  }
  .connect-section .connect-header h2 {
    font-size: 22px;
  }
  .connect-section .connect-header .connect-subtitle {
    font-size: 0.95rem;
  }
  .social-links-professional {
    gap: 8px;
  }
  .social-links-professional .social-link {
    padding: 12px 16px;
  }
  .social-links-professional .social-link .social-icon-professional {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }
  .social-links-professional .social-link .social-icon-professional img {
    width: 24px;
    height: 24px;
  }
  .social-links-professional .social-link .social-info .social-platform {
    font-size: 0.9rem;
  }
  .social-links-professional .social-link .social-info .social-description {
    font-size: 0.75rem;
  }
}
.loading-indicator {
  display: none;
  padding: 40px 20px;
  color: #6c757d;
  font-size: 1.1rem;
  position: relative;
}
.loading-indicator.loading {
  display: block;
}
.loading-indicator::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #005b8e;
  border-radius: 50%;
  animation: loading-spin 1s linear infinite;
  vertical-align: middle;
}

@keyframes loading-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
[data-loading=map].loading + #us-map {
  opacity: 0.3;
  pointer-events: none;
}

[data-loading=jobs].loading ~ .list {
  opacity: 0.3;
  pointer-events: none;
}

.api-error {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}
.api-error h4 {
  color: #dc3545;
  margin-bottom: 1rem;
}
.api-error .btn {
  margin-top: 1rem;
}

.map-container {
  position: relative;
  min-height: 400px;
}
.map-container .loading-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.retry-indicator {
  background: #fff3cd;
  border: 1px solid #ffecb5;
  color: #856404;
  padding: 12px 16px;
  border-radius: 6px;
  margin: 10px 0;
  font-size: 0.9rem;
}
.retry-indicator .retry-count {
  font-weight: 600;
}

.location-search-container {
  position: relative;
}
.location-search-container .location-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.location-search-container .location-suggestions.show {
  display: block;
}
.location-search-container .location-suggestions .suggestion-item {
  padding: 10px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  transition: background-color 0.2s ease;
}
.location-search-container .location-suggestions .suggestion-item:hover, .location-search-container .location-suggestions .suggestion-item.highlighted {
  background-color: #f8f9fa;
}
.location-search-container .location-suggestions .suggestion-item:last-child {
  border-bottom: none;
}
.location-search-container .location-suggestions .suggestion-item .suggestion-text {
  color: #333;
}
.location-search-container .location-suggestions .suggestion-item .suggestion-match {
  font-weight: 600;
  color: #2B6CA3;
}
.location-search-container .location-suggestions .no-suggestions {
  padding: 10px 12px;
  color: #666;
  font-style: italic;
  text-align: center;
}