@charset "utf-8";
/* CSS Document */

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

/* Responsive breakpoints */
@media (max-width: 992px) {
  .tile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tile-grid {
    grid-template-columns: 1fr;
  }
}

/* Tile structure */
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3; /* Controls height automatically */
  cursor: pointer;
}

/* Background image */
.tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

/* Overlay */
.tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
  transition: background 0.3s ease;
}

/* Text styling */
.tile-overlay h3 {
  margin: 0 0 8px;
  font-size: 2.4rem;
    color: white;
}

.tile-overlay p {
  margin: 0 0 15px;
  font-size: 1.6rem;
    color: white;
}

/* Button */
.tile-btn {
  display: inline-block;
  background: #e60023;
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.tile-btn:hover {
  background: #c4001d;
  transform: translateY(-2px);
}

/* Hover effects */
.tile:hover .tile-bg {
  transform: scale(1.1);
}

.tile:hover .tile-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: font-size: clamp(1.5rem, 1.3487rem + 0.5263vw, 2rem);
      color:white;
  }

  .check-icon {
    color: #fff; /* adjust to match your brand */
    display: flex;
    align-items: center;
    justify-content: center;
  }