/* Tech Slider - Basit ve Düzgün Slider */
.tech-slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 20px 0;
}

/* Slider Ana Konteyneri */
.tech-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 180px;
}

/* Her Bir Slide */
.tech-slide {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  transition: transform 0.5s ease;
  opacity: 0;
  visibility: hidden;
}

.tech-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Teknoloji Kartları */
.tech-card {
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.tech-card i {
  font-size: 32px;
  margin-bottom: 10px;
}

.tech-card span {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark-color);
}

.tech-card small {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 5px;
}

/* Navigasyon Okları */
.tech-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--dark-color);
}

.tech-slider-nav:hover {
  background-color: var(--primary-color);
  color: white;
}

.tech-slider-prev {
  left: -20px;
}

.tech-slider-next {
  right: -20px;
}

/* Slider Dots */
.tech-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.tech-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tech-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
  .tech-slider {
    height: 160px;
  }
  
  .tech-card {
    width: 100px;
    height: 100px;
    padding: 10px;
  }
  
  .tech-card i {
    font-size: 28px;
  }
  
  .tech-slider-nav {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 576px) {
  .tech-slider {
    height: 150px;
  }
  
  .tech-card {
    width: 90px;
    height: 90px;
  }
  
  .tech-card i {
    font-size: 24px;
  }
  
  .tech-card span {
    font-size: 12px;
  }
  
  .tech-card small {
    font-size: 10px;
  }
  
  .tech-slider-nav {
    width: 32px;
    height: 32px;
  }
}
