/* ---------- TEAM PAGE ---------- */

.team-section {
    padding: 80px 10%;
    text-align: center;
}

.bg-light {
    background: #f9fafb;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--brand, #1B3F8B);
    position: relative;
    text-align: center;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--accent, #D4A017);
    display: block;
    margin: 10px auto 0;
    border-radius: 4px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 40px;
}

.team-card {
    margin: 0px auto;
    width: 1400px;
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    height: 788px;
    object-fit: cover;
    border-radius: 10%;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 20px;
    font-weight: 600;
}

.team-card p {
    color: #6b7280;
    margin-top: 5px;
    font-size: 19px;
}

/* JOIN TEAM SECTION */
.join-team {
    padding: 80px 10%;
    text-align: center;
    background: #1B3F8B;
    color: #fff;
    margin-top: 50px;
}

.join-team h2 {
    font-size: 32px;
    font-weight: 700;
}

.join-team p {
    margin: 10px 0 20px;
    font-size: 16px;
}

.join-btn {
    padding: 12px 28px;
    background: #D4A017;
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.join-btn:hover {
    background: #f0bb31;
}

.team-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: left;
}


.team-info h3 {
    font-size: 22px;
    font-weight: 600;
}

.team-info .role {
    color: #1B3F8B;
    font-weight: 600;
    margin-top: 4px;
}

.team-info .desc {
    margin-top: 10px;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* ===== LEADERS WORDS SECTION ===== */

.leaders-words {
  padding: 120px 10%;
  background: linear-gradient(135deg,#f9fafb,#ffffff);
  text-align: center;
}

.words-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--brand, #1B3F8B);
  margin-bottom: 70px;
  position: relative;
}

.words-title::after {
  content: "";
  width: 100px;
  height: 5px;
  background: var(--accent, #D4A017);
  display: block;
  margin: 18px auto 0;
  border-radius: 5px;
}

.words-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.word-card {
  background: #ffffff;
  padding: 45px 30px;
  border-radius: 22px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.word-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Quote icon */
.quote-icon {
  font-size: 90px;
  color: #D4A017;
  position: absolute;
  top: -25px;
  left: 20px;
  font-family: serif;
  opacity: 0.25;
}

/* Quote text */
.word-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

/* Author block */
.author strong {
  display: block;
  font-size: 18px;
  color: #1B3F8B;
}

.author span {
  font-size: 14px;
  color: #6b7280;
}

/* ===== Responsive ===== */

@media(max-width: 992px) {
  .words-grid {
    grid-template-columns: 1fr;
  }
  .words-title {
    font-size: 36px;
  }
}


/* Mobile responsive */
@media(max-width: 768px) {
    .team-card {
        flex-direction: column;
        text-align: center;
    }
}
