
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      background: #f9f6ff;
      color: #333;
    }
    header {
      background-color: #9042f1;
      color: white;
      padding: 20px;
      border-radius: 0 0 10px 10px;
      position: sticky;
      top: 0;
    }
    header h1 { display: inline-block; }

    header nav {
      /* display: inline-block; */
      float: right;
      margin-top: 10px;
    }
    header nav a {
      color: white;
      margin: 0 5px;
      text-decoration: none;
      font-weight: bold;
    }

    .hero {
      text-align: center;
      padding: 40px 20px;
      background-color: #ffffff;
    }
    .hero h4 {
      font-size: 20px;
      color: #9042f1;
      margin-bottom: 10px;
    }
    .hero p {
      font-size: 15px;
      color: #555;
    }

    .filters {
      margin: 10px auto;
      text-align: center;
      max-width: 960px;
      padding: 10px 20px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 6px 1px #9042f1;
    }
    .filters label {
      margin-right: 15px;
      text-align: center;
    }
    .filters label select{
      /* background: #9042f1;
      color: white; */
      border: 2px solid #6f30c0;
      border-radius: 40px;
      height: 40px;
      font-weight: bold;
    }

    .room-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto 50px;
      padding: 0 20px;
    }

    .card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }
    
    .card-content {
      padding: 16px;
      text-align: left;
    }
    .card-content h4 {
      color: #9042f1;
      margin-bottom: 8px;
      display: inline-block;
    }
    .card-content p {
      font-size: 14px;
      color: #555;
      margin-bottom: 8px;
    }
    .card-content span {
      display: block;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .btn-container {
      display: inline-block;
      justify-content: center;
    }
    .card-content button {
      background: #9042f1;
      color: white;
      padding: 8px 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
    }
    .card-content button:hover {
      background: #6f30c0;
    }

    footer {
      background-color: #9042f1;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
      text-decoration: none;
    }
    .testimonials {
      background-color: #f3eaff;
      padding: 40px 20px;
      text-align: center;
    }
    .testimonials h3 {
      color: #9042f1;
      margin-bottom: 30px;
    }
    .testimonial-container {
      display: flex;
      overflow-x: auto;
      gap: 20px;
      scroll-snap-type: x mandatory;
      padding: 0 10px;
    }

    .testimonial-container a{
      text-decoration: none;
      cursor: pointer;
    }
    .testimonial {
      background: white;
      padding: 20px;
      border-radius: 12px;
      min-width: 280px;
      scroll-snap-align: start;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    

    .tab-section {
      max-width: 800px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }
    .tabs button {
      background: #e0ccff;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      margin: 0 5px;
      border-radius: 6px;
      color: #333;
      font-weight: bold;
      text-decoration: none;
    }
    .tabs button.active {
      background: #9042f1;
      color: white;
      text-decoration: none;
    }
    .tab-content {
      background: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-decoration: none;
    }


    