/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

 body {
      background-image: url('background.jpg');
      background-size: cover;
      background-attachment: fixed;
      background-repeat: no-repeat;
      background-position: center;
    }

    #home {
      background-image: url('https://i.pinimg.com/736x/7a/5d/9d/7a5d9dd0385ca266ec916493b45b1abc.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: white;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 20px;
    }

    #home .highlights {
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    #home .highlight {
      background-color: rgba(0, 0, 0, 0.6);
      padding: 20px;
      border-radius: 10px;
      max-width: 250px;
    }

    .card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 0.5rem;
    }

    .card {
      background-color: rgba(247, 127, 0, 0.9);
      padding: 1rem;
      border-radius: 10px;
      color: white;
      font-weight: bold;
      transition: transform 0.2s;
    }

header {
  background-color: #d62828;
  color: white;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffcb77;
}

.section {
  padding: 4rem 1rem;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  background-color: #f77f00;
  padding: 1.5rem;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.05);
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
  margin: 2rem auto;
}

form input,
form select {
  padding: 0.7rem;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form input[type=\"submit\"] {
  background-color: #d62828;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
}

form input[type=\"submit\"]:hover {
  background-color: #9c1f1f;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
.fade-in {
      animation: fadeIn 1s ease-in forwards;
      opacity: 0;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    .slide-up {
      animation: slideUp 1s ease-out forwards;
      transform: translateY(50px);
      opacity: 0;
    }

    @keyframes slideUp {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .hover-scale {
      transition: transform 0.3s;
    }

    .hover-scale:hover {
      transform: scale(1.05);
    }
