/* MODERN SLIDER + DUYURU TASARIMI CSS */
.hero-slider-section {
  position: relative;
  overflow: hidden;
}

  .hero-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
  }

.hero-slide-content {
  padding: 2rem 0;
  animation: slideInLeft 1s ease-out;
}

.slide-icon {
  animation: pulse 2s infinite;
}

.carousel-indicators {
  bottom: -50px;
}

  .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background-color: transparent;
    margin: 0 8px;
    transition: all 0.3s ease;
  }

  .carousel-indicators .active {
    background-color: #fbbf24;
    border-color: #fbbf24;
    transform: scale(1.2);
  }

/* Duyuru Kartı Animasyonları */
.announcement-item {
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 0.5rem;
  margin: -0.5rem;
}

  .announcement-item:hover {
    background: rgba(59,130,246,0.05);
    transform: translateX(5px);
  }

.announcement-icon {
  transition: transform 0.3s ease;
}

.announcement-item:hover .announcement-icon {
  transform: scale(1.1);
}

/* Carousel Custom Styling */
.carousel-control-prev,
.carousel-control-next {
  transition: all 0.3s ease;
}

  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    opacity: 1 !important;
  }

/* Card Hover Efektleri */
.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2) !important;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  transition: transform 0.3s ease;
}

/* Responsive Ayarları */
@media (max-width: 991px) {
  .hero-slider-section {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero-slide-content h1 {
    font-size: 2rem !important;
  }

  .announcements-wrapper {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-slide-content h1 {
    font-size: 1.8rem !important;
  }

  .hero-slide-content .lead {
    font-size: 1.1rem !important;
  }

  .hero-buttons .btn {
    padding: 0.8rem 1.5rem !important;
    font-size: 1rem !important;
  }
}

/* Animasyonlar */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
