    .years-slider .milestone{ text-align: center; width: 100%;padding:10px 15px;color:var(--color-primary);font-size:16px;position: relative;background: #fff;}
.years-slider .milestone ul{list-style:none;margin:0; padding:0;}
.years-slider .owl-item a{text-decoration:none; color: var(--color-accent);background:#fff;padding:3px;line-height:30px; font-weight: 700;}
.years-slider .owl-item.active.center a{color:var(--color-primary);font-size:30px;font-weight:bold;line-height:30px}
.years-slider .years{position:relative;height:30px;}
.years-slider .years:after{content:"";position:absolute;height:2px;width:70%;background:#6c6c6c;top:45%;}
.years-slider .owl-stage > div:last-child > div.years:after{width:0;}

.years-slider .years-carousel.owl-carousel {
  margin-bottom: 20px;
}


#about-pg-intro h2 {
  font-size: 52px;
  line-height: 60px;
}

#about-logos .row {
  justify-content: center;
  align-items: center;
}

#about-logos {
  padding: 60px;
  margin-bottom: 80px;
  background-color: #EEF1F3;
}

#about-logos .data {
  text-align: center;
}

#about-logos img {
  max-height: 120px;
  margin-bottom: 5px;
}

video {
     background-color: #fff !important; /* or whatever you want */
}


#hero-carousel-2024 {
  margin: 50px 0;
}

#hero-carousel-2024 .slide-item {
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin: 0 10px;
}

#hero-carousel-2024 .slide-content {
  align-items: center;
}



#hero-carousel-2024 .slide-text {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

#hero-carousel-2024 .slide-text h2 {
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

#hero-carousel-2024 .slide-text p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 16px;
}

#hero-carousel-2024 .slide-btn {
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

#hero-carousel-2024 .slide-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Remove navigation buttons */
#hero-carousel-2024 .owl-nav {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #hero-carousel-2024 .slide-content {
    min-height: auto;
  }
  
  #hero-carousel-2024 .slide-image {
    height: 250px;
  }
  
  #hero-carousel-2024 .slide-text {
    height: auto;
    padding: 30px 20px;
  }
  
  #hero-carousel-2024 .slide-text h2 {
    font-size: 1.5rem;
  }
}


.team-section {
  padding: 0px 0 60px 0;
}

.team-member {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.member-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e9ecef;
  flex-shrink: 0;
}

.member-content {
  margin-left: 20px;
}

.member-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.member-description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

.member-highlight {
  color: var(--color-primary);
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .team-member {
    padding: 20px;
  }
  
  .member-image {
    width: 60px;
    height: 60px;
  }
  
  .member-content {
    margin-left: 15px;
  }
  
  .member-name {
    font-size: 1rem;
  }
  
  .member-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .team-member .d-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .member-content {
    margin-left: 0;
    margin-top: 15px;
  }
}


.highlights-section {
  padding: 80px 0;
  background-color: #f4f6f8;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.highlight-item {
  text-align: center;
  padding: 30px 20px;
  height: 100%;
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  background-color: #2c5aa0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.highlight-icon i {
  font-size: 2.2rem;
  color: white;
}

.highlight-item:hover .highlight-icon {
  background-color: #1e3d6f;
  transform: scale(1.1);
}

.highlight-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.highlight-description {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* Separator lines between items */
.col-separator {
  position: relative;
}

.col-separator:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 120px;
  background-color: #dee2e6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .col-separator::after {
    display: none;
  }
  
  .highlight-item {
    margin-bottom: 40px;
  }
  
  .highlights-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .highlight-icon {
    width: 70px;
    height: 70px;
  }
  
  .highlight-icon i {
    font-size: 2rem;
  }
  
  .highlight-title {
    font-size: 1.2rem;
  }
  
  .highlight-description {
    font-size: 0.95rem;
  }
}