/* Hero Section */
.career-hero-sec {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('/homeImages/images/h1.jpeg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    position: relative;
  }
  
  .career-hero-sec-container {
    max-width: 900px;
    width: 100%;
    padding: 1rem;
  }
  
  .career-hero-sec-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Aboreto', cursive;
  }
  
  .career-hero-sec-container p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
  }
  
  .btns {
    background: #007bff;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 2rem;
  }
  
  .btns:hover {
    background: #0056b3;
  }
  
  .btns a {
    text-decoration: none;
    font-size: 1rem;
    color: white;
    display: inline-block;
    width: 100%;
  }
  
  /* ---------- Responsive Design ---------- */
  @media screen and (max-width: 768px) {
    .career-hero-sec {
      height: auto;
      padding: 4rem 2rem;
    }
  
    .career-hero-sec-container h1 {
      font-size: 2.2rem;
    }
  
    .career-hero-sec-container p {
      font-size: 1rem;
    }
  
    .btns {
      padding: 0.7rem 1.2rem;
      font-size: 0.95rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .career-hero-sec-container h1 {
      font-size: 1.8rem;
    }
  
    .career-hero-sec-container p {
      font-size: 0.95rem;
    }
  
    .btns {
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
    }
  }
  




.why-chose {
    padding: 4rem 2rem;
    margin: auto;
}

.why-chose p {
    margin-top: 1rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.why-chose h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #333;
    font-family: 'Aboreto', cursive;
    color: #007bff;
}

.headings {
    font-size: 2rem;
    color: #007bff;
    font-family: 'Aboreto', cursive;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
    /* optional: center-align the heading and lines */
}

.headings::before,
.headings::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 2px;
    background-color: #007bff;
}

.headings::before {
    left: 0;
}

.headings::after {
    right: 0;
}


.why-chose .bullets {
    list-style: none;
    padding-left: 0;
}

.why-chose .bullets li::before {
    content: "✔️ ";
}

.why-chose .team-quotes blockquote {
    background: #fff;
    border-left: 4px solid #007bff;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    font-style: italic;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery img {
    width: calc(33.333% - 1rem);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.reason {
    background-size: cover;
    background-position: center;
    color: white;
    height: 350px;
    display: flex;
    align-items: end;
    justify-content: center;
    /* padding: 20px; */
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}

.overlay-bg {
    height: 100%;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: end;
}

.reason p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media screen and (max-width: 1024px) {
    .reason {
      height: 300px;
    }
  
    .gallery img {
      width: calc(50% - 1rem);
    }
  
    .why-chose p {
      font-size: 1.3rem;
    }
  
    .reason p {
      font-size: 1.1rem;
    }
  }
  
  @media screen and (max-width: 768px) {
    .reason {
      height: 250px;
    }
  
    .headings,
    .why-chose h2 {
      font-size: 1.5rem;
    }
  
    .why-chose p {
      font-size: 1.1rem;
      text-align: center;
    }
  
    .reason p {
      font-size: 1rem;
    }
  
    .gallery img {
      width: 100%;
    }
  
    .headings::before,
    .headings::after {
      width: 0%;
    }
  
    .why-chose {
      padding: 2rem 1rem;
    }
  
    .gallery {
      gap: 0.75rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .reason {
      height: 200px;
    }
  
    .reason p {
      font-size: 0.95rem;
      margin-bottom: 0.75rem;
    }
  
    .why-chose p {
      font-size: 1rem;
    }
  
    .headings,
    .why-chose h2 {
      font-size: 1.3rem;
    }
  
    .gallery img {
      width: 100%;
    }
  }
  

  .form-container {
    background: white;
    max-width: 700px;
    margin: auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  .form-container h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  label {
    display: block;
    margin-top: 15px;
  }
  input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
  button {
    margin-top: 20px;
    padding: 12px;
    /* width: 100%; */
    background-color: #28a745;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
  }
  button:hover {
    background-color: #218838;
  }