/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}
body{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.modal-header {
  border-bottom: none;
}

.modal-content {
  border-radius: 10px;
}

.modal-body {
  max-height: 70vh;
  overflow-y: auto;
}

/* Make logo square and responsive */
.logo-large {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  scale: 1.8;
  margin: 0;
  padding: 0;
}

/* Large logo for md+ screens */
@media (min-width: 768px) {
  .logo-large {
    width: 160px;
    height: 160px;
  }
}

/* Smaller logo for very small screens */
@media (max-width: 480px) {
  .logo-large {
    width: 80px;
    height: 80px;
  }
}

/* Floating WhatsApp button styling */
/* .whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 90px; 
  z-index: 1040;
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: background 0.2s, transform 0.2s;
}
.whatsapp-float:hover, .whatsapp-float:focus {
  background: #25d366 !important;
  transform: translateY(-4px) scale(1.08);
}
@media (max-width: 576px) {
  .whatsapp-float {
      right: 16px;
      bottom: 80px;
      width: 48px;
      height: 48px;
  }
  .whatsapp-float i {
      font-size: 1.4rem !important;
  }
} */

.glassmorphed {
  background: rgba(125, 124, 124, 0.347); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Blur effect */
  border-radius: 0.75rem; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  color: #fff; /* Text color */
  position: relative; /* For positioning child elements */
  overflow: hidden; /* Ensure content stays inside */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.glassmorphed:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Red Glassmorphed Offer Section */
.glassmorphic-offer {
  background: rgba(253, 224, 97, 0.475); /* Red transparent background */
  backdrop-filter: blur(5px); /* Glassmorphic effect */
  border-radius: 0.75rem; /* Rounded corners */
  padding: 1rem; /* Padding inside the div */
  margin-bottom: 4px;
}

.form-control,
.form-select {
  border-radius: 8px;
  border: 1px solid #ddd;
}

.image-hover-container { 
  position: relative; 
  overflow: hidden; 
}
/* Hide the single image on hover */
.image-hover-container:hover > .single-image {
  opacity: 0;
  transition: opacity 0.3s ease;
}
/* Initially hide overlay */
.img-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
/* Show grid overlay on hover and layout grid */
.image-hover-container:hover .img-grid-overlay {
  display: flex;
  flex-wrap: wrap;
}
/* Each grid image takes 50% width/height and covers */
.img-grid-overlay img {
  width: 50%;
  height: 50%;
  object-fit: cover;
}

.scale-img { transform: scale(0.95); transition: transform 0.3s ease; }
.scale-img:hover { transform: scale(1); }

/* New styles for service card hover with background image and glassmorphic overlay */
.service-card-hover {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  min-width: 350px; /* increased width for less vertical overflow */
}
.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card-hover:hover .card-bg {
  opacity: 1;
}
.glass-overlay {
  position: relative;
  background: rgba(210, 205, 205, 0.2);
  backdrop-filter: blur(5px);
  padding: 1rem;
  border-radius: 0.75rem;
  z-index: 1;
}

/* Default styling for small screens */
.vision-image {
  width: 100%; /* Full width for small screens */
  max-width: 300px; /* Prevents the image from becoming too large */
  height: auto; /* Maintains aspect ratio */
}

.hover-filter {
  padding: 0.2rem 0.5rem;
  border-radius: 2rem;
  font-weight: 500;
  color: #212529;
  background: transparent;
  transition: color 0.2s, background 0.2s, transform 0.2s;
  display: inline-block;
}
.hover-filter:hover {
  background: transparent;
  color: #0d6efd;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 1px 3px rgba(13,110,253,0.08);
}
.active-filter {
  background: transparent;
  color: #0d6efd !important;
  box-shadow: 0 2px 4px rgba(13,110,253,0.12);
  transform: translateY(-4px) scale(1.07);
}
/* Fix for small screens */
/* Adjust carousel height for small screens */
@media (max-width: 768px) {
  #carouselImage {
    height: 30vh; /* Reduce height for small screens */
  }

  .glassmorphed-content {
    max-width: 450px; /* Adjust the width of the glassmorphed card */
    padding: 1rem; /* Reduce padding for smaller screens */
  }

  .glassmorphed-content h2 {
    font-size: 1.2rem; /* Adjust font size for smaller screens */
  }

  .glassmorphed-content p {
    font-size: 0.9rem; /* Adjust paragraph font size */
  }
}

/* Styling for large screens */
@media (min-width: 992px) {
  .vision-image {
    width: 400px; /* Specific size for large screens */
    height: auto; /* Maintains aspect ratio */
  }
}

/* Ensure the reservation form grows to the right on large screens */
@media (min-width: 992px) {
  .card {
    max-width: 100%; /* Allow the card to grow within the container */
  }
}

/* Adjust padding for small screens */
@media (max-width: 768px) {
  .card {
    margin-top: 1rem; /* Add spacing on top for better visibility */
  }
}

.package-itinerary .dot {
  width: 10px;
  height: 10px;
  background-color: #007bff; /* Primary color for the dots */
  border-radius: 50%;
  position: relative;
}

.package-itinerary li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 2px;
  height: calc(100% - 10px);
  background-color: #007bff; /* Line connecting the dots */
}

.package-itinerary li:last-child::after {
  display: none; /* Remove the line for the last item */
}
  /* ...existing custom styles... */
  .gallery {
    /* background-color: #e9ecef; slightly dark white background */
  }
  .gallery-item .gallery-overlay {
    background: rgba(0, 0, 0, 0.15); /* lighter dark overlay */
  }
  .gallery-item .gallery-content {
    /* color: white; force inner text to white */
  }

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.fab-stack {
  position: fixed;
  right: 10px;
  bottom: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.whatsapp-float {
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float:hover, .whatsapp-float:focus {
  background: #25d366 !important;
  transform: translateY(-4px) scale(1.08);
}
.fab-stack .back-to-top {
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .fab-stack {
    right: 12px !important;
    bottom: 12px !important;
  }
  .fab-stack .whatsapp-float,
  .fab-stack .back-to-top {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.2rem !important;
  }
  .fab-stack .fa-whatsapp,
  .fab-stack .fa-arrow-up {
    font-size: 1.2rem !important;
  }
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
  border: none;
}

.btn.btn-primary:hover {
  background: var(--bs-dark);
}

.btn.btn-light {
  color: var(--bs-primary);
  border: none;
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.btn.btn-dark {
  color: var(--bs-white);
  border: none;
}

.btn.btn-dark:hover {
  color: var(--bs-primary);
  background: var(--bs-light);
}

/*** Navbar Start ***/
.nav-bar {
  background: var(--bs-white);
}

.sticky-top {
  transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  letter-spacing: 1px;
  color: var(--bs-dark);
  font-size: 17px;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}
@media (max-width: 370px) {
  .navbar-brand img {
    max-width: 150px;
  }
}
.sticky-top .navbar-light .navbar-brand img {
  max-height: 50px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  margin-top: 8px !important;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: 0.5s;
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 8px 15px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 12px 0;
  }
}
/*** Navbar End ***/
.why-book-section {
  background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
}

.package-card {
  position: relative;
  overflow: hidden; /* Ensure content doesn't overflow */
  transition: transform 0.3s ease;
}

/* Adjust View Details button for small screens */
.package-card .btn {
  font-size: 0.9rem; /* Adjust font size */
  padding: 0.5rem 1rem; /* Adjust padding */
}

/* Ensure consistent spacing */
.package-card .package-content {
  position: relative;
}

.package-card:hover {
  transform: translateY(-5px);
}

/* Ensure all feature cards have the same height */
.feature-card {
  min-height: 150px; /* Set a minimum height for all cards */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Ensure the overlay content is centered */
.feature-card .overlay {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .feature-card {
    min-height: 150px; /* Slightly taller cards on medium and larger screens */
  }
}

@media (min-width: 1200px) {
  .feature-card {
    min-height: 150px; /* Taller cards on large screens */
  }
}

.header-carousel .owl-nav .owl-prev {
  display: none;
}

.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: -60px;
  right: 50%;
  transform: translateY(-50%);
  margin-right: -60px;
  border-radius: 60px;
  background: var(--bs-primary);
  color: var(--bs-white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 0 0 100px 0 var(--bs-light);
  color: var(--bs-primary);
}

.header-carousel .owl-nav .owl-next i {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: carousel-next-btn;
  animation-duration: 4s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  transition: 1s;
}

@keyframes carousel-next-btn {
  0% {
    margin-top: 35%;
  }
  50% {
    margin-bottom: 70%;
  }
  100% {
    margin-top: 35%;
  }
}

.header-carousel .header-carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
}

.carousel-caption .ticket-form {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}

/* Updated Image Zoom Animation - Less Zoom */
.header-carousel .header-carousel-item img {
  animation-name: image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
}

@keyframes image-zoom {
  0% {
    width: 100%;
    height: 100%;
  }
  25% {
    width: 108%;
    height: 108%;
  }
  50% {
    width: 115%; /* Reduced max zoom to avoid layout shifts */
    height: 115%;
  }
  75% {
    width: 110%;
    height: 110%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

/*** Carousel Hero Header End ***/
.bg-gradient-primary {
  background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
}

.experience-badge {
  transform: translateX(-30%) translateY(50%);
  width: 250px;
}
@media (max-width: 360px) {
  .experience-badge {
    transform: translateX(-30%) translateY(50%);
    max-width: 200px;
    padding: 2px;
    display: none;
  }
}
.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hover-top {
  transition: transform 0.3s ease;
}

.hover-top:hover {
  transform: translateY(-10px);
}

.stat-card {
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.value-card {
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: #0d6efd;
}
/* goals  */
.goals-section {
  background: linear-gradient(135deg, #0a192f 0%, #020c1b 100%);
}

.goal-card {
  height: 400px;
  min-height: 300px;
}

.goal-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.goal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.goal-content {
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.goal-hover-content {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

.goal-card:hover .goal-content,
.goal-card:focus-within .goal-content {
  transform: translateY(0);
}

.goal-card:hover .goal-hover-content,
.goal-card:focus-within .goal-hover-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

@media (max-width: 768px) {
  .goal-card {
    height: 350px;
  }

  .goal-hover-content {
    opacity: 1;
    transform: translateY(0);
  }

  .goal-content {
    transform: translateY(0);
  }

  .goal-image {
    transform: none !important;
  }
}

@media (max-width: 576px) {
  .goal-card {
    height: 300px;
  }

  .goal-overlay {
    padding: 1.5rem !important;
  }
}
/* goals end */
/* timeline starts */
.journey-timeline {
  background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
}

.title-gradient {
  background: linear-gradient(45deg, #2c3e50, #3498db);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-line {
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #3498db, #e74c3c);
  transform: translateX(-50%);
}

.timeline-card {
  padding: 0 30px;
}

.hover-transform {
  transition: all 0.3s ease;
  border-radius: 15px;
}

.hover-transform:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.year-tag {
  padding: 12px 35px;
  border-radius: 30px;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.bg-primary-gradient {
  background: linear-gradient(45deg, #3498db, #2980b9);
}
.bg-success-gradient {
  background: linear-gradient(45deg, #2ecc71, #27ae60);
}
.bg-danger-gradient {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.animated-blob-1,
.animated-blob-2 {
  position: absolute;
  background: rgba(52, 152, 219, 0.05);
  border-radius: 50%;
  animation: blob-animation 20s infinite;
}

.animated-blob-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
}

.animated-blob-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -100px;
  animation-delay: 5s;
}

@keyframes blob-animation {
  0% {
    transform: scale(1) translate(0, 0);
  }
  33% {
    transform: scale(1.2) translate(100px, 50px);
  }
  66% {
    transform: scale(0.8) translate(-50px, -100px);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

@media (max-width: 768px) {
  .timeline-line {
    left: 30px !important;
    transform: none;
  }

  .timeline-card {
    padding: 0 15px;
  }

  .year-tag {
    margin: 20px 0;
    font-size: 1.2rem;
  }

  .timeline-item {
    margin-bottom: 30px !important;
  }
}

/* timeline ends */
  /* Responsive carousel height */
  @media (max-width: 767.98px) {
    #packageCarousel .carousel-inner {
      height: 280px !important;
    }
  }
  @media (min-width: 768px) {
    #packageCarousel .carousel-inner {
      height: 570px !important;
    }
  }





/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/mountain-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Feature Start ***/
.feature .feature-item {
  position: relative;
  border-radius: 10px;
  background: var(--bs-light);
}

.feature-item .feature-content {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  margin-top: 0;
  margin-right: 0;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  z-index: 2;
}

.feature-item .feature-content .feature-content-inner {
  position: relative;
  z-index: 5;
}
/*** Feature End ***/

/*** Service Start ***/
.service {
  position: relative;
  overflow: hidden;
  background-image: url(../img/mountain-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.service .service-section {
  position: relative;
  z-index: 5;
}

.service .service-days {
  border-radius: 10px;
  background: var(--bs-white);
}

.service .service-item {
  position: relative;
  height: 100%;
  text-align: center;
  border-radius: 10px;
  background: var(--bs-white);
  z-index: 1;
}

.service .service-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-primary);
  transition: 0.5s;
  z-index: 2;
}

.service .service-item:hover:after {
  height: 100%;
}

.service .service-item i {
  color: var(--bs-primary);
  transition: 0.5s;
}

.service .service-item:hover i {
  color: var(--bs-white);
}

.service .service-item .service-content {
  position: relative;
  z-index: 3;
}

.service .service-item .service-content p {
  transition: 0.5s;
}

.service .service-item:hover .service-content p {
  color: var(--bs-white);
}

.service .service-item .service-content a.h4 {
  transition: 0.5s;
}

.service .service-item:hover .service-content a.h4:hover {
  color: var(--bs-white);
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  height: 350px; /* Fixed height */
  width: 100%; /* Responsive width */
  max-width: 450px; /* Consistent width */
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.service-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.service-card:hover img {
  transform: scale(1.1);
}
.service-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  transition: all 0.3s ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 1rem;
  text-align: center;
}
.service-card:hover .service-overlay {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  opacity: 1;
}
.service-overlay ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  margin: 0.5rem 0 0;
}
.service-overlay h4 {
  display: none;
}
.service-name {
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin-top: 10px;
}
.services-container {
  display: grid;
  gap: 20px;
  padding: 20px; /* Add padding to prevent cards from touching the container */
}
@media (min-width: 768px) {
  .services-container {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
/*** Service End ***/

/*** Attractions Start ***/
.attractions {
  position: relative;
  overflow: hidden;
}

.attractions::after {
  content: "";
  width: 100%;
  height: 70%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/bg-tour-3.jpg) center center no-repeat;
  background-size: cover;
  z-index: -2;
  animation-name: attraction-image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
}

@keyframes attraction-image-zoom {
  0% {
    width: 100%;
  }

  25% {
    width: 115%;
  }

  50% {
    width: 130%;
  }

  75% {
    width: 120%;
  }

  100% {
    width: 100%;
  }
}

.attractions .attractions-section {
  position: relative;
  z-index: 3;
}

.attractions .attractions-item {
  position: relative;
  border-radius: 10px;
  transition: 0.5s;
  z-index: 1;
}

.attractions .attractions-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.7);
  transition: 0.5s;
  z-index: 2;
}

.attractions .attractions-item:hover:after {
  height: 100%;
}

.attractions .attractions-item .attractions-name {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  color: var(--bs-white);
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.attractions .attractions-item:hover .attractions-name {
  opacity: 1;
}

.attractions-carousel .owl-stage-outer {
  margin-top: 58px;
}

.attractions .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  left: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 6px 35px;
  border-radius: 30px;
  transition: 0.5s;
}

.attractions .owl-nav .owl-prev:hover {
  background: var(--bs-white);
  color: var(--bs-primary);
}

.attractions .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 6px 35px;
  border-radius: 30px;
  transition: 0.5s;
}

.attractions .owl-nav .owl-next:hover {
  background: var(--bs-white);
  color: var(--bs-primary);
}
/*** Attractions End ***/

/*** Gallery Start ***/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.5s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.2);
}

.gallery .gallery-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  transition: 0.5s;
  z-index: 1;
}

.gallery .gallery-item:hover::after {
  width: 100%;
  height: 100%;
}

.gallery .gallery-item .search-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  z-index: 5;
  opacity: 0;
}

.gallery .gallery-item:hover .search-icon {
  opacity: 1;
}
/*** Gallery End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.blog .blog-item .blog-img .blog-category {
  position: absolute;
  top: 25px;
  left: 25px;
  border-radius: 10px;
  color: var(--bs-white);
  background: var(--bs-primary);
  z-index: 5;
}

.blog .blog-item .blog-img .blog-date {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: var(--bs-white);
  z-index: 5;
}

.blog .blog-item .blog-content {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--bs-light);
}
/*** Blog End ***/

/*** Team Start ***/
.team-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-img-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #007bff;
  transition: border-color 0.3s ease-in-out;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card:hover .team-img-wrapper {
  border-color: #0056b3;
}

.team-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #db4b07;
  color: #fff;
  transition: background 0.3s ease-in-out;
  text-decoration: none;
}

.social-btn:hover {
  background: #222222;
  color: white;
}

@media (max-width: 768px) {
  .team-card {
    padding: 20px;
  }

  .team-img-wrapper {
    width: 100px;
    height: 100px;
  }
}

/* Services section  ***/








/*** Team End ***/

/*** Testimonial Start ***/
/* .testimonial {
  position: relative;
  overflow: hidden;
}

.testimonial::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/bg-tour-2.jpeg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  animation-name: image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
}

.testimonial::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.testimonial .testimonial-carousel .testimonial-item {
  text-align: center;
  border-radius: 10px;
  background: rgba(256, 256, 256, 0.2);
}

.testimonial-carousel .testimonial-item .testimonial-inner {
  display: flex;
  justify-content: center;
}

.testimonial-item .testimonial-inner .testimonial-img {
  position: relative;
}

.testimonial-item .testimonial-inner .testimonial-img img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 2px solid var(--bs-white);
}

.testimonial-item .testimonial-inner .testimonial-img .testimonial-quote {
  position: absolute;
  top: 0;
  left: -25px;
  color: var(--bs-white);
  background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin: 20px 10px 0 10px;
  background: var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--bs-light);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
  background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
  transition: 0.5s;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  bottom: -22px;
  right: 50%;
  transform: translateX(-50%);
  margin-right: -210px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev {
  font-size: 50px;
  margin-right: 80px;
  color: var(--bs-white);
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-next {
  font-size: 50px;
  margin-left: 80px;
  color: var(--bs-white);
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--bs-primary);
} */
/* .testimonial-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.media-preview {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
}

.media-preview img,
.media-preview video {
  transition: all 0.3s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.media-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.media-hover i {
  font-size: 2.5rem;
  color: white;
}

.media-preview:hover .media-hover {
  opacity: 1;
}

.btn-see-more {
  transition: all 0.3s ease;
  border: 2px solid var(--bs-primary);
}

.btn-see-more:hover {
  background: transparent;
  transform: translateY(-3px);
}

.hidden { display: none; } */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    background-color: #0d6efd; /* Primary color for the line */
    width: 4px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}


.fixed-card {
  height: 200px; /* adjust as needed */
  overflow: hidden;
}
/* Basic animation for fade-in effect on card load */
.animate-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.animate-card.show {
  opacity: 1;
  transform: translateY(0);
}

.timeline-marker {
    z-index: 2;
}
.shorts-video-card {
  width: 350px; /* 130px height * 9/16 aspect ratio ≈ 73px */
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin: 0 auto;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.shorts-video-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.shorts-video-card img,
.shorts-video-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}
.shorts-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #fff;
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 2px 8px #000;
}


/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-dark);
}

.footer .footer-item {
  display: flex;
  flex-direction: column;
}

.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-body);
  transition: 0.5s;
}
@media (max-width: 370px) {
  .footer-item img {
    max-width: 160px;
  }
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary);
}

.footer .footer-item .opening-date {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .footer-item .opening-date .opening-clock {
  display: flex;
  align-items: center;
  line-height: 35px;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark);
}
/*** copyright end ***/
