/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FF8405 0%, #F9348D 97.4%);
    margin-top: 120px;
}

.gradient-bg {

    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* Ensures it fills the left column */
}

.content-wrapper {
    max-width: 500px; /* Restrict text width for better readability */
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
}

.hero-buttons .btn-primary {
    background-color: #ee5513;
    border: 2px solid #fff;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 20px;

}

.hero-buttons .btn-primary:hover {
    background-color: #e6e6e6;
    color: #ff4a68;
}

.hero-buttons .btn-outline-light {
    border: 2px solid #fff;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 20px;
}

.hero-buttons .btn-outline-light:hover {
    background-color: #fff;
    color: #ff0000;
}

/* Video Section */
.video-section {
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures the video covers the whole section */
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        height: auto;
        margin-top: 96px;
    }

    .gradient-bg {
        height: auto;
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .video-section {
        height: 50vh;
    }

    .hero-video {
        height: 100%;
    }
}










body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.careers-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.careers-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.careers-section .title {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 40px;
}

.careers-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.careers-section .grid-item {
  text-align: center;
}

.careers-section .grid-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.careers-section .grid-item img:hover {
  transform: scale(1.05);
}

.careers-section .grid-title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #e60000;
}

















/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Benefits & Perks Section */
.benefits-perks-section {
    padding: 80px 20px;
    background-color: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #333;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.bullet-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.benefits-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .benefits-perks-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .benefits-list li {
        font-size: 1rem;
    }
}












.life-at-hallatec {
    padding: 40px 0;
    background-color: #f9f9f9;
  }
  
  .life-at-hallatec .container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .life-at-hallatec .title {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
  }
  
  .life-at-hallatec .content {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
  }
  
  .life-at-hallatec .cta-button {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 6px;
    background: linear-gradient(90deg, #0066cc, #00bfff);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .life-at-hallatec .cta-button:hover {
    background: linear-gradient(90deg, #005bb5, #009fd1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
.life-at-hallatec .button-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
  }

@media (max-width: 992px) {
  .careers-section .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .life-at-hallatec .container {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .careers-section {
    padding: 28px 14px;
  }

  .careers-section .title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .careers-section .grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .careers-section .grid-title {
    font-size: 16px;
  }

  .life-at-hallatec {
    padding: 24px 0;
  }

  .life-at-hallatec .container {
    width: calc(100% - 24px);
    padding: 16px;
  }

  .life-at-hallatec .title {
    font-size: 20px;
  }

  .life-at-hallatec .content {
    font-size: 16px;
    line-height: 1.6;
  }

  .life-at-hallatec .button-container {
    justify-content: center;
  }
}
  



















  .contact-heading-section {
    padding: 40px 20px;
    background-color: #f4f4f4;
  }
  
  .contact-heading {
    font-size: 32px;
    font-weight: bold;
    color: #333;
  }
  
  .opportunities-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #FF8405 0%, #F9348D 97.4%);
    color: #ffffff; /* Ensure text is readable on the gradient */
  }
  
  .opportunities-heading {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff; /* White text for contrast */
    margin-bottom: 20px;
  }
  
  .opportunities-content {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff; /* White text for readability */
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 30px; /* Add spacing below content */
  }
  
  /* Button Styling */
  .cta-button {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 6px;
    background: linear-gradient(135deg, #FF8405 0%, #F9348D 97.4%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background: linear-gradient(90deg, #e818b4, #ea820c);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: #ffffff; /* Darker text for hover state */
  }
  
  /* Card Link Styling */
  .card-link {
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #FF8405, #F9348D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
  }
  
  .card-link:hover {
    background: linear-gradient(135deg, #F9348D, #FF8405);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  
