/* SECTION WRAPPER */
.chairman-section {
  font-family: "Poppins", sans-serif;
  background: #fff;
}

/* TOP RED HEADER */
.top-header {
  background: #0a1c48;
  padding: 60px 20px;
  text-align: center;
}

.top-header h1 {
  color: white;
  font-size: 42px;
  font-weight: 600;
}

/* MAIN CONTENT */
.content-wrapper {
  max-width: 1350px;
  margin: auto;
  padding: 60px 30px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

/* LEFT IMAGE BOX */
.left-box {
  width: 40%;
}

.img-frame {
  border: 12px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  /* width: fit-content; */
}

.img-frame img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

/* RIGHT TEXT */
.right-box {
  width: 60%;
}

.subtext {
  color: #777;
  font-size: 15px;
  margin-bottom: 10px;
  display: inline-block;
}

.title {
  font-size: 34px;
  color: #234e90;
  margin-bottom: 20px;
  font-weight: 700;
}

.right-box p {
  color: #333;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.quote {
  font-style: italic;
  color: #666;
}

/* --------------------------- */
/* RESPONSIVE FOR TABLETS */
/* --------------------------- */
@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .left-box,
  .right-box {
    width: 100%;
  }

  .img-frame {
    margin: auto;
  }
}

/* --------------------------- */
/* RESPONSIVE FOR MOBILES */
/* --------------------------- */
@media (max-width: 600px) {
  .top-header h1 {
    font-size: 30px;
  }

  .content-wrapper {
    padding: 30px 15px;
  }

  .title {
    font-size: 26px;
  }

  .right-box p {
    font-size: 15px;
  }
}
