/* ------------------------------ Carousel Styles ------------------------------ */ 


  /* ========== TIMELINE (Custom) ========== */
  .meta-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
  }
  
  .timeline-item {
    display: flex;
    flex-direction: column;
    border-left: 3px solid #ccc;
    padding-left: 1rem;
    position: relative;
  }
  
  .timeline-year {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #006c60; /* Adica teal */
  }
  
  .timeline-content {
    background: #f9f9f9;
    padding: 1rem;
    border-left: 5px solid #006c60;
  }
  
  .timeline-content img {
    margin-top: 0.5rem;
    max-width: 100%;
    height: auto;
  }
  
  /* Desktop: horizontal timeline */
  @media (min-width: 980px) {
    .meta-timeline {
      flex-direction: row;
      overflow-x: auto;
    }
  
    .timeline-item {
      flex: 0 0 300px;
      border-left: none;
      border-top: 3px solid #ccc;
      padding-left: 0;
      padding-top: 1rem;
      margin-right: 2rem;
    }
  
    .timeline-year {
      margin-bottom: 1rem;
    }
  
    .timeline-content {
      border-left: none;
      border-top: 5px solid #006c60;
    }
  }

//* ===================================
   Testimonial Slider
=================================== */

.testimonial-section {
  background-color: #f3edf1;
}

/* ===================================
   Card layout
=================================== */

.testimonial-card {
  margin: 0 auto;
  padding: 0;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical centering */
  align-items: center;

  min-height: 100%;
}

/* ===================================
   Quote
=================================== */

.testimonial-quote {
  color: var(--color-plum) !important;

  /* CRITICAL FIX */
  width: 100%;
  max-width: 900px;

  /* Arrow-safe padding */
  padding-inline: clamp(2.5rem, 8vw, 5rem);
}

/* ===================================
   Meta line: name · department · years
=================================== */

.testimonial-meta {
  margin-top: 1.5rem !important;
  text-align: center;
  white-space: nowrap;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-dept {
  font-weight: 400;
}

.testimonial-years {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

/* ===================================
   Swiper Layout
=================================== */

.testimonial-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonial-swiper .swiper-slide {
  display: flex;
  position: relative;
}

/* ===================================
   Arrow Positioning
=================================== */

.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  z-index: 10;
  color: #854d75;
}

/* Desktop spacing */
.testimonial-swiper .swiper-button-prev {
  left: clamp(1.25rem, 4vw, 3rem);
}

.testimonial-swiper .swiper-button-next {
  right: clamp(1.25rem, 4vw, 3rem);
}

/* ===================================
   Mobile Adjustments
=================================== */

@media (max-width: 767px) {

  /* Hide arrows on mobile */
  .testimonial-swiper .swiper-button-prev,
  .testimonial-swiper .swiper-button-next {
    display: none;
  }

  /* Tighter quote padding */
  .testimonial-quote {
    padding-inline: 1.25rem;
    max-width: 100%;
  }
}






/* ===================================
   Swiper Pagination (Testimonial + Awards)
=================================== */

.testimonial-swiper .swiper-pagination,
.awards-swiper .swiper-pagination {
  position: static;
  margin-top: 0;
  text-align: center;
}

/* Pagination bullets (hollow) */
.testimonial-swiper .swiper-pagination-bullet,
.awards-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 4px;

  background-color: transparent;
  border: 2px solid var(--color-plum);
  border-radius: 50%;

  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Active bullet */
.testimonial-swiper .swiper-pagination-bullet-active,
.awards-swiper .swiper-pagination-bullet-active {
  background-color: var(--color-plum);
  transform: scale(1.1);
}

/* ===================================
   Swiper Navigation (Testimonial only)
=================================== */

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
  color: #854d75;
  padding: 0.5rem;
}



/* ===================================
   Awards Slider (Corrected)
=================================== */

/* Card container */
.award-slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  height: 100%;
  padding: 1.5rem;
  box-sizing: border-box;

  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);

  word-wrap: break-word;
}

/* Logo area – THIS is the key change */
.award-slide-image {
  flex: 1;                         /* take available vertical space */
  display: flex;
  align-items: center;             /* vertical centre */
  justify-content: center;         /* horizontal centre */
  margin-bottom: 1rem;
  width: 100%;
}

/* Logo image */
.award-slide-image img {
  display: block;
  max-width: 90%;
  max-height: 120px;               /* optional but recommended */
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* Text wrapper */
.award-slide-text {
  text-align: center;
}

/* Title */
.award-slide-text h5 {
  margin: 0 0 0.5rem;
  color: var(--color-gold);
}


/* ===================================
   Swiper Spacing
=================================== */

/* Space BETWEEN slides */
.awards-swiper .swiper-slide {
  padding: 0 12px;
  box-sizing: border-box;
}
/* Space BETWEEN award and pagination */
.awards-swiper .swiper-wrapper {
  margin-bottom: 2rem;
}
