/* Slide 10 - Our Team */
.slide10-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  padding: 0;
  width: 1600px;
  height: 950px;
}

@media (max-width: 1800px) {
  .slide10-content {
    height: 100%;
    width: 100%;
  }
}

@media (max-height: 700px) {
  .slide10-content {
    height: unset;
  }
}

.slide10-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.team-container-10 {
  width: 100%;
  max-width: 1200px;
  padding: 15px;
  z-index: 2;
  position: relative;
}

.team-title-10 {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #1f2937;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.team-grid-10 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member-10 {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 12px;
}

.team-member-10:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.team-member-10::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 25%, #10b981 50%, #059669 75%, #3b82f6 100%);
}

.member-left-10 {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}

.member-photo-10 {
  position: relative;
  width: 65px;
  height: 65px;
  margin-bottom: 8px;
}

.member-photo-10 img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member-10:hover .member-photo-10 img {
  transform: scale(1.05);
}

.member-overlay-10 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
  border: 2px solid white;
}

.member-overlay-10 img {
  width: 11px;
  height: 11px;
  filter: brightness(0) invert(1);
}

.member-position-10 {
  text-align: center;
}

.member-position-10 h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2px;
  line-height: 1.2;
}

.member-position-10 h4 {
  font-size: 0.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
  line-height: 1.2;
}

.member-position-10 h5 {
  font-size: 0.7rem;
  font-weight: 600;
  color: #10b981;
  line-height: 1.2;
}

.member-right-10 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 80px;
}

.member-description-10 {
  margin-bottom: 8px;
}

.member-description-10 p {
  font-size: 0.9rem !important;
  color: #6b7280;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
  text-align: left;
}

.contact-info-10 {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-item-10 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  color: #374151;
  font-weight: 500;
}

.contact-item-10 img {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.contact-item-10 span {
  line-height: 1.2;
  font-size: 0.8rem;
}

.badge-10 {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
  display: inline-block;
  white-space: nowrap;
}

/* Desktop Large (1440px - 2000px) */
@media (min-width: 1024px) and (max-width: 1600px) and (min-height: 500px) {
  .team-title-10 {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }

  .team-grid-10 {
    gap: 20px;
  }

  .team-member-10 {
    padding: 40px 15px;
    gap: 14px;
  }

  .member-photo-10 {
    width: 70px;
    height: 70px;
  }

  .member-photo-10 img {
    width: 80px;
    height: 80px;
  }

  .member-position-10 h3 {
    font-size: 1rem;
  }

  .member-position-10 h4 {
    font-size: 0.85rem;
  }


}


/* Tablet (767px - 1020px) */
@media (min-width: 767px) and (max-width: 1020px) {
  .slide10-content {
    padding: 30px 15px;
  }

  .team-title-10 {
    font-size: 2rem;
    margin-bottom: 18px;
  }

  .team-grid-10 {
    gap: 14px;
  }

  .team-member-10 {
    padding: 14px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }

  .member-left-10 {
    min-width: auto;
  }

  .member-right-10 {
    align-items: center;
  }

  .member-description-10 {
    text-align: center;
  }

  .contact-info-10 {
    align-items: center;
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .slide10-content {
    padding: 20px 10px;
  }

  .team-title-10 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .team-grid-10 {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 400px;
  }

  .team-member-10 {
    padding: 12px;
    gap: 8px;
    flex-direction: column;
    text-align: center;
  }

  .member-left-10 {
    min-width: auto;
  }

  .member-photo-10 {
    width: 60px;
    height: 60px;
    margin-bottom: 6px;
  }

  .member-photo-10 img {
    width: 60px;
    height: 60px;
  }

  .member-overlay-10 {
    width: 20px;
    height: 20px;
  }

  .member-overlay-10 img {
    width: 10px;
    height: 10px;
  }

  .member-position-10 h3 {
    font-size: 0.9rem;
  }

  .member-position-10 h4 {
    font-size: 0.75rem;
  }

  .member-position-10 h5 {
    font-size: 0.65rem;
  }

  .member-right-10 {
    align-items: center;
    min-height: auto;
  }

  .member-description-10 {
    text-align: center;
    margin-bottom: 6px;
  }

  .member-description-10 p {
    font-size: 0.65rem;
  }

  .contact-info-10 {
    align-items: center;
    gap: 2px;
  }

  .contact-item-10 {
    font-size: 0.6rem;
    gap: 4px;
    justify-content: center;
  }

  .contact-item-10 img {
    width: 9px;
    height: 9px;
  }
}

/* Mobile Small & Height constraints */
@media (max-height: 700px) {
  .slide10-content {
    padding: 15px 10px;
  }

  .team-title-10 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .team-grid-10 {
    gap: 10px;
  }

  .team-member-10 {
    padding: 10px;
    gap: 6px;
  }

  .member-photo-10 {
    width: 50px;
    height: 50px;
  }

  .member-photo-10 img {
    width: 50px;
    height: 50px;
  }

  .member-description-10 p {
    font-size: 0.6rem;
    line-height: 1.2;
  }

  .contact-item-10 {
    font-size: 0.55rem;
  }
}


/* Desktop Small (767px - 1100px) */
@media (min-width: 767px) and (max-width: 1100px) {
  .slide10-content {
    padding: 20px 12px;
  }

  .team-title-10 {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }

  .team-grid-10 {
    gap: 15px;
    max-width: 800px;
  }

  .team-member-10 {
    padding: 15px;
    gap: 11px;
    flex-direction: column;
    text-align: center;
  }

  .member-left-10 {
    min-width: auto;
    align-items: center;
  }

  .member-photo-10 {
    width: 62px;
    height: 62px;
  }

  .member-photo-10 img {
    width: 62px;
    height: 62px;
  }

  .member-right-10 {
    align-items: center;
    min-height: auto;
  }

  .member-description-10 {
    text-align: center;
    margin-bottom: 8px;
  }

  .member-description-10 p {
    font-size: 0.68rem;
  }

  .contact-info-10 {
    justify-content: center;
    align-items: center;
  }

  .contact-item-10 {
    font-size: 0.63rem;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .slide10-content {
    padding: 6px 4px;
  }

  .team-title-10 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .team-grid-10 {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    max-width: 100%;
  }

  .team-member-10 {
    padding: 16px 6px;
    gap: 4px;
    flex-direction: column;
    text-align: center;
  }

  .member-left-10 {
    min-width: auto;
  }

  .member-photo-10 {
    width: 40px;
    height: 40px;
    margin-bottom: 3px;
  }

  .member-photo-10 img {
    width: 40px;
    height: 40px;
  }

  .member-overlay-10 {
    width: 14px;
    height: 14px;
  }

  .member-overlay-10 img {
    width: 7px;
    height: 7px;
  }

  .member-position-10 h3 {
    font-size: 0.65rem;
  }

  .member-position-10 h4 {
    font-size: 0.55rem;
    margin: 2px;
  }

  .member-position-10 h5 {
    font-size: 0.5rem;
    margin: 2px;
  }

  .member-right-10 {
    align-items: center;
    min-height: auto;
  }

  .member-description-10 {
    text-align: center;
    margin-bottom: 3px;
  }

  .member-description-10 p {
    font-size: 0.65rem !important;
    line-height: 1.0 !important;
    text-align: center !important;
    margin-bottom: 8px;
  }

  .contact-info-10 {
    align-items: center;
    gap: 1px;
  }

  .contact-item-10 {
    font-size: 0.4rem;
    gap: 2px;
    justify-content: center;
  }

  .contact-item-10 img {
    width: 6px;
    height: 6px;
  }
}