/* ============================================
   ASHA CAREERS - CSS Styles
   Prefix: asha-careers-
   ============================================ */

/* CSS Variables */
:root {
  /* Brand accents */
  --asha-careers-primary: #fbec6b;
  --asha-careers-primary-dark: #f3e25f;
  --asha-careers-accent: #0f2647;

  /* Backgrounds */
  --asha-careers-bg: #f8fafc;
  --asha-careers-bg-muted: #f1f5f9;
  --asha-careers-card: #ffffff;

  /* Text */
  --asha-careers-foreground: #0f2647;
  --asha-careers-foreground-muted: #475569;

  /* Borders */
  --asha-careers-border: #e2e8f0;

  /* Gradients */
  --asha-careers-hero-gradient: linear-gradient(
    135deg,
    #0f2647 0%,
    #142f55 50%,
    #1a3a66 100%
  );

  --asha-careers-green-gradient: linear-gradient(
    135deg,
    #fbec6b 0%,
    #f5e157 100%
  );

  /* System */
  --asha-careers-font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --asha-careers-radius: 1rem;
  --asha-careers-transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.asha-careers-body {
  font-family: var(--asha-careers-font);
  background-color: var(--asha-careers-bg);
  color: var(--asha-careers-foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.asha-careers-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.animate-delay-1 { --delay: 0.1s; }
.animate-delay-2 { --delay: 0.2s; }
.animate-delay-3 { --delay: 0.3s; }
.animate-delay-4 { --delay: 0.4s; }
.animate-delay-5 { --delay: 0.5s; }

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.98);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.animate-fade {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.animate-fade.visible {
  opacity: 1;
}


.animate-on-scroll.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}


/* Common Elements */
.asha-careers-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.asha-careers-section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--asha-careers-foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.asha-careers-section-subtitle {
  font-size: 1.125rem;
  color: var(--asha-careers-foreground-muted);
  max-width: 48rem;
  margin: 0 auto;
}

.asha-careers-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Buttons */
.asha-careers-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--asha-careers-font);
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--asha-careers-transition);
}

.asha-careers-btn--primary {
  background-color: white;
  color: hsl(142, 64%, 24%);
}

.asha-careers-btn--primary:hover {
  background-color: hsl(142, 76%, 96%);
  transform: translateY(-2px);
}

.asha-careers-btn--outline {
  background-color: transparent;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.asha-careers-btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
/* Inline error message */
.asha-inline-error {
    margin-top: 6px;
    font-size: 13px;
    color: #dc2626;
}

/* Field highlight */
.asha-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

/* Force toast visibility */
.asha-careers-toast {
    display: block !important;
    visibility: visible !important;
    opacity: 0;
    pointer-events: none;
}
.asha-careers-form__file-name {
    display:block;
    margin-top:6px;
    font-size:13px;
    color:#f4f00b;
}
button:disabled {
    opacity:.6;
    cursor:not-allowed;
}

.asha-careers-toast.show {
    opacity: 1 !important;
    pointer-events: auto;
}

.asha-careers-btn--gradient {
  background: var(--asha-careers-green-gradient);
  /* color: white; */
}

.asha-careers-btn--gradient:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.asha-careers-btn--submit {
  width: 100%;
  background-color: white;
  color: hsl(142, 64%, 24%);
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
}

.asha-careers-btn--submit:hover {
  background-color: hsl(142, 76%, 96%);
}

/* ============================================
   HERO SECTION
   ============================================ */
.asha-careers-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.asha-careers-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--asha-careers-hero-gradient);
}

.asha-careers-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.asha-careers-hero__orb--1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: hsl(142, 69%, 58%);
  animation: asha-careers-pulse 4s ease-in-out infinite;
}

.asha-careers-hero__orb--2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background-color: hsl(160, 84%, 55%);
  animation: asha-careers-pulse 4s ease-in-out infinite 1s;
}

.asha-careers-hero__orb--3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 31rem;
  height: 31rem;
  background-color: hsl(174, 72%, 56%);
  opacity: 0.15;
}

.asha-careers-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.asha-careers-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  padding: 0 1.5rem;
}

.asha-careers-hero__tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  color: hsl(142, 76%, 85%);
  border: 1px solid rgba(134, 239, 172, 0.3);
}

.asha-careers-hero__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.asha-careers-hero__title-accent {
  background: linear-gradient(90deg, hsl(142, 77%, 73%) 0%, hsl(160, 84%, 70%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.asha-careers-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(220, 252, 231, 0.8);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.asha-careers-hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .asha-careers-hero__buttons {
    flex-direction: row;
  }
}

.asha-careers-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.asha-careers-hero__scroll-icon {
  width: 1.25rem;
  height: 1.25rem;
  animation: asha-careers-bounce 2s infinite;
}

/* ============================================
   WHY WORK SECTION
   ============================================ */
.asha-careers-why {
  padding: 6rem 0;
  background-color: var(--asha-careers-bg);
}

.asha-careers-why__heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--asha-careers-foreground);
  margin-bottom: 3rem;
}

.asha-careers-why__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .asha-careers-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .asha-careers-why__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.asha-careers-card {
  padding: 2rem;
  border-radius: var(--asha-careers-radius);
  background-color: var(--asha-careers-card);
  border: 1px solid var(--asha-careers-border);
  transition: var(--asha-careers-transition);
}

.asha-careers-card:hover {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.1);
}

.asha-careers-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  background: var(--asha-careers-green-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--asha-careers-transition);
}

.asha-careers-card:hover .asha-careers-card__icon {
  transform: scale(1.1);
}

.asha-careers-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.asha-careers-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--asha-careers-foreground);
  margin-bottom: 0.75rem;
}

.asha-careers-card__desc {
  color: var(--asha-careers-foreground-muted);
  line-height: 1.6;
}

/* ============================================
   LIFE SECTION
   ============================================ */
.asha-careers-life {
  padding: 6rem 0;
  background-color: var(--asha-careers-bg-muted);
}

.asha-careers-life__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .asha-careers-life__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.asha-careers-life__intro {
  font-size: 1.125rem;
  color: var(--asha-careers-foreground-muted);
  margin-bottom: 2rem;
}

.asha-careers-life__points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.asha-careers-life__point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: var(--asha-careers-bg);
  border: 1px solid var(--asha-careers-border);
}

.asha-careers-life__point-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(142, 71%, 45%);
  flex-shrink: 0;
}

.asha-careers-life__point-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.asha-careers-life__point span {
  font-weight: 500;
  color: var(--asha-careers-foreground);
}

.asha-careers-life__tagline {
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(142, 71%, 45%);
}

.asha-careers-life__visual {
  position: relative;
}

.asha-careers-life__card {
  aspect-ratio: 1;
  border-radius: 1.5rem;
  background: var(--asha-careers-green-gradient);
  padding: 4px;
}

.asha-careers-life__card-inner {
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  background-color: var(--asha-careers-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.asha-careers-life__card-icon {
  width: 6rem;
  height: 6rem;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: var(--asha-careers-green-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.asha-careers-life__card-icon svg {
  width: 3rem;
  height: 3rem;
}

.asha-careers-life__card-inner h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--asha-careers-foreground);
  margin-bottom: 0.5rem;
}

.asha-careers-life__card-inner p {
  color: var(--asha-careers-foreground-muted);
}

.asha-careers-life__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.asha-careers-life__glow--1 {
  top: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(34, 197, 94, 0.2);
}

.asha-careers-life__glow--2 {
  bottom: -1rem;
  left: -1rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(16, 185, 129, 0.2);
}

/* ============================================
   WHAT WE DO SECTION
   ============================================ */
.asha-careers-what {
  padding: 6rem 0;
  background-color: var(--asha-careers-bg);
}

.asha-careers-what__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .asha-careers-what__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .asha-careers-what__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.asha-careers-what__card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--asha-careers-radius);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.05) 0%, transparent 100%);
  border: 1px solid var(--asha-careers-border);
  transition: var(--asha-careers-transition);
}

.asha-careers-what__card:hover {
  border-color: rgba(34, 197, 94, 0.3);
}

.asha-careers-what__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  background: var(--asha-careers-green-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--asha-careers-transition);
}

.asha-careers-what__card:hover .asha-careers-what__icon {
  transform: rotate(6deg);
}

.asha-careers-what__icon svg {
  width: 2rem;
  height: 2rem;
}

.asha-careers-what__card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--asha-careers-foreground);
  margin-bottom: 0.5rem;
}

.asha-careers-what__card p {
  font-size: 0.875rem;
  color: var(--asha-careers-foreground-muted);
}

.asha-careers-what__tagline {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.125rem;
  color: var(--asha-careers-foreground-muted);
}

.asha-careers-what__tagline span {
  color: hsl(142, 71%, 45%);
  font-weight: 600;
}

/* ============================================
   OPENINGS SECTION
   ============================================ */
.asha-careers-openings {
  padding: 6rem 0;
  background-color: var(--asha-careers-bg-muted);
}

.asha-careers-openings__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .asha-careers-openings__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.asha-careers-openings__category {
  padding: 2rem;
  border-radius: var(--asha-careers-radius);
  background-color: var(--asha-careers-card);
  border: 1px solid var(--asha-careers-border);
}

.asha-careers-openings__category h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--asha-careers-foreground);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--asha-careers-border);
}

.asha-careers-openings__category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.asha-careers-openings__category li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--asha-careers-foreground-muted);
  text-decoration: none;
  transition: var(--asha-careers-transition);
}

.asha-careers-openings__category li a::before {
  content: '';
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.asha-careers-openings__category li a:hover {
  color: hsl(142, 71%, 45%);
}

.asha-careers-openings__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--asha-careers-radius);
  background-color: var(--asha-careers-card);
  border: 1px solid var(--asha-careers-border);
}

.asha-careers-openings__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--asha-careers-foreground-muted);
}

.asha-careers-openings__meta svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(142, 71%, 45%);
}

/* ============================================
   INTERNSHIPS SECTION
   ============================================ */
.asha-careers-interns {
  padding: 6rem 0;
  background-color: var(--asha-careers-bg);
}

.asha-careers-interns__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .asha-careers-interns__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.asha-careers-interns__visual {
  order: 2;
}

@media (min-width: 1024px) {
  .asha-careers-interns__visual {
    order: 1;
  }
  
  .asha-careers-interns__content {
    order: 2;
  }
}

.asha-careers-interns__card {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--asha-careers-green-gradient);
  /* color: white; */
}

.asha-careers-interns__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M30 0L60 30L30 60L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.asha-careers-interns__card svg {
  position: relative;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
}

.asha-careers-interns__card h3 {
  position: relative;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.asha-careers-interns__card p {
  position: relative;
  font-size: 1.125rem;
  opacity: 0.8;
}

.asha-careers-interns__intro {
  font-size: 1.125rem;
  color: var(--asha-careers-foreground-muted);
  margin-bottom: 2rem;
}

.asha-careers-interns__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.asha-careers-interns__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--asha-careers-foreground);
}

.asha-careers-interns__list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: hsl(142, 71%, 45%);
  flex-shrink: 0;
}

/* ============================================
   APPLICATION FORM SECTION
   ============================================ */
.asha-careers-apply {
  position: relative;
  padding: 6rem 0;
  background: var(--asha-careers-hero-gradient);
  overflow: hidden;
}

.asha-careers-apply__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.asha-careers-apply__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.2;
}

.asha-careers-apply__orb--1 {
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background-color: hsl(142, 69%, 58%);
}

.asha-careers-apply__orb--2 {
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: hsl(160, 84%, 55%);
}

.asha-careers-apply__wrapper {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
}

.asha-careers-apply__header {
  text-align: center;
  margin-bottom: 3rem;
}

.asha-careers-apply__header h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.asha-careers-apply__header p {
  font-size: 1.125rem;
  color: rgba(220, 252, 231, 0.8);
}

.asha-careers-form {
  padding: 2rem;
  border-radius: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .asha-careers-form {
    padding: 3rem;
  }
}

.asha-careers-form__row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .asha-careers-form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.asha-careers-form__group {
  margin-bottom: 1.5rem;
}

.asha-careers-form__row .asha-careers-form__group {
  margin-bottom: 0;
}

.asha-careers-form__group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(142, 76%, 90%);
  margin-bottom: 0.5rem;
}

.asha-careers-form__group input,
.asha-careers-form__group select,
.asha-careers-form__group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: var(--asha-careers-font);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: white;
  transition: var(--asha-careers-transition);
}

.asha-careers-form__group input::placeholder,
.asha-careers-form__group select,
.asha-careers-form__group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.asha-careers-form__group select {
    height: 3.2rem;
}
/* =========================================
   Select field: selected state = white bg
   ========================================= */



/* Focus state */
.asha-careers-form__group select:focus {
    background-color: #ffffff !important;
    color: #000000 !important;
    outline: none;
}

/* After selection (active / visited / filled) */
.asha-careers-form__group select:valid {
    background-color: #ffffff !important;
    color: #000000 !important;
}

/* Firefox focus ring fix */
.asha-careers-form__group select:-moz-focusring {
    color: #000000;
    background-color: #ffffff;
}

/* Dropdown options */
.asha-careers-form__group select option {
    background-color: #ffffff;
    color: #000000;
}

/* ===============================
   Remove number input spinners
   =============================== */

/* Chrome, Safari, Edge */
#experience::-webkit-outer-spin-button,
#experience::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
#experience {
    -moz-appearance: textfield;
    appearance: textfield;
}


.asha-careers-form__group input:focus,
.asha-careers-form__group select:focus,
.asha-careers-form__group textarea:focus {
  outline: none;
  border-color: hsl(142, 69%, 58%);
}

.asha-careers-form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.asha-careers-form__upload {
  position: relative;
  padding: 2rem;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: var(--asha-careers-transition);
}

.asha-careers-form__upload:hover {
  border-color: hsl(142, 69%, 58%);
}

.asha-careers-form__upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.asha-careers-form__upload svg {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1rem;
  color: hsl(142, 77%, 73%);
}

.asha-careers-form__upload-text {
  color: white;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.asha-careers-form__upload-hint {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.asha-careers-form__upload.has-file .asha-careers-form__upload-text {
  color: hsl(142, 77%, 73%);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.asha-careers-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--asha-careers-transition);
}

.asha-careers-toast.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.asha-careers-toast__content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--asha-careers-border);
  max-width: 24rem;
}

.asha-careers-toast__content svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(142, 71%, 45%);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.asha-careers-toast__content strong {
  display: block;
  color: var(--asha-careers-foreground);
  margin-bottom: 0.25rem;
}

.asha-careers-toast__content p {
  font-size: 0.875rem;
  color: var(--asha-careers-foreground-muted);
  margin: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes asha-careers-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

@keyframes asha-careers-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 640px) {
  .asha-careers-btn {
    width: 100%;
    justify-content: center;
  }
  
  .asha-careers-openings__info {
    flex-direction: column;
    gap: 1rem;
  }
}

