/* === Slider Card Style for Team/Chairman Section === */

.team-member {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  margin: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 600;
}

.team-member p {
  font-size: 15px;
  line-height: 1.6;
  color: #444444;
  margin: 0;
}

/* Dots styling (optional) */
.slick-dots li button:before {
  color: #007cba;
  font-size: 12px;
}

/* Center align slick arrows on left and right */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #007cba;
  border: none;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Positioning on left and right side */
.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

/* Arrow icons */
.slick-prev::before,
.slick-next::before {
  font-size: 20px;
  color: #fff;
  opacity: 1;
  line-height: 1;
  content: '\276E'; /* ← */
}

.slick-next::before {
  content: '\276F'; /* → */
}
/* [type=button],[type=submit],button {
    background-color: transparent;
    border: 1px solid #c36;
    border-radius:3px;
    color:#c36;
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    padding:.5rem 1rem;
    text-align: center;
    transition: all .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap
} */
/* Arrow icons */
/* .slick-prev::before,
.slick-next::before {
  font-size: 20px;
  color: #fff;
  opacity: 1;
  line-height: 1;
  content: '\276E'; 
} */

 