body {
  background-color: #f8f9fa;
}

.carousel {
  margin-bottom: 2rem;
}

.carousel-inner {
  overflow: hidden;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.mobile-screenshot {
  height: 600px;
  width: 500px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.5s ease;
  transform: skew(-5deg);
  /* Effet incliné */
}

.image-wrapper:hover .mobile-screenshot {
  transform: translateY(-10px);
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 100%;
  opacity: 0.7;
}

.carousel-control-prev-icon {
  /* background-color: #000;
  border-radius: 50%;
  padding: 1.5rem; */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-indicators {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 0;
}

.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 4px;
  background-color: #666;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  width: 24px;
  border-radius: 4px;
  background-color: #333;
}

@media (max-width: 768px) {
  .mobile-screenshot {
    height: 400px;
  }

  .carousel-item .row {
    flex-direction: column-reverse;
  }

  .carousel-item .col-md-6:first-child {
    margin-top: 2rem;
  }
}