/* Custom button styles for new navigation buttons */
.hero-cta .custom-btn {
  display: inline-block;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 10px 10px 10px 0;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-cta .custom-btn.primary {
  background: linear-gradient(135deg, #4a4a82, #1a1a2e);
  color: white;
  border: none;
}

.hero-cta .custom-btn.secondary {
  background: transparent;
  color: #4a4a82;
  border: 2px solid #4a4a82;
}

.hero-cta .custom-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-cta .custom-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
