/* Slick Team Slider Styles */
.our-team {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-view-more {
  text-align: center;
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline {
  border: 2px solid #007bff;
  color: #007bff;
  background: transparent;
}

.btn-outline:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
}

.team-member {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin: 0 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.member-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #007bff;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: 700;
  text-transform: uppercase;
}

.member-info h3 {
  color: #2c3e50;
  font-size: 1.4em;
  margin-bottom: 8px;
  font-weight: 600;
}

.member-title {
  color: #007bff;
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 5px;
}

.member-email {
  color: #28a745;
  font-size: 0.85em;
  margin-bottom: 8px;
  font-weight: 500;
}

.member-experience {
  color: #6c757d;
  font-size: 0.9em;
  margin-bottom: 15px;
  font-style: italic;
}

.member-description {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.member-qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.member-qualifications span {
  background: #e3f2fd;
  color: #1976d2;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 500;
}



/* Responsive Design */
@media (max-width: 768px) {
  .our-team {
    padding: 60px 0;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .team-member {
    padding: 25px;
  }
  
  .member-photo {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .team-member {
    padding: 20px;
  }
  
  .member-info h3 {
    font-size: 1.2em;
  }
  
  .member-title {
    font-size: 1em;
  }
}