.uiux-hero {
  background: url("uiux.png") center/cover no-repeat;
  padding: 100px 20px;
  color: white;
  text-align: center;
}
.uiux-features {
  padding: 60px 20px;
  background: #f8f8f8;
  text-align: center;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.feature-card {
  background: white;
  padding: 20px;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.feature-card img {
  /* max-width: 140%; */
  width: fit-content;
  height: 180px;
}
.uiux-cta {
  background: #0b2953;
  color: white;
  text-align: center;
  padding: 60px 20px;
}
  .quote-btn {
    display: inline-block;
    background-color: #FEBE10;
    color: #fff;
    border-radius: 5px;
    width: 200px;
    text-align: center;
    padding: 10px 0;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .quote-btn:hover {
    background-color: #e6a900;
    color: #000;
  }