
/* Hero */
.hero {
  text-align: center;
  padding: 100px 20px;

}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.hero h1 i {
  margin-right: 10px;
}
.hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

/* Team */
.team {
  padding: 80px 20px;
  text-align: center;
}
.team h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.team-subtitle {
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
}

.about {
  
  color: white;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #0d6efd; /* adds accent border */
  transition: transform 0.3s;
}

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