* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #000;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.navbar img {
  height: 45px;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 22px;
}
.navbar a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.navbar a:hover {
  color: #e10600;
}

/* HERO */
.hero {
  background: #f9f9f9;
  padding: 130px 20px;
  text-align: center;
  overflow: hidden;
}
.hero h1 {
  font-size: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}
.hero p {
  max-width: 750px;
  margin: 15px auto;
  color: #444;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.btn {
  display: inline-block;
  background: #e10600;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  margin: 12px 6px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover {
  background: #c00500;
}

/* SECTIONS */
section {
  padding: 90px 20px;
}
.container {
  max-width: 1100px;
  margin: auto;
}
h2 {
  text-align: center;
  margin-bottom: 40px;
}
p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

/* GRID + CARD */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: #1f1f1f;
  color: #fff;
  padding: 28px;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
  margin: 5px;
}
.card.show {
  opacity: 1;
  transform: translateY(0);
}
.card p {
  color: #ddd;
  font-size: 14px;
}

/* FORM */
form input,
form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* CTA */
.cta {
  background: #e10600;
  color: #fff;
  text-align: center;
}

/* FOOTER */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 25px;
  font-size: 14px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .navbar ul {
    display: none;
  }
  .hero h1 {
    font-size: 28px;
  }
}
