  :root {
    --primary: #6a0dad;
    --secondary: #ffffff;
    --dark: #121212;
    --light-dark: #1e1e1e;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    position: relative;
    overflow: hidden;
  }

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

  .project-card {
    min-width: 100%;
    padding: 0 10px;
  }

  .project-inner {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(126, 123, 123, 0.08);
    transition: transform 0.3s ease;
  }

  .project-inner:hover {
    transform: translateY(-10px);
  }

  .project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
    transform-origin: center;
  }

  .project-inner:hover .project-image {
    transform: scale(1.05);
    filter: brightness(1.05);
  }

  .project-content {
    padding: 1rem;
  }

  .project-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
  }

  .project-description {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .tag {
    background: #e2e8f0;
    color: #475569;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;

    transition: background-color 1s;
  }

  .tag1 {
    background: var(--primary);
    color: var(--secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;

    transition: background-color 1s;
  }

  .tag:hover {
    background: var(--primary);
    color: #e2e8f0;
    cursor: pointer;
  }

  .carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
  }

  .nav-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .nav-btn:hover {
    background: #3b82f6;
    color: white;
    transform: scale(1.1);
  }

  .indicators {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 0;
  }

  .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .indicator.active {
    background: #3b82f6;
    transform: scale(1.2);
  }

  @media (min-width: 768px) {
    .project-card {
      min-width: 50%;
    }
  }

  @media (min-width: 1024px) {
    .project-card {
      min-width: 33.333%;
    }
  }