
body {
  margin: 0;
  font-family: sans-serif;
  background: #f4f4f4;
  color: #333;
}
.hero {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  padding: 40px 20px;
  text-align: center;
}
.cta {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: white;
  color: purple;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}
.cta:hover {
  background: #e0e0e0;
  color: black;
}
.portfolio, .testimoni, .formulir {
  padding: 20px;
  text-align: center;
}
.portfolio-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.portfolio-items div {
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.portfolio-items img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
form input, form textarea {
  width: 90%;
  max-width: 400px;
  margin: 10px 0;
  padding: 10px;
}
form button {
  background: purple;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 10px;
}
.testimoni-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.testimoni-cards .card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 0 8px rgba(0,0,0,0.15);
}


.portfolio-scroll {
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 0;
}

.portfolio-items {
  display: inline-flex;
  gap: 20px;
}

.portfolio-items div {
  flex: 0 0 auto;
  width: 300px;
}
