.elementor-9477 .elementor-element.elementor-element-44abfb8{--display:flex;}/* Start custom CSS for html, class: .elementor-element-3b72ade *//* Main title */
.section-title {
  text-align: center;
  font-size: 28px;
  color: #108417;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Founder card */
.founder-card {
  text-align: center;
  margin-bottom: 40px;
}

.founder-card img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  margin: 0 auto 15px;
}

.founder-card h3,
.founder-card p {
  color: #000000; /* Name color black */
  font-size: 18px; /* Reduced size */
}

/* Staff grid - 4 per row */
.staff-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

/* Staff card style */
.staff-card {
  text-align: center;
}

.staff-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  margin: 0 auto 10px;
}

/* Staff name + role */
.staff-card h3,
.staff-card p {
  color: #000000;  /* Black color */
  font-size: 16px; /* Smaller name size */
}

/* Female staff count center */
.female-section {
    max-width: 220px;      /* reduced width */
    margin: 0 auto 40px;
    text-align: center;
}

.female-section img {
    width: 100%;
    height: 180px;        /* smaller height */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.female-section h3 {
    font-size: 0.9rem;    /* smaller text */
    font-weight: 600;
    color: #000;
    line-height: 1.3;
}


/* Mobile responsive */
@media (max-width: 768px) {
  .staff-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-card img {
    width: 130px;
    height: 130px;
  }
}/* End custom CSS */