/* Styles pour le carousel des partenaires */
.upcoming-event-area {
    position: relative;
    overflow: hidden;
  }
  
  .active-upcoming-event-carusel {
    position: relative;
    padding: 20px 0;
  }
  
  .active-upcoming-event-carusel .single-carusel {
    padding: 15px;
    transition: all 0.5s ease;
  }
  
  .active-upcoming-event-carusel .card {
    transition: all 0.5s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 180px;
  }
  
  .active-upcoming-event-carusel .single-carusel:hover .card {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.15);
  }
  
  .active-upcoming-event-carusel .partner-logo {
    max-width: 80%;
    max-height: 80%;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(0.4);
    opacity: 0.85;
  }
  
  .active-upcoming-event-carusel .single-carusel:hover .partner-logo {
    transform: scale(1.1);
    filter: grayscale(0);
    opacity: 1;
  }
  
  /* Personnalisation des flèches de navigation */
  .active-upcoming-event-carusel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
  }
  
  .active-upcoming-event-carusel .owl-nav button:hover {
    background: #e63946 !important;
    color: white !important;
  }
  
  .active-upcoming-event-carusel .owl-nav button.owl-prev {
    left: -20px;
  }
  
  .active-upcoming-event-carusel .owl-nav button.owl-next {
    right: -20px;
  }
  
  .active-upcoming-event-carusel .owl-nav button span {
    font-size: 24px;
    line-height: 0;
    position: relative;
    top: -3px;
  }
  
  /* Animation des points de navigation */
  .active-upcoming-event-carusel .owl-dots {
    text-align: center;
    margin-top: 20px;
  }
  
  .active-upcoming-event-carusel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
  }
  
  .active-upcoming-event-carusel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .active-upcoming-event-carusel .owl-dots .owl-dot.active span {
    background: #e63946;
    width: 20px;
    border-radius: 10px;
  }
  
  /* Animation d'entrée et de sortie */
  .active-upcoming-event-carusel .owl-item {
    opacity: 0.7;
    transform: scale(0.9);
    transition: all 0.5s ease;
  }
  
  .active-upcoming-event-carusel .owl-item.active {
    opacity: 1;
    transform: scale(1);
  }
  
  /* Barre de progression */
  .carousel-progress-container {
    width: 100%;
    height: 4px;
    background: #f1f1f1;
    margin-top: 20px;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .carousel-progress {
    height: 100%;
    background: #e63946;
    width: 0;
  }
  
  /* Effet de brillance au survol */
  .active-upcoming-event-carusel .card {
    position: relative;
    overflow: hidden;
  }
  
  .active-upcoming-event-carusel .card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.8s ease;
  }
  
  .active-upcoming-event-carusel .single-carusel:hover .card::before {
    top: 100%;
    left: 100%;
  }
  
  /* Animation de pulsation */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .active-upcoming-event-carusel .single-carusel.pulse .card {
    animation: pulse 1s ease;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .active-upcoming-event-carusel .owl-nav button {
      width: 35px;
      height: 35px;
    }
  
    .active-upcoming-event-carusel .owl-nav button.owl-prev {
      left: -15px;
    }
  
    .active-upcoming-event-carusel .owl-nav button.owl-next {
      right: -15px;
    }
  }
  
  @media (max-width: 576px) {
    .active-upcoming-event-carusel .owl-nav {
      display: none;
    }
  }
  