/* =========================
   GLOBAL SCROLL
========================= */
html {
  scroll-behavior: smooth;
}

 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 850px;
  font-family: 'Inter', sans-serif;
  color: #222;
  line-height: 1.6;
  background: url("../imgs/index_bg.png") center / cover no-repeat fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(120, 120, 120, 0.35); /* grey tint */
  z-index: -1;
}

/* =========================
   BACK BUTTON
========================= */

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 20px;
  margin-left:40px;

  padding: 8px 16px;

  background: rgba(0, 0, 0, 0.5);
  color: white;

  border: none;
  border-radius: 6px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: background 0.25s ease, transform 0.2s ease;
}

.back-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-1px);
}

/* =========================
   BOARD OF DIRECTORS STYLES
========================== */
.board-section {
  padding: 40px 40px;
  max-width: 1200px;
  margin: 120px auto;

  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);

  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.board-section::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #1d9931;
  margin: 0 auto 30px auto;
  border-radius: 2px;
}

.board-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.board-subtitle {
  text-align: center;
  margin-bottom: 60px;
  color: #777;
  font-size: 15px;
}

.board-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.board-row:last-child {
  border-bottom: none;
}

.board-row.reverse {
  flex-direction: row-reverse;
}

.board-text {
  flex: 1;
}

.board-text h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}

.board-text h4 {
  font-size: 18px;
  color: #999;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.board-text p {
  line-height: 1.7;
  color: #444;
  text-align:justify;
}

.board-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.board-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.board-image img:hover {
  transform: scale(1.03);
}

/* Mobile */
@media (max-width: 768px) {
  .board-row,
  .board-row.reverse {
    flex-direction: column-reverse;
    text-align: center;
  }

  .board-text{
    text-align:justify;
    margin-bottom: 30px;
  }
}

@media (max-width: 1200px) {
  .board-section {
    padding: 50px 40px;
    margin: 150px 30px 30px 30px; 
  }
}