.elementor-8962 .elementor-element.elementor-element-f03ceb6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:50px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-8962 .elementor-element.elementor-element-f03ceb6:not(.elementor-motion-effects-element-type-background), .elementor-8962 .elementor-element.elementor-element-f03ceb6 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}/* Start custom CSS for html, class: .elementor-element-d976883 */.careers-page {
  font-family: inherit;
  color: #f0f0f0;
  background: #000;
  padding: 40px 20px;
}

.job-section {
  margin: 40px auto;
  max-width: 900px;
  padding: 30px;
  background: #111;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.job-section h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #00c853; /* green accent */
  border-bottom: 2px solid #00c853;
  padding-bottom: 8px;
}

.job-section ul {
  padding-left: 20px;
  line-height: 1.6;
  color: #ccc;
}

.job-section.apply h2 {
  color: #00c853;
}

.job-section.apply form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.job-section.apply label {
  color: #ccc;
  font-size: 15px;
}

.job-section.apply input,
.job-section.apply select,
.job-section.apply button {
  padding: 12px;
  border: 1px solid #333;
  border-radius: 6px;
  font-size: 16px;
  background: #222;
  color: #f0f0f0;
}

.job-section.apply input:focus,
.job-section.apply select:focus {
  border-color: #00c853;
  outline: none;
}

.job-section.apply button {
  background: #00c853;
  color: #000;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.job-section.apply button:hover {
  background: #00e676;
  transform: scale(1.03);
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 20px;
}

.main-title {
  font-size: 3rem;
  font-weight: 800;
  color: #00c853;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #00c853, 0 0 20px #00e676;
  animation: glowPulse 3s infinite ease-in-out, fadeInScale 1.2s ease-in-out;
}

.sub-title {
  font-size: 1.3rem;
  color: #ccc;
  margin-top: 15px;
  animation: fadeInUp 1.5s ease-in-out, subtlePulse 4s infinite ease-in-out;
}

/* Entrance Animation */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Main Title Glow Loop */
@keyframes glowPulse {
  0% {
    text-shadow: 0 0 8px #00c853, 0 0 20px #00c853, 0 0 40px #00e676;
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 15px #00e676, 0 0 30px #00c853, 0 0 60px #00e676;
    transform: scale(1.05);
  }
  100% {
    text-shadow: 0 0 8px #00c853, 0 0 20px #00c853, 0 0 40px #00e676;
    transform: scale(1);
  }
}

/* Sub-title Soft Pulse */
@keyframes subtlePulse {
  0%, 100% {
    opacity: 0.9;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* Fade-in Up for subtitle entrance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  scroll-behavior: smooth;
}/* End custom CSS */