.elementor-145 .elementor-element.elementor-element-6fbe9ed{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-e14afca */.board-directors-section {
  background: #f4f9ff;
  padding: 70px 20px 120px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1100px;
  margin: 0 auto;
  color: #1a1a1a;
}

.container {
  width: 100%;
}

.section-title {
  font-size: 36px;
  color: #003366;
  text-align: center;
  margin-bottom: 55px;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: '';
  width: 90px;
  height: 4px;
  background: #0077b6;
  display: block;
  margin: 15px auto 0;
  border-radius: 4px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-items: center;
}

.board-member {
  background: white;
  border-radius: 20px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.board-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 119, 182, 0.25);
}

.member-photo {
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(15%);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.board-member:hover .member-photo {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.member-info {
  padding: 25px 20px;
  text-align: center;
}

.member-name {
  font-size: 22px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 6px;
}

.member-position {
  font-style: italic;
  font-size: 16px;
  color: #555555;
  margin-bottom: 14px;
}

.member-bio {
  font-size: 15px;
  line-height: 1.5;
  color: #444444;
}

/* Responsive */

@media (max-width: 900px) {
  .board-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }
}/* End custom CSS */