.testimonial-carousel {
  width: 650px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.testimonial-carousel .testimonial-item {
  color: #999;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
}
.testimonial-carousel .testimonial-item a {
  color: #eb7245;
}
.testimonial-carousel .testimonial-img-box {
  width: 145px;
  height: 145px;
  margin: 0 auto;
  border-radius: 50%;
}
.testimonial-carousel .testimonial-img-box img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}
.testimonial-carousel .testimonial-text {	
  padding: 30px 0 10px;
}
.testimonial-carousel .testimonial-overview {	
  text-align: center;
  padding-bottom: 5px;
}
.testimonial-carousel .testimonial-overview b {
  color: #333;
  font-size: 15px;
  text-transform: uppercase;
  display: block;	
  padding-bottom: 5px;
}
.testimonial-carousel .testimonial-star-rating i {
  font-size: 18px;
  color: #ffdc12;
}
.testimonial-carousel .testimonial-carousel-control {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #999;
  text-shadow: none;
  top: 4px;
}
.testimonial-carousel-control i {
  font-size: 20px;
  margin-right: 2px;
}
.testimonial-carousel-control.left {
  left: auto;
  right: 40px;
}
.testimonial-carousel-control.right i {
  margin-right: -2px;
}
.testimonial-carousel .testimonial-carousel-indicators {
  bottom: 15px;
}
.testimonial-carousel-indicators li, .testimonial-carousel-indicators li.active {
  width: 11px;
  height: 11px;
  margin: 1px 5px;
  border-radius: 50%;
}
.testimonial-carousel-indicators li {	
  background: #e2e2e2;
  border-color: transparent;
}
.testimonial-carousel-indicators li.active {
  border: none;
  background: #888;		
}
    /* Style du titre principal avec trait en bas */
    .section-title {
      text-align: center;
      font-family: 'Roboto', sans-serif;
      font-weight: bold;
      position: relative;
      margin: 14px 0 25px;
      font-size: 28px;
      color: #141d26;
  }
  .section-title::after {
      content: "";
      width: 59px;
      position: absolute;
      margin: 0 auto;
      height: 3px;
      background: red;
      left: 0;
      right: 0;
      bottom: -10px;
  }
  
  .topsect{
      padding-top: 0.2em !important;
      padding-bottom: 0.2em;
  }
   /* Style du titre principal avec trait en bas */
   .section-title2 {
      text-align: left;
      font-family: 'Roboto', sans-serif;
      font-weight: bold;
      position: relative;
      margin: 25px 0 50px;
      font-size: 28px;
      color: #141d26;
  }
  .section-title2::after {
      content: "";
      width: 100px;
      position: absolute;
      margin: 0 auto;
      height: 3px;
      background: red;
      left: 0;
      right: 0;
      bottom: -10px;
  }
  
  .topsect{
      padding-top: 0.2em !important;
  }
  .bottom-red-bar {
      width: 100%;
      height: 5px; /* hauteur de la barre, tu peux ajuster */
      background-color: #ca0335; /* couleur rouge */
      position: fixed;
      bottom: 0;
      left: 0;
  }
  .swiper-slider {
      width: 100%;
      height: 100%;
  }
  
  .swiper-clients-img {
      width: 100%;
      height: 100%;
  }
  
  .swiper-button-next, .swiper-button-prev {
      color: #000; /* Adjust if needed */
  }
  

  .custom-card__img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 1.5rem;
}

.custom-card__container {
    display: grid;
    gap: 3.5rem;
}

.custom-card__article {
    position: relative;
    overflow: hidden;
}

.custom-card__data {
    background-color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
    border-radius: 1rem;
    position: absolute;
    bottom: -9rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    margin-left: 1em;
    opacity: 0;
    transition: opacity 1s 1s;
}

.custom-card__description {
    font-size: 0.875rem;
    margin-bottom: .25rem;
}

.custom-card__titled {
    font-size: 2.2rem;
    font-weight: 500;
    color: #333;
    margin-bottom: .75rem;
}

.custom-card__button {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
}

.custom-card__button:hover {
    text-decoration: none;
}

.custom-card__article:hover .custom-card__data {
    animation: custom-show-data 1s forwards;
    opacity: 1;
    transition: opacity .3s;
}

.custom-card__article:hover {
    animation: custom-remove-overflow 2s forwards;
}

.custom-card__article:not(:hover) {
    animation: custom-show-overflow 2s forwards;
}

.custom-card__article:not(:hover) .custom-card__data {
    animation: custom-remove-data 1s forwards;
}

@keyframes custom-show-data {
    50% {
        transform: translateY(-10rem);
    }
    100% {
        transform: translateY(-7rem);
    }
}

@keyframes custom-remove-overflow {
    to {
        overflow: initial;
    }
}

@keyframes custom-remove-data {
    0% {
        transform: translateY(-7rem);
    }
    50% {
        transform: translateY(-10rem);
    }
    100% {
        transform: translateY(.5rem);
    }
}

@keyframes custom-show-overflow {
    0% {
        overflow: initial;
        pointer-events: none;
    }
    50% {
        overflow: hidden;
    }
}

/* For small devices */
@media screen and (max-width: 576px) {
    .custom-card__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .custom-card__data {
        width: 70%;
        padding: 1rem;
    }

    .custom-card__titled {
        font-size: 1.25rem;
    }

    .custom-card__description, .custom-card__button {
        font-size: 0.75rem;
    }

    .custom-card__img {
        width: 100%;
        height: 100%;
    }
}

/* For medium devices */
@media screen and (min-width: 768px) {
    .custom-card__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .custom-card__img {
        width: 100%;
    }

    .custom-card__data {
        width: 85%;
    }
}

/* For large devices */
@media screen and (min-width: 1120px) {
    .custom-card__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .custom-card__img {
        width: 348px;
      height: 100%;

    }

    .custom-card__data {
        width: 316px;
        padding-inline: 2.5rem;
    }
}


.work-popup-overlay {
  position: fixed; /* Positionner la popup de maniÃƒÆ’Ã‚Â¨re fixe par rapport ÃƒÆ’Ã‚Â  l'ÃƒÆ’Ã‚Â©cran */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
  z-index: 999999999; /* Assure-toi que la popup est au-dessus des autres ÃƒÆ’Ã‚Â©lÃƒÆ’Ã‚Â©ments */
}


.plans__container {
  padding: 3rem 1.5rem;
}

.plans {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.plansHero__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.plansHero__subtitle {
  text-align: center;
  color: gray;
  font-size: 1.5rem;
}

.planItem__container {
  display: flex; /* Change to flex for row layout */
  flex-wrap: wrap; /* Allow wrapping for responsiveness */
  justify-content: center; /* Center the items */
  gap: 1.5rem; /* Space between cards */
  max-width: 90rem;
}

.planItem {
  border: 1px solid #d9d9d9;
  padding: 3rem;
  text-align: center;
  border-radius: 0.5rem;
  padding-bottom: 2em;
  flex: 1 1 200px; /* Grow and shrink with a minimum width */
  max-width: 300px; /* Maximum width for each card */
}

.planItemfree {
  background-color: #fff;
}

.planItempro {
  background-color: #fff;
  box-shadow: 0px 14px 30px rgba(204, 204, 204, 0.32) !important; 
}

.planItementp {
  background-color: #fff;
}

.card {
  margin-bottom: 1.5rem;
}

.card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.card__icon {
  background-color: var(--blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.card__desc {
  color: #666;
}

.price {
  font-size: 2rem;
  font-weight: bold;
}

.featureList {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  margin-bottom: 2em;
}

.get:hover {
  color: #fff !important;
}

.featureList li {
  margin-bottom: 0.5rem;
}

.featureList li.disabled {
  text-decoration: line-through;
  color: gray;
}

.button {
  padding: 0.75rem 2rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease; /* Transition pour animation */
}

/* Effets de survol pour les boutons */
.button:hover {
  background-color: #0056b3; /* Couleur de fond au survol */
  box-shadow: 0 4px 20px rgb(168 168 168 / 50%); /* Ombre au survol */
  transform: translateY(-2px); /* LÃƒÆ’Ã‚Â©gÃƒÆ’Ã‚Â¨re ÃƒÆ’Ã‚Â©lÃƒÆ’Ã‚Â©vation */
}

.button--pink {
  background-color: #ca0335;
}

.button--pink:hover {
  background-color: #cc0000; /* Couleur de fond au survol */
}

.button--white {
  background-color: white;
  color: #ca0335 !important;
  border: 1px solid #ca0335;
}

/* Effets de survol pour les boutons blancs */
.button--white:hover {
  background-color: #f7f7f7; /* Couleur de fond au survol */
  box-shadow: 0 4px 20px rgb(201 197 197 / 50%); /* Ombre au survol */
  transform: translateY(-2px); /* LÃƒÆ’Ã‚Â©gÃƒÆ’Ã‚Â¨re ÃƒÆ’Ã‚Â©lÃƒÆ’Ã‚Â©vation */
}

.label {
  background-color: #ff4081;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .planItem__container {
      flex-direction: column; /* Stack cards vertically on small screens */
      align-items: center; /* Center align cards */
  }

  .planItem {
      max-width: 100%; /* Allow cards to take full width on mobile */
  }
}



