/* Homepage Hero section */
.hero {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero input.form-control {
  max-width: 400px;
  margin: 0 auto;
  background-color: rgba(255,255,255,0.95);
  color: #333;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero input.form-control::placeholder {
  color: #666;
}

.hero input.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.4);
}

/* Feature cards */
.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.feature-card h5 {
  color: #ffd700;
}

.feature-card p {
  color: #f0f0f0;
}
