/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: #000;
  color: #fff;
  padding: 20px 0;
}

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

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
}

.hero {
  background: url('../assets/hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s, transform 1s;
}

.hero p {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s, transform 1s;
  transition-delay: 0.5s;
}

.hero .btn {
  background: #007BFF;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s, transform 1s;
  transition-delay: 1s;
}

.about, .technology, .contact {
  padding: 50px 0;
}

.about h2, .technology h2, .contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact form input, .contact form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact form button {
  background: #007BFF;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

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

footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
}