.breadcrumbs-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.45); */
}

.breadcrumbs-section .content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  margin-top: 60px;
}
.breadcrumbs-section h4 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--banner-text-font);
}

.breadcrumb {
  background: transparent;

  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-family: var(--main-font);
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-item.active {
  color: #fff !important;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff !important;
}

.team-section {
  padding: 60px 20px;

  font-family: var(--main-font);
}

.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 50px;
color: #1d1d1d;
}

.team-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  margin-bottom: 40px;
}

.team-card {
  display: flex;
  align-items: center;
 flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.team-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
  flex-shrink: 0;
}

.team-card .info {
  text-align: left;
}

.team-card h3 {
color: #1d1d1d;
  font-size: 25px;
  font-weight: 600;
}

.team-card .role {
  font-size: 17px;
  font-weight: 500;
  color: #686462;
  /* margin: 5px 0; */
}

.team-card p {
  font-size:17px;
  color: #686462;
  /* margin: 4px 0; */
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 992px) {
  .team-row {
    flex-direction: column;
    gap: 25px;
  }
  
.breadcrumbs-section h4{
  font-size: 40px;
}

  .team-card {
    flex-direction: row;
  }
  .section-title{
    font-size: 20px;
  }
  .team-card h3{
    font-size: 17px;
  }
  .team-card .role {
    font-size: 14px;
  }
  .team-card p{
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .team-card {
    flex-direction: column;
    text-align: center;
  }

  .team-card img {
    margin: 0 0 15px 0;
  }

  .team-card .info {
    text-align: center;
  }
}




@media (max-width: 768px) {
  .breadcrumbs-section {
    height: 250px;
  }

  .breadcrumbs-section h1 {
    font-size: 32px;
  }

  .breadcrumb-item a,
  .breadcrumb-item.active {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-section {
    height: 200px;
  }

  .breadcrumbs-section h1 {
    font-size: 26px;
  }
}
