/* Team Profile Cards CSS - Matches site theme: #252525 dark, #82c419 green */

.team_section {
  background-color: #252525;
  padding: 90px 0;
}

.team_section .container {
  max-width: 1170px;
}

.team_section h2 {
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.team_container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.team_profile {
  flex: 1 1 calc(50% - 30px);
  margin: 15px;
  position: relative;
  text-align: center;
  color: #ffffff;
}

.team_profile .img-box {
  position: relative;
  height: 400px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 15px;
}

.team_profile .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team_profile:hover .img-box img {
  transform: scale(1.05);
}

.team_profile .detail-box {
  background-color: #252525;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(130, 196, 25, 0.1);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.team_profile:hover .detail-box {
  border-color: #82c419;
  transform: translateY(-10px);
}

.team_profile h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #ffffff;
}

.team_profile h4 {
  color: #82c419;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.team_profile p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.team_profile ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.team_profile ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 15px;
}

.team_profile ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #82c419;
  font-weight: bold;
  font-size: 20px;
}

.timing {
  font-weight: 600;
  color: #82c419;
  font-size: 16px;
  background: rgba(130, 196, 25, 0.1);
  padding: 10px 15px;
  border-radius: 5px;
  border-left: 4px solid #82c419;
}

/* Responsive */
@media (max-width: 768px) {
  .team_container {
    flex-direction: column;
  }

  .team_profile {
    flex: 1 1 100%;
    margin: 15px 0;
  }
}

@media (max-width: 576px) {
  .team_section {
    padding: 60px 0;
  }

  .team_section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .team_profile .detail-box {
    padding: 20px 15px;
  }
}

