body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
}

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

.portfolio-btn-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.portfolio-btn {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #eee;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
}

.portfolio-btn.active,
.portfolio-btn:hover {
    background-color: #007bff;
    color: white;
}

.video-item {
    margin-bottom: 30px;
}

.video-item iframe {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    border: none;
}

.hidden {
    display: none !important;
}

.section-header h2 {
    font-size: 2.5rem;
}

.section-header span {
    color: #007bff;
}
/* hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh */
.carousel {
  margin-top: 20px;
  position: relative;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 600px) {
  .carousel {
    display: flex;
    flex-direction: column;
  }

  .carousel .carousel-container {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
  }

  .carousel .captionsClients {
    width: 100%;

    text-align: center;
    padding: 0px;
    border-radius: 8px;
    font-size: 16px;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
}

.carousel-container {
  width: 30%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.carousel-image {
  position: absolute;
 
  width: 100px;
  height: 100px;
  display: none;
  /* object-fit: cover; */
  transition: transform 3s cubic-bezier(0.4, 0, 0.2, 1), opacity 3s;
  justify-content: center;
  align-items: center;
  border-radius: 10%;
}

.carousel-image img {
  min-width: 150px;
  min-height: 150px;
  object-fit: cover;
  transform: rotate(45deg);
  opacity: 1;
  z-index: 0;
}

.parentIamge {
  background-color: black;
  /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); */
  overflow: hidden;

  width: 100px;
  height: 100px;
  transform: rotate(-45deg);
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10%;
}

.carousel-image.center {
  display: flex;
  transform: translateX(0%) scale(1.25);
  z-index: 20;
  opacity: 2;
}

.carousel-image.left {
  transform: translateX(-120%) scale(0.9);
  opacity: 1;
  z-index: 10;
  display: flex;
}

.carousel-image.right {
  transform: translateX(120%) scale(0.9);
  opacity: 1;
  z-index: 10;
  display: flex;
}

.captionsClients {
  width: 70%;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.captionsClients.slide-up {
  animation: slideUp 1.5s ease-in-out forwards;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.right-arrow {
  top: 50%;
  right: 5px;
}

.left-arrow {
  top: 50%;
  left: 0px;
}
/* ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, */

