.nav-item.dropdown {
  position: relative;
}

.nav-item .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  min-width: 220px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 999;
}

.nav-item .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
}

.nav-item .dropdown-menu li a:hover {
  background-color: #f5f5f5;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 60px;
  z-index: 9999;
  font-family: sans-serif;
}

.bottom-half {
  width: 50%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.left-side {
  background-color: #007BFF; /* Mavi */
}

.right-side {
  background-color: #25D366; /* WhatsApp yeşili */
}

.bottom-half:hover {
  opacity: 0.9;
}

.bottom-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .bottom-bar {
    height: 70px;
  }

  .bottom-half {
    font-size: 15px;
    gap: 6px;
  }

  .bottom-icon {
    width: 20px;
    height: 20px;
  }
}
  /* 🔽 Mobil için özel ayar */
  @media (max-width: 768px) {
    .card-img amp-img {
      width: 80%;          /* genişliği küçültür */
      margin: 0 auto;      /* ortalar */
      border-radius: 12px; /* isteğe bağlı yumuşak kenar */
      margin-top: 10px;
    }

    .card-box {
      padding: 0.5rem 1rem; /* metin kısmını daraltır */
    }

    .card-title {
      font-size: 1.1rem; /* başlığı küçültür */
      text-align: center;
    }

    .card-text {
      font-size: 0.9rem; /* metni küçültür */
      text-align: center;
    }
  }