    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #adbaab85 !important;
      margin: 0;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 30px 20px;
    }
    .header{
      font-weight: bold;
      font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
      background-color: #ffffffd2 !important;
    }
    .header1 {
      margin-top: 90px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      text-align: center;
      margin-bottom: 30px;
    }
    .header1 h2 {
      font-size: 28px;
      color: #222;
      margin-bottom: 10px;
    }
    .categories {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .category {
      text-align: center;
      cursor: pointer;
      width: 120px;
    }
    .category img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid transparent;
      transition: all 0.3s ease;
    }
    .category p {
      margin-top: 8px;
      font-size: 14px;
      color: #444;
    }
    .category.active img,
    .category:hover img {
      border-color: #f5a623;
      transform: scale(1.05);
    }
    /* Gallery cards */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }
    .gallery-item {
      background: #fffffff1;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
      cursor: pointer;
    }
    .gallery-item:hover {
      transform: translateY(-5px);
    }
    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .gallery-item p {
      padding: 12px;
      margin: 0;
      font-size: 15px;
      color: #333;
      font-weight: 500;
    }
    /* Popup */
    .popup {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }
    .popup-content {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      max-width: 500px;
      width: 90%;
      text-align: center;
      position: relative;
      box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }
    .popup-content img {
      width: 100%;
      border-radius: 10px;
    }
    .popup-content h3 {
      margin: 15px 0 10px;
      font-size: 20px;
      color: #222;
    }
    .popup-content p {
      margin: 6px 0;
      font-size: 14px;
      color: #555;
    }
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
      color: #555;
    }
    .book-btn {
      margin-top: 15px;
      padding: 12px 20px;
      width: 100%;
      background: #f5a623;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 15px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .book-btn:hover {
      background: #e08e1c;
    }
    @media (max-width: 768px) {
    .category{
      width: 50px;
    }
    .category img {
      width: 50px;
      height: 50px;
    }
    .header1 h2 {
    font-size: 19px;
    margin-top: -32px;
}
    .category p {
      font-size: 10px;
    }
}