* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0b0b0f;
  color: white;
}


header {
  padding: 25px 8%;
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo {
  font-size: 28px;
  font-weight: bold;
}


.logo span {
  color: #9b5cff;
}


.nav-button {
  background: #9b5cff;
  padding: 12px 25px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
}


.hero {
  text-align: center;
  padding: 100px 8%;
}


.hero h1 {
  font-size: 50px;
  max-width: 900px;
  margin: auto;
}


.hero h1 span {
  color: #9b5cff;
}


.hero p {
  margin: 25px auto;
  max-width: 700px;
  color: #bdbdbd;
  font-size: 20px;
}


.button,
.secondary-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  margin: 10px;
}


.button {
  background: #9b5cff;
  color: white;
}


.secondary-button {
  border: 1px solid #9b5cff;
  color: white;
}


.services,
.portfolio,
.contact {
  padding: 80px 8%;
  text-align: center;
}


.cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}


.card {
  background: #15151d;
  padding: 30px;
  border-radius: 15px;
  width: 300px;
}


.card h3 {
  margin-bottom: 15px;
}


.card p {
  color: #c7c7c7;
  line-height: 1.5;
}


form {
  max-width: 500px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}


input,
textarea {
  padding: 15px;
  border-radius: 10px;
  border: none;
  background: #15151d;
  color: white;
}


textarea {
  height: 120px;
}


button {
  padding: 15px;
  border-radius: 30px;
  border: none;
  background: #9b5cff;
  color: white;
  font-size: 16px;
}


footer {
  text-align: center;
  padding: 30px;
  color: #777;
}


@media(max-width:700px) {

  header {
    padding: 20px 5%;
  }


  nav {
    flex-direction: column;
    gap: 20px;
  }


  .logo {
    font-size: 24px;
  }


  .hero {
    padding: 70px 5%;
  }


  .hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }


  .hero p {
    font-size: 17px;
  }


  .button,
  .secondary-button {
    width: 90%;
    max-width: 300px;
  }


  .cards {
    flex-direction: column;
    align-items: center;
  }


  .card {
    width: 100%;
    max-width: 340px;
  }


  .services,
  .portfolio,
  .examples,
  .about,
  .contact {
    padding: 60px 5%;
  }

}

.hero h1 {
  font-size: 35px;
}

nav {
  flex-direction: column;
  gap: 20px;
}

}
.about {
  padding: 80px 8%;
  text-align: center;
}.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}.hero {
  background: radial-gradient(circle at top, rgba(155,92,255,0.25), transparent 45%);
}.portfolio h2 {
  margin-bottom: 20px;
}

.portfolio p {
  color: #bdbdbd;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}.brand-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: #9b5cff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  color: white;
}.examples {
  padding: 80px 8%;
  text-align: center;
}.button,
.secondary-button,
.nav-button,
button {
  transition: all 0.3s ease;
}


.button:hover,
.nav-button:hover,
button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(155, 92, 255, 0.35);
}


.secondary-button:hover {
  background: #9b5cff;
  transform: translateY(-3px);
}.trust {
  margin-top: 30px;
  color: #9b9b9b;
  font-size: 15px;
}