   /* Base Styles */
.trustee-section {
  font-family: 'Poppins', sans-serif;
/*  margin: 50px auto;*/
}

.trustee-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.trustee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Image Container with Hover Effects */
.trustee-img-container {
  position: relative;
  /*height: 300px;*/
  overflow: hidden;
}

.trustee-img {
  /*width: 100%;*/
  /*height: 100%;*/
  object-fit: cover;
  transition: all 0.8s ease;
}

.trustee-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
  opacity: 0.7;
  transition: all 0.5s ease;
}

.trustee-card:hover .trustee-overlay {
  opacity: 0.9;
}

.trustee-card:hover .trustee-img {
  transform: scale(1.05);
}

/* Details Section */
.trustee-details {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.trustee-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #4cb8c4, #2a6496);
  border: none;
  margin: 10px 0;
  transition: all 0.5s ease;
}

.trustee-card:hover .trustee-divider {
  width: 80px;
}

.trustee-role {
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #2a6496 !important;
  font-weight: 600;
}

.trustee-name {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 700;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.trustee-card:hover .trustee-name {
  color: #2a6496;
}

.trustee-bio {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  animation: fadeIn 1.5s ease;
}

/* Social Icons */
.trustee-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  color: #2a6496;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

#trustee-1 .social-icon:nth-child(1) { animation-delay: 0.3s; }
#trustee-1 .social-icon:nth-child(2) { animation-delay: 0.5s; }
#trustee-1 .social-icon:nth-child(3) { animation-delay: 0.7s; }

#trustee-2 .social-icon:nth-child(1) { animation-delay: 0.4s; }
#trustee-2 .social-icon:nth-child(2) { animation-delay: 0.6s; }
#trustee-2 .social-icon:nth-child(3) { animation-delay: 0.8s; }

#trustee-3 .social-icon:nth-child(1) { animation-delay: 0.5s; }
#trustee-3 .social-icon:nth-child(2) { animation-delay: 0.7s; }
#trustee-3 .social-icon:nth-child(3) { animation-delay: 0.9s; }

.social-icon:hover {
  color: #4cb8c4;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .trustee-img-container {
    height: 250px;
  }
  
  .trustee-name {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .trustee-section {
/*    margin: 30px auto;*/
  }
  
  .trustee-card {
    margin-bottom: 30px;
  }
}

/* Base Styles */
.mission-section {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
max-width: 1200px;
margin: 0 auto;
padding: 20px 15px;
color: #333;
background-color: #f9f9f9;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.mission-header {
text-align: center;
margin-bottom: 20px;
}
.mission-title {
font-size: 2.0rem;
color: #2a6496;
margin-bottom: 15px;
font-weight: 700;
}
.title-underline {
width: 100px;
height: 4px;
background: linear-gradient(90deg, #2a6496, #4cb8c4);
margin: 0 auto;
border-radius: 2px;
}
.mission-intro {
font-size: 1.2rem;
line-height: 1.6;
text-align: justify;
margin-bottom: 20px;
color: #444;
}
.highlight {
background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
background-repeat: no-repeat;
background-size: 100% 40%;
background-position: 0 90%;
padding: 0 5px;
font-weight: 600;
}
/* Mission Cards */
.mission-card {
background: #090f1024;
border-radius: 8px;
padding: 25px;
margin: 20px 0px;
box-shadow: 0 3px 10px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mission-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.card-icon {
font-size: 2rem;
margin-bottom: 15px;
}
.card-title {
color: #2a6496;
font-size: 1.5rem;
margin-bottom: 15px;
}
.card-text {
line-height: 1.7;
color: #555;
}
.emphasize {
font-weight: 600;
color: #2a6496;
}
/* Programs List */
.program-list {
margin-top: 15px;
padding-left: 20px;
}
.program-list li {
margin-bottom: 10px;
line-height: 1.6;
}
.program-highlight {
font-weight: 600;
color: #4cb8c4;
}
/* Callout Section */
.mission-callout {
background: linear-gradient(135deg, #2a6496, #4cb8c4);
color: white;
padding:5px;
border-radius: 8px;
margin: 20px 0;
text-align: center;
}
.callout-title {
font-size: 1.4rem;
margin-bottom: 15px;
}
.callout-text {
font-size: 1.1rem;
line-height: 1.7;
max-width: 800px;
margin: 0 auto;
text-align:justify;
}
/* CTA Section */
.mission-cta {
text-align: center;
margin-top: 50px;
}
.cta-text {
font-size: 1.3rem;
margin-bottom: 25px;
color: #444;
}
.cta-highlight {
background: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
background-repeat: no-repeat;
background-size: 100% 40%;
background-position: 0 90%;
padding: 0 5px;
font-weight: 600;
}
.cta-button {
background: #2a6496;
color: white;
border: none;
padding: 12px 30px;
font-size: 1.1rem;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(42, 100, 150, 0.3);
}
.cta-button:hover {
background: #4cb8c4;
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(42, 100, 150, 0.4);
}
/* Gallery Carousel Container */
.slick-carousel {
margin: 0 auto;
max-width: 1200px;
}
/* Individual Slide Styling */
.slick-carousel .popup-gallery-item {
display: block;
padding: 0 10px;
margin-bottom:10px;
margin-left:5px;
box-sizing: border-box;
outline: none;
border:1px solid black;
border-radius:5px;
}
/* Image Container */
.slick-carousel .popup-gallery-item img {
width: 100%;
height: 250px; /* Fixed height */
object-fit: cover; /* Ensures images cover the area without distortion */
object-position: center; /* Centers the image */
border-radius: 8px;
transition: transform 0.3s ease;
}
/* Hover Effect */
.slick-carousel .popup-gallery-item:hover img {
transform: scale(1.02);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Responsive Adjustments */
@media (max-width: 992px) {
.slick-carousel .popup-gallery-item img {
height: 220px;
}
}
@media (max-width: 767px) {
.slick-carousel .popup-gallery-item img {
height: 200px;
}
}
@media (max-width: 480px) {
.slick-carousel .popup-gallery-item img {
height: 180px;
}
}
/* Slick Carousel Arrow Customization */
.slick-carousel .slick-prev,
.slick-carousel .slick-next {
width: 40px;
height: 40px;
z-index: 1;
}
.slick-carousel .slick-prev:before,
.slick-carousel .slick-next:before {
font-size: 40px;
color: #2a7fba;
}
/* Fix for image loading flash */
.slick-carousel .slick-slide {
opacity: 0;
transition: opacity 0.3s ease;
}
.slick-carousel .slick-slide.slick-active {
opacity: 1;
}
#ab01{
   color:white;background: linear-gradient(135deg, #2a6496, #4cb8c4);padding:4px 8px;
   text-align:center;display:flex;
}