/* Careers Page Styles */

/* Hero Section */
.careers-hero {
    position: relative;
    background-image: url("/placeholder.svg?height=800&width=1600&query=school teachers in classroom");
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
  }
  
  .careers-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  .careers-hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .careers-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .careers-hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  /* Why Join Us Section */
  .why-join-us {
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
  }
  
  .section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #0056b3;
    margin: 15px auto 0;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .benefit-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .benefit-card .icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
  }
  
  .benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .benefit-card p {
    color: #666;
    line-height: 1.6;
  }
  
  /* Current Openings Section */
  .current-openings {
    padding: 80px 0;
  }
  
  .job-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  
  .filter-btn {
    background-color: transparent;
    border: 2px solid #0056b3;
    color: #0056b3;
    padding: 10px 20px;
    margin: 0 10px 10px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background-color: #0056b3;
    color: #fff;
  }
  
  .job-listings {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .job-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .job-header {
    background-color: #f5f5f5;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .job-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
  }
  
  .job-type {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .full-time {
    background-color: #e6f7ff;
    color: #0056b3;
  }
  
  .part-time {
    background-color: #fff0e6;
    color: #ff6600;
  }
  
  .job-details {
    padding: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .job-details p {
    margin: 10px 0;
    color: #555;
  }
  
  .job-description {
    padding: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .job-description p {
    line-height: 1.6;
    color: #666;
  }
  
  .job-footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .job-footer p {
    color: #777;
    margin: 0;
  }
  
  .apply-btn {
    padding: 10px 25px;
  }
  
  .no-jobs-message {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 30px;
  }
  
  /* Application Process Section */
  .application-process {
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  
  .process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }
  
  .process-timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #0056b3;
  }
  
  .timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
  }
  
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  
  .timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0056b3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-content {
    width: 45%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
  }
  
  .timeline-content h3 {
    color: #0056b3;
    margin-bottom: 10px;
  }
  
  .timeline-content p {
    color: #666;
    line-height: 1.6;
  }
  
  /* Application Form Section */
  .application-form {
    padding: 80px 0;
  }
  
  .section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
  }
  
  #job-application-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  input[type="file"] {
    padding: 10px 0;
  }
  
  textarea {
    height: 120px;
    resize: vertical;
  }
  
  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .checkbox-group input {
    width: auto;
  }
  
  .checkbox-group label {
    margin-bottom: 0;
  }
  
  .form-submit {
    text-align: center;
    margin-top: 30px;
  }
  
  .form-message {
    max-width: 800px;
    margin: 30px auto 0;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .form-message i {
    font-size: 2rem;
  }
  
  .form-message.success {
    background-color: #e6f7ee;
    color: #00a651;
  }
  
  .form-message.error {
    background-color: #ffebee;
    color: #f44336;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  
  .testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }
  
  .testimonial-slide {
    padding: 20px;
  }
  
  .testimonial-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    position: relative;
  }
  
  .testimonial-content:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    transform: rotate(45deg);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 30px;
  }
  
  .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
  }
  
  .author-info h4 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
  }
  
  .author-info p {
    margin: 5px 0 0;
    color: #777;
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }
  
  .prev-btn,
  .next-btn {
    background-color: #0056b3;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .prev-btn:hover,
  .next-btn:hover {
    background-color: #003d7a;
  }
  
  .testimonial-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .dot.active {
    background-color: #0056b3;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 80px 0;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
  }
  
  .faq-toggle {
    color: #0056b3;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-toggle {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
  }
  
  .faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
  }
  
  /* Contact HR Section */
  .contact-hr {
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .contact-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    width: 300px;
    transition: transform 0.3s ease;
  }
  
  .contact-item:hover {
    transform: translateY(-5px);
  }
  
  .contact-item .icon {
    font-size: 2rem;
    color: #0056b3;
  }
  
  .contact-item h3 {
    margin: 0 0 10px;
    color: #333;
  }
  
  .contact-item p {
    margin: 0;
    color: #666;
  }
  
  .contact-item a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-item a:hover {
    color: #003d7a;
    text-decoration: underline;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .careers-hero h1 {
      font-size: 2.8rem;
    }
  
    .careers-hero p {
      font-size: 1.3rem;
    }
  
    .process-timeline:before {
      left: 30px;
    }
  
    .timeline-icon {
      left: 30px;
      transform: none;
    }
  
    .timeline-content {
      width: calc(100% - 80px);
      margin-left: 80px !important;
      margin-right: 0 !important;
    }
  }
  
  @media (max-width: 768px) {
    .careers-hero {
      height: 400px;
    }
  
    .careers-hero h1 {
      font-size: 2.5rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .form-row {
      flex-direction: column;
      gap: 0;
    }
  
    .contact-item {
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .careers-hero {
      height: 350px;
    }
  
    .careers-hero h1 {
      font-size: 2rem;
    }
  
    .careers-hero p {
      font-size: 1.1rem;
    }
  
    .benefit-card {
      padding: 20px;
    }
  
    .job-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    .timeline-content {
      width: calc(100% - 60px);
      margin-left: 60px !important;
    }
  
    .timeline-icon {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
  }
  