* {
  margin: 0;
  padding: 0;
  font-family: "poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.logo {
  width: 190px;
  padding-bottom: 5px;
  padding-top: 10px;
  cursor: pointer;
}

.header {
  width: 100%;
}
.header nav {
    padding-top: 10px;
    padding-bottom: 15px;
}
nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    background-color:#333;
    position: relative;
    z-index: 10;
}

.hero-image {
    height: 50vh;
    width: 100%;
    background-image: url(/PICTURES/Excursions.jpeg);
    background-size: cover;
    background-position: center;

    margin-bottom: 30px;
}
nav img {
    width: 150px;
}


.menu-bar {
    position: fixed;
    height: 100vh;
    z-index: 2;
    width: 200px;
    top: 0;
    right: -250px;
    background: gray;
    text-align: left;
    transition: 1s;
    display: flex;
    flex-direction: column;
  }
  .menu-bar li {
    list-style: none;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
  }
 
.menu-bar ul {
    padding-top: 50px;
    padding-left: 10px;
  }
  
  .menu-bar ul li {
    display: block;
    position: relative;
  }
  
.text-box {
  width: 90%;
  color: black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.text-box h1 {
  font-size: 120px;
  margin-bottom: 10px;
}

.excursion {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.carousel-container {
  margin: auto;
  padding: 10vh;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 93%;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 auto;
  margin-left: auto;
  width: 250px;
  height: 400px;
  margin-right: 40px;
}

.card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.prev-btn,
.nxt-btn {
  border: none;
  width: 10vh;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.01);
  cursor: pointer;
  z-index: 9;
  font-size: large;
}

.prev-btn {
  left: 0;
}

.nxt-btn {
  right: 0;
}

.prev-btn i,
.nxt-btn i {
  opacity: 0.2;
}

.nxt-btn:hover i,
.prev-btn:hover i {
  opacity: 1;
}

.card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 16px;
}

.card-title {
  margin: 0 0 8px 0;
  font-size: 1.25rem;
  font-weight: bold;
}

.card-description {
  margin: 0;
  font-size: 0.875rem;
  color: #666;
}

.card-footer {
  background-color: #f8f8f8;
  padding: 16px;
  display: flex;
}

.book-now-button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: black;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.book-now-button:hover {
  background-color: black;
}

.subtitle {
  margin: 15px;
  font-size: 2.2vw;
  font-weight: 500;
  color: black;
  padding-top: 40px;
  text-align: left;
  padding-left: 3.7%;
}

.excursion-type {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
  grid-gap: 30px;
  margin: 4%;
}

.excursion-type div img {
  width: 100%;
}

.excursion-type h3 {
  font-weight: 600;
  margin-top: 10px;
}

.excursion-type p {
  margin-top: 15px;
  line-height: 26px;
}

.book-now-button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: black;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.book-now-button:hover {
  background-color: gray;
}

.footer a {
  text-decoration: none;
  color: #999;
  font-size: 22px;
  margin: 0 10px;
}

.footer {
  background-color: #1a202c;
  padding-top: 15%;
  color: #a0aec0;
  margin: 30px 0 0;
  text-align: center;
  padding-bottom: 10px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 200px;
  margin-bottom: 2rem;
}

.footer-section h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-section h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #a0aec0;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #2d3748;
}

.where-to-find-us {
  background-color: #f3f4f6;
  padding: 4rem 1rem;
}

.where-to-find-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.where-to-find-us h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #1a202c;
}

.where-to-find-us .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.where-to-find-us .contact-info,
.where-to-find-us .map-container {
  flex: 1 1 300px;
}

.where-to-find-us .contact-info {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.where-to-find-us h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2d3748;
}

.where-to-find-us ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.where-to-find-us li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.where-to-find-us li i {
  color: #4299e1;
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.where-to-find-us .email a {
  color: #4299e1;
  text-decoration: none;
}

.where-to-find-us .email a:hover {
  text-decoration: underline;
}

.where-to-find-us .opening-hours {
  margin-top: 1.5rem;
}

.where-to-find-us .opening-hours h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.where-to-find-us .opening-hours p {
  margin: 0.25rem 0;
}

.where-to-find-us .map-container {
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gotopbtn {
  position: fixed;
  width: 50px;
  height: 50px;
  background: #eb0404;
  bottom: 40px;
  right: 50px;
  text-decoration: none;
  text-align: center;
  line-height: 50px;
  color: white;
  font-size: 22px;
  z-index: 1000;
}

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: black;
}

  nav .fa {
    display: block;
    margin: 10px;
    font-size: 30px;
    cursor: pointer;
  }
.fa-bars-container {
  position: absolute;
  right: 30px;
  top: 20px;
  padding: 10px;
}

.fa-bars {
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Title Section */
.title {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
}

.truncate {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  color: black;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
}

.read-more:hover {
  text-decoration: underline;
}


.fa-bars-container {
  position: absolute;
  right: 30px;
  top: 20px;
  /* Adjust this value to match the height of the logo */
  padding: 10px;
}

.fa-bars {
  font-size: 24px;
  cursor: pointer;
}

.no-scroll {
  overflow: hidden;
}

@media only screen and (max-width: 650px) {
  .text-box h1 {
    font-size: 50px;
  }

  .menu-bar {
    position: fixed;
    height: 100vh;
    z-index: 2;
    width: 200px;
    top: 0;
    right: -250px;
    background: gray;
    text-align: left;
    transition: 1s;
    display: flex;
    flex-direction: column;
  }

  .menu-bar li {
    list-style: none;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
  }

  .drop-down {
    flex-direction: column;
    position: relative;
    padding: 0;
    margin: 0;
    background: transparent;
    color: black;
    box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    font-size: 15px;
    z-index: 1;
  }

  .services:hover .drop-down {
    display: flex;
  }

  .drop-down li a {
    display: block;
    text-decoration: none;
    color: black;
  }

  .drop-down li a:hover {
    background-color: #ddd;
  }

  .menu-bar ul li {
    display: block;
  }

  nav .fa {
    display: block;
    margin: 10px;
    font-size: 30px;
    cursor: pointer;
  }

  .menu-bar ul {
    padding-top: 50px;
    padding-left: 10px;
  }

  .excursion-type {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .subtitle {
    font-size: 6vw;
  }

  .carousel-item {
    width: 250px;
  }

  .carousel-container {
    margin: auto;
    padding: 10vh;
    padding-left: -0px;
    padding-right: 0;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 90%;
  }
}

/* --- Mobility Rental Section --- */
.mobility-rental {
  padding: 50px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.mobility-rental .subtitle {
  margin-bottom: 40px;
}

.mobility-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

.mobility-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobility-text {
  text-align: left;
  color: white;
}

.mobility-text h3 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
}

.mobility-text p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.mobility-text .book-now-button {
  display: inline-block;
  background-color: #25d366;
  /* Example color, adjust to your theme */
  color: white;
  padding: 12px 2px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.mobility-text .book-now-button:hover {
  background-color:  #25d366;
  /* Darker shade on hover */
}
.whatsapp-btn {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
/* Responsive adjustments for mobility section */
@media (min-width: 768px) {
  .mobility-content {
    flex-direction: row;
    text-align: left;
  }

  .mobility-image,
  .mobility-text {
    flex: 1;
  }

  .mobility-image {
    order: 1;
    /* Changed from 2 to 1 */
  }

  .mobility-text {
    order: 2;
    /* Changed from 1 to 2 */
  }

  .mobility-text h3 {
    font-size: 3em;
  }
}

@media (max-width: 767px) {
  .mobility-text {
    text-align: center;
  }
}
