#hidden-data {
  display: none;
}

.leader-image {
  width: 100%; /* Allows flexibility for responsiveness */
  aspect-ratio: 1 / 1; /* Ensures a perfect circle (1:1 ratio) */
  background-color: #e0e0e0; /* Light gray background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%; /* Creates the circular shape */
  margin: 0 auto; /* Centers the image horizontally within the parent */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for aesthetics */
  filter: grayscale(1);
}

.leader-image-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: auto;
}

.card {
  border: none;
  background-color: transparent !important;
}

.leader-container  button {
  background-color: #F2663E !important;
  color: white;
  font-weight: bold;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for the button */
  border: none;
  transition: all 0.3s ease-in-out;
}

.leader-container  button:hover {
  background-color: #ff4a35; /* Darker tomato on hover */
  transform: scale(1.1); /* Slight zoom effect on hover */
}

h5 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
  font-size: 18px;
}

.text-muted {
  color: gray;
  font-size: 16px;
}

/* .fancybox__content {
  background-color: transparent !important;
} */



.popup-container {
/*   margin: auto; */
  text-align: left;
  font-family: 'Arial', sans-serif;
  display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fancybox__backdrop {
  background: rgb(24 24 27 / 7%) !important;
}

.fancybox__content {
  max-width: 800px;
  min-width: 80%;
  margin: auto;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  font-family: 'Arial', sans-serif;
}

.popup-image {
    border-radius: 100%;
    overflow: hidden;
    filter: grayscale(1)
}

.popup-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.popup-image img {
    background-color: #e0e0e0;
    width: 150px;
    height: 150px;
    position: relative;
}

.popup-title {
  font-size: 24px;
  font-weight: bold;
  color: #f76b1c; /* Use a color matching your theme */
}

.popup-close-btn {
  font-size: 24px;
  background: none;
  border: none;
  color: #f76b1c;
  cursor: pointer;
}

.popup-close-btn:hover {
  color: #ff6347; /* Slightly darker hover color */
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.popup-content {
    text-align: justify;
}

.popup-container {
    position: relative;
    padding: 20px;
}

.carousel__button {
  display: none !important;
}

.popup-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

.popup-close-container {
    background-color: #ff815a;
    border-radius: 4rem;
    height: 2.4rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 2.4rem;
    display: flex;
    align-items: center; /* Centers content vertically */
    justify-content: center; /* Centers content horizontally */
    transition-duration: 300ms;
}

.popup-close-container:hover {
    transform: scale(1.1);
    background-color: #e56e49;
}

.popup-close {
    color: #fff;
    cursor: pointer;
    position: absolute;
    font-size: 35px;
    line-height: 1;
    top: 2px;
    right: 8px;
}

@media (min-width: 769px) {
  .popup-image {
    margin-right: 30px;
  }
}


@media (max-width: 768px) {
  .popup-container {
    padding: 20px;
  }

  .popup-title {
    font-size: 20px;
  }

  .popup-content p {
    font-size: 14px;
  }
  
  .
  
}