.testimonials-thumb .testimonials-image img {
    width: 100px !important;
    height: 80px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 2px solid #ccc !important;
    display: block;
  }

  .timeline {
    position: relative;
    margin-left: 20px;
    border-left: 3px solid #ad8410; /* Bootstrap primary color */
    padding-left: 30px;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 40px;
  }
  
  .timeline-dot {
    position: absolute;
    left: -11px;
    top: 5px;
    width: 15px;
    height: 15px;
    background-color: #ad8410;
    border-radius: 50%;
    border: 3px solid #000;
    box-shadow: 0 0 0 3px #91919240;
  }
  
  .timeline-content {
    padding-left: 10px;
  }
  
  .timeline-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  
  .timeline-duration {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
  }

  .timeline-content p,
.timeline-content ul {
  font-size: 1rem;
  color: #212529; /* Same as Bootstrap body text */
  font-family: inherit;
  line-height: 1.6;
}

/* Wrapper adjustments */
#event-highlights {
  background-color: #fff;
}

/* Make carousel container taller for vertical images */
#carouselExample {
  max-height: 600px;
  overflow: hidden;
}

/* Resize and contain image within the carousel */
.carousel-img {
  max-height: 600px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Ensure consistent display behavior */
.carousel-inner {
  height: 100%;
  text-align: center;
  background-color: #f8f9fa;
}

/* Responsive tweak for smaller screens */
@media (max-width: 768px) {
  .carousel-img {
    max-height: 400px;
    object-fit: cover; /* Optional if you want full bleed look */
  }
}

/* Arrow icon styling (make them black) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0%) brightness(0%) saturate(100%);
}

/* Arrow label styling */
.carousel-label {
  color: black;
  font-weight: bold;
  margin-top: 10px;
}




  