<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Gifting Guide</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #fff;
    }

    .gifting-guide {
      padding: 40px 20px;
      background: linear-gradient(90deg, #fddde6, #ffe9cc);
      text-align: center;
    }

    .gifting-guide h2 {
      font-size: 2rem;
      margin-bottom: 30px;
      color: #333;
    }

    .guide-container {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: nowrap; /* one line for desktop */
    }

    .guide-card {
      background: #fff;
      border-radius: 24px;
      padding: 15px;
      width: 180px;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      text-align: center;
      text-decoration: none;
      display: block;
    }

    .guide-card:hover {
      transform: translateY(-6px);
    }

    .guide-card img {
      width: 100%;
      border-radius: 16px;
      object-fit: cover;
    }

    .guide-card p {
      margin-top: 12px;
      font-weight: bold;
      font-size: 1.1rem;
      color: purple;
    }

    /* Mobile - stack vertically */
    @media (max-width: 768px) {
      .guide-container {
        flex-direction: column;
        align-items: center;
      }
      .guide-card {
        width: 80%;
      }
    }
  </style>
</head>
<body>

  <section class="gifting-guide">
    <h2>Gifting Guide</h2>
    <div class="guide-container">

      <a href="https://www.avanijewellers.com/search?q=men" class="guide-card" target="_blank">
        <img src="https://i.ibb.co/Kzz9nRQ5/Bro-webp.png" alt="Brother">
        <p>Brother</p>
      </a>

      <a href="https://www.avanijewellers.com/search?q=men%20and%20women" class="guide-card" target="_blank">
        <img src="https://i.ibb.co/TqrpdMS5/Dost-webp.png" alt="Friends">
        <p>Friends</p>
      </a>

      <a href="https://www.avanijewellers.com/search?q=men" class="guide-card" target="_blank">
        <img src="https://i.ibb.co/v6FJvvgF/Hub-webp.png" alt="Husband">
        <p>Husband</p>
      </a>

      <a href="https://www.avanijewellers.com/search?q=ladies" class="guide-card" target="_blank">
        <img src="https://i.ibb.co/v4nDHXjx/Ma-webp.png" alt="Mother">
        <p>Mother</p>
      </a>

      <a href="https://www.avanijewellers.com/search?q=girls" class="guide-card" target="_blank">
        <img src="https://i.ibb.co/LDMFZ31w/Sis-1-webp.png" alt="Sister">
        <p>Sister</p>
      </a>

      <a href="https://www.avanijewellers.com/search?q=ladies" class="guide-card" target="_blank">
        <img src="https://i.ibb.co/0pHHh9Sq/Wif-webp.png" alt="Wife">
        <p>Wife</p>
      </a>

    </div>
  </section>

</body>
</html>
