@font-face {
  font-family: "Outfit, sans-serif";
  src: url("/fonts/hotel-icons.ttf") format("truetype"); /* Path to your font file */
  font-weight: normal; /* Optional: Set font weight */
  font-style: normal; /* Optional: Set font style */
}
body {
  font-family: "Outfit", sans-serif; /* Modern, clean font */
  margin: 0; /* Remove default body margins */
  color: #333; /* Dark gray default text color */
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  background: #f5f5f55e;
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: bold;
  color: white !important; /* White logo text */
  font-size: 1.5rem;
  animation: fadeIn 1.8s ease-in-out;
}

.navbar-toggler {
  border-color: white; /* White border for toggler */
}

.navbar-nav .nav-link {
  color: #eeeeee !important;
  margin-left: 1rem;
  transition: color 0.3s ease; /* Smooth color transition */
}

.navbar-nav .nav-link:hover {
  color: #ffd700 !important; /* Gold hover color */
}

/* Hero Section Styles */
#hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#hero .swiper {
  height: 100%;
}

#hero img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.caption-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
  width: 90%;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #eee;
}

.slide-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.video-link {
  background: linear-gradient(to right, #d70b52, #881677); /* Gradient button */
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.video-link:hover {
  background: linear-gradient(
    to right,
    #881677,
    #d70b52
  ); /* Reverse gradient on hover */
}

.video-link i {
  margin-left: 10px;
  font-size: 1.2rem;
}

#hero {
  height: 85vh;
  overflow: hidden;
  position: relative;
  transition: height 0.3s ease;
  margin-top: -80px;
}

@media (max-width: 992px) {
  /* Example breakpoint */
  #hero {
    height: 70vh; /* Adjust height for smaller screens */
  }
}

@media (max-width: 768px) {
  /* Example breakpoint */
  #hero {
    height: 80vh; /* Adjust height for even smaller screens */
  }
}

@media (max-width: 576px) {
  /* Example breakpoint */
  #hero {
    height: 90vh; /* Adjust height for the smallest screens */
  }
}

#hero .swiper {
  height: 100%;
}

#hero img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.caption-content {
  /* ... other styles ... */
  max-width: 90%; /* Adjust as needed */
}

.tagline {
  font-size: 1rem; /* Slightly smaller tagline on smaller screens */
}

.slide-title {
  font-size: 2rem; /* Slightly smaller title on smaller screens */
}
/* Mobile adjustments (example breakpoints - adjust as needed) */
@media (max-width: 768px) {
  .slide-title {
    font-size: 1.8rem; /* Smaller title on mobile */
  }

  .tagline {
    font-size: 0.9rem; /* Smaller tagline on mobile */
  }

  .caption-content {
    padding: 20px; /* Reduce padding on mobile */
  }

  .video-link {
    width: 50px; /* Smaller video icon container */
    height: 50px;
    bottom: 15px; /* Adjust position on mobile */
    right: 15px;
  }

  .video-link i {
    font-size: 1.5rem; /* Smaller video icon */
  }
}

@media (max-width: 576px) {
  /* Even smaller screen adjustments */
  .slide-title {
    font-size: 1.5rem; /* Even smaller title */
  }

  .tagline {
    font-size: 0.8rem; /* Even smaller tagline */
  }

  .caption-content {
    padding: 15px;
    justify-content: center; /* Further reduced padding */
  }

  .video-link {
    width: 45px; /* Even smaller video icon container */
    height: 45px;
    bottom: 10px; /* Adjust position on very small screens */
    right: 10px;
  }

  .video-link i {
    font-size: 1.2rem; /* Even smaller video icon */
  }
}

.video-link {
  /* ... other styles ... */
  width: auto; /* Let the width adjust to content */
  padding: 15px 25px; /* Slightly reduced horizontal padding */
  white-space: nowrap; /* Prevent text from wrapping */
}

@media (max-width: 768px) {
  .video-link {
    padding: 12px 20px; /* Further reduced padding on smaller screens */
  }
}

.navbar {
  /* background: linear-gradient(to right, #d70b52, #881677);  */
  /* padding: 1rem 0; */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
  padding-left: 10px;
  padding-right: 10px;
  z-index: 999;
}

.navbar-brand {
  /* Removed old styles */
  display: flex; /* Use flexbox for alignment */
  align-items: center; /* Vertically center logo and text */
}

.navbar-brand span {
  /* Style the brand text if you have it */
  font-weight: bold;
  color: white;
  font-size: 1.5rem;
}

.navbar-toggler {
  border-color: white;
}

.navbar-nav .nav-link {
  color: rgb(3, 3, 3) !important;
  margin-left: 1rem;
  transition: color 0.3s ease;
  padding-left: 10px;
  padding-right: 10px;
}

.navbar-nav .nav-link:hover {
  color: #fdfdfd !important; /* Gold hover color */
  /* text-decoration: underline; */
  background: #701680;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 10px;
}

.navbar-brand {
  display: flex;
  align-items: center; /* Vertically center */
  justify-content: center; /* Horizontally center */
  /* background-color: white; */
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
}

.navbar-toggler-icon {
  filter: invert(100%); /* Invert the colors to make it white (or close) */
}

.slide-title {
  font-size: 2.5rem; /* Default size */
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2; /* Improve line height for readability */
}

@media (max-width: 768px) {
  .navbar-brand span {
    font-size: 1rem; /* Slightly smaller font size on mobile */
  }
}

@media (max-width: 576px) {
  .navbar-brand span {
    font-size: 0.9rem; /* Even smaller font size on very small screens */
  }
}

/* Mobile adjustments (example breakpoints - adjust as needed) */
@media (max-width: 768px) {
  .slide-title {
    font-size: 1.5rem; /* Smaller title on mobile */
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .slide-title {
    font-size: 1.2rem; /* Even smaller title on very small screens */
    margin-bottom: 15px;
  }
}

/* Modal Styles */
.modal-content {
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  border: none;
}

.modal-header {
  border-bottom: none;
  padding: 20px;
}

.btn-close {
  background-color: transparent;
  border: none;
  opacity: 1;
  filter: invert(100%);
}

.modal-body {
  padding: 0;
}

.modal-video-container {
  position: relative;
  overflow: hidden;
}

.modal-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  transition: opacity 0.3s ease;
}

.modal-video-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-video-text {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.modal-video-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.modal-video-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.modal-video-play-button {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.modal-video-play-button:hover {
  background-color: white;
  color: black;
}

.modal-video-container:hover .modal-video-overlay {
  opacity: 1;
}

.modal-body video {
  display: block;
  margin: 0 auto;
}
/* Chips style */

/* style.css */
.carousel {
  max-height: 224px; /* Set the desired width */
  margin: 20px auto;
}

.carousel-inner {
  overflow: hidden;
}

.carousel-item {
  position: relative;
  padding: 0;
}

.carousel-item img {
  width: 581px; /* Maintain aspect ratio */
  /* height: 254px;  */
  display: block;
  object-fit: cover; /* or contain, depending on how you want to fill the space */
}

.carousel-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  text-align: left;
  padding-right: 220px; /* Adjust for button width */
  color: white; /* Example text color */
}

.carousel-caption h3 {
  font-size: 2em;
  font-weight: bold;
}

.carousel-caption p {
  font-size: 1.2em;
}

.carousel-caption .btn {
  margin-top: 10px;
}

/* Optional: Style the controls */
.carousel-control-prev,
.carousel-control-next {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  width: 50px; /* Make controls wider */
  top: 50%;
  transform: translateY(-50%); /* Vertically center controls */
  font-size: 20px;
}

/* Hide controls on smaller screens if needed */
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

/* Package css*/

.new-carousel {
  width: 1200px; /* Adjust as needed */
  margin: 20px auto;
}

.new-carousel-inner {
  overflow: hidden;
}

.new-carousel-item {
  position: relative;
  padding: 10px; /* Add padding around the images */
}

.new-carousel-item img {
  width: 400px;
  height: 400px; /* Explicit height for all images */
  display: block;
  object-fit: cover; /* or contain, depending on your needs */
  border-radius: 1rem; /* Rounded corners for images */
}

/* Optional: Style the controls */
.carousel-control-prev,
.carousel-control-next {
  background-color: rgba(0, 0, 0, 0.5);
  width: 50px;
  /* top: 100%; */
  transform: translateY(-50%);
  font-size: 20px;
}

/* Hide controls on smaller screens if needed */
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

/* Basic styling for the sections (you can customize this) */
.adventure-section {
  display: none;
  padding: 20px;
  border: 1px solid #ccc;
  margin-top: 20px;
}

.adventure-section.active {
  display: block;
}

.chip-container {
  display: flex;
  gap: 10px;
}

.chip {
  padding: 8px 16px;
  border: 1px solid #007bff;
  border-radius: 20px;
  background-color: #fff;
  color: #007bff;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.chip:hover {
  background-color: #007bff;
  color: #fff;
}

.chip.active {
  background-color: #007bff;
  color: #fff;
}

.travelkar-background {
  padding-top: 35px;
  padding-bottom: 35px;
  min-height: 635px;
  /* background-image: url("/travelkar-bg.jpg"); */
  background-size: cover;
  background-position: center; /* To center the image */
  /* Add an overlay for text readability if needed */
  position: relative; /* Needed for absolute positioning of overlay */
}

.travelkar-background {
  padding-top: 35px;
  padding-bottom: 35px;
  min-height: 825px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #101010; /* Adjust opacity for desired effect */
}

.travelkar-background {
  padding-top: 35px;
  padding-bottom: 35px;
  min-height: 880px;
  position: relative;
  z-index: 1; /* Brings text forward */
}

.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #212529;
  --bs-nav-pills-link-active-bg: #ffc107;
  font-weight: 600;
}
.nav-link {
  color: #ffc107;
}

.nav-link:hover {
  color: #ffffff;
}
.travelkar-heading {
  margin-top: 15px;
  color: #fbffee;
}
.travelkar-heading-inside {
  color: #fbffee;
}
.travelkar-heading-inside-title {
  color: #fbffee;
  text-decoration: overline;
}

/* Footer Section */

footer {
  background-color: #333;
  color: #fff;
  padding: 10px;
  margin-bottom: 30px;
  min-height: 69px;
}

.footer-content {
  display: flex;
  align-items: center; /* Vertically center content */
  justify-content: center; /* Horizontally center content (optional) */
  flex-wrap: wrap; /* Allows content to wrap on smaller screens */
}

.footer-content p {
  margin: 0; /* Remove default paragraph margins */
  margin-right: 20px; /* Space between text and icons (adjust as needed) */
}

.social-icons {
  display: flex;
}

.social-icons a {
  margin: 0 5px; /* Space between icons */
  color: #ccc;
}

.social-icons img {
  height: 20px; /* Adjust icon size as needed */
  width: auto;
  vertical-align: middle; /* Align icons to the middle baseline */
}

/* Responsive adjustments - Example */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column; /* Stack content vertically on smaller screens */
    text-align: center; /* Center text */
  }
  .footer-content p {
    margin-right: 0;
    margin-bottom: 10px; /* Space below text */
  }
}
/* Responsive adjustments - Example */
@media (max-width: 768px) {
  .footer-section {
    flex: 1 1 100%; /* Each section takes full width on smaller screens */
    text-align: center; /* Center text in sections */
  }
}

#testimonials-section {
  overflow-x: hidden; /* Hide horizontal scrollbar */
  white-space: nowrap; /* Prevent testimonials from wrapping */
  padding: 20px;
}

.testimonial-container {
  display: flex;
  animation: scroll 20s linear infinite; /* Adjust animation duration for speed */
  transition: transform 0.3s ease; /* For smooth hover pause */
  width: 80%;
}

.testimonial {
  flex: 0 0 auto; /* Key: Allow content to determine width */
  margin-right: 20px; /* Space between testimonials */
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
  min-width: 300px; /* Minimum width of each testimonial */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% + (320px * 2)));
  } /* Adjust 320px based on min-width + margin * number of extra testimonials */
}

/* Hover pause */
#testimonials-section:hover .testimonial-container {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonial {
    min-width: 90%; /* Full width on small screens */
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100% + (320px * 2)));
    } /* Adjust 320px based on min-width + margin * number of extra testimonials */
  }
}

.stats-section {
  background-color: #f8f9fa; /* Light background */
}
.stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stats-item {
  padding: 1.5rem; /* Reduced spacing for compact look */
  border-right: 1px solid #e0e0e0; /* Add dividing borders */
}
.stats-item:last-child {
  border-right: none; /* Remove the border for the last item */
}
.stats-number {
  color: #007bff; /* Bootstrap primary color */
  font-weight: bold;
  font-size: 2rem; /* Ensure numbers are prominent */
}
.stats-desc {
  color: #6c757d; /* Bootstrap secondary text color */
  font-size: 1rem; /* Adjust text size */
  line-height: 1.4; /* Improve readability */
}
@media (max-width: 768px) {
  .stats-item {
    border-right: none; /* Remove borders on smaller screens */
    border-bottom: 1px solid #e0e0e0; /* Add bottom border */
  }
  .stats-item:last-child {
    border-bottom: none; /* Remove bottom border for last item */
  }
}

.stats-item:hover {
  /* background-color: #e9ecef;  */
  transform: scale(1.02); /* Subtle zoom effect */
  transition: all 0.3s ease-in-out;
}

.contact-bar {
  position: fixed; /* Stay at the bottom */
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #f8f9fa; /* Light gray background */
  padding: 10px;
  text-align: center; /* Center the content */
  z-index: 1030; /* Ensure it's above other content */
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.contact-bar a {
  margin: 0 10px; /* Space between icons */
  color: #007bff; /* Blue color for links */
  text-decoration: none; /* Remove underlines from links */
}

.contact-bar i {
  font-size: 1.2rem; /* Adjust icon size */
  margin-right: 5px;
}

/* Navbar */
.navbar {
  background-color: #f8f9fa; /* Light gray background */
  padding: 1rem 0; /* Consistent padding */
}

.navbar-brand img {
  height: 50px;
  margin-right: 10px;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 1.2rem;
}

/* Stats Section */
.stats-section {
  background-color: #f0f0f0; /* Very light gray */
  padding: 2rem 0;
}

.stats-list {
  padding: 0; /* Remove default ul padding */
  list-style: none;
}

.stats-item {
  text-align: center; /* Center content within stats items */
  padding: 1rem; /* Consistent padding */
}

.stats-number {
  font-size: 2rem;
  font-weight: bold;
  color: #007bff; /* Blue for numbers */
}

.stats-desc {
  font-size: 1rem;
}

/* Package Cards */
.package-card {
  border: none; /* Remove default border */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: transform 0.2s; /* Smooth hover effect */
  margin-bottom: 20px; /* Space between cards */
}

.package-card:hover {
  transform: translateY(-5px); /* Move up slightly on hover */
}

.package-card .card-body {
  padding: 1.5rem; /* Consistent card body padding */
}

.package-card .card-title {
  font-weight: bold;
  margin-bottom: 1rem;
}

.package-card ul {
  list-style: none;
  padding: 0;
}

.package-card li {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.2rem;
}

.contact-bar {
  background-color: #007bff;
  color: #fff;
  padding: 10px;
  text-align: center;
  position: fixed; /* Fixed at the bottom */
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1030; /* Ensure it's above other content */
}

.contact-bar a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
}

.contact-bar i {
  margin-right: 5px;
}

/* Navbar Logo Centering and Shadow */
.navbar-brand {
  display: flex; /* Enable flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  margin: 0 auto; /* Center the brand itself */ /* Key for centering the whole brand in the navbar */
  padding: 0; /* remove default padding */
}

.navbar-brand img {
  height: 100px; /* Adjust as needed */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  */
  /* Add a subtle shadow */
  /* Removed margin-right from here */
}
.navbar {
  padding: 0.5rem 0; /* Reduced padding slightly */
}
.navbar-brand span {
  display: block; /* Hide the text if you only want the logo */
  /* font-size: 35px; */
}
.travelkar-name {
  color: #d70b52;
  font-weight: 600;
}

.whatsapp-fixed {
  position: fixed;
  top: 40px;
  /* Position from the top */
  right: 20px;
  /* Position from the right */
  background-color: #25d366;
  color: white;
  padding: 15px;
  border-radius: 25%;
  font-size: 20px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 1000;
  /* Ensures it stays on top */
}

.whatsapp-fixed:hover {
  background-color: #1ebe57;
  color: white;
}

/* Recent Changes */

/* Fix overlapping issue */
.custom-header {
  background: #ffffff;
  padding: 10px 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Ensure content is not hidden under header */
.content {
  padding-top: 10px; /* Adjust this based on header height */
}

/* Adjust brand text styling */
.brand-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0056b3;
}

.slogan {
  font-size: 12px;
  font-style: italic;
  color: #6c757d;
}

/* WhatsApp button styling */
.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-fixed:hover {
  background: #1ebe5d;
}

.custom-header h1 {
  font-size: 48px;
  color: #cf0081;
  animation: fadeIn 1.9s ease-in-out;
}

.custom-header span {
  font-family: "Parisienne Script", cursive;
  font-size: 14px;
  color: #4a4a4a;
  text-align: center;
  font-style: italic;
  animation: fadeIn 1.9s ease-in-out;
}

@media (max-width: 768px) {
  .custom-header h1 {
    font-size: 30px; /* Reduce font size for smaller screens */
    text-align: center; /* Center align for better readability */
  }

  .custom-header span {
    font-size: 10px; /* Reduce font size for mobile */
    text-align: center;
    display: block; /* Ensures proper alignment */
  }
  .whatsapp-fixed {
    /* Moves the icon to the bottom */
    top: 90px;
    right: 15px; /* Adjusts the right spacing */
    width: 45px; /* Slightly smaller for mobile */
    height: 45px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .custom-header h1 {
    font-size: 26px; /* Further reduce font size for very small screens */
  }

  .custom-header span {
    font-size: 9px;
  }
}

@media (max-width: 767px) {
  /* For Mobile Devices */
  .carousel-item .row {
    display: flex;
    flex-wrap: wrap;
  }

  .carousel-item .col-md-3 {
    flex: 0 0 100%; /* Full width on mobile */
    max-width: 100%;
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* For Tablets */
  .carousel-item .col-md-3 {
    flex: 0 0 50%; /* Two columns per row */
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  /* Mobile Screens */
  .travelkar-heading {
    font-size: 20px; /* Adjusting heading size */
    text-align: center;
  }

  .travelkar-heading-inside {
    font-size: 16px; /* Adjusting subheading size */
    text-align: center;
  }

  .btn-warning {
    font-size: 16px;
    width: 80%; /* Ensuring button looks good */
    display: block;
    margin: 10px auto;
  }

  .image-wrapper img {
    border-radius: 10px; /* Keeping images properly visible */
  }
}

@media (max-width: 767px) {
  .carousel-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: auto !important; /* Allow dynamic height */
  }

  .carousel-item img {
    max-width: 100%;
    height: auto; /* Prevent stretching */
  }

  .image-wrapper {
    margin-bottom: 20px; /* Pushes next section down */
  }

  .testimonials-section {
    padding-top: 30px; /* Adds spacing above testimonials */
  }
}

@media (max-width: 767px) {
  .carousel .row {
    display: flex;
    flex-wrap: nowrap; /* Prevents wrapping to the next line */
    overflow-x: auto; /* Enables horizontal scrolling */
    scroll-snap-type: x mandatory; /* Smooth scrolling effect */
  }

  .carousel .col-12 {
    flex: 0 0 80%; /* Each image takes 80% of screen width */
    max-width: 80%;
    scroll-snap-align: start; /* Aligns items properly */
  }

  .carousel .image-wrapper img {
    width: 100%;
    height: auto; /* Ensures responsive images */
  }

  .carousel .row::-webkit-scrollbar {
    display: none; /* Hides scrollbar for cleaner look */
  }
}

/* packages css code */

/* Package Cards - Styling */
.package-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-in-out forwards;
}

/* Card Hover Effect */
.package-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Card Body Styling */
.package-card .card-body {
  padding: 20px;
  /* text-align: center; */
}

/* Title Styling */
.package-card .card-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

/* Subtitle Styling */
.package-card .card-text {
  font-size: 16px;
  color: #ff9800;
  font-weight: bold;
}

/* List Styling */
.package-card ul {
  list-style-type: none;
  padding: 0;
  margin: 15px 0 0;
}

.package-card ul li {
  font-size: 14px;
  color: #555;
  padding: 5px 0;
  position: relative;
}

/* List Item Bullet */
.package-card ul li::before {
  content: "✔";
  color: #ff9800;
  font-weight: bold;
  margin-right: 8px;
}

/* Responsive Grid */
@media (max-width: 768px) {
  .row-cols-md-3 > .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Fade-in Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section Mobile Responsive */

/* Hero Section */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Swiper Slide Image */
.swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
@media (max-width: 768px) {
  .swiper-slide img {
    height: auto;
    object-fit:cover;
}
}






/* Centered Overlay */
.hero-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  letter-spacing: 2px;
  color: #fff;
  /* background: rgba(0, 0, 0, 0.5);  */
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 1200px;
  animation: fadeInUp 1s ease-in-out;
}

/* Tagline */
.tagline {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

/* Slide Title */
.slide-title {
  font-size: 36px;
  font-weight: bold;
  margin: 10px 0;
}

/* Explore Button */
.button-container .btn {
  font-size: 18px;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

/* Button Hover */
.button-container .btn:hover {
  background-color: #ff9800;
  color: #fff;
  transform: scale(1.1);
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

/* Pagination */
.swiper-pagination {
  bottom: 15px !important;
}

/* Fade-in Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
  #hero {
    height: 65vh; 
    width:100%;/* Reduce height for mobile */
  }
  .hero-caption {
    width: 90%;
    padding: 15px;
  }
  .slide-title {
    font-size: 28px;
  }
  .button-container .btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .hero-caption {
    width: 95%;
    padding: 10px;
    margin-top:25px;
  }
  .slide-title {
    font-size: 20px;
  }
  .button-container .btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

.explore-btn i {
  display: inline-block;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

html {
  scroll-behavior: smooth;
}

/* stat sections css for mobile */
/* Base styles for stats section */
.stats-section {
  background-color: #f8f9fa; /* Light background */
  padding: 50px 0;
}

/* Styling for each stat item */
.stats-item {
  text-align: left;
  padding: 20px;
  border-radius: 8px;
}

/* Number styles */
.stats-number {
  font-size: 2rem; /* Large numbers */
  font-weight: bold;
  color: #007bff; /* Brand color */
}

/* Description text */
.stats-desc {
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .stats-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stats-item {
    justify-content: center;
    text-align: center;
    padding: 15px 0;
  }

  .stats-number {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }

  .stats-desc {
    font-size: 0.9rem;
  }
}

/* Slider chips advertisement */

/* Mobile responsiveness */
@media (max-width: 768px) {
  .carousel-item .row {
    flex-direction: column;
    text-align: center;
  }

  .carousel-item .col-md-6 {
    width: 100%;
    padding: 10px;
  }

  /* Reduce button size on mobile */
  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 8px;
  }
}

/* Ensure the banner section is responsive */
.banner-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
}

/* Make sure images inside the banner stack properly */
.banner-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 5px auto; /* Ensures images are centered */
}

/* Adjust button and text alignment */
.banner-section .banner-text {
  width: 100%;
  text-align: center;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .banner-section {
    flex-direction: column;
  }

  .banner-section img {
    width: 90%; /* Ensure images don't overflow */
  }

  .banner-section .banner-text {
    font-size: 1rem; /* Reduce text size */
    padding: 10px;
  }
}

/* *******************CHIPS CODE************************ */

/* TV CSS */
.tv-swiper-container {
  width: 100%; /* Or a specific width */
  height: 400px; /* Adjust height as needed */
  position: relative; /* For navigation buttons */
  overflow: hidden; /* Hide content outside the slider */
}

.tv-swiper-wrapper {
  width: 100%;
  height: 100%;
}

.tv-swiper-slide {
  width: 100%;
  height: 100%;
}

.tv-swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Or contain, depending on your preference */
}

/* Navigation Buttons (Basic Styling) */
.tv-swiper-button-prev,
.tv-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10; /* Above the slides */
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  color: white;
  padding: 10px;
}

.tv-swiper-button-prev {
  left: 10px;
}

.tv-swiper-button-next {
  right: 10px;
}

/* Pagination (Basic Styling) */
.tv-swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
}

.tv-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.tv-swiper-pagination .swiper-pagination-bullet-active {
  background-color: white;
}



/* --------------carousel.css---------------------------------------- */

.carousel-container {
  width: 100%;
  margin: auto;
  position: relative;
  padding: 20px;
  border-radius: 10px;
}

.multi-carousel-wrapper {
  overflow: hidden;
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
}

.multi-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.multi-carousel-item {
  flex: 0 0 calc(100% / 3); /* Show 4 items on desktop */
  max-width: calc(100% / 3);
  padding: 10px;
}

/* Card styling */
.card {
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Ensure images scale nicely and don't get too tall */
.card-img-top {
  width: 100%;
  height: 430px; /* Adjust as desired */
  object-fit: cover; 

}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.carousel-control-prev {
  left: -10px;
}
.carousel-control-next {
  right: -10px;
}

.btn {
  border-radius: 8px;
  width: 60%; /* Makes button full width inside card */
}

  
/* @media (max-width: 768px) {
  .card {
    flex: 0 0 calc(100% / 1); 
    max-width: calc(100% / 1);
    padding: 0px;
    
  }

} */