.navbar {
  background: linear-gradient(90deg, #0d6efd, #0a58ca);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  letter-spacing: 1px;
  font-weight: 700;
  color: #fff !important;
}

.navbar-nav .nav-link {
  color: #f8f9fa;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffd700; /* Sarı ton */
  text-decoration: underline;
}

.btn-outline-light:hover {
  background-color: #fff;
  color: #0d6efd;
  transition: 0.3s;
}

.btn-light.text-primary {
  font-weight: 600;
}

.horizontal-card {
  display: flex;
  align-items: center;
  background: #f2f2f2;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 16px;
  text-decoration: none;
  color: inherit;
}

.card-icon {
  width: 64px;
  height: 64px;
  margin-right: 16px;
  flex-shrink: 0;
}

.card-content {
  flex: 1;
}

.card-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 8px;
}

.card-text {
  margin: 0 0 12px;
  color: #333;
}

.card-link {
  font-size: 0.95rem;
  color: #006dff;
  text-decoration: underline;
}
.card-link:hover {
  text-decoration: none;
}


@media (max-width: 768px) {
  .navbar-nav .nav-item {
    text-align: center;
    margin-bottom: 10px;
  }

  .d-flex {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
