/* Contact Us Banner */
.contact-banner .overlay {
  background: rgba(255, 255, 255, 0.6); /* transparent white overlay */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-banner h1 {
  font-size: 90px;
  font-weight: 500;
     color: #274186;
 
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}







/* CTA Section */
.cta-section {
  position: relative;
  background: #243377; /* dark blue */
  color: #fff;
  padding: 50px 10%;
  overflow: hidden;
  border-radius: 6px;

}

/* Container */
.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 2;
  position: relative;
}

/* Text */
.cta-text h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 14px;
  color: #dcdcdc;
  max-width: 500px;
}

/* Button */
.btn-cta {
  background: #f4b400; /* yellow */
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #e0a200;
}

/* Decorative Circle */
.cta-circle {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 1;
}




.career-section {
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}



.career-intro h3 {
  font-size: 32px;
  font-weight: bold;
  color: #E6B122;
}

.career-intro h3 span {
  color: #28367B;
  font-size: 32px;

}

.career-intro p {
  font-size: 20px;
  margin: 10px 0;
}

.career-intro ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 20px;
  color: black;
}
.career-container {
  display: flex;
  align-items: center; /* centers items vertically */
  justify-content: center; /* keeps them aligned from left */
  gap: 420px; /* adjust spacing */
  flex-wrap: wrap;
  margin-bottom: 40px;
}


.career-image img {
  max-width: 280px; /* slightly smaller */
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  transform: rotate(12deg); /* reduce tilt to save space */
  margin-left: -20px; /* pull image closer to text */
}

.career-join {
  text-align: center;
  margin-bottom: 40px;
}

.career-join h2 {
  font-size: 34px;
  font-weight: bold;
  color: #E6B122;;
}

.career-join span {
  font-size: 34px;
  color: #1b365d;
}

.career-join p {
  font-size: 20px;
  color: black;
  margin-top: 10px;
}/* Career Jobs Section */
.career-jobs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 0;
  max-width: 1000px;
  margin: auto; /* centers on page */
}

/* Job Card */
.job-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 6px 20px rgba(40, 54, 123, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 5px solid transparent;
}

.job-card:hover {
  transform: translateY(-4px);
  border-left: 5px solid #E6B122;
  box-shadow: 0 8px 24px rgba(40, 54, 123, 0.15);
}

/* Job Title */
.job-card h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #28367B;
  flex: 1;
}

/* Job Details Grid */
.job-details {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 14px;
  color: black;
}

.job-details span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f8f9ff;
  padding: 8px 14px;
  border-radius: 20px;
  color: #28367B;
  font-weight: 500;
  transition: background 0.3s ease;
}

.job-details span:hover {
  background: #e9edff;
}

.job-details i {
  color: #F8502C;
  font-size: 14px;
}

/* Apply Button */
.apply-btn {
  background-color: #1d2c6e;
  color: #fff;
  font-size: 16px;
  padding: 12px 14px;
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  transform: scale(1.1);
  /*background: linear-gradient(135deg, #E6B122, #28367B);*/
}

/* Responsive Design */
@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }

  .job-card h4 {
    font-size: 17px;
  }

  .job-details {
    width: 100%;
    gap: 10px;
  }

  .apply-btn {
    align-self: flex-end;
  }
}


@media (max-width: 768px) {

  .contact-banner h1 {
    font-size: 42px;
  }

  .career-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .career-image img {
    transform: none;
  }

  .career-intro h3 {
    font-size: 26px;
  }

  .career-intro p,
  .career-join p {
    font-size: 16px;
  }

  .job-table th,
  .job-table td {
    font-size: 13px;
    padding: 10px;
  }
}


@media (max-width: 768px) {
  .contact-banner {
    height: auto;
    min-height: 88vh;
    justify-content: center;
    text-align: center;
  }
  .contact-banner .overlay {
    background: rgba(255, 255, 255, 0.6);
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .career-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}
.job-table-title {
  text-align: center;
  font-size: 24px;
  color: #1b365d;
  margin-bottom: 20px;
  margin-top: 40px;
}
.table-container {
  overflow-x: auto;
  margin: 0 auto 60px;
  max-width: 1000px;
}
.job-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.job-table thead {
  background-color: #1b365d;
  color: #fff;
}
.job-table th,
.job-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
}
/*.job-table tr:hover {*/
/*  background-color: #f8f9fc;*/
/*}*/
.apply-link {
  display: inline-block;
  /*color: #1b365d;*/
  font-size: 18px;
  transition: color 0.3s ease;
}
.apply-link:hover {
  color: #0077b6;
}
@media (max-width: 768px) {
  .job-table th, .job-table td {
    font-size: 14px;
    padding: 10px;
  }
}


.career-intro ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 10px;
}

.career-intro ul li {
  margin-bottom: 10px; /* adds spacing between list items */
  line-height: 1.6;    /* improves readability */
  font-size: 16px;
  color: black;
}
@media (max-width: 768px) {

  .contact-banner {
    height: 50vh; /* FIXED: no auto / min-height */
    background-position: center top; /* better crop */
  }

  .contact-banner .overlay {
    background: rgba(255, 255, 255, 0.6);
  }

  .contact-banner h1 {
    font-size: 38px;
    border-bottom-width: 1px;
  }
}

