body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #ffffff;
  background-image: url('0.jpg');
  background-size: cover;
  background-position: center;
}

.landing-page {
  padding-top: 20px;
  padding-left: 10%;
  padding-right: 10%;
}

.header {
  text-align: left;
  background-image: linear-gradient(
    to right,
    rgb(0, 0, 0),
   rgba(0, 0, 0, 0.0)),
    url('head.jpg');
  background-size: cover;
  background-position: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 50px;
  margin-top: 20px;
}

.header h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.header p {
  font-size: 18px;
  line-height: 1.6;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5px;
}

.feature-card {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
  flex: 1 0 90%; /* Each feature takes 100% width in a new row */
}

.feature-card .feature-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  margin-bottom: 20px;
}

.feature-card:hover {
  /* transform: scale(1.01); */
}

.features h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.features p {
  font-size: 16px;
  line-height: 1.6;
}

.footer {
  background-color: #1a1a1a;
  padding: 20px;
  text-align: center;
}
