
/* Hero Section */
.hero {
    position: relative;
    background-image: url('/assets/images/careers.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }
  
  /* Fullscreen overlay */
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  
  /* Text inside the overlay */
  .hero-text {
    text-align: center;
    opacity: 1; /* Hidden initially */
    transform: translateY(20px); /* Start slightly below */
    transition: opacity 1.2s ease, transform 1.2s ease; /* Smooth fade-in and slide-up effect */
    will-change: opacity, transform;
  }
  
  .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  }
  
  .hero-text p {
    font-size: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
    color: var(--background3-color);
  }
  
  /* Show text with transition effect */
  .hero:hover .hero-text {
    opacity: 1;
    transform: translateY(0); /* Slide into position */
  }

  /* Careers Highlights Section */
  .highlights {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
  }

  .highlights h2 {
    margin-bottom: 20px;
  }

  .highlights p {
    margin-bottom: 30px;
    font-size: 1.2rem;
  }

  .highlights-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .highlight-card {
    background-color: var(--background-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    transition: transform 0.3s;
  }

  .highlight-card:hover {
    transform: translateY(-10px);
  }

  .highlight-card h3 {
    margin-bottom: 10px;
  }

  /* Open Jobs Section */
  .open-jobs {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
  }


  .jobs-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .job-card {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--fluid-gap);
    background-color: #f9f9f9;
    border-left: 5px solid var(--secondary-color);
    padding: var(--fluid-padding);
    width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }

  .job-card:hover {
    transform: translateY(-10px);
  }

  .job-card h3 {
    margin-bottom: 10px;
  }

  .job-card p {
    text-align: justify;
  }


  .apply-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
  }

  .apply-button:hover {
    background-color: #0056b3;
  }

  /* Call to Action Section */
  .cta-section {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    padding: 50px 20px;
    text-align: center;
  }

  .cta-section h2 {
    margin-bottom: 20px;
  }
