.contact-container {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Left Column Styles */
.contact-info {
  padding: 60px;
  background-color: #f0f8ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.content-wrapper {
  max-width: 500px;
  margin-left: auto;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #002147;
  margin-bottom: 20px;
  line-height: 1.2;
}

.blue-text {
  color: #0099cc;
}

.subtitle {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-item i {
  color: #0099cc;
  margin-right: 15px;
  width: 20px;
}

/* Join Team Box Styles */
.join-team-box li {
  font-size: 14px;
  margin-top: 10px;
  color: #002147;
  font-weight: 400;
}
.join-team-box {
  margin-top: 40px;
  position: relative;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  min-height: 200px;
  display: flex;
}

.join-team-content {
  flex: 1;
  padding-right: 150px; /* Space for the image */
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #002147;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-row{
  border-radius: 25px;
  overflow: hidden;
}

.job-board-btn {
  background-color: transparent;
  color: #0099cc;
  border: none;
  padding: 10px 0;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.job-board-btn i {
  margin-left: 10px;
  font-size: 0.8rem;
}

.team-image-container {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 200px;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
}

/* Right Column Styles */
.contact-form {
  background-color: #f0f8ff;
  color: white;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#contactForm{
  padding: 20px 30px;
  border-radius: 15px;
    color: #353535 !important;
  background: white !important;
  box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.1);
}

label {
  font-size: 0.9rem;
  margin-bottom: 5px;
  font-size: 16px;
  color: #303030;
  display: block;
}

.form-select {
  /* background-color: #0099cc; */

  /* width: 100% !important; */
  border: 1px solid #0099cc;
  color: #353535;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.form-control {
  /* background-color: #0099cc; */

  /* width: 100% !important; */
  border: 1px solid #0099cc;
  color: #353535;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

textarea{
  color: #333 !important;
}

textarea.form-control {
  color: black !important;
  resize: none;
}

.submit-btn {
  width: 70%;
  border:2px solid #0099cc;
  color: #0099cc;
  background: white;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 10px;
  
}
.submit-btn:hover{
      background: #0099cc ;
    color: white;
    border: 2px solid #0099cc;
}

.submit-btn i {
  margin-left: 10px;
  font-size: 0.8rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .join-team-content {
    padding-right: 100px;
  }

  .team-image-container {
    width: 140px;
  }
}

@media (max-width: 768px) {
  .contact-info {
    padding: 40px 20px;
  }

  .content-wrapper {
    margin: 0 auto;
  }

  h1 {
    font-size: 2.2rem;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .join-team-box {
    padding: 20px;
  }

  .join-team-content {
    padding-right: 80px;
  }

  .team-image-container {
    width: 100px;
  }

  h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .join-team-box {
    flex-direction: column;
    padding-bottom: 200px;
  }

  .join-team-content {
    padding-right: 0;
  }

  .team-image-container {
    width: 150px;
    right: 50%;
    transform: translateX(50%);
  }
}

.contact-link{
  color: #002147;
  transition: 0.2s linear;
}
.contact-link:hover{
  color: #0099cc;
}
.iti {
  width: 100% !important;
}