  body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 20px;
      background: #fff;
      background-image: url(Hotels\ Business\ Website\ \(2\).png);
      background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
        animation: forwards fadeIn 1.5s ease-in;

    }

    .content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}
    .back-btn {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 100;
        padding: 10px 24px;
        font-size: 1rem;
        border: none;
        border-radius: 6px;
        background-color: #333;
        color: #fff;
        cursor: pointer;
        transition: background 0.2s;
    }
    .back-btn:hover {
        background-color: #555;
    }


/* Headings */
h3 {
  font-size: 16px;
  letter-spacing: 4px;
  font-weight: 400;
}

h1 {
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 4px;
  margin: 10px 0;
}

h2 {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

    .card {
      min-height: 300px;
      font-size: 24px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      padding-bottom: 20px;
    }

    .grid {
      grid-auto-rows: 300px;
    }

    .card.large {
      grid-row: span 2;
      min-height: 600px;
    }

    /* Product image styling */
    .card img {
      width: 80%;
      height: 60%;
      object-fit: contain;
      position: static;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      z-index: 1;
      transition: transform 0.4s ease, filter 0.4s ease;
    }

    .card-content {
      font-size: 20px;
      font-weight: 600;
      color: #222;
      background: rgba(255,255,255,0.85);
      border-radius: 8px;
      padding: 8px 16px;
      margin-top: 10px;
      z-index: 2;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 200px;
      gap: 20px;
    }

    .card {
      position: relative;
      border-radius: 15px;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-size: 18px;
      font-weight: 500;
      cursor: pointer;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .card:hover {
      transform: scale(1.05);
      box-shadow: 0px 12px 25px rgba(0,0,0,0.2);
    }

    .card img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      top: 0;
      left: 0;
      border-radius: 15px;
      z-index: 0;
      transition: transform 0.4s ease, filter 0.4s ease;
    }

    .card:hover img {
      transform: scale(1.1);
      filter: brightness(0.7);
    }


    

    .card:hover .card-content {
      color: #fff;
    }

    /* Background colors */
    .red { background: #f8054c; }
    .orange { background: #ff4b00; }
    .purple { background: #9a00ff; }
    .gray { background: #ddd; color: black; }
    .dark { background: #333; }

    /* Special sizes */
    .card.large {
      grid-row: span 2;
    }

  /*bottom btn*/
.card-content {
  background: black;
  color: white;
  padding: 14px 60px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;

  position: fixed;   /* stays at the bottom */
  bottom: 20px;      /* distance from bottom */
  left: 50%;         /* center horizontally */
  transform: translateX(-50%); /* adjust to exact middle */

  text-align: center;
  z-index: 999; /* keep it above other elements */
}
    /* --- MOBILE RESPONSIVE FIX --- */
@media (max-width: 768px) {
  .grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 30px;
  }

  /* Keep the same card size as desktop */
  .card {
    width: 300px;      /* fixed width */
    height: 400px;     /* fixed height */
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  h1 {
    font-size: 48px;
  }

  h3 {
    font-size: 14px;
  }
}

    .content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}


