body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffeeef;
  color: #fff;
  text-align: center;
  position: relative;
}


/* Container centers content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align everything inside */
}

/* Page Heading */
.page-title {
  font-size: 2.0rem;
  margin-bottom: 2rem;
  color: #3d2c8f;
}

/* Card List Layout */
.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  justify-items: center; /* Center individual cards */
}

/* Card Item Styling */
.card-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(176, 97, 97, 0.05);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 350px;
  position: relative;
}

.card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Center the image */
.card-item img {
  width: 60%;
  object-fit: contain;
  display: block;
  margin: 1rem auto 0;
}

/* Tags inside card */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center tags */
  gap: 0.5rem;
  padding: 1rem;
}

.card-tags span {
  background-color: peachpuff;
  color: #555;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}

/* App Title */
.card-item h3 {
  font-size: 1.25rem;
  margin-top: auto;
  margin-bottom: 1rem;
  color:#3d2c8f;
}

/* Arrow Icon */
.arrow {
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  margin-bottom: 1rem;
}

.card-item:hover .arrow {
  background-color: #0056b3;
}

.card-icon {
  font-size: 1rem;
}
