


/* PROFILE */
.chairman-profile {
  display: flex;
  gap: 50px;
  align-items: center;
}
.chairman-img {
  flex-shrink: 0;
}

.chairman-img img {
  width: 100%;              /* bigger size */
  height: 220px;
  object-fit: cover;
  border-radius: 10%;        /* circle profile */
  border: 6px solid #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.chairman-img img:hover {
  transform: scale(1.05);
}
.chairman-text {
padding: 25px;
 background: #fff;
}
.chairman-text h1 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.quote {
  font-style: italic;
  color: var(--accent-red);
  font-weight: 500;
}

/* VIDEO */
.chairman-video {
  max-width: 800px;
  margin: 40px auto;
}

.chairman-video iframe {
  width: 100%;
  height: 400px;
  border-radius: 15px;
}

/* DETAILS */
.chairman-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.detail-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.detail-box h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
  position: relative;
}

.detail-box h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--accent-red);
  position: absolute;
  bottom: -5px;
  left: 0;
}

.detail-box ul {
  padding-left: 20px;
}

.detail-box li {
  margin-bottom: 8px;
}

/* EXTRA */
.chairman-extra {
  margin-top: 40px;
  background: #fff;
  padding: 25px;
}

.chairman-extra p {
  line-height: 1.8;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .chairman-profile {
    flex-direction: column;
    text-align: center;
  }

  .chairman-details {
    grid-template-columns: 1fr;
  }
}