


/* leadership section css */

.leadership {
    /* max-width: 1100px; */
    margin: 5px auto;
    padding: 20px;
    font-family: "Poppins", sans-serif;
}

.leadership h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #162d42;
    position: relative;
    text-transform: uppercase;
}


.leaders {
    display: flex;
    flex-direction: column;
    gap: 40px;
}


.leader {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    /* border-radius: 18px; */
    padding: 0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.452);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.leader.reverse {
    flex-direction: row-reverse;
}

.leader:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.404);
}

.leader h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.leader h3 a {
  color: #0077b5; /* LinkedIn Blue */
  text-decoration: none;
}

.leader .linkedin-icon i {
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.leader .linkedin-icon i:hover {
  color: #C28B28;
  transform: scale(1.1);
}



.leader .text {
    color: black;
    flex: 1;
    padding: 0 40px;
}

.leader .text a,p{
    color: black;
}

.leader h3 a {
    color: #064082;
    text-decoration: none;
    font-size: 1.5rem;
}

.leader h3 a:hover {
    text-decoration: underline;
}

.position {
    font-weight: 600;
    margin: 8px 0 12px;
}

.desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: black;
    text-align: justify;
}


.leader .img
{
    width: 20%;
    height: 100%;
    background-color: #162d42;
    display: flex;
    justify-content: center;
    align-items: center;
}
.leader img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    transition: transform 0.3s ease;
    background-color: #162d42;
}

.leader img:hover {
    transform: scale(1.05);
}

