  .slider-wrapper {
    max-width: 90%;
    margin: auto;
    overflow: hidden;
    cursor: grab;
  }

  .slider-container {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
  }

  /*.leadership-card {*/
  /*  flex: 0 0 32%;*/
  /*  background: #fff;*/
  /*  border-radius: 12px;*/
  /*  padding: 20px;*/
  /*  text-align: center;*/
  /*  transition: transform 0.3s, box-shadow 0.3s;*/
  /*  border: 1px solid #C2C2C2;*/
  /*}*/

 
.leadership-card img {
    width: 100%;
    height: 75%;
    border-radius: 0% !important;
    object-fit: fill;
    margin-bottom: 15px;
}
section.leadership-section {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 50px 0;
}
section.leadership-section h2 {
    text-align: left !important;
    padding: 0 48px;
}
.leadership-card {
    width: 32%;            /* FIX: perfect width for 3 cards */
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #C2C2C2;
    border-radius: 12px;
    padding: 15px;
    position: relative;
}

/* POPUP CSS */
.leader-popup{
    position: fixed;
    left:0; top:0;
    width:100%; height:100%;
    background:rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup-content{
    background:#fff;
    padding:30px;
    width:1250px;
    max-height:85vh;
    overflow-y:auto;
    border-radius:12px;
    position:relative;
    text-align:center;
}

.popup-close{
    position:absolute;
    right:15px; 
    top:10px;
    font-size:30px;
    font-weight:bold;
    cursor:pointer;
}

.popup-content img{
    width:120px;
    height:120px;
    border-radius:100px;
    object-fit:cover;
    margin-bottom:15px;
}
