/*-------hire team banner--------*/
.hire-team-banner {
    height: 45vh;
    min-height: 300px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  }

  .hire-team-banner h1 {
    font-size: 50px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }

  .hire-team-banner p {
    font-size: 24px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }

  .hero-img {
    height: 100%;
    object-fit: cover;

  }

  .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    text-align: center;
  }

  @media (max-width: 768px) {
    .hero-banner {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%);
    }

    .overlay h1 {
      font-size: 1.75rem;
    }

    .overlay p {
      font-size: 1rem;
    }
  }

  /*-------hire team banner end--------*/


/* ------first section------- */
   .seat-image {
    height: 300px;
    object-fit: cover;
    width: 100%;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }
  /* ------first section end ------- */


  /*--------------new hire------------*/

  .new-hire .card {
    height: 350px;
    padding: 20px 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
      0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .new-hire .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2),
      0 20px 40px rgba(0, 0, 0, 0.15);
   }
  .new-hire .card-first{
    background-color: #124E90;;
    text-align: center;
    color: white;
  }
  .new-hire ul li {
    font-size: 20px;
    color: black;
    list-style: disc;
    margin-bottom: 20px;
  }
.new-hire .card a{
  background-color: var(--orange-color);
}
  /* -------------new hire end-----------*/



  
/*----------------hire team card -----------*/
.hire-team-card {
    border-radius: 38px !important;
    border: 3px solid var(--blue-color) !important;
}

.hire-team-card .btn {
    font-size: 20px;
    line-height: 35px;
    background-color: var(--orange-color);
    color: white;
}
.hire-team-card img{
    border-radius: 32px 32px 0px 0px;
}
/*----------------hire team card end-----------*/

/* ------------why choose start----------- */
    .content-section {
      padding: 60px 0;
    }

    .why-section-title {
      font-weight: 700;
      color: var(--dark-blue);
    }

    .why-choose-team-page .why-section-subtext {
      color: var(--blue-color);
      font-size: 1rem;
      margin-bottom: 40px;
    }

    .why-choose-team-page .card-box {
      background-color: var(--white-color);
      border: none;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      opacity: 0;
      transform: translateY(40px);
      animation: fadeUp 1s forwards;
    }

    .why-choose-team-page .card-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .why-choose-team-page .card-box h5 {
      color: var(--blue-color);
      font-weight: 600;
      margin-bottom: 10px;
    }

    .why-choose-team-page .card-box p {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Delay animations on each card */
    .why-choose-team-page .card-box:nth-child(1) { animation-delay: 0.2s; }
    .why-choose-team-page .card-box:nth-child(2) { animation-delay: 0.4s; }
    .why-choose-team-page .card-box:nth-child(3) { animation-delay: 0.6s; }
    .why-choose-team-page .card-box:nth-child(4) { animation-delay: 0.8s; }
    .why-choose-team-page .card-box:nth-child(5) { animation-delay: 1s; }
    .why-choose-team-page .card-box:nth-child(6) { animation-delay: 1.2s; }
  
    /* ------------why choose end----------- */

/*----------------faq start-----------*/

    .faq-section {
      background-color: #fff;
      border-radius: 20px;
      box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      padding: 40px;
    }

    .faq-heading {
      font-weight: 700;
      font-size: 2.2rem;
    }

    .brand-color {
      color: black; 
    }

    .accordion-button {
      font-weight: 600;
      transition: background-color 0.2s ease;
      font-size: 20px;
    }

    .accordion-button:not(.collapsed) {
      background-color: #eaf2fe;
      color: var(--blue-color);
    }

    .accordion-item {
      border: none;
      border-bottom: 1px solid #ddd;
    }

    .accordion-body {
      font-size: 1.1rem;
      color: #444;
    }

    .faq-img {
      border-radius: 15px;
      width: 100%;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .faq-heading {
        font-size: 1.7rem;
      }
    }
    /*----------------faq end-----------*/