.PopUpContainer-wrapper {
  display: none;
  /* Hidden initially */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  /* Dimmed background */
  z-index: 1000;
  /* Ensure it overlays content */
  display: flex;
  justify-content: center;
  /* Horizontally center */
  align-items: center;
  /* Vertically center */

}

.pop-swiper {
  display: none;
}

/* Fade In with Background Blur */
@keyframes fadeInBlur {
  0% {
    transform: scale(1.05);
    opacity: 0;
    filter: blur(5px);
  }

  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

/* Exit Fade Out with Blur */
@keyframes fadeOutBlur {
  0% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }

  100% {
    transform: scale(1.05);
    opacity: 0;
    filter: blur(5px);
  }
}

/* Apply fade-in and blur effect */
.PopUpContainer-wrapper {
  animation: fadeInBlur 0.6s ease-out forwards;
}

/* Apply the exit animation */
.PopUpContainer-wrapper.exit {
  animation: fadeOutBlur 0.6s ease-out forwards;
}

.PopUpContainer-container {
  display: flex;
  flex-direction: row;
  /* Adjust layout inside the container if needed */
  justify-content: center;
  align-items: center;
  width: 1200px;
  height: auto;
  /* Adjust height if necessary */
  max-height: 90vh;
  /* Limit the height to 90% of the screen */
  overflow: auto;
  /* Enables scrolling if content overflows */
  background: rgb(242, 242, 242);
  /* Background for the popup content */
  padding: 10px 50px;
  /* Adds spacing inside the popup */
  flex-wrap: wrap;
  overflow-x: hidden;

  border-radius: 1.5%;
}

/* Modern scrollbar styling */
.PopUpContainer-container::-webkit-scrollbar {
  width: 8px;
  /* Increase width of the vertical scrollbar */
  height: 12px;
  /* Increase height of the horizontal scrollbar */
}

/* Scrollbar track with gradient for more contrast */
.PopUpContainer-container::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #f1f1f1, #e0e0e0);
  /* Track color with gradient */
  border-radius: 10px;
  /* Round track edges */
}

/* Scrollbar thumb with vibrant color */
.PopUpContainer-container::-webkit-scrollbar-thumb {
  background: rgb(100, 100, 100);
  /* Darker thumb color for contrast */
  border-radius: 10px;
  /* Round thumb edges */
  border: 2px solid rgba(0, 0, 0, 0.1);
  /* Border around the thumb for emphasis */
}

/* Thumb color on hover */
.PopUpContainer-container::-webkit-scrollbar-thumb:hover {
  background: rgb(45, 45, 45);
  /* Darker thumb color when hovered */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  /* Add shadow for visibility on hover */
}

.close-button {
  position: absolute;
  top: 1.2vw;
  right: 1.2vw;
  border: 0.1px solid var(--lightt-color);
  width: 30px;
  height: 30px;
  font-size: 18px;
  background: var(--dark-color);
  color: var(--lightt-color);
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.3s ease;
  /* Adds a smooth hover effect */
}

@media(max-width:900px) {
  .close-button {
    width: 30px;
    height: 30px;
  }
}


.PopUpContainer-Content {
  padding: 20px;
  flex: 1;
}

.PopUpContainer-Content-h1 {
  font-family: 'Poiret One', sans-serif;
  font-weight: 600;
  font-size: var(--fs-page-h1);
  line-height: 1;
}

.Accomodation-card-heading {
  font-family: 'Montserrat';
  font-weight: 600;
}

.PopUpContainer-Content-p {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 15px;
  margin-top: 3%;
  width: 430px;
  color: rgb(33, 33, 33);
  font-weight: 600;
  margin-bottom: 3%;
}

.PopUpContainer-logos {
  display: flex;
  gap: 15px;
}

.PopUpContainer-logo {
  width: 60px;
  height: 60px;
  background-size: 80%;
  /* Shrinks the background image */
  background-position: center;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  /* Now this works as expected */
  background-repeat: no-repeat;
}

.PopUpContainer-logo .inner-logo {
  width: 40px;
  /* Adjust this to fit inside */
  height: 40px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  /* Ensure circular shape */
}

.key-features {
  color: black;
  font-family: 'Montserrat';
  font-weight: 600;
  color: rgb(33, 33, 33);
}

.key-features h2 {
  font-size: var(--fs-section-h2);
  font-weight: bold;
  margin-bottom: 15px;
}

.features-list {
  display: flex;
  gap: 1vw;
  flex-wrap: wrap;
}

.features-list ul {
  list-style-type: disc;
  margin: 0;
  padding-left: 20px;
}

.features-list li {
  margin-bottom: 8px;
  font-size: var(--fs-body-p);
}

.PopUpContainer-Collage {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.PopUpContainer-Collage-Colomn1,
.PopUpContainer-Collage-Colomn2,
.PopUpContainer-Collage-Colomn3 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Base image sizes */
.PopUpContainer-Collage-Colomn1-img1,
.PopUpContainer-Collage-Colomn1-img2,
.PopUpContainer-Collage-Colomn2-img1,
.PopUpContainer-Collage-Colomn2-img2,
.PopUpContainer-Collage-Colomn3-img1,
.PopUpContainer-Collage-Colomn3-img2,
.PopUpContainer-Collage-Colomn3-img3 {
  background-color: gray;
  background-size: cover;
  /* Makes the image cover the entire area without distortion */
  background-position: center;
  /* Centers the image */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  object-fit: cover;
}

/* Default image sizes for large screens */
.PopUpContainer-Collage-Colomn1-img1,
.PopUpContainer-Collage-Colomn1-img2,
.PopUpContainer-Collage-Colomn2-img1,
.PopUpContainer-Collage-Colomn2-img2,
.PopUpContainer-Collage-Colomn3-img1,
.PopUpContainer-Collage-Colomn3-img2,
.PopUpContainer-Collage-Colomn3-img3 {
  width: 190px;
}

/* Column-specific image heights */
.PopUpContainer-Collage-Colomn1-img1 {
  height: 150px;
  object-fit: cover;
}

.PopUpContainer-Collage-Colomn1-img2 {
  height: 300px;
  object-fit: cover;
}

.PopUpContainer-Collage-Colomn2-img1 {
  height: 320px;
  object-fit: cover;
}

.PopUpContainer-Collage-Colomn2-img2 {
  height: 130px;
  object-fit: cover;
}

.PopUpContainer-Collage-Colomn3-img1 {
  height: 147px;
  object-fit: cover;
}

.PopUpContainer-Collage-Colomn3-img2 {
  height: 147px;
  object-fit: cover;
}

.PopUpContainer-Collage-Colomn3-img3 {
  height: 146px;
  object-fit: cover;
}

/* Zoom-In animation */
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    /* Start smaller */
    opacity: 0;
  }

  100% {
    transform: scale(1);
    /* End at original size */
    opacity: 1;
  }
}

/* Lightbox Styling */
.lightbox {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* Above other content */
  cursor: pointer;
  /* Indicating clickability */
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: zoomIn 0.4s ease-out;
  /* Apply the zoom-in animation */
}

/* Optional hover effect for images */
.PopUpContainer-Collage div {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.PopUpContainer-Collage div:hover {
  transform: scale(1.05);
}

@media(max-width:1182px) {
  .PopUpContainer-Content-p {
    width: 550px;
    padding-left: 4%;
    padding-right: 4%;
    font-size: 1.5rem;
  }

  .features-list ul li {
    font-size: 1.2rem;
  }

  .PopUpContainer-Content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .PopUpContainer-container {
    height: 70%;
    width: 80%;
  }

  .PopUpContainer-Collage-Colomn1-img1,
  .PopUpContainer-Collage-Colomn1-img2,
  .PopUpContainer-Collage-Colomn2-img1,
  .PopUpContainer-Collage-Colomn2-img2,
  .PopUpContainer-Collage-Colomn3-img1,
  .PopUpContainer-Collage-Colomn3-img2,
  .PopUpContainer-Collage-Colomn3-img3 {
    width: 20.5vw;
  }

  /* Column-specific image heights */
  .PopUpContainer-Collage-Colomn1-img1 {
    height: 10vh;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn1-img2 {
    height: 30vh;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn2-img1 {
    height: 30vh;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn2-img2 {
    height: 10vh;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn3-img1 {
    height: 12.5vh;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn3-img2 {
    height: 12.5vh;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn3-img3 {
    height: 14.75vh;
    object-fit: cover;
  }
}

@media(max-width: 800px) {
  .PopUpContainer-Content-p {
    font-size: 1.2rem;
  }
}

@media (max-width: 705px) {

  .PopUpContainer-Content-h1 {
    padding-left: 3vw;
    padding-right: 3vw;
    text-align: center;
  }

  .PopUpContainer-Content-p {
    /* padding-left: 5vw;
    padding-right: 5vw; */
    font-size: 1rem;
    width: 100%;

  }

  .PopUpContainer-Content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 77vw;
  }

  .features-list {
    padding-left: 8%;
    padding-right: 8%;
    /* justify-content: center; */
    margin-left: 0;
  }

  .PopUpContainer-container {
    height: 65%;
  }

  .PopUpContainer-Collage-Colomn1-img1,
  .PopUpContainer-Collage-Colomn1-img2,
  .PopUpContainer-Collage-Colomn2-img1,
  .PopUpContainer-Collage-Colomn2-img2,
  .PopUpContainer-Collage-Colomn3-img1,
  .PopUpContainer-Collage-Colomn3-img2,
  .PopUpContainer-Collage-Colomn3-img3 {
    width: 18.5vw;
  }

  /* Column-specific image heights */
  .PopUpContainer-Collage-Colomn1-img1 {
    height: 8.5vh;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn1-img2 {
    height: 28.5vh;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn2-img1 {
    height: 28.5vh;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn2-img2 {
    height: 8.5vh;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn3-img1 {
    height: 11vh;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn3-img2 {
    height: 11vh;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn3-img3 {
    height: 14.5vh;
    object-fit: cover;
  }

}

@media(max-width:628px) {

  .PopUpContainer-Content-h1 {
    font-size: var(--fs-page-h1);
  }

  .PopUpContainer-Content-p {
    /* padding-left: 10vw;
    padding-right: 10vw; */
    font-size: 1rem;
  }

  .features-list li {
    font-size: var(--fs-body-p);
  }



}

@media screen and (min-width: 480px) and (max-width: 932px) and (orientation: landscape) {
  .PopUpContainer-container {
    height: 100%;
    width: 85%;
  }

  .PopUpContainer-Content-h1 {
    font-size: var(--fs-page-h1);
  }

  .PopUpContainer-Collage-Colomn1-img1 {
    height: 10vw;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn1-img2 {
    height: 30vw;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn2-img1 {
    height: 30vw;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn2-img2 {
    height: 10vw;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn3-img1 {
    height: 12.5vw;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn3-img2 {
    height: 12.5vw;
    object-fit: cover;
  }

  .PopUpContainer-Collage-Colomn3-img3 {
    height: 14.75vw;
    object-fit: cover;
  }
}

@media (max-width: 586px) {
  .PopUpContainer-Content-h1 {
    font-size: var(--fs-page-h1);
    /* padding-left: 10%;
    padding-right: 10%; */
  }

  .pop-swiper {
    padding-top: 5%;
    padding-bottom: 11%;
    display: block;
  }

  .PopUpContainer-Collage {
    display: none;
  }





  .features-list ul li {
    font-size: 1rem;
  }

}

@media (max-width: 548px) {
  .PopUpContainer-Content-h1 {
    font-size: var(--fs-page-h1);
    /* padding-left: 20%;
    padding-right: 20%; */
  }
}

@media(max-width:510px) {
  .PopUpContainer-Content-h1 {
    font-size: var(--fs-page-h1);
    /* padding-left: 10%;
    padding-right: 10%; */
  }

  .PopUpContainer-Content-p {
    /* width: 100vw; */
    font-size: 1rem;
  }

  .PopUpContainer-logo {
    height: 12vw;
    width: 12vw;
  }

  .features-list {
    margin-left: 6vw;
  }
}

@media(max-width:410px) {
  .PopUpContainer-Content-p {
    /* width: 100vw; */
    font-size: 1rem;
  }

  .PopUpContainer-logo {
    height: 14vw;
    width: 14vw;
  }

  .features-list {
    margin-left: 6vw;
  }
}

@media(max-width:340px) {


  .PopUpContainer-Content-p {
    font-size: 4.75vw;
    /* width: 100vw; */
  }

  .features-list li {
    font-size: var(--fs-body-p);
  }
}


@media(max-width:1120px) {
  .know-more-btn {
    padding: 10px 13px;
    font-size: 12px;
  }
}


/* Style for the button */
.know-more-btn {
  position: relative;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 30px;
  color: white;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  /* Hide the overflow for the moving line */
}

/* Glitter effect line */
.know-more-btn:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 70%);
  animation: glitter 6s linear infinite;
  z-index: 0;
  text-decoration: none;
}

@keyframes glitter {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@media(min-width:1950px) {

  .Book-your-day-ou-btn,
  .know-more-btn {
    font-size: 1vw;
    padding: 10px 20px;
  }

  .acc-card__data {
    height: 23vh;
    padding: 2vw;
  }

  .acc-card__data ul {
    font-size: 1vw;
    width: 50%;
  }

  .acc-card__data h3 {
    font-size: 1.5vw;
  }

  .acc-key-features {
    font-size: 1.2vw;
  }

  .acc-key-features ul li {
    font-size: 1.2vw;
  }

  .PopUpContainer-container {
    width: 80%;
    height: 80%;
    padding: 2.5vw;
  }

  .PopUpContainer-Content-h1 {
    font-size: var(--fs-page-h1);
  }

  .PopUpContainer-Content-p {
    width: 30vw;
    font-size: 1.2vw;
  }

  .PopUpContainer-logo {
    height: 4.5vw;
    width: 4.5vw;
  }

  .PopUpContainer-logo .inner-logo {
    height: 4vw;
    width: 4vw;
/* Day Out Specific Overrides inside PopUpContainer */
.DayOutPopup-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}
.DayOutPopup-features-list li i {
    color: #B8A884;
}
@media(max-width: 900px) {
    .DayOutPopup-features-list {
        grid-template-columns: 1fr;
    }
}

