.rscontainer {
  position: relative;
  width: 100%;
  padding: 20px;
  overflow: hidden;
}
.scroll-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 0px;
  padding: 20px;
  white-space: nowrap;
  scrollbar-width: none;
  /* background: linear-gradient(to right, #D3EDDB, #F9D7F6);  */
  border-radius: 10px;
}
.scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.rscard1 {
  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;  */
}
.rscard1:hover {
  transform: scale(1.05);
  color: red;
}
.rscard1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(96, 93, 93, 0.3); /* Semi-transparent white */
  color: white; /* White text */
  padding: 10px 20px;
  border-radius: 25px; /* Rounded edges */
  font-size: 1.5rem;
  font-weight: bold;
  backdrop-filter: blur(8px); /* Glassmorphism effect */
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease-in-out; /* Smooth transition */
}
.card-text:hover {
  background: red; /* Light blue on hover */
  color: white; /* Dark text on hover for contrast */
  backdrop-filter: blur(10px);
}

.rsbtn {
  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: 2%;
  font-size: 1.5rem;
  z-index: 10;
}
.btn-left {
  left: 10px;
}
.btn-right {
  right: 10px;
}

.language-item:hover {
  color: red; /* Change to any color you want */
  font-weight: bold;
}

.submenu li a:hover {
  color: blue; /* General hover effect for submenu items */
}
