.footer-copyright {
  color: white;
  background-color: #703791;
  padding: 20px 25px;
  text-align: justify;
  margin-top: 20px;
}

/* Footer */
.site-footer__bg {
  background: #414042;
}

.site-footer__logo {
  max-width: 220px;
}

.site-footer__desc {
  font-family: Arial;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.site-footer__chip i {
  font-size: 1.05rem;
}

.site-footer__chip-label {
  font-weight: 700;
  opacity: 0.95;
}

.site-footer__chip-value {
  opacity: 0.92;
}

.site-footer__chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-footer__chip:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 3px;
}

.site-footer__hr {
  border-color: rgba(255, 255, 255, 0.18);
  opacity: 1;
}

.site-footer__legal {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (max-width: 576px) {
  .site-footer__contact {
    flex-direction: column;
  }
  .site-footer__chip {
    justify-content: center;
  }
}

html {
  scroll-padding-top: 180px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 110px;
  }
}

/* About */
#hakkinda {
  padding-top: 32px;
  padding-bottom: 10px;
}

#hakkinda p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.78);
  margin-left: auto;
  margin-right: auto;
}

#hakkinda p + p {
  margin-top: 12px;
}

@media (max-width: 576px) {
  #hakkinda p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}
.content-wrap {
  padding-top: 2rem;
}
/* Hero (mobilde üst boşluk azalt) */
@media (max-width: 576px) {
  #anasayfa .row.align-items-center.pt-5.pb-5 {
    margin-top: 60px !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}
.text-justify {
  text-align: justify;
}

/* Proje Konuları */
#proje-konulari .feature-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  height: 100%;
}

#proje-konulari .feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

#proje-konulari .fbox-icon i {
  font-size: 1.6rem;
  color: #703791;
  margin-bottom: 8px;
}

#proje-konulari .fbox-content h5 {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  #proje-konulari .fbox-content h5 {
    font-size: 0.9rem;
  }
  #proje-konulari .feature-box {
    margin: 0;
  }
}

/* Kuruluş */
#kurulus p {
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 576px) {
  #kurulus p {
    font-size: 0.93rem;
    line-height: 1.65;
  }
}

/* Haberler */
#haber .news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

#haber .news-item {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

#haber .news-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  border-color: rgba(112, 55, 145, 0.28);
}

#haber .news-item__title {
  color: rgba(0, 0, 0, 0.86);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

#haber .news-item__meta {
  margin-top: 6px;
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  #haber .news-list {
    grid-template-columns: 1fr;
  }
  #haber .news-item__title {
    font-size: 0.98rem;
  }
  .header-logos {
    height: auto;
  }
}

@media (min-width: 700px) {
  .menu-link {
    padding: 15px;
  }
}
/* Projeden Haberler - Modern & Minimal Card */
.proje-news-card {
  display: block;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-decoration: none !important;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.proje-news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #703791;
}

.proje-news-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.proje-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.proje-news-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #703791;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.proje-news-card__content {
  padding: 24px;
}

.proje-news-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #221e53;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 768px) {
  .proje-news-card__title {
    font-size: 1.1rem;
  }
}

.proje-news-card:hover .proje-news-card__title {
  color: #703791;
}

.proje-news-card__excerpt {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.proje-news-card__more {
  font-size: 0.9rem;
  font-weight: 600;
  color: #703791;
  display: flex;
  align-items: center;
  gap: 8px;
}

.proje-news-card__more i {
  transition: transform 0.3s ease;
}

.proje-news-card:hover .proje-news-card__more i {
  transform: translateX(5px);
}
.basvuru-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.basvuru-kart {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #dde0e8;
  border-top: 3px solid #3b2d7e;
  border-radius: 6px;
  text-decoration: none;
  color: #222;
}

.basvuru-kart:hover {
  text-decoration: none;
  color: #222;
  border-top-color: #9b2d7f;
  background: #fafafa;
}

.kart-ust {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9b9eb0;
}

.kart-numara {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #aaa;
}

.kart-baslik {
  font-size: 15px;
  font-weight: 600;
  color: #1e1e2e;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.kart-link {
  font-size: 13px;
  font-weight: 600;
  color: #3b2d7e;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .basvuru-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

/* Updated timestamp */
