.leader-ship .banner {
  min-height: 85vh;
  height: 600px; /* Add fixed height as fallback */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.leader-ship .banner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to right,
    #002438 24%,
    rgba(0, 36, 56, 0.08)
  );
  mix-blend-mode: multiply;
  opacity: 0.6;
}
.leader-ship .breadcrumb {
  font-weight: 800;
  color: #fff;
}
.leader-ship .breadcrumb img {
  width: 2%;
}
.leader-ship .content h2:last-of-type {
  color: #1fe39b;
}
/* start board */
.board .section-title h2 {
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 800;
  color: #002438;
}

@media (max-width: 991px) {
  .board .section-title h2 {
    font-size: 1.8rem;
  }

  .leader-ship .banner {
    min-height: 60vh;
    height: auto;
  }
}

@media (max-width: 575px) {
  .board .section-title h2 {
    font-size: 1.4rem;
  }

  .leader-ship .banner {
    min-height: 50vh;
  }
}

.leader-info {
  display: flex;
  flex-direction: column;
  width: 60%;
  gap: 15px;
}
@media (max-width: 991px) {
  .leader-info {
    width: 90%;
  }
}
.leader-info a:first-of-type {
  text-decoration: none;
  font-weight: 600;
  color: #002437;
  font-size: 17px;
  transition: 0.1s all ease;
}
.leader-info a:first-of-type i {
  color: #1fe39b;
}
.leader-info a:first-of-type:hover i {
  color: #002437;
}
.leader-info a:first-of-type:hover {
  color: #1fe39b;
}
.leader-info img {
  border-radius: 15px;
}
.leader-info p {
  font-size: 17px;
}
/* start owner */
.owners {
  background-color: #263846;
  padding: 100px 0;
  color: #fff;
}
.owners img {
  border-radius: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .owners img {
    display: block;
    margin: auto;
  }
}
.owners .left,
.owners .right {
  width: 70%;
}
@media (max-width: 768px) {
  .owners .left,
  .owners .right {
    width: 100%;
  }
  .owners {
    padding: 40px 0;
  }
}
.owners span {
  color: #ddddddb2;
  font-size: 17px;
}
:dir(rtl) {
  .leader-info a:first-of-type {
    font-size: 13px;
  }
  .leader-info p {
    font-size: 15px;
    font-weight: 400;
  }
  .owners p {
    font-size: 16px;
    font-weight: lighter;
  }
}
