.Rscontainer {
  position: relative;
  width: 100%;
  padding: 20px;
  overflow: hidden;
}
.scroll-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px;
  white-space: nowrap;
  scrollbar-width: none;
  /* background: linear-gradient(to right, #D3EDDB, #F9D7F6);  */
  border-radius: 10px;
}
.scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.Rscard {
  position: relative;
  min-width: 250px;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  /* border: 5px solid #FCDFD7; 
  background-color: #FCF9DA;  */
}
.Rscard:hover {
  transform: scale(1.05);
}
.Rscard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Rscard-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.3); /* Semi-transparent white */
  color: white; /* White text */
  padding: 10px 20px;
  border-radius: 25px; /* Rounded edges */
  font-size: 1rem;
  font-weight: bold;
  backdrop-filter: blur(8px); /* Glassmorphism effect */
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease-in-out; /* Smooth transition */
}
.Rscard-text:hover {
  background: red; /* Light blue on hover */
  color: white; /* Dark text on hover for contrast */
  backdrop-filter: blur(10px);
}

#Logo {
  width: 57px; /* Set your desired size */
  height: 80px; /* Make height equal to width */
  object-fit: contain; /* Ensures the image fits inside the box without distortion */
}
@media (min-width: 1024px) and (max-width: 2572px) {
  .rscontainer {
    text-align: center;
  }
}

/* .btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5rem;
  z-index: 10;
}
.btn-left {
  left: 10px;
}
.btn-right {
  right: 10px;
} */
