/* Culture / Value Cards Base & Hover */
.value-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #eee;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(255, 69, 0, 0.3);
}

.value-card .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background-color: rgba(255, 69, 0, 0.1);
  color: var(--orange, #ff4500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.value-card:hover .icon-box {
  background-color: var(--orange, #ff4500);
  color: #ffffff;
  transform: scale(1.08);
}

/* Open Positions Career Cards Hover Setup */
.career-card {
  background-color: #ffffff;
  border-radius: 24px 0 24px 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

/* Top Accent Orange Border line on hover */
.career-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange, #ff4500);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.career-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(255, 69, 0, 0.2);
}

.career-card:hover::before {
  opacity: 1;
}

/* Button & Arrow animation on card hover */
.career-card .btn-outline-dark {
  transition: all 0.3s ease;
}

.career-card:hover .btn-outline-dark {
  background-color: var(--orange, #ff4500);
  border-color: var(--orange, #ff4500);
  color: #ffffff !important;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

/* Title Color shift on hover */
.career-card h3 {
  transition: color 0.3s ease;
}

.career-card:hover h3 {
  color: var(--orange, #ff4500) !important;
}
.hero h1,
.hero h1 .line,
.hero h1 .line > span {
  width: auto !important;
  max-width: none !important;
  overflow: visible !important;
  white-space: normal !important;
}
.hero h1 .line {
  display: block;
  width: fit-content;
  max-width: 100%;
  overflow: visible !important;
  padding-right: 12px;
}

.hero h1 .line .accent {
  display: inline-block;
  padding-right: 6px;
}
