:root {
  --background: #09090b;
  --foreground: #fafafa;
  --primary: #facc15;
  --primary-foreground: #000;
  --border: #27272a;
  --muted: #18181b;
  --card: #18181b;
  --text-gray: #a1a1aa;
  --golden: #FFA629;
}

html {
  scroll-behavior: smooth;

}

#current-openings:focus {
  outline: none;
}

.view-open-positions-link {

  display: inline-block;
  padding: 12px 24px;
  background: #4a6bff;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  outline: none;
}

.view-open-positions-link:hover {
  background: #3a5bef;
}

.hero-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 2vw;
}

.career-hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 540px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: #fafafa;
}

.title-line {
  display: block;
}

.title-highlight {
  color: #facc15;
  position: relative;
  display: inline-block;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #facc15;
  border-radius: 2px;
}

.hero-description {
  font-size: 1.15rem;
  color: #a1a1aa;
  margin-bottom: 2.2rem;
  max-width: 500px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;

}

#viewOpenPositionsBtn {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#viewOpenPositionsBtn:hover {
  transform: translateY(-2px);
}

#viewOpenPositionsBtn:active {
  transform: translateY(0);
}

.hero-cta button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 8px;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.slash-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 8px;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slash-arrow-icon svg {
  width: 100%;
  height: 100%;
  color: #000;
  font-weight: 800;
  stroke: currentColor;
  stroke-width: 1;
  fill: currentColor;
}

button:hover .slash-arrow-icon {
  transform: translateX(4px) rotate(15deg);
}



/* Hover Effects */
.hero-cta button:hover {
  background-color: #eab308;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
}

.hero-cta button:hover .slash-arrow-icon {
  transform: translateX(4px);
}

/* 
.cta-button {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background: #1e293b !important;
  color: #FFA629 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 41, 59, 0.18);
}

.cta-button .cta-icon {
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
  transform: translateX(4px);
} */

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a1a1aa;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.scroll-icon {
  width: 20px;
  height: 30px;
  border: 2px solid #a1a1aa;
  border-radius: 10px;
  position: relative;
}

.scroll-icon::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 8px;
  background: #facc15;
  border-radius: 2px;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollHint 2s infinite;
}

@keyframes scrollHint {

  0%,
  20% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 10px);
    opacity: 0;
  }
}

.hero-visual {
  flex: 1 1 320px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 320px;
}

.visual-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 100%;
}

.hero-img {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 12px;
  animation: float 6s ease-in-out infinite;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

.tech-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.1);
  z-index: 1;
}

.tech-circle:nth-child(1) {
  width: 120px;
  height: 120px;
  top: -20px;
  left: -20px;
  animation: pulse 4s ease-in-out infinite alternate;
}

.tech-circle:nth-child(2) {
  width: 180px;
  height: 180px;
  bottom: -40px;
  right: -40px;
  animation: pulse 5s ease-in-out infinite alternate-reverse;
}

.tech-circle:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 60px;
  left: 30px;
  animation: pulse 3s ease-in-out infinite alternate;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }

  100% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}

.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.circle-1 {
  width: 320px;
  height: 320px;
  background: #facc15;
  top: -80px;
  left: -80px;
}

.circle-2 {
  width: 220px;
  height: 220px;
  background: #FAFF00;
  bottom: -120px;
  right: -120px;
}

.circle-3 {
  width: 120px;
  height: 120px;
  background: #facc15;
  bottom: 40px;
  left: 60px;
}

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    gap: 2.2rem;
    text-align: center;
    padding: 2.5rem 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    min-height: 220px;
  }

  .title-highlight::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    gap: 2.2rem;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 30px;
  }


  .hero-title {
    font-size: 1.6rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1.1rem;
  }

  .hero-scroll-hint {
    margin-top: 1rem;
  }

  .hero-img {
    max-width: 320px;
  }
}

@media (max-width: 480px) {


  .hero-title {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    background: #facc15 !important;
    color: #000 !important;


  }

  .hero-img {
    max-width: 200px;
  }
}

.why-join-us {
  background-color: #09090B;
  color: #FAFAFA;
  margin-top: 100px;
  margin-bottom: 100px;
}

.wjs-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}



.wjs-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FAFAFA;
  text-align: center;

}

.wjs-description {
  font-size: 1.125rem;
  color: #A1A1AA;
  line-height: 1.6;
}


@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.wjs-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-box {
  padding: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(to right,
      #383535 0%,
      #1A1818 25%,
      #0C0B0B 50%,
      #29272B 75%,
      #282829 100%);
  text-align: left;
  transition: transform 0.3s ease;
  animation: zoomIn 0.6s ease forwards;
  opacity: 0;
}

.stat-box:nth-child(1) {
  animation-delay: 0s;
}

.stat-box:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-box:nth-child(3) {
  animation-delay: 0.4s;
}

.stat-box:nth-child(4) {
  animation-delay: 0.6s;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2.5rem;
  color: #FAFF00;
  margin-bottom: 1rem;
}

.stat-head {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 0.875rem;
  color: #A1A1AA;
  line-height: 1.5;
}

/* Current Openings */
.openings-section {

  text-align: center;
  background-color: var(--background);
}



.openings-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.openings-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--foreground);
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--card);
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.job-card-left {
  flex: 1;
  min-width: 0;
  /* Prevent flex item from overflowing */
}

.job-card-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
}

.job-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--foreground);
  font-weight: 600;
}

.job-details {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 1rem;
  color: #555;
  margin-bottom: 0px;
}

.job-details div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-details i,
.job-details span {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.apply-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--primary);
  color: var(--background);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.apply-button:hover {
  background-color: var(--golden);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
}

.slash-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slash-arrow-icon svg {
  width: 100%;
  height: 100%;
  color: var(--background);
}

.apply-button:hover .slash-arrow-icon {
  transform: translateX(4px) rotate(15deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .job-card-right {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
    justify-content: flex-start;
  }

  .job-details {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .job-details {
    flex-direction: column;
    gap: 10px;
  }

  .job-title {
    font-size: 1.3rem;
  }
}

/* Application Process */
.app-pro {
  padding: 5rem 1rem;
  background-color: var(--background);
  color: var(--foreground);
}

.ap-container {
  max-width: 1200px;
  margin: 0 auto;
}

.app-pro .section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--foreground);
}

.ap-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  align-items: center;
  background-color: var(--card);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  opacity: 1;

}


.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--background);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.step-description {
  color: var(--text-gray);
  line-height: 1.5;
}

.step-arrow {
  margin: 0 1.5rem;
  color: var(--text-gray);
  opacity: 0.6;
}

/* Horizontal layout for larger screens */
@media (min-width: 768px) {
  .ap-steps {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .step {
    flex-direction: column;
    text-align: center;
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 200px;
    padding: 2rem 1.5rem;
    position: relative;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }

  .step-arrow {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    margin: 0;
  }

  .step:last-child .step-arrow {
    display: none;
  }
}

/* Medium screens */
@media (max-width: 1024px) and (min-width: 768px) {
  .step {
    flex: 1 1 calc(50% - 1.5rem);
    margin-bottom: 2rem;
  }

  .step:nth-child(2) .step-arrow,
  .step:nth-child(4) .step-arrow {
    display: none;
  }

  .step-arrow {
    right: auto;
    bottom: -25px;
    top: auto;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .step {
    padding: 1.25rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-right: 1rem;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-description {
    font-size: 0.9rem;
  }

  .step-arrow {
    margin: 0 0.5rem;
    transform: rotate(90deg);
  }
}

/* Get in Touch Section */
.contact-section {
  padding: 2rem 1rem;
  background-color: var(--background);
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  width: 100%;
}

.contact-image {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  position: sticky;
  top: 20px;
}

.contact-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-image:hover img {
  transform: scale(1.02);
}

.form-container {
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
  text-align: left;
}

.section-subtitle {
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-size: 1rem;
  text-align: left;
  line-height: 1.6;
}

.minimal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


/* Base mobile styles (default) */
.form-row {
  display: grid;
  grid-template-columns: 1fr; /* Single column */
  gap: 1rem; /* Maintain gap on mobile */
  margin-bottom: 1.5rem; /* Space after the row */
}

/* Tablet view (768px and up) */
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 1.5rem; /* Slightly larger gap on tablets */
  }
}

/* Desktop view (1024px and up) */
@media (min-width: 1024px) {
  .form-row {
    gap: 2rem; /* Largest gap on desktop */
  }
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: var(--muted);
  color: var(--foreground);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.2);
}

.form-input::placeholder {
  color: var(--text-gray);
  opacity: 0.8;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  background-color: var(--primary);
  color: var(--background);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: 100%;
}

.submit-button:hover {
  background-color: var(--golden);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
}

.button-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
  transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-image {
    position: static;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .form-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .section-title,
  .section-subtitle {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 2rem 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 14px;
  }
  
  .submit-button {
    padding: 12px 24px;
  }
}

/* Base Responsive Styles */
@media (max-width: 1536px) {

  .container,
  .openings-container,
  .ap-container,
  .wjs-container {
    max-width: 1280px;
  }
}

@media (max-width: 1280px) {

  .container,
  .openings-container,
  .ap-container,
  .wjs-container {
    max-width: 1024px;
  }

  .overlay h1 {
    font-size: 2.8rem;
  }

  .overlay p {
    font-size: 1.3rem;
  }
}

@media (max-width: 1024px) {

  .container,
  .openings-container,
  .ap-container,
  .wjs-container {
    max-width: 768px;
    padding: 0 40px;
  }

  .careers-hero {
    height: 70vh;
  }

  .wjs-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box:nth-child(3),
  .stat-box:nth-child(4) {
    animation-delay: 0s;
  }
}

/* Tablet Styles */
@media (max-width: 768px) {

  .container,
  .openings-container,
  .ap-container,
  .wjs-container {
    max-width: 640px;
    padding: 0 30px;
  }

  /* Hero Adjustments */
  .careers-hero {
    height: 60vh;
  }

  .overlay h1 {
    font-size: 2.5rem;
    max-width: 100%;
  }

  .overlay p {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .text-container {
    margin-left: 0;
    padding: 0 30px;
  }

  /* Why Join Us */
  .wjs-stats {
    grid-template-columns: 1fr;
  }

  .stat-box {
    max-width: 100%;
  }

  /* Job Cards */
  .job-card {
    flex-direction: column;
    padding: 20px;
  }

  .job-card-right {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
    justify-content: flex-start;
  }

  /* Application Process */
  .ap-steps {
    flex-direction: column;
  }

  .step {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }

  .step-arrow {
    display: none;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Mobile Styles */
@media (max-width: 640px) {

  .container,
  .openings-container,
  .ap-container,
  .wjs-container {
    max-width: 100%;
    padding: 0 20px;
  }

  /* Typography Adjustments */
  .section-title,
  .wjs-title,
  .app-pro .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .section-subtitle,
  .wjs-description {
    font-size: 1rem;
  }

  /* Hero */
  .careers-hero {
    height: 50vh;
  }

  .overlay {
    background: linear-gradient(90deg, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.9) 100%);
    justify-content: center;
    text-align: center;
  }

  .overlay h1 {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1rem;
  }

  .overlay button {
    font-size: 1rem;
    padding: 10px 20px;
  }

  /* Why Join Us */
  .why-join-us {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  /* Job Cards */
  .job-title {
    font-size: 1.3rem;
  }

  .job-details {
    flex-direction: column;
    gap: 10px;
  }

  /* Application Process */
  .step {
    padding: 1.25rem;
    flex-direction: row;
    text-align: left;
  }

  .step-number {
    margin-right: 1rem;
    margin-bottom: 0;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* Form */
  .form-input {
    padding: 12px 14px;
  }

  .submit-button {
    padding: 12px 24px;
  }
}

/* Small Mobile Devices */
@media (max-width: 400px) {

  .container,
  .openings-container,
  .ap-container,
  .wjs-container {
    padding: 0 15px;
  }

  .section-title,
  .wjs-title,
  .app-pro .section-title {
    font-size: 1.8rem;
  }

  .careers-hero {
    height: 45vh;
  }

  .overlay h1 {
    font-size: 1.8rem;
  }

  .job-title {
    font-size: 1.2rem;
  }

  .apply-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .slash-arrow-icon {
    width: 16px;
    height: 16px;
  }
}

/* Animation Adjustments for Mobile */
@media (max-width: 768px) {

  .fade-in,
  .fade-in.delay-1,
  .fade-in.delay-2 {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .stat-box {
    animation: none;
    opacity: 1;
  }
}

/* Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .careers-hero {
    height: 100vh;
  }

  .overlay h1 {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1rem;
  }
}