.career-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.career-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 82%;
  margin: 0 auto;
  align-items: flex-start;
  gap: 30px;
}

.career-left {
  flex: 1 1 40%;
}

.career-left h1 {
  font-size: 32px;
  font-weight: 400;
  margin-top: 45px;
  color: #111;
  line-height: 1.4;
}

.career-right {
  flex: 1 1 55%;
}

.career-right p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.career-btn {
  display: inline-block;
  background-color: #007bdc;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 400;
  transition: background 0.3s ease;
}

.career-btn:hover {
  background-color: #005fa3;
}


@media (max-width: 480px) {

  .career-section {
    padding: 0px 20px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
  }

  .career-left h1 {
    font-size: 20px;
    font-weight: 400;
    margin-top: 45px;
    color: #111;
    line-height: 1.4;
  }

}
.growth-section {
  padding: 30px 20px;
  background-color: #f7fafd;
  font-family: Arial, sans-serif;
  text-align: center;
}
.growth-header h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #111;
}
.growth-header p {
  max-width: 991px;
  text-align: center;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.growth-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-box {
  width: 200px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 16px;
  color: #111;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .growth-features {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 80%;
    margin-bottom: 20px;
  }

  .growth-header h2 {
    font-size: 24px;
  }

  .growth-header p {
    font-size: 14px;
  }
}



.life-section {
  padding: 30px 20px;
  background-color: #f9fcff;
  font-family: 'Segoe UI', sans-serif;
}

.containersss {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.text-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.text-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #222;
  font-weight: 400;
}

.text-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.explore-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #007bff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 400;
  transition: background-color 0.3s ease;
}

.explore-btn:hover {
  background-color: #0056b3;
}

.image-grid {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.image-grid img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}





.job-openings {
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.job-openings h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 400;
  color: #333;
}

.job-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.job-card {
  width: 150px;
  text-align: center;
}

.job-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.job-card p {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}





.job-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: center;
}

/* 
.job-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
} */

.job-card:hover img {
  transform: scale(1.05);
}





form {
  max-width: 600px;
  margin: auto;
}

input,
select {
  width: 100%;
  padding: 8px;
  margin: 8px 0;
}

label {
  font-weight: bold;
}



form {
  max-width: 700px;
  margin: auto;
}

label {
  font-weight: 400;
  display: block;

}

input,
select,
textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}

button {
  margin-top: 20px;
  padding: 10px;
  background-color: #2a7dbd;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  width: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

h3 {
  border-bottom: 2px solid #2a7dbd;
  padding-bottom: 6px;
  color: #2a7dbd;
}

form {
  max-width: 700px;
  margin: 40px auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  /* margin-top: 15px; */
  font-weight: 400;
}

input[type="text"],
input[type="email"],
select,
input[type="file"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 15px;
}

input[type="file"] {
  background-color: #f9f9f9;
}

button {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background-color: #2a7dbd;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #215d96;
}

@media (max-width: 600px) {
  form {
    padding: 20px;
  }

  h3 {
    font-size: 18px;
  }
}


.hero-banner {
  background-image: url(https://res.cloudinary.com/dch39akz2/image/upload/v1754559943/carrier-banner_gd1auz.png);
  background-size: cover;
  background-position: center;
  height: 80vh;
  width: 95%;
  margin-top: 29px;
  margin-left: 33px;
  border-radius: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-color: rgba(0, 0, 0, 0.5);  */
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 20px;
}

@media (max-width: 480px) {


  .hero-banner {
    background-image: url(/images/carrier-banner.png);
    background-size: cover;
    background-position: center;
    height: 38vh;
    width: 94%;
    margin-top: 13px;
    margin-left: 11px;
    border-radius: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
  }

}