/*team.min.css*/
.tp-breadcrumb-title img.two,
.tp-breadcrumb-title img {
  width: 100px;
  height: auto;
}
.team-content.pl-10 {
    margin-top: -7px;
}

.team-content p{
    line-height: 22px;
    color:#161616;
}

.team-member-card .card-body {
  padding: 10px;
  background: rgb(30 51 112 / 87%);
  position: absolute;
  width: 100%;
  bottom: 0;
}

.team-member-card .card-body h3.team-name {
  font-size: 22px;
  color: #fff;
  margin-bottom: 5px;
  line-height: 22px;
}

.team-member-card .card-body p.team-position {
  font-size: 16px;
  color: #ffffffd6;
  margin-bottom: 0;
  font-style: italic;
}

.team-member-card .img-wrap {
  overflow: hidden;

  display: block;
  position: relative;
  width: 100%;
}

.team-member-card .img-wrap img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.tp-breadcrumb-space {
  padding-top: 160px;
  padding-bottom: 80px;
}

.other-team-listing .other-team-listing-card {
  margin-bottom: 20px;
   transition: all 0.4s ease;
  display: block;
}
.other-team-listing .other-team-listing-card .other-team-img {
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  
}
.other-team-listing .other-team-listing-card .other-team-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.other-team-listing .other-team-listing-card .other-team-content {
  padding: 10px 0;
}
.other-team-listing .other-team-listing-card .other-team-content h3.team-name {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #161616;
  line-height: 18px;
}
.other-team-listing
  .other-team-listing-card
  .other-team-content
  p.team-position {
  font-size: 14px;
  line-height: 26px;
  color: #161616;
  font-style: italic;
  margin-bottom: 0;
}
.other-team-listing .col-lg-2 {
  padding: 0 7px;
}


.other-team-listing .other-team-listing-card .other-team-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover Effects */
.other-team-listing .other-team-listing-card:hover .other-team-img img {
  transform: scale(1.1); /* zoom in */
}

.other-team-listing .other-team-listing-card:hover .other-team-img::after {
  opacity: 1; /* dark overlay */
}

/* Text animation */
.other-team-listing .other-team-listing-card .team-name,
.other-team-listing .other-team-listing-card .team-position {
  transition: all 0.3s ease;
}

/* Text color change on hover */
.other-team-listing .other-team-listing-card:hover .team-name {
  color: #dbb960;
}

.other-team-listing .other-team-listing-card:hover .team-position {
  color: #999;
}