@charset "utf-8";
.tutor-list {
  max-width: 1100px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px;
}

.tutor-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.tutor-card:hover {
  transform: scale(1.03);
}

/* Tutor Photos */
.tutor-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 10%;
  margin-bottom: 15px;
}

/* Tutor Text */
.tutor-card h2 {
  margin: 10px 0 5px;
}

.tutor-card h4 {
  color: #0e7ac4;
  margin: 5px 0 15px;
  font-weight: normal;
}

.book-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #0e7ac4;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Hover animation */
.book-btn:hover {
  background: #085c92;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Tutor card hover enhancement */
.tutor-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tutor-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}