.elementor-346365 .elementor-element.elementor-element-0ecc1d2{--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;}.elementor-346365 .elementor-element.elementor-element-0f46179{--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;}.elementor-346365 .elementor-element.elementor-element-ee63bb2{--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;}.elementor-346365 .elementor-element.elementor-element-d273ede{--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;}.elementor-346365 .elementor-element.elementor-element-cce76aa{--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;}/* Start custom CSS */.career-section {
  width: 100%;
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

h2.section-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 20px;
  color: #111;
  font-weight: 700;
}

p.section-subtitle {
  text-align: center;
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ---------- Animation ---------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeInUp 1s ease forwards;
}

/* ---------- Hero Section ---------- */
.career-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.career-hero img {
  width: 500px;
  max-width: 100%;
  border-radius: 15px;
}

.career-hero-content {
  flex: 1;
  animation-delay: 0.2s;
}

.career-hero-content h1 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 20px;
}

.career-hero-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.career-hero-content a {
  background: #0078ff;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}

.career-hero-content a:hover {
  background: #005fcc;
}

/* ---------- Why Work With Us ---------- */
.why-us {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  text-align: center;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card i {
  font-size: 40px;
  color: #0078ff;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111;
}

.why-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- Open Positions ---------- */
.job-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.job-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px 20px;
  transition: 0.3s;
}

.job-card:hover {
  transform: translateY(-6px);
}

.job-card h3 {
  color: #111;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.job-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.job-card a {
  background: #0078ff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.job-card a:hover {
  background: #005fcc;
}

/* ---------- Life at Scoopearth ---------- */
.life-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.life-gallery img {
  width: 100%;
  border-radius: 12px;
  height: 230px;
  object-fit: cover;
  transition: 0.3s;
}

.life-gallery img:hover {
  transform: scale(1.05);
}

/* ---------- CTA Section ---------- */
.cta-box {
  background: linear-gradient(135deg, #0078ff, #00b4d8);
  color: #fff;
  border-radius: 15px;
  padding: 60px 20px;
  text-align: center;
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta-box a {
  background: #fff;
  color: #0078ff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-box a:hover {
  background: #f1f1f1;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .career-hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .career-hero-content h1 {
    font-size: 2rem;
  }

  .cta-box h2 {
    font-size: 1.6rem;
  }
}/* End custom CSS */