.abouts-container {
  width: 90%;
  /* max-width: 1200px; */
  margin: 0 auto;
}
.abouts-section {
  padding: 4rem 0;
  text-align: center;
}
.abouts-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #00923f;
  text-transform: uppercase;
}
.abouts-section p {
  font-size: 15px;
  max-width: 800px;
  margin: 0 auto;
  color: #aaa;
}
.abouts-team-members, .abouts-services {
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  margin-top: 2rem;
  gap: 2rem;
}
.abouts-member, .abouts-service-item {
  background: linear-gradient(135deg, #00923f, #29176b);
  padding: 2rem;
  border-radius: 10px;
  width: 30%;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.abouts-member:hover, .abouts-service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.abouts-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #00923f, #29176b);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  width: 300px;
  min-height: 480px;
  margin: 0 auto 2rem auto;
  position: relative;
  transition: transform 0.3s;
}
.abouts-member img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.abouts-member h3 {
  margin: 0.5rem 0 0.2rem 0;
  color: #fff;
  font-size: 1.4rem;
}
.abouts-member p {
  color: #c2f7e1;
  margin-bottom: 0.5rem;
}
.abouts-member-info {
  color: #eee;
  font-size: 0.98rem;
  margin-bottom: 1.2rem;
  text-align: center;
}
.abouts-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}
.abouts-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, transform 0.2s;
}
.abouts-social-icons a:hover {
  background: #00923f;
  transform: scale(1.1);
}
.abouts-social-icons svg {
  width: 22px;
  height: 22px;
  display: block;
}
.abouts-futuristic-border {
  width: 100px;
  height: 5px;
  background: linear-gradient(135deg, #29176b, #00923f);
  margin: 1rem auto;
}
.abouts-testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 2rem auto 0 auto;
  overflow: hidden;
}
.abouts-testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
}
.abouts-testimonial-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #29176b 60%, #00923f 100%);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.abouts-testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #00923f;
  margin-bottom: 1rem;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.abouts-testimonial-item blockquote {
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 0 1rem 0;
  color: #c2f7e1;
}
.abouts-testimonial-name {
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.2rem;
}
.abouts-testimonial-role {
  font-size: 0.95rem;
  color: #c2f7e1;
}
.abouts-testimonial-arrow {
  background: #fff;
  color: #29176b;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}
.abouts-testimonial-arrow.abouts-left {
  left: -18px;
}
.abouts-testimonial-arrow.abouts-right {
  right: -18px;
}
.abouts-testimonial-arrow:hover {
  background: #00923f;
  color: #fff;
}
@media (max-width: 900px) {
  .abouts-team-members {
    flex-direction: column;
    align-items: center;
  }
  .abouts-member {
    width: 90%;
    min-height: 420px;
  }
  .abouts-testimonial-slider {
    max-width: 98vw;
  }
  .abouts-testimonial-item {
    padding: 1.2rem 0.5rem;
  }
  .abouts-testimonial-arrow.abouts-left {
    left: 2px;
  }
  .abouts-testimonial-arrow.abouts-right {
    right: 2px;
  }
}
@media (max-width: 768px) {
  .abouts-team-members, .abouts-services {
    flex-direction: column;
    align-items: center;
  }
  .abouts-member, .abouts-service-item {
    width: 80%;
  }
}
@media (max-width: 480px) {
  header h1 {
    font-size: 2rem;
  }
  header p {
    font-size: 1rem;
  }
  .abouts-section h2 {
    font-size: 2rem;
  }
  .abouts-member, .abouts-service-item {
    width: 100%;
  }
  .abouts-section p {
    font-size: 1rem;
  }
}
