body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Arial', sans-serif;
}

.hero {
  background-image: url('BugattiChiron.jpg'); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.content {
  position: relative;
  color: #fff;
  z-index: 1;
  max-width: 600px;
}

.content h1 {
  font-size: 3em;
  margin-bottom: 20px;
  animation: fadeInDown 1s;
}

.content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  animation: fadeInUp 1s;
}

.cta-button {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #e65c00;
}

@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.features {
  background: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

.feature {
  display: inline-block;
  width: 30%;
  margin: 0 1.5%;
  text-align: left;
  animation: fadeIn 1s ease-in-out;
}

.feature img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.feature h3 {
  font-size: 1.5em;
  margin-top: 20px;
}

.feature p {
  font-size: 1em;
  margin-top: 10px;
}

.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@media (max-width: 768px) {
  .content h1 {
      font-size: 2.5em;
  }
  .content p {
      font-size: 1em;
  }

  .feature {
      width: 90%;
      margin: 20px auto;
  }
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.scroll-down span {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 5px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

.scroll-down span:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-down span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0) rotate(45deg);
  }
  40% {
      transform: translateY(-10px) rotate(45deg);
  }
  60% {
      transform: translateY(-5px) rotate(45deg);
  }
}
