


/* Icon wrapper */


.icon-wrap {
  width: 50px;
  height: 50px;
  background-color: #32C36C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

/* Feature layout */
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: nowrap;
}

.feature-item p {
  margin: 0;
  font-size: 14px;
  color: #333;
  line-height: 1.2;
}

.feature-item h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

/* Responsive image fix */
.object-fit-cover {
  object-fit: cover;
  min-height: 100%;
  height: 100%;
}

/* Mobile adjustments */
@media (max-width: 575.98px) {
  .icon-wrap {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .feature-item {
    gap: 10px;
    margin-bottom: 16px;
  }

  .feature-item h6 {
    font-size: 14px;
  }
}





  /* faq start */

.faq-item {
  background: #fff;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.faq-toggle {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #32C36C;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-toggle:hover {
  color: #10a34b;
}


  /* faq end */

  /* team start */

.team-section {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.team-member {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(0, 255, 0, 0.493);
}

.team-member.reverse {
  flex-direction: row-reverse;
}

.diamond {
  width: 150px;
  height: 150px;
  transform: rotate(45deg);
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
}

.diamond img {
  width: 130%;
  height: 130%;
  object-fit: cover;
  transform: rotate(-45deg);
}

.team-content {
  max-width: 500px;
  text-align: left;
  margin-left: 20px;
}

.team-member.reverse .team-content {
  margin-left: 0;
  margin-right: 20px;
}

.team-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.team-content .role {
  color: #32C36C;
  font-weight: normal;
  margin-left: 8px;
}

.team-content p {
  margin-bottom: 10px;
  color: #555;
  margin-left: 10px;
}

.team-icons a {
  color: #32C36C;
  margin-right: 12px;
  font-size: 18px;
  transition: color 0.3s;
}

.team-icons a:hover {
  color: #148943;
}


@media (max-width: 768px) {
  .team-member,
  .team-member.reverse {
    flex-direction: column;
    text-align: center;
  }

  .team-content {
    margin: 20px 0 0 0 !important;
    text-align: center;
  }

  .team-content h3 {
    padding: 10px;
    flex-direction: column;
  }

  .team-content .role {
    margin-left: 0;
    margin-top: 5px;
  }
}


  /* team end */