.leadership-section {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.leadership-section .leadershipSwiper {
  width: 100%;
  overflow: visible;
}
.leadership-section .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* Hide separator line on the last slide */
}
.leadership-section .swiper-slide:last-child::after {
  display: none;
}
.leadership-section .leadership-card {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  position: relative;
  box-sizing: border-box;
}
.leadership-section .leader-image-frame {
  position: relative;
  width: 360px;
  height: 320px;
  flex-shrink: 0;
  background: url("../images/badges/leader-bg-shape.png") no-repeat center center;
  background-size: contain;
  border-radius: 28px 28px 28px 0;
  z-index: 2;
  /* --- BOTTOM-RIGHT LINKEDIN ICON POSITIONING --- */
}
.leadership-section .leader-image-frame .leader-social-link {
  position: absolute;
  bottom: 25px;
  right: 20px;
  z-index: 10;
  display: inline-block;
  line-height: 0;
  transition: transform 0.2s ease;
}
.leadership-section .leader-image-frame .leader-social-link:hover {
  transform: scale(1.1);
}
.leadership-section .leader-image-frame .leader-social-link .social-icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.leadership-section .leader-image-frame .leader-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  mask-image: url("../images/badges/leader-bg-shape.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../images/badges/leader-bg-shape.png");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.leadership-section {
  /* Right Side Content Elements */
}
.leadership-section .leader-content {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 0 0 10px;
  min-width: 0;
}
.leadership-section {
  /* ---------------------------------------------------------
      CSS BACKGROUND QUOTATION GRAPHICS
  --------------------------------------------------------- */
}
.leadership-section .quote-icon {
  width: 38px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}
.leadership-section .quote-icon.quote-start {
  position: absolute;
  background-image: url("../images/badges/quote-icon-start.png");
  left: 352px;
  top: 28px;
  z-index: 10;
  margin: 0;
}
.leadership-section .quote-icon.quote-end {
  background-image: url("../images/badges/quote-icon-end.png");
  align-self: self-end;
  margin-top: 12px;
}
.leadership-section .leader-quote {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #111111;
  margin: 0;
  padding: 14px 20px 0 28px;
  max-width: 620px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 319px;
  box-sizing: border-box;
  transition: none;
}
.leadership-section .leader-quote.is-expanded {
  display: block !important;
  -webkit-line-clamp: unset !important;
  max-height: none !important;
  overflow: visible !important;
  padding-right: 20px;
}
.leadership-section .leader-quote.is-expanded::-webkit-scrollbar {
  width: 4px;
}
.leadership-section .leader-quote.is-expanded::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 4px;
}
.leadership-section .leader-quote.is-expanded::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}
.leadership-section .leader-profile-details {
  margin-top: 0;
  padding-left: 28px;
}
.leadership-section .leader-profile-details .leader-name {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 4px 0;
}
.leadership-section .leader-profile-details .leader-designation {
  font-size: 14px;
  line-height: 1.4;
  color: #555555;
  margin: 0;
  max-width: 560px;
}
.leadership-section {
  /* Slider Navigation capsule styles */
}
.leadership-section .common-swiper-navigation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 40px auto 0 auto;
  padding: 10px 24px;
  border: 1px solid rgba(0, 115, 230, 0.12);
  border-radius: 100px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(11, 48, 86, 0.03);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.leadership-section .common-swiper-navigation .swiper-button-prev,
.leadership-section .common-swiper-navigation .swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin-top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f15a24;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.25s, transform 0.25s;
}
.leadership-section .common-swiper-navigation .swiper-button-prev::after,
.leadership-section .common-swiper-navigation .swiper-button-next::after {
  font-size: 12px;
  font-weight: bold;
}
.leadership-section .common-swiper-navigation .swiper-button-prev:hover,
.leadership-section .common-swiper-navigation .swiper-button-next:hover {
  background-color: #d94816;
  transform: scale(1.05);
}
.leadership-section .common-swiper-navigation .custom-swiper-track {
  position: relative;
  width: 180px;
  height: 6px;
  background-color: rgba(11, 48, 86, 0.06);
  border-radius: 20px;
}
.leadership-section .common-swiper-navigation .custom-swiper-track .custom-swiper-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #0458A1;
  border-radius: 20px;
}
.leadership-section .leadership-read-more-btn {
  display: none;
  font-size: 16px;
  background: none;
  border: 0;
  color: #0080C5;
  font-weight: 600;
  padding: 24px 0 0 28px;
  cursor: pointer;
  text-align: left;
}
.leadership-section .leadership-read-more-btn:hover {
  color: #0080C5;
  text-decoration: underline;
}

@media (min-width: 1920px) {
  .leadership-section .leader-quote {
    font-size: 24px;
  }
  .leadership-section .leader-image-frame .leader-social-link {
    bottom: 24px;
    right: 18px;
  }
}
@media (max-width: 1366px) {
  .leadership-section .leader-quote {
    font-size: 20px;
  }
}
@media (max-width: 1280px) {
  .leadership-card {
    max-width: 850px;
    gap: 36px;
  }
  .leader-image-frame {
    width: 280px;
    height: 255px;
    /* Slightly adjusted to align with smaller text size alignment */
  }
  .leader-quote {
    font-size: 20px;
    max-width: 500px;
    padding: 44px 20px 0 24px;
    /* Adjusted padding-top to keep content starting perfectly */
  }
  .leader-profile-details {
    padding-left: 24px;
  }
  .quote-icon.quote-start {
    /* Re-calculates the relative coordinate placement based on 280px width frame + gap shifts */
    left: 272px;
    top: 24px;
    margin-left: 0;
    /* Reset margins so absolute left rules the placement reliably */
  }
}
@media (max-width: 992px) {
  .leadership-section .swiper-slide {
    width: 100% !important;
    height: auto;
  }
  .leadership-section .leadership-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
  }
  .leadership-section .leader-image-frame {
    width: 280px;
    height: 250px;
    margin-top: 0;
    margin-bottom: 15px;
    position: relative;
  }
  .leadership-section .leader-image-frame .leader-photo {
    -o-object-position: bottom center;
       object-position: bottom center;
  }
  .leadership-section .leader-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .leadership-section .quote-icon {
    width: 32px;
    height: 24px;
    display: block;
  }
  .leadership-section .quote-icon.quote-start {
    order: 1;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 12px auto;
    z-index: 5;
  }
  .leadership-section .quote-icon {
    /* Kept original quote-end styling completely unchanged */
  }
  .leadership-section .quote-icon.quote-end {
    order: 3;
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    z-index: 5;
  }
  .leadership-section .leader-quote {
    order: 2;
    font-size: 16px;
    line-height: 1.45;
    text-align: center;
    max-width: 100%;
    padding: 0 20px;
  }
  .leadership-section {
    /* Placed ONLY the button after order: 3 */
  }
  .leadership-section .leadership-read-more-btn {
    order: 4;
    text-align: center;
    padding: 0 0;
    margin: 0 auto;
    color: #0080C5;
    text-decoration: underline;
    margin-top: -22px;
  }
  .leadership-section .leader-profile-details {
    order: 5;
    margin-top: 15px;
    padding-left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .leadership-section .leader-profile-details .leader-name {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 4px;
  }
  .leadership-section .leader-profile-details .leader-designation {
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    max-width: 85%;
  }
  .leadership-section .common-swiper-navigation {
    margin: 25px auto 0 auto;
  }
}
@media (max-width: 767px) {
  .leadership-section .leadership-card {
    max-width: 100%;
    padding: 0 16px;
  }
  .leadership-section .leader-quote {
    font-size: 14px;
    /* Perfectly sized to minimize layout height */
    line-height: 1.4;
    padding: 0 10px;
  }
}
@media (max-width: 575.98px) {
  .leadership-section .quote-icon {
    width: 28px;
    height: 20px;
  }
  .leadership-section .quote-icon.quote-start {
    margin-bottom: 8px;
    left: -124px;
    top: -20px;
  }
  .leadership-section .leader-quote {
    font-size: 14px;
    line-height: 1.4;
    padding: 0 10px;
  }
  .leadership-section .leader-profile-details .leader-name {
    font-size: 16px;
  }
  .leadership-section .leader-profile-details .leader-designation {
    font-size: 14px;
    max-width: 95%;
  }
  .leadership-section .leader-image-frame .leader-social-link {
    bottom: 9px;
    right: 6px;
  }
}/*# sourceMappingURL=leadership.css.map */