/* Eğitimler Sayfası Stilleri */
.education-filter {
  margin-bottom: 2rem;
}

.education-filter .btn {
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.education-filter .btn.active {
  background-color: var(--primary);
  color: #fff;
  box-shadow: 0 5px 15px rgba(78, 0, 170, 0.3);
}

.education-item {
  transition: all 0.3s ease;
}

/* İkon wrapper düzeltmesi - tam daire */
.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%; /* Tam daire için */
  overflow: hidden; /* İçerik taşma kontrolü */
  background-color: var(--primary);
  color: white;
  box-sizing: border-box; /* Sınır boyutlarını içerir */
  padding: 0; /* İç boşluk yok */
  flex-shrink: 0; /* Büzülme yok */
}

.icon-wrapper i {
  font-size: 20px; /* İkon boyutu */
}

.hover-card {
  transition: all 0.3s ease;
}

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

.education-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.education-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.education-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(78, 0, 170, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.card:hover .education-overlay {
  opacity: 1;
}

.card:hover .education-image {
  transform: scale(1.1);
}

.education-meta .badge {
  margin-right: 5px;
  margin-bottom: 5px;
}

.rounded-4 {
  border-radius: 1rem !important;
}

/* İletişim CTA Bölümü */
.bg-light {
  background-color: #f8f9fa !important;
}

/* Eğitim Detay Sayfası Stilleri */
.education-detail-image {
  height: 300px;
  object-fit: cover;
}

.education-detail-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.education-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.education-content h2, 
.education-content h3, 
.education-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.education-content p {
  margin-bottom: 1.2rem;
}

.education-content ul, 
.education-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.education-content ul li, 
.education-content ol li {
  margin-bottom: 0.5rem;
}

.sticky-top {
  z-index: 900;
}

@media (max-width: 991.98px) {
  .sticky-top {
    position: relative !important;
    top: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .education-image-container {
    height: 180px;
  }
  
  .education-detail-image {
    height: 200px;
  }
}
