.overlay-circle-slider-v1 {
  margin-top: 40px;
    height: 620px;
    width: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0%, #fff 70%);
    /* background: radial-gradient(circle, var(--thm-base-trs) 0%, #fff 70%); */
    position: absolute; /* Adjust positioning as needed */
    top: 0;
    left: 0;
    opacity: 0.5; /* Adjust opacity for overlay effect */
    pointer-events: none; /* Prevent interactions if it's an overlay */
  }

/* Add this to your CSS file */

@keyframes wipeRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.wipe-right {
  animation: wipeRight 0.5s forwards;
}

/* Optional: Ensure the loader container is positioned correctly */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure it's on top */
}

/* SingleLineSlider.css */

.single-line-slider {
  /* width: 100%; */
  margin: 0;
  overflow: hidden;
  position: relative;
}

.slider-track {
  width: 60%;
  display: flex;
  animation: scroll-left 5s linear infinite;
}

.slider-text {
  margin: 0;

  flex: 0 0 auto;        /* Prevent shrinking */
  white-space: nowrap;   /* Keep text on a single line */
  padding-right: 50px;   /* Space between duplicated texts */
  font-size: 16px;       /* Adjust as needed */
}

/* Keyframes for the scrolling animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Optional: Pause animation on hover */
.single-line-slider:hover .slider-track {
  margin: 0;

  animation-play-state: paused;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .slider-text {
    font-size: 14px;
    padding-right: 30px;
  }
}

@media (max-width: 480px) {
  .slider-text {
    font-size: 12px;
    padding-right: 20px;
  }
}

.project-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.project-item.in-view {
  opacity: 1;
  transform: translateY(0);
}
.work-process-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.work-process-item.in-view {
  opacity: 1;
  transform: translateY(0);
}
