.light-effect {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  background-color: #6b6c36; /* Düğme rengi */
  text-decoration: none;
  overflow: hidden;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.light-effect .btn-title {
  position: relative;
  z-index: 2;
}

.light-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  z-index: 1;
  transition: all 0.4s ease;
  transform: skewX(-20deg);
}

.light-effect:hover::before {
  left: 100%;
}

.light-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 150%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: light-effect 1.5s linear infinite;
}

@keyframes light-effect {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

.custom-slider {
    text-align: center;
    background: #333;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.custom-typewriter {
    color: #ada372;
    font-size: 2.9rem;
    white-space: nowrap;
    overflow: hidden;
    border-right: 4px solid #ada372;
    animation: blink 0.7s infinite;
    font-weight: 700;
}

@keyframes blink {
    0%, 100% {
        border-color: transparent;
    }
    50% {
        border-color: #ada372;
    }
}


