

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  background:#f9fbff;
}

/* SECTION */
.team-section{
  padding:80px 20px;
  max-width:1200px;
  margin:auto;
}

/* HEADING */
.team-header{
  text-align:center;
  margin-bottom:60px;
}

.team-header span{
  color:#ff6b00;
  font-weight:600;
}

.team-header h2{
  font-size:42px;
  font-weight:700;
  margin-top:10px;
  color:#0b132a;
}

.team-header p{
  margin-top:15px;
  color:#6c757d;
  max-width:600px;
  margin-inline:auto;
}

/* GRID */
.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* CARD */
.team-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.35s;
}

.team-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 60px rgba(0,0,0,0.1);
}

/* IMAGE */
.team-img{
  position:relative;
  overflow:hidden;
}

.team-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

.team-card:hover img{
  transform:scale(1.08);
}

/* CONTENT */
.team-content{
  padding:20px;
  text-align:center;
}

.team-content h4{
  font-size:18px;
  color:#0b132a;
}

.team-content p{
  font-size:14px;
  color:#6c757d;
  margin-top:5px;
}

/* SOCIAL */
.social{
  margin-top:15px;
  display:flex;
  justify-content:center;
  gap:10px;
}

.social a{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#f1f3f7;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#0b132a;
  transition:0.3s;
}

.social a:hover{
  background:#ff6b00;
  color:#fff;
  transform:translateY(-3px);
}

/* RESPONSIVE */
@media(max-width:1024px){
  .team-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .team-grid{
    grid-template-columns:1fr;
  }

  .team-header h2{
    font-size:30px;
  }
}
