 /* Sliding box styling */
 .sliding-box {
    position: fixed;
    top: 50%;
    left: -250px; /* Hidden off-screen */
    transform: translateY(-50%);
    width: 250px;
    height: auto;
    background-color: #be9874;
    color: white;
    padding: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
    z-index: 1001;
    border-radius: 0 10px 10px 0;
  }
  
  /* Close button styling */
  .close-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 1;
  }
  
  .close-btn:hover {
    color: #ff0000; /* Change color on hover */
  }
  
  /* Content inside the sliding box */
  .sliding-box-content h5 {
    margin-top: 20px; /* Adjust to prevent overlap with the close button */
    color: #fff;
  }
  
  .sliding-box-content p {
    color: #fff;
  }
  
  /* Button stays fixed */
  .fixed-btn {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1000;
    background-color: #a52a2a;
    color: white;
    padding: 15px 25px;
    border-radius: 0 5px 5px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .fixed-btn:hover {
    background-color: #be9874;
  }
  
  /* Show the sliding box */
  .sliding-box.show {
    left: 0; /* Fully visible */
  }
  .carousel-img {
    width: 100%; /* Make the image take the full width */
    height: 400px; /* Set a fixed height */
    object-fit: cover; /* This ensures the image covers the area without distortion */
}
