/* CSS Code for Careers Section */
.careers-section {
  padding: 10rem 1rem;
  background: linear-gradient(135deg, #0a192f 0%, #112240 50%, #0a192f 100%);
  color: #e6f1ff;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  border-bottom: 1px solid rgba(100, 255, 218, 0.1);

}

.careers-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 60px;
}

.careers-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.careers-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #64ffda, #57cbff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.careers-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ccd6f6;
  letter-spacing: -0.5px;
}

.journey-text {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem;
  background: rgba(17, 34, 64, 0.6);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(100, 255, 218, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

.mission-card {
  background: rgba(17, 34, 64, 0.6);
  padding: 1.8rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(100, 255, 218, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: rgba(23, 42, 69, 0.7);
  border-color: rgba(100, 255, 218, 0.2);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.mission-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #64ffda;
  font-weight: 600;
}

.mission-card p {
  line-height: 1.6;
  color: #a8b2d1;
  font-size: 0.95rem;
}

.cta-section {
  text-align: center;
  background: rgba(17, 34, 64, 0.6);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(100, 255, 218, 0.1);
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-section p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: #ccd6f6;
}

.email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(90deg, #1a5fb4, #3584e4);
  color: white;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(53, 132, 228, 0.25);
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.email-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(53, 132, 228, 0.4);
  background: linear-gradient(90deg, #3584e4, #62a0ea);
}

/* Background shapes */
.careers-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(53, 132, 228, 0.08), rgba(100, 255, 218, 0.05));
  backdrop-filter: blur(2px);
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 8%;
  animation: pulse 15s infinite ease-in-out;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 75%;
  left: 12%;
  animation: pulse 12s infinite ease-in-out;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 35%;
  right: 7%;
  animation: pulse 18s infinite ease-in-out;
  animation-delay: 4s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .careers-section {
    padding: 2.5rem 1rem;
  }
  
  .careers-title {
    font-size: 1.8rem;
  }
  
  .careers-subtitle {
    font-size: 1.2rem;
  }
  
  .mission-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .journey-text, .cta-section {
    padding: 1.2rem;
  }
  
  .journey-text {
    font-size: 1rem;
  }
  
  .mission-card {
    padding: 1.5rem;
  }
  
  .card-icon {
    font-size: 2rem;
  }
  
  .mission-card h4 {
    font-size: 1.2rem;
  }
  
  .mission-card p {
    font-size: 0.9rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .email-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .careers-title {
    font-size: 1.6rem;
  }
  
  .careers-subtitle {
    font-size: 1.1rem;
  }
  
  .journey-text {
    font-size: 0.95rem;
    padding: 1rem;
  }
  
  .mission-card {
    padding: 1.2rem;
  }
  
  .card-icon {
    font-size: 1.8rem;
  }
  
  .mission-card h4 {
    font-size: 1.1rem;
  }
  
  .mission-card p {
    font-size: 0.85rem;
  }
  
  .cta-section {
    padding: 1.5rem;
  }
  
  .cta-section p {
    font-size: 0.95rem;
  }
  
  .email-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .shape-1, .shape-2, .shape-3 {
    display: none;
  }
}

/* For very large screens */
@media screen and (min-width: 2000px) {
  .careers-container {
    max-width: 1600px;
  }
  
  .careers-title {
    font-size: 2.8rem;
  }
  
  .careers-subtitle {
    font-size: 2rem;
  }
  
  .journey-text {
    font-size: 1.4rem;
    max-width: 1000px;
    padding: 2rem;
  }
  
  .mission-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  
  .mission-card {
    padding: 2.5rem;
  }
  
  .card-icon {
    font-size: 3rem;
  }
  
  .mission-card h4 {
    font-size: 1.6rem;
  }
  
  .mission-card p {
    font-size: 1.1rem;
  }
  
  .cta-section {
    max-width: 1000px;
    padding: 2.5rem;
  }
  
  .cta-section p {
    font-size: 1.3rem;
  }
  
  .email-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
}

/*CAREERS SECTION END*/