body {
    margin: 0;
    background-color: #0e0e0e;
    font-family: 'Satoshi';
    color: #fff;
  }

  .project-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
  }

  .project-text {
    flex: 1;
    min-width: 280px;
  }

  .project-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .project-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    max-width: 500px;
  }

  .btn {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 9999px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
  }

  .btn:hover {
    background-color: #333;
  }

  .meta {
    margin-top: 30px;
    display: flex;
    gap: 40px;
    font-size: 0.9rem;
    color: #888;
  }

  .meta div span {
    display: block;
    font-weight: bold;
    color: #fff;
    margin-bottom: 6px;
  }

  .project-image {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
  }

  /* .project-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  } */

  @media (max-width: 768px) {
    .project-section {
      flex-direction: column;
      padding: 40px 20px;
    }

    .project-text h1 {
      font-size: 2rem;
    }

    .project-text p {
      font-size: 0.95rem;
    }
    .project-image{
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .project-summary img{
      height: 50px;
      object-fit: cover;
    }
  }


 
  .go-back-button {
    position: fixed;
    bottom: 4rem;
    right: 1.5rem;
    background-color: #fff;
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s, color 0.3s;
    z-index: 1000;
  }
  
  .go-back-button:hover {
    background-color: #f0f0f0;
    color: #000;
  }
  
  .project-summary {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: #fff;
    font-size: 1.5rem;
  }

  .project-summary img{
    height: 300px;
    object-fit: cover;
  }
  
  .section-title,
  .section-subtitle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 1.2rem 0 0.4rem;
    font-size: 1.3rem;
  }
  
  .section-text {
    margin: 0 0 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .section-title i,
  .section-subtitle i {
    color: inherit;
  }

  
  .image-carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: auto;
  }

  .carousel-cont{
    padding: 20px;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease;
  }

  .carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }

  .carousel-button svg {
    color: white;
    width: 24px;
    height: 24px;
  }

  .carousel-button.prev {
    left: 16px;
  }

  .carousel-button.next {
    right: 16px;
  }

  /* Custom cursor styles */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: white;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

.cursor.active {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.cursor.hover {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 2.5px solid rgba(255, 255, 255, 1);
}

/* Trail effect */
.trail {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s, width 0.3s, height 0.3s;
  z-index: 9998;
}


  .tags-container {
    margin-top: 1.5rem;
  }
  .tags-heading {
    font-weight: 500;
    font-size: 0.9rem;
    color: #9ca3af; /* Tailwind's gray-400 */
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  .tags-heading::before {
    content: "≡";
    margin-right: 0.5rem;
    color: #6b7280; /* gray-500 */
  }
  .tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .tag {
    padding: 4px 12px;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: white;
    display: inline-block;
  }
  .green { background-color: #14532d; }
  .blue { background-color: #1e3a8a; }
  .red { background-color: #7f1d1d; }
  .orange { background-color: #92400e; }
  .gray { background-color: #1f2937; }
  .teal { background-color: #065f46; }
  .yellow { background-color: #854d0e; }
  .purple { background-color: #6b21a8; }
