/* Portfolio Carousel Styles */
.portfolio-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-arrow {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #0C384D;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.carousel-arrow:hover {
  background: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:active {
  transform: scale(0.95);
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

.portfolio-carousel-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.portfolio-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.portfolio-card {
  min-width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  padding: 20px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.portfolio-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.portfolio-title {
  color: #0C384D;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.portfolio-description {
  color: #0C384D;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neutral-04);;
  border: 2px solid var(--neutral-04);;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: var(--neutral-04);
  border-color: var(--neutral-04);
}

.dot.active {
  background: var(--neutral-04);;
  border-color: var(--neutral-04);;
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .portfolio-carousel-container {
    gap: 10px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow svg {
    width: 20px;
    height: 20px;
  }

  .portfolio-image {
    height: 200px;
  }

  .portfolio-title {
    font-size: 20px;
  }

  .portfolio-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .carousel-arrow {
    width: 35px;
    height: 35px;
  }

  .carousel-arrow svg {
    width: 18px;
    height: 18px;
  }
}
