/* Careers Page Specific Styles */

.page-banner-careers {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-image: url("../assets/images/homeBg.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 80px 0;
}

.page-banner-careers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(17, 31, 53, 0.5);
}

.page-banner-careers .container {
  position: relative;
  z-index: 2;
}

.page-banner-careers h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.page-banner-careers p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

/* Careers Introduction Section */
.careers-intro {
  padding: 80px 0;
  background: #f8f9fa;
}

.careers-intro .intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.careers-intro .intro-header {
  width: 100%;
  text-align: center;
}

.careers-intro .intro-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
}

.careers-intro .intro-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.intro-grid {
  width: 85%;
  display: grid;
  margin-top: 40px;
  grid-template-columns: 1fr;
  gap: 20px;
}

.intro-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5db5f7, #2980b9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 1.5rem;
  color: white;
}

.card-text {
  flex: 1;
}

.intro-card h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.intro-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Values Section */
.careers-values {
  padding: 80px 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.value-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5db5f7, #2980b9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 2rem;
  color: white;
}

.value-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* Benefits Section */
.careers-benefits {
  padding: 80px 0;
  background: #f8f9fa;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
  font-size: 2rem;
  color: #5db5f7;
  margin-right: 20px;
  margin-top: 5px;
}

.benefit-item h4 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Job Openings Section */
.job-openings {
  padding: 80px 0;
  background: white;
}

.jobs-widget {
  margin-top: 50px;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

/* Careers CTA Section */
.careers-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #2980b9, #5db5f7);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn {
  background: white;
  color: #2980b9;
  padding: 18px 40px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-content .btn:hover {
  background: transparent;
  color: white;
  border: 3px solid white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-banner-careers {
    height: auto;
    min-height: 60vh;
    padding: 120px 20px 60px;
    background-attachment: scroll;
  }

  .page-banner-careers h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .page-banner-careers p {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 15px;
    margin-bottom: 2rem;
  }

  .careers-intro .intro-header h2 {
    font-size: 2rem;
  }

  /* .intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  } */

  .intro-card {
    padding: 25px 20px;
  }

  .card-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content .btn {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .jobs-widget {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-banner-careers h1 {
    font-size: 1.75rem;
  }

  .page-banner-careers p {
    font-size: 0.9rem;
  }

  .careers-intro .intro-header h2 {
    font-size: 1.75rem;
  }

  .intro-card {
    padding: 20px 15px;
  }

  .intro-card h3 {
    font-size: 1.2rem;
  }

  .intro-card p {
    font-size: 0.9rem;
  }
}
