    @keyframes fadeUp {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-slide-in {
      animation: fadeUp 0.6s ease forwards;
      opacity: 1 !important;
    }
    
    /* ---------- Global Styles ---------- */
    .category {
      background-color: #f9f9f8;
      padding-bottom: 2.5rem;
    }
    
    .carousel-title {
      text-align: center;
      margin-bottom: 30px;
      font-size: 3rem;
      font-weight: bold;
    }
    
    .icon-circle {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #ffc107; 
        margin-right: 8px; 
        margin-bottom: 10px;
        margin-left: 20px;
    }
    
    .icon-circle i {
        font-size: 15px;
    }

    
    /* ---------- Carousel Navigation ---------- */
    .carousel-nav-inline {
      width: 75px;
      height: 40px;
      border: none;
      background-color: #ffc107;
      color: white;
      font-size: 24px;
      border-radius: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
    }
     .carousel-nav-inline i {
         font-size: 30px;
         font-weight: 120px;
     }
    
    .nav-buttons-wrapper {
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px; 
      flex-wrap: wrap;
    }
    
    /* ---------- Carousel Container ---------- */
    .carousel-outer {
      width: 100%;
      max-width: calc((380px * 3) + (20px * 2));
      overflow: hidden;
      margin: 0 auto;
      transition: margin 0.3s ease;
    }
    
    .carousel-wrapper {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none; 
      -ms-overflow-style: none;  
    }
    
    .card-carousel {
      display: flex;
      gap: 10px;
    }
    
    /* ---------- Category Item Card ---------- */
    .categories-item {
      flex: 0 0 auto;
      width: 370px;
      height: 650px;
      margin-right: 20px;
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      opacity: 0; /* hidden before animation */
    }
    
    /* ---------- Card Containers ---------- */
    .outer-white-container {
      width: 100%;
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid black;
      transition: box-shadow 0.3s, border-color 0.3s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .categories-item:hover .outer-white-container {
      border-color: #ffc107;
      box-shadow: 0 0 15px rgba(215, 111, 0, 0.3);
    }
    
    .top-grey-container,
    .bottom-grey-container {
      background-color: #f1f1f1;
      padding: 10px;
      transition: box-shadow 0.3s, border 0.3s;
    }
    
    .top-grey-container {
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      margin: 25px 25px 5px 25px;
    }
    
    .bottom-grey-container {
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      margin: 0 25px 25px 25px;
      padding: 1rem 10px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    
    /* Hover effect */
    .categories-item:hover .top-grey-container,
    .categories-item:hover .bottom-grey-container {
      box-shadow: 0 30px 50px #ffc107;
    }
    
    /* ---------- Image ---------- */
    .categories-img img {
      width: 100%;
      height: 250px;
      object-fit: contain;
      border-radius: 5px;
      display: block;
    }
    
    /* ---------- Card Content ---------- */
    .categories-review {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 5px;
      color: #555;
      font-size: 0.9rem;
    }
    
    .categories-price {
      font-weight: bold;
      text-align: center;
      color: red;
      margin: 10px 0;
      font-size: 1.4rem;
    }
    
    .feature-row {
      font-size: 0.85rem;
      margin-top: 10px;
    }
    
    .feature-row i {
      margin-right: 5px;
    }
    
    /* ---------- Buttons ---------- */
    .rec-cost {
      background-color: white;
      color: #ffc107;
      width: 300px;
      height: 50px;
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border: none;
      border-radius: 50rem;
      cursor: pointer;
      display: inline-block;
      text-align: center;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }
    
    .btn-book {
      background-color: #ffc107;
      color: white;
      width: 250px;
      height: 50px;
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border: none;
      border-radius: 50rem;
      cursor: pointer;
      display: inline-block;
      text-align: center;
      justify-content: center;  
      vertical-align: center;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
      margin-top: auto; 
    }
    
    .btn-book:hover {
      background-color: #1a204a;
      outline: none;
      color: white;
    }
    
    .btn-search {
      background-color: #ffc107;
      color: white;
      padding: 0.5rem 1.5rem;
      font-size: 1rem;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .btn-search:hover {
      background-color: #1a204a;
    }
    .btn-search.active {
      background-color: #1a204a;
    }
    
    .add-top-space {
      margin-top: 40px;
      display: inline-block;
    }
    
    .label {
      margin-right: 6px;
    }
    
    .value {
      margin-left: 48px
    }
    
    .value-1 {
      margin-left: 25px
    }
    
    .value-2 {
      margin-left: 25px
    }
    .value-3 {
      margin-left: 10px
    }