.bg-telimciler {
  background: none;
}

@media (min-width: 1024px) {
  .bg-telimciler {
    background: url(../Image/bg-tedbirler.png);
    background-position: center -300px;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
}

/* ── FILTER PILLS ── */

.pill {
  background: hsla(0, 3%, 73%, 0.087);
  border: 1px solid #4834d4;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow:
    0 0 10px rgba(104, 109, 224, 0.3),
    inset 0 0 10px rgba(255, 255, 255, 0.2),
    0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.pill:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(72, 52, 212, 0.5),
    inset 0 0 15px rgba(255, 255, 255, 0.3);
}
.pill.pill-active {
  background: #4834d4;
  box-shadow:
    0 0 25px rgba(72, 52, 212, 0.6),
    inset 0 0 15px rgba(255, 255, 255, 0.3),
    0 6px 12px rgba(0, 0, 0, 0.2);
  color: #fff;
}

[data-theme="dark"] .pill{
  background: hsla(0, 3%, 73%, 0.087);
  border: 1px solid #4834d4;
  color: #fff;
}

[data-theme="dark"] .pill-active {
  background: #4834d4;
  box-shadow:
    0 0 25px rgba(72, 52, 212, 0.6),
    inset 0 0 15px rgba(255, 255, 255, 0.3),
    0 6px 12px rgba(0, 0, 0, 0.2);
}
/* ── CARDS GRID ── */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px;
}

/* ── INSTRUCTOR CARD ── */
.instructor-card {
  padding: 28px 24px 24px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeUp 0.4s ease both;
}
.instructor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(91, 3, 163, 0.15);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* photo blob */
.card-photo-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, #c084fc 0%, #7c3aed 50%, #2e1065 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.card-photo-wrap img {
  width: 85%;
  object-fit: cover;
  object-position: top;
  border-radius: 10px 10px 0 0;
  position: absolute;
  bottom: 0;
  filter: drop-shadow(0 -4px 12px rgba(0, 0, 0, 0.25));
}
/* category badge on photo */
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

.card-name {
  font-size: 18px;
  font-weight: 700;
  color: #0e0018;
  margin: 0;
}
.card-company {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #c00;
}
.card-company img {
  height: 18px;
  width: auto;
}
.card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #5a4a6a;
}

/* social icons */
.card-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.card-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0e8f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b03a3;
  font-size: 13px;
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none;
}
.card-socials a:hover {
  background: #5b03a3;
  color: #fff;
}

/* hidden cards */
.hidden-card {
  display: none !important;
}

/* ── SHOW MORE BTN ── */
.show-more-wrap {
  text-align: center;
  padding: 0 0 80px;
}


@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-wrap nav {
    display: none;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cards-section {
    padding: 40px 20px 80px;
  }
}

/* <<<<>>>>> */
.bg-telimci {
  background-image: url("../Image/bg-telimci.png");
  background-repeat: no-repeat;
  background-position: 50% 100%;
}
