.about-cards {
    background-color: #f8fafc;
    padding-top: 100px;
    padding-bottom: 100px;
}
.about-mission-card {
    background-color: #2171ff;
    color: #ffff;
    padding: 45px 40px;
    border-radius: 20px;
    border-color: 2px solid #2171ff;
}
.card-two {
    background-color: #ff6100;
    border-color: 2px solid #ff6100;
}
.about-list {
    list-style-type: none;
    padding: 0;
}
.about-icon {
    margin-right: 20px;
}
.about-icon-mian {
    font-size: 40px;
}














.about-team {
    padding: 96px 24px;
}
@media(min-width:768px){
    .teamsection{padding:96px 48px}
}
@media(min-width:1200px){
    .teamsection{padding:96px 96px}
}

.teamsection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
@media(min-width:768px){
  .teamsection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.teamsection-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  cursor: pointer;
}
.teamsection-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.teamsection-card:hover .teamsection-img {
  transform: scale(1.05);
}

/* Overlay */
.teamsection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.7), transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background .3s ease;
}
.teamsection-card:hover .teamsection-overlay {
  background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
}
.teamsection-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.teamsection-overlay p {
  font-size: 1rem;
  color: #cbd5e1;
}



