

/* Leader Speaks Section */
.leaders-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: rgba(6, 106, 14, 0.2);
  }
  
  .leaders-speak {
    width: 100%;
    max-width: 1200px;
    position: relative; /* keep this */
    overflow: hidden;
    padding: 0 40px; /* add a bit of side padding */
  }
  
  
  .leader-quote {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background-color: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .leader-quote.active {
    display: flex;
    animation: fadeIn 1s ease;
  }
  
  .leader-img {
    flex: 1;
  }
  
  .leader-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .leader-content {
    flex: 1;
    padding: 20px;
  }
  
  .leader-content p.quote {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
  }
  
  .leader-info {
    margin-top: 20px;
    font-weight: bold;
    font-size: 18px;
    color: #444;
  }

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: rgba(6, 106, 14, 0.85);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-arrow.prev { left: 10px; }
.nav-arrow.next { right: 10px; }

@media screen and (max-width: 768px) {
  .nav-arrow { display: none; }
}
  
  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media screen and (max-width: 900px) {
    .leader-quote {
      flex-direction: column;
      text-align: center;
      padding: 40px 20px;
    }
    .leader-img img {
      max-width: 100%;
      margin-bottom: 20px;
    }
    .leader-content {
      padding: 0;
    }
  }
  