* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
  font-family: 'Poppins', sans-serif;
  /* color: #fff; */
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%; 
  width: 100%;
  /* background-color: #000; */
}

img {
  max-width: 100%;
  height: auto;
}

body {
  position: relative;
  overflow-x: hidden; /* block page-wide horizontal scroll */
}
#main {
  min-height: 100vh;
}


#nav {
  background-color: rgba(0, 0, 0, 0.38); /* Transparent white color */
  /* background-color: rgba(255, 255, 255, 0.2);; */
  backdrop-filter: blur(2px); /* Zyada blur effect */
  -webkit-backdrop-filter: blur(20px); /* Safari support */
  top: 0; 
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 300px;
  gap: 50px;
  position: fixed;
  justify-content: space-between;
  z-index: 100;
}

#nav img {
    height: 125px;
    width: 120px;
    transition: all 0.4s ease;
   }

#nav h4 {
  justify-content: center;
  display: flex;
  text-align: center;
  align-items: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.nav-button {
  box-shadow: 8px 8px 20px #6d6d6d21;
  display: flex;
  height: 25px;
  font-weight: 500;
  width: 110px;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  padding: 15px;
  background-color: #4947473a;
  transition: all 0.4s ease;
  border: 2px solid #000;
  /* border-right: 3px solid #000; */
  cursor: pointer;
  color: white;
}
.nav-button:hover {
  transform: translateY(-8px);
  background-color: #fdd835;
  border: 2px solid #a37000;
  box-shadow: 0 0 6px #a37000;
}
.nav-button:hover h4 {
  color: #000 !important;
}



/* ✅ Default transparent nav state hover (like Watch Video) */
#nav:not(.scrolled) .nav-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border: 2px solid #fff;
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

#nav:not(.scrolled) .nav-button:hover h4 {
  color: #fff !important;
}

/* ✅ When navbar becomes black — golden hover effect */
#nav.scrolled .nav-button:hover {
  background-color: #fdd835 !important;
  border: 2px solid #a37000 !important;
  box-shadow: 0 0 6px #a37000 !important;
}

#nav.scrolled .nav-button:hover h4 {
  color: #000 !important;
}


@media (max-width: 768px) {
  #nav {
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 15px;
  }
}




/* ✅ Background image exactly like full-screen video */
/* #hero-bg {
  background-image: url("tour-packages-images/vrindavan\ tour\ prem\ mandir.jpg"); /* ⬅️ Replace with correct path *
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: -1;
}

 (Optional) Overlay for readability 
#hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);  You can increase/decrease darkness 
} */



#hero {
  background-image: url("tour-packages-images/vrindavan\ tour\ prem\ mandir.jpg");  /* 🔁 Replace with your image path */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;

  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 0px;
  position: relative;
  z-index: 10;
}




#down{
  position:relative;
  background-color: #000;
}

#hero {
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  /* margin-left: 120px; */
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 0px;
  position: relative;
  z-index: 10;
}



.box {
  padding-top: 250px;
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  padding-left: 100px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  z-index: 10;
}

.luxury-tag {
  cursor: default;
  font-size: 18px;
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.main-heading {
  cursor: default;
  text-align: justify;
  font-family: "Playfair Display , serif";
  font-size: 70px;
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.cover-line {
  color: #fff;
  text-align: justify;
  cursor: default;
  font-size: 17px;
  line-height: 1.5;
}

.button-group {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: #fdd835;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1);
}

.primary-btn:hover {
  background-color: #fff176;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  transform: scale(1);
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}


@media (max-width: 768px) {
  #hero {
    height: auto;
    padding: 40px 20px;
    text-align: center;
  }

  .box {
    padding-top: 120px;
    padding-left: 0;
    align-items: center;
  }

  .main-heading {
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
  }

  .luxury-tag {
    font-size: 14px;
    padding: 6px 14px;
  }

  .cover-line {
    font-size: 14px;
    text-align: center;
  }

  .button-group {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  #hero-bg {
    object-fit: cover;
    height: 100vh;
    width: 100vw;
  }
}





#braj-attractions {
  background-color: #000;
  top: 0px;
  padding: 60px 20px;
  position: relative;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}
.section-heading {
  cursor: default;
  text-align: center;
  font-size: 45px;
  font-weight: 800;
  color: #fdd835;
  margin-bottom: 40px;
  text-transform: uppercase;
  line-height: 1.2;
}
.section-heading span {
  color: #fff;
  font-size: 30px;
  display: block;
  font-weight: 500;
}

/* 💛 Carousel Container */
.carousel-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.attraction-scroll {
  display: flex;
  gap: 24px !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px;
  width: 100%;
}
.attraction-scroll::-webkit-scrollbar {
  display: none;
}

.attraction-card {
  cursor: pointer;
  flex: 0 0 32.6%;
  height: 360px;
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(253, 216, 53, 0.4);
  position: relative;
  transition: transform 0.3s ease;
}
.attraction-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  cursor: default;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #fdd835;
  border-radius: 0 0 15px 15px;
}
.attraction-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(253, 216, 53, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 💛 Arrows */
.carousel-container .arrow {
  background: transparent;
  border: none;
  color: #fdd835;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
  transition: transform 0.2s ease;
}

.carousel-container .arrow:hover {
  transform: scale(1.3);
}

/* 💛 Discover Button */
.discover-btn {
  text-align: center;
  margin-top: 30px;
}
.discover-btn a {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #fdd835;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.discover-btn a:hover {
  background-color: #fff176;
  transform: scale(1.05);
}

/* 💛 Pagination Dots */
.carousel-dots {
  display: none;
}

@media (max-width: 768px) {
  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    gap: 8px;
  }
}

.carousel-dots span {
  width: 12px;
  height: 12px;
  background-color: #fdd835;
  border-radius: 50%;
  opacity: 0.4;
  transition: all 0.3s ease;
}
.carousel-dots span.active {
  opacity: 1;
  transform: scale(1.2);
}

/* 💛 Responsive */
@media (max-width: 768px) {
  .carousel-container .arrow {
    display: none;
  }

  .discover-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    width: 100%;
  }

  .discover-btn a {
    flex: 1;
    text-align: center;
    font-size: 14px;
    padding: 12px 16px;
  }
}






.about-us-section {
  /* background: linear-gradient(145deg, #000000, #1c1c1c); */
  background-color: #000;
  color: white;
  padding: 100px 80px;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  padding-top: 10px;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
}
.about-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
  overflow: hidden;
  pointer-events: none;
}

.about-img {
  cursor: default;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  pointer-events: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 20px;
}
.about-img:hover {
  transform: scale(1.05);
  /* box-shadow: 0 0 25px rgba(253, 216, 53, 0.7); */
  cursor: pointer;
}

.about-left {
  padding-right: 10px;
  overflow: hidden;
  pointer-events: none;
}

.about-left .about-img {
  pointer-events: auto;
}



.about-right {
  flex: 1;
  min-width: 300px;
}

.section-label{
  font-family: "Playfair Display", "serif";
  cursor: default;
  /* text-align: center; */
  font-size: 45px;
  font-weight: 800;
  color: #fdd835;
  margin-bottom: 10px;
  text-transform: uppercase;
  /* line-height: 1.2; */
  padding: 6px 18px;
}

.about-right h3 {
  cursor: default;
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.about-right p {
  cursor: default;
  font-size: 16px;
  color: #d8d8d8;
  line-height: 1.6;
  margin-bottom: 20px;
} 

.features p {
  cursor: default;
  font-size: 16px;
  color: #fdd835;
  margin: 5px 0;
}

.learn-more-btn {
  margin-top: 20px;
  background-color:  #fdd835;
  color: #000;
  border: none;
  padding: 14px 12px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #fff176 !important;
  transform: scale(1.05) !important;
}

.review-section {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.review-user {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}

.rating strong {
  cursor: default;
  font-size: 16px;
  color: white;
}

.rating p {
  font-size: 14px;
  color: #c3c3c3;
}

/* auto-scroll line */
#page2 {
  /* min-height: 100vh; */
  width: 100%;
  background-color: #000;
  z-index: 10;
  position: relative; 
}

#scroller {
  cursor: default;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  z-index: 10;
}

#scroller::-webkit-scrollbar {
  display: none;
}

#scroller-in {
  display: inline-block;
  white-space: nowrap;
  animation-name: scroll;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

#scroller h4 {
  padding-top: 40px;
  display: inline-block;
  font-size: 120px;
  font-weight: 900;
  /* font-family: 'Poppins', sans-serif; */
  margin-right: 10px;
  font-family: gilory;
  transition: all linear 0.5s ease;
  /* transition: all linear o.5; */
  color: transparent;
  -webkit-text-stroke: 2px #fdd835;
  /* text-shadow: 0 0 10px rgba(253, 216, 53, 0.4); */
}

#scroller h4:hover {
  color: #fdd835;
  /* text-shadow: 0 0 20px rgba(253, 216, 53, 0.8); */
}


@keyframes scroll {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-100%);
  }
}

@media (max-width: 1024px) {
  #scroller h4 {
    font-size: 60px;
    -webkit-text-stroke: 1.5px #fdd835;
  }
}

@media (max-width: 768px) {
  #scroller h4 {
    font-size: 40px;
    line-height: 1.2;
    margin-right: 20px;
    -webkit-text-stroke: 1px #fdd835;
  }
}

@media (max-width: 480px) {
  #scroller h4 {
    font-size: 30px;
    padding-top: 20px;
    -webkit-text-stroke: 0.8px #fdd835;
  }
}

#scroller {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}




/*-- ✨ Custom CSS for GEM cards --*/
#hidden-gems {
  top: 0px;
  background-color: #000;
  padding: 60px 20px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}


  .gems-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    width: 100%;
    padding: 10px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }
  
.gem-card {
  scroll-snap-align: start;
}

.gems-scroll::-webkit-scrollbar {
  display: none;
}

.gems-scroll {
  -ms-overflow-style: none;  /* for Internet Explorer and Edge */
  scrollbar-width: none;     /* for Firefox */
}


/* 💎 GEM cards upgraded */
.gem-card {
  flex: 0 0 24%;
  height: 370px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.gem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
  z-index: 1;
  transition: 0.4s ease;
}

.gem-card h3 {
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 16px 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  backdrop-filter: blur(1px);
}

.gem-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(253, 216, 53, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 5;
}

.gem-card:hover::before {
  background: linear-gradient(to top, rgba(253, 216, 53, 0.6), transparent 60%);
}


/* 📍 Pagination Dots (Common) */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  gap: 8px;
}
.carousel-dots span {
  width: 12px;
  height: 12px;
  background-color: #fdd835;
  border-radius: 50%;
  opacity: 0.4;
  transition: all 0.3s ease;
}
.carousel-dots span.active {
  opacity: 1;
  transform: scale(1.2);
}

/* Hide dots by default */
.carousel-dots {
  display: none;
}

/* Show dots only on mobile */
@media (max-width: 768px) {
  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    gap: 8px;
  }
}



/* 💎 Responsive Hidden Gems */
@media (max-width: 768px) {
  #hidden-gems .carousel-container .arrow {
    display: none;
  }

  #hidden-gems .discover-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    width: 100%;
  }

  #hidden-gems .discover-btn a {
    flex: 1;
    text-align: center;
    font-size: 14px;
    padding: 12px 16px;
  }

  .gem-card {
    flex: 0 0 75%;
  }
}


/* 💛 Arrows */
.carousel-container .arrow {
  background: transparent;
  border: none;
  color: #fdd835;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
  transition: transform 0.2s ease;
}

.carousel-container .arrow:hover {
  transform: scale(1.3);
}



/*-- special tour section --*/

.destinations {
  background-color: #000;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.left-content {
  padding-top: 0px;
  flex: 1 1 350px;
  max-width: 400px;
}

.tagline {
  font-size: 0.85rem;
  color: #f97316;
  font-weight: bold;
  letter-spacing: 1px;
}
.tagline h3{
  font-family: "Playfair Display", "serif";
  cursor: default;
  /* text-align: center; */
  font-size: 45px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fdd835;
}

.left-content h2 {
  cursor: default;
  color: #fff;
  font-size: 2.5rem;
  margin: 0.5rem 0;
}

.left-content p {
  cursor: default;
  font-size: 18px;
  font-family: emojis;
  margin: 1rem 0;
  color: #fff;
}
.button{
  margin: 6px;
  padding-left: 110px;
}

.package-btn {
  background-color: #fdd835;
  color: #000;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 0.4rem;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1);
  display: inline-block;
  /* margin-top: 0.5rem; */
  transition: all 0.3s ease;
}

.package-btn:hover {
  background-color: #fff176;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.card {
  cursor: pointer;
  position: relative;
  background-size: cover;
  background-position: center;
  height: 280px;
  border-radius: 2rem;
  display: flex;
  align-items: end;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card span {
  text-align: center;
  width: 100%;
  cursor: default;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  font-weight: bold;
  padding: 1rem;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(253, 216, 53, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.london {
  width: 100%;
  margin-top: 5px;
}

.right-cards {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.top-row,
.bottom-row {
  display: flex;
  gap: 1rem;
}

.top-row .card,
.bottom-row .card {
  flex: 1;
}



/*-- ✨ BRAJ Explore Section CSS (Updated) --*/

#braj-diaries {
  background: #000;
  padding: 60px 20px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

#braj-diaries h2 {
  cursor: default;
  text-align: center;
  font-size: 45px;
  font-weight: 800;
  color: #fdd835;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
}

#braj-diaries p.sub-heading {
  cursor: default;
  text-align: center;
  font-size: 30px;
  color: #fff;
  margin-bottom: 40px;
}

#scrollContainer {
  overflow-x: auto;
  scroll-behavior: auto;
  display: flex;
  gap: 40px;
}

.diaries-scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.diary-card {
  position: relative;
  min-width: 550px;
  max-width: 300px;
  height: 400px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(253, 216, 53, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.diary-card h3 {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  transition: opacity 0.3s ease;
  border-radius: 0 0 15px 15px;
}

.diary-card:hover h3 {
  opacity: 0;
  visibility: hidden;
}

.diary-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(253, 216, 53, 0.7);
}

.diary-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.diary-card:hover img {
  transform: scale(1.05);
  filter: brightness(60%);
}

.diary-card .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: 0.4s ease;
  display: flex;
  flex-direction: inherit;
  justify-content: center;
  align-items: center;
}

.diary-card:hover .info {
  transform: translateY(0);
}

.diary-card .info h4 {
  color: #fdd835;
  margin: -210px 0 25px;
  font-size: 30px;
}

.diary-card .info p {
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #fff;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.highlight {
  font-family: "Playfair Display", serif;
  font-size: 19.2px;
  font-weight: 400;
  color: #ffd700;
}

.explore-btn {
  padding-top: 10px;
  text-align: center;
}

.explore-btn a {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #fdd835;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.explore-btn a:hover {
  background-color: #fff176;
  transform: scale(1.05);
}

.diaries-scroll-container::-webkit-scrollbar {
  display: none;
}

.diaries-scroll-container.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

/* 🌐 Responsive Layouts */
@media (max-width: 768px) {
  .diary-card {
    min-width: 85vw;
    height: 340px;
    scroll-snap-align: start;
    transition: none !important;
    box-shadow: 0 0 10px rgba(253, 216, 53, 0.3);
  }

  .diaries-scroll-container {
    gap: 19px;
    padding: 10px;
    scroll-snap-type: x mandatory;
  }

  /* 📴 Disable all hover effects and info */
  .diary-card:hover,
  .diary-card:hover h3,
  .diary-card:hover .info,
  .diary-card img:hover {
    transform: none !important;
    box-shadow: none !important;
    filter: none !important;
    display: initial;
  }

  .diary-card .info {
    display: none !important;
  }

  .diary-card h3 {
    display: block;
    font-size: 16px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
  }

  #braj-diaries h2 {
    font-size: 30px;
  }

  #braj-diaries p.sub-heading {
    font-size: 16px;
  }

  .explore-btn a {
    font-size: 14px;
    padding: 10px 16px;
  }

  /* ✅ Mobile Pagination Dots Fixed */
  .mobile-dots {
    display: flex;
    justify-content: center;
    margin-top: 14px;
    gap: 6px;
  }

  .mobile-dots .dot {
    height: 10px;
    width: 10px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
  }

  .mobile-dots .dot.active {
    background-color: #fdd835;
  }
}

@media (max-width: 400px) {
  .diary-card {
    min-width: 250px;
    height: 350px;
  }

  #braj-diaries h2 {
    font-size: 28px;
  }

  #braj-diaries p.sub-heading {
    font-size: 14px;
  }
}

@media (min-width: 769px) {
  .mobile-dots {
    display: none !important;
  }
}





#green-div{
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to left bottom, #fdd835, #fff176);
}
#green-div h4{
  cursor: default;
  padding-bottom: 80px;
  width: 45%;
  line-height: 40px;
  color: #000;
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
}
#green-div img{
  height: 100%;
  object-fit: cover;
  width: 14%;
}


/* 📱 Responsive Fixes */
@media (max-width: 768px) {
  #green-div {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
    text-align: center;
  }

  #green-div img {
    width: 60px;
    height: auto;
  }

  #green-div h4 {
    width: 100%;
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 20px;
  }
}



/* Footer CTA Styles */
.footer-cta {
  background-color: #000;
  color: white;
  margin: -95px -22px 0px 0px;
  padding: 0px 53px 0px;
  position: relative;
  overflow: visible; /* allow image to pop out */
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-left {
  flex: 1;
  min-width: 300px;
  z-index: 2;
}

.footer-left h2 {
  cursor: default;
  color: #fdd835;
  font-family: "Playfair Display", "serif";
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-left p {
  cursor: default;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.start-btn {
  background-color:  #fdd835;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.start-btn span{
  color: #000;
}

.start-btn:hover {
  background-color: #fff176;
  transform: scale(1.05);
}

.footer-right {
  flex: 1;
  text-align: right;
  min-width: 300px;
  position: relative;
  z-index: 2;
}

/* Image Styling */
.image-wrapper {
  display: inline-block;
  position: relative;
  transform: translateY(-95px); /* This makes it pop out from the top */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* 
.image-wrapper:hover {
  transform: translateY(-40px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
} */

.main-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Car Icon Animation */
.car-icon {
  position: absolute;
  width: 60px;
  bottom: 30px; /* Just below image */
  left: 0;
  animation: driveUnderImage 4s infinite ease-in-out;
}

@keyframes driveUnderImage {
  0% {
    left: 0;
    transform: rotateY(0deg);
  }
  50% {
    left: 100%;
    transform: rotateY(180deg);
  }
  100% {
    left: 0;
    transform: rotateY(0deg);
  }
}



@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    text-align: center;
  }

  .footer-left h2 {
    font-size: 28px;
  }

  .footer-left p {
    font-size: 14px;
  }

  .start-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .image-wrapper {
    transform: none;
  }

  .main-img {
    max-width: 80%;
  }

  .car-icon {
    display: none; /* Optional */
  }
}





#page4{
  background-color: #000;
  height: 30vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  position: relative;
}
#page4 h1{
  cursor: default;
  font-size: 85px;
  position: absolute;
  top: -20%;
  font-weight: 800;
  text-align: center;
  color: #000;
  -webkit-text-stroke: 2px #fff;
}
.elem{
  height: 70%;
  width: 26%;
  overflow: hidden; 
  border-radius: 20px;
  position: relative;
}
.elem h2{
  cursor: default;
  font-family: "Playfair Display", "serif";
  height: 100%;
  width: 100%;
  background-color: #fdd835;
  display: flex;
  color: #000;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  transition: all linear 0.5s;
  font-size: 30px;
  position: absolute;
  z-index: 10;
}
.elem img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all ease 0.5s;
  scale: 1.1;
}   
.elem:hover{
  transform: scale(1.05);
  /* box-shadow: 0 0 30px rgba(253, 216, 53, 0.7); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.elem:hover h2{
  color: #fff;
  background-color: transparent;
}
.elem:hover img{
  scale: 1;
}

@media (max-width: 768px) {
  #page4 {
    flex-direction: column;
    gap: 20px;
    height: auto;
    padding: 30px 10px;
  }

  #page4 h1 {
    font-size: 36px;
    position: static;
    margin-bottom: 20px;
    -webkit-text-stroke: 1px #fff;
  }

  .elem {
    width: 100%;
    height: 180px;
  }

  .elem h2 {
    font-size: 20px;
  }
}





/* Footer styles */
#footer {
  background: linear-gradient(to left bottom, #fff176 20%, #fdd835 80%);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  padding: 60px 30px 20px;
  text-align: left;
}

#footer > img {
  position: absolute;
  left: 0;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
}

#f1 img {
  background-color: #000;
  height: 150px;
}

#f2, #f3, #f4 {
  color: #000;
  cursor: default;
  width: fit-content;
  position: relative;
  z-index: 2;
}

#f2 h3, #f3 h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

#f2 a {
  display: block;
  text-decoration: none;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
  transition: color 0.3s ease;
}

#f2 a:hover {
  color: #000;
}

#f3 #qr {
  width: 100px;
  margin-bottom: 10px;
}

#f3 p {
  font-size: 14px;
  font-weight: 500;
}

#f4 h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.address-icon {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

#f4 a {
  display: inline-block;
  color: #000;
  font-weight: 600;
  text-decoration: underline;
  margin-top: 4px;
}

#f5 {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  z-index: 2;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}


#f4 a[href^="tel"] {
  color: #fdd835;
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.3s ease;
}
#f4 a[href^="tel"]:hover {
  color: #fff176;
}


@media (max-width: 768px) {
  #footer {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
    text-align: center;
  }

  #f1 img {
    height: 120px;
  }

  #f2 a {
    font-size: 14px;
  }

  #f3 #qr {
    width: 80px;
  }

  #f4 h4 {
    font-size: 14px;
    line-height: 20px;
  }

  #f5 {
    margin-top: 20px;
  }
}



/* 🍔 Hamburger Icon */
#hamburger {
  display: none;
  position: absolute;
  top: 30px;
  right: 20px;
  font-size: 28px;
  z-index: 1001;
  color: #fdd835;
  cursor: pointer;
}

/* 📱 Mobile Menu Styling */
#mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 260px;
  background-color: #000;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  gap: 20px;
  transition: right 0.4s ease;
  z-index: 1000;
}

#mobile-menu a {
  color: #fdd835;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  border-bottom: 1px solid #fff2;
}

#mobile-menu.show {
  right: 0;
}


/* Close X button */
#close-menu {
  font-size: 24px;
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
  cursor: pointer;
}

@media (max-width: 768px) {
  #hamburger {
    display: block;
  }

  #nav {
    background-color: #000;
  }


  .nav-button {
    display: none;
  }
}



/* 🎯 For Mobile View */
@media (max-width: 768px) 
{
  .attraction-card,
  .gem-card {
    flex: 0 0 100%; /* Show 1 card at a time */
    max-width: 100%;
  }

  /* Reposition arrows near the Discover More button */
  @media (max-width: 768px) {
    .carousel-wrapper {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  
    .arrow {
      font-size: 22px;
      padding: 6px;
      background: #fdd835;
      border-radius: 50%;
      color: #000;
      transition: 0.3s ease;
      border: 2px solid #000;
    }
  
    .arrow:hover {
      transform: scale(1.1);
      background: #fff176;
    }
  
    .discover-btn {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 90%;
      flex-wrap: nowrap;
    }
  
    .discover-btn a {
      flex: 1;
      margin: 0 10px;
    }
  }
  
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h2, h3, h4 {
    font-size: 90%;
  }

  .section-heading {
    font-size: 28px;
  }

  .section-heading span {
    font-size: 18px;
  }
}


/* ✨ Booking Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #000;
  border: 2px solid #fdd835;
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  color: #fff;
  box-shadow: 0 0 20px #fdd835;
  position: relative;
}

.modal-content h2 {
  color: #fdd835;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.modal-content button {
  background-color: #fdd835;
  color: #000;
  padding: 12px 20px;
  border: none;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-content button:hover {
  background-color: #fff176;
  transform: scale(1.05);
}

.close-btn {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Loader Overlay */
.loader-overlay {
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #fdd835;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
/* Confirmation Card */
.confirmation-card {
  position: fixed;
  top: 35%;
  left: 35%;
  width: 90%;
  max-width: 420px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.9);
  color: #fdd835;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 0 20px #fdd835;
  z-index: 10001;
  text-align: center;
  backdrop-filter: blur(10px);
  animation: fadeInFast 0.4s ease forwards;
  box-sizing: border-box;
}

@keyframes fadeInFast {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.confirmation-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.confirmation-card p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

/* Close Button */
.confirmation-card .close-card {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 24px;
  font-weight: bold;
  color: #fdd835;
  cursor: pointer;
  transition: transform 0.2s;
}

.confirmation-card .close-card:hover {
  transform: scale(1.2);
  color: red;
}

/* 📱 Mobile responsiveness */
@media (max-width: 480px) {
  .confirmation-card {
    left: 20px;
    top: 195px;
    padding: 20px 15px;
    width: 90%;
    max-width: 95%;
  }

  .confirmation-card h2 {
    font-size: 1.3rem;
  }

  .confirmation-card p {
    font-size: 0.95rem;
  }

  .confirmation-card .close-card {
    font-size: 20px;
    top: 8px;
    right: 10px;
  }
}

/* 💻 Medium screens - tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .confirmation-card {
    padding: 25px 20px;
    width: 85%;
  }

  .confirmation-card h2 {
    font-size: 1.4rem;
  }

  .confirmation-card p {
    font-size: 1rem;
  }
}



#popup-msg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#popup-msg.show {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background-color: #fdd835;
  color: #000;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  transform: scale(0.8);
  animation: popupAnim 0.4s ease-out forwards;
  text-align: center;
}

/* Animation for popup */
@keyframes popupAnim {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .popup-box {
    padding: 16px 20px;
    font-size: 16px;
    width: 80%;
  }
}


