/* about page css start  */
.about-banner {
    position: relative;
    height: 50vh; /* Full screen height */
    background: url('../img/testimonial/bg.webp');
    background-size: cover;
    background-position: center;
  }
  
  .about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(7, 98, 127, 0.7); /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }
  
  .banner-content {
    text-align: center;
    max-width: 800px;
    padding: 20px;
  }
  
  .home-link {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    text-decoration: none;
    color: white;
  }
  
  .home-icon {
    width: 30px;
    margin-right: 10px;
  }
  
  .home-text {
    font-size: 20px;
  }
  
  .about-heading {
    font-size: 50px;
    font-weight: bold;
  }
  
  .about-text {
    font-size: 18px;
    margin-top: 10px;
  }

.apply-top-heading h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.apply-top-heading p {
  text-align: center;
  color: teal;
  font-size: 1rem;
  margin-top: 20px;
}

.apply-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 800px;
  padding: 40px 20px;
  margin: 20px auto;
}

.apply-container .form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.apply-container input,
.apply-container select,
.apply-container textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.apply-container textarea {
  resize: none;
  height: 120px;
}

.apply-container button {
  background-color: teal;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.apply-container button:hover {
  background-color: #005f5f;
}

/* ✅ Mobile Only Overrides */
@media (max-width: 768px) {
  .apply-container {
    width: 95%;
    padding: 20px 10px;
  }

  .apply-container .form-group {
    flex-direction: column;
  }

  .apply-container button {
    width: 100%;
    justify-content: center;
  }
}
