.card {
  height: 100%;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  transition: 0.3s;
}

h2, h3 {
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.hero {
      height: 20vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    }
    .feature-card {
      transition: transform 0.3s, box-shadow 0.3s;
      border-radius: 10px;
      overflow: hidden;
    }

    .feature-card:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .feature-card img {
      height: 200px;
      object-fit: cover;
    }

footer {
      background: #222;
      color: #ddd;
      text-align: center;
      padding: 15px 0;
      margin-top: 50px;
}


body {
      min-height: 185vh;
      margin: 0;
      font-family: Arial, sans-serif;
}

footer {
      position: fixed;
      bottom: -100px;
      left: 0;
      width: 100%;
      background: #333;
      color: white;
      text-align: center;
      padding: 10px;
      transition: bottom 0.5s;
}

footer.show {
      bottom: 0;
}

.pagination {
  margin-bottom: 140px;
}
body {
  min-height: 185vh;
  margin: 0;
  font-family: Arial, sans-serif;
  padding-bottom: 120px;
}