html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 70px;
}
  .home-hero {
  position: relative;
  min-height: 110vh;
  background: url('hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(1px);
  background-color: rgba(0, 0, 0, 0.5); /* Gölgelendirme */
  z-index: 1;
}

.home-hero .container {
  position: relative;
  z-index: 2;
}
#about img {
  max-height: 400px;
  object-fit: cover;
}
#services .card {
  border-radius: 10px;
  overflow: hidden;
}

#services .card-img-top {
  height: 250px;
  object-fit: cover;
}

#services .card-body {
  padding: 1.5rem;
}

#services .btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

#services .btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}
#contact h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

#contact .card {
  border-radius: 10px;
  overflow: hidden;
}

#contact .card-body {
  padding: 1.5rem;
}

#contact .card-title {
  font-size: 1.25rem;
  font-weight: 600;
}

#contact .card-text {
  font-size: 1rem;
  color: #555;
}

#contact .text-center p {
  font-size: 0.875rem;
  color: #999;
}

#contact .text-center a {
  color: #007bff;
  text-decoration: none;
}

#contact .text-center a:hover {
  text-decoration: underline;
}

  /* Görsel üzerine mouse geldiğinde %20 büyütme efekti */
  .gallery-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .gallery-img:hover {
    transform: scale(1.2); /* %20 büyüme */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }