.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }
.bg_gallary{
    background-image: url(../IMG/pexels-nickkwanhk-2745258.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position-y: center;
    width: 100%;
    height: 414px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-position-y: -300px;
  
}
.bg_gallary::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.40);
  width: 100%;
  height: 100%;
  position: absolute;
  }
  .chose_list img{
    width:   495px; ;
  }

  .title {
    position: absolute;
    top: 100px;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
  }
  .title h1{
    font-family: SupercellText-Medium, Helvetica, Arial, sans-serif;
  font-size: 45px;
  }
/* Team Gallery Section */
.team-gallery {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.team-gallery h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.team-member {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 16px;
    color: #777;
}
