html {
  scroll-behavior: smooth;
}
body {
  font-family: "Signika Negative", sans-serif;
  font-weight: 300;
  background-color: #f0f4f5;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background-color: #0f172a;
  color: rgb(251, 255, 12);
  padding: 1em 2em;
  font-size: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  margin: 0 1em;
  text-decoration: none;
  font-weight: bold;
}

.title {
  font-size: 1.8em;
  animation: slideIn 1.2s ease-out;
}

.intro {
  padding: 2em;
  text-align: center;
  animation: fadeIn 1s ease-in;
}

section.intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
  color: #000000;
  font-family: "Inter", sans-serif;
}

section.intro h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

section.intro p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: #000000;
}

section.intro p b {
  color: #0348c9;
  font-weight: 600;
}

.highlight {
  background-color: #160000; /* soft yellow */
  color: rgb(251, 255, 12); /* dark text on light background */
  padding: 0em 0.5em;
  border-radius: 0.2em;
  font-weight: 400;
}

.projects {
  padding: 2em;
  background-color: #e2e8f0;
  text-align: center;
}

.project-list {
  display: flex;
  gap: 1.5em;
  justify-content: center;
  flex-wrap: wrap;
}

.project-card {
  background: white;
  padding: 1.5em;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  cursor: pointer;
}
.project-card:hover {
  transform: scale(1.05);
  background: #f1f5f9;
}

.pricing {
  background-color: #fff;
  padding: 2em 0em 5em;
  text-align: center;
}

.tiers {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  flex-wrap: wrap;
}

.tier {
  background: #e0f2fe;
  border-radius: 12px;
  padding: 1.5em;
  width: 260px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  cursor: pointer;
}
.tier:hover {
  transform: translateY(-5px);
  background: #bae6fd;
}
.best {
  border: 2px solid #0284c7;
}

.price {
  font-size: 2em;
  color: #0c4a6e;
}

ul {
  list-style: none;
  padding: 0;
}

footer {
  text-align: center;
  padding: 1em;
  background-color: #0f172a;
  color: white;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

input,
textarea {
  padding: 0.8em;
  border-radius: 6px;
  border: 1px solid #94a3b8;
}

button {
  background-color: #0ea5e9;
  color: white;
  padding: 0.8em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #0369a1;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.how-it-works {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.how-it-works .steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 2rem auto 0;
}

.step {
  background: white;
  border: 1px solid #ddd;
  border-left: 6px solid #00aaff;
  padding: 1rem 1.5rem;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step h3 {
  margin-top: 0;
  color: #00aaff;
}
/* Make steps horizontal on wider screens */
.steps.horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.steps.horizontal .step {
  flex: 1 1 200px;
}

/* Responsive fallback */
@media (max-width: 768px) {
  .steps.horizontal {
    flex-direction: column;
  }
}

.contact-form {
  padding: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  animation: fadeInUp 0.8s ease;
}

.contact-form h2 {
  margin-bottom: 1.5rem;
  color: rgb(71, 70, 0);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form h2::before {
  content: "🤖";
}

form input,
form textarea {
  width: auto;
  max-width: 100%;

  margin-bottom: 1rem;
  resize: vertical;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

form input:focus,
form textarea:focus {
  border-color: #60a5fa;
  outline: none;
}

form button {
  background: #eaff2a;
  color: rgb(0, 0, 0);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #1e293b;
  color: rgb(255, 255, 255);
}

footer {
  text-align: center;
  padding: 1rem;
  background: #f1f5f9;
  color: #555;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .contact-form {
    margin: 1rem;
    padding: 1.5rem;
  }
}

/* animation */

section.shapes-section {
  position: relative;

  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f172a;
  color: rgb(238, 255, 5);
  text-align: center;
}

.shapes-section h1 {
  z-index: 2;
  font-size: 3rem;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  mix-blend-mode: screen;
  animation: float 10s linear infinite alternate;
}

.circle {
  width: 80px;
  height: 80px;
  background: #83d9dd;
  top: 20%;
  left: 10%;
  animation-duration: 12s;
}

.square {
  width: 60px;
  height: 60px;
  background: #ff00c8;
  top: 60%;
  left: 80%;
  animation-duration: 10s;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid #00ff85;
  top: 50%;
  left: 40%;
  animation-duration: 14s;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  100% {
    transform: translateY(-100px) translateX(50px) rotate(360deg);
  }
}

/* Hover effect via JavaScript */
.shape:hover {
  filter: brightness(1.5);
  cursor: pointer;
}
