* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdfdfd;
  color: #222;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

/* Top Header */

.container {
  width: 100%;
  height: 30px;
  padding: 20px 50px;
  background-color: #034a4a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container .time {
  font-size: 14px;
  color: #fff;
}

.container .contact {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
}

/* social-icons */

.container .contact i {
  font-size: 14px;
  margin-right: 5px;
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icons a {
  color: #fff;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s ease;
  font-size: 16px;
  margin-left: 15px;
  transition: 0.4s;
}

.social-icons a:hover {
  color: #ffd700;
}


/* M/* Main Header */
header {
  background-color: #156759;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 50px;
  width: auto;
  /* border-radius: 50%; */
}

/* Navigation Links */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #fff;
  padding: 5px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #00e0c6;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

nav a:hover {
  color: #ffd700;
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transition: 0.3s;
}


.banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 90vh;
}

.banner-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.605));
  padding: 40px 60px;
  color: white;
  z-index: 2;
  transition: all 0.6s ease;
}

.caption-details {
  position: absolute;
  top: 50%;
  left: 7%;
  animation: fade-in 0.8s ease-in-out;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.caption-details h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.caption-details p {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 6px;
}

.explore-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background: linear-gradient(45deg, #920000, #a30c0c);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.explore-btn:hover {
  background: linear-gradient(45deg, #e55a00, #ff8000);
  transform: scale(1.05);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  height: 50px;
  width: 50px;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

.dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #ff6b00;
}

/* top places */


.places {
  padding: 40px 20px;
  text-align: center;
  background-color: #e7e2e2;
}

.places h1 {
  font-size: 36px;
  margin-bottom: -20px;
  color: #156759;
  border-bottom: 5px solid #156759;
  display: inline-block;
}

.place-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.place-gallery div {
  width: 300px;
}

.place-gallery img {
  width: 100%;
  height: 150px;
  border-radius: 10px;
}

.place button {
  margin-top: 10px;
  padding: 8px 15px;
  background-color: #156759;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.place button:hover {
  background-color: #006666;
}

.card-buttons a {
  text-decoration: none;
  color: white;
}

.place-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.place-card {
  background-color: #fff;
  width: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.place-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-content {
  padding: 20px 0;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #156759;
}

.card-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.card-buttons button {
  padding: 10px 25px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card-buttons button:first-child {
  background-color: #156759;
  color: #fff;
}

.card-buttons button:first-child:hover {
  background-color: #4b5959;
}

.book-btn {
  background-color: #F90000;
  color: white;
}

.book-btn:hover {
  background-color: #e68900;
}

.see-more {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.see-more .see-more_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 50px;
  width: 50px;
  background-color: #156759;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* veichcles */
.cars {
  padding: 60px 20px;
  background: #fdfdfd;
  text-align: center;
}

.cars h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #156759;
}

.car-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* veichlce */
.car-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 300px;
  text-align: left;
  transition: transform 0.3s ease;
}

.car-card:hover {
  transform: translateY(-5px);
}

.car-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.car-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #333;
}

.car-card p {
  color: #555;
  margin: 5px 0;
}

.car-card .More_details {
  margin-top: 10px;
  padding: 10px 20px;
  background: #156759;
  text-decoration: none;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.car-card .More_details:hover {
  background: #4b5959;
}

.car-card button {
  margin-top: 10px;
  padding: 10px 20px;
  background: #F90000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.car-card button:hover {
  background: #e68900;
}

/* rent a driver */
.driver {
  padding: 60px 20px;
  background: #c6c2c2;
  text-align: center;
}

.driver h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #156759;
}

.driver-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.driver-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 300px;
  text-align: left;
  transition: transform 0.3s ease;
}


.driver-card:hover {
  transform: translateY(-5px);
}

.driver-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  border-bottom-right-radius: 55%;
}

.driver-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #333;
}

.driver-card p {
  color: #555;
  margin: 5px 0;
}

.driver-card .details-btn {
  padding: 10px 30px;
  background: #156759;
  color: #fff;
  margin-right: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.driver-card .details-btn:hover {
  background: #4b5959;
}


.driver-card .hire {
  margin-top: 10px;
  padding: 10px 30px;
  background: #F90000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}


.driver-card button:hover {
  background: #e68900;
}

/* modals */
.modal {
  display: none;
  position: relative;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  position: relative;
  text-align: center;
}

.modal-content img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: black;
}

/* Booking Modal */
#bookingModal.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

#bookingModal .modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#bookingModal .modal-content h2 {
  margin-bottom: 20px;
  color: #156759;
  font-size: 24px;
}

#bookingModal .modal-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#bookingModal .modal-content input,
#bookingModal .modal-content select,
#bookingModal .modal-content button {
  padding: 12px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
}

#bookingModal .modal-content input[readonly] {
  background-color: #f0f0f0;
  font-weight: bold;
}

#bookingModal .modal-content button {
  background-color: #156759;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

#bookingModal .modal-content button:hover {
  background-color: #006666;
}

#bookingModal .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #888;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

#bookingModal .close:hover {
  color: #000;
}

#bookingModal .modal-content label {
  text-align: left;
  font-weight: bold;
  color: #333;
}

#bookingModal .modal-content select {
  background-color: #fff;
}


/* Modal Specific */
.auth-modal {
  max-width: 400px;
}

.auth-modal form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.auth-modal form input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.auth-modal form button {
  padding: 10px;
  background-color: #156759;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.auth-modal form button:hover {
  background-color: #006666;
}

.auth-modal form a {
  color: #156759;
  font-size: 14px;
  text-decoration: none;
  text-align: right;
}

.auth-modal form a:hover {
  text-decoration: underline;
}

.auth-modal p {
  text-align: center;
  font-size: 14px;
}

/* hote; */
.hotel-section {
  padding: 30px 20px;
  background: #e7e2e2;
  text-align: center;
}

.hotel-section .section-title {
  font-size: 2.2em;
  margin-bottom: 60px;
  color: #156759;
  border-bottom: 5px solid #156759;
  display: inline-block;
}

.hotel-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.hotel-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  width: 300px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-5px);
}

.hotel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hotel-card h3 {
  font-size: 1.2em;
  margin: 15px 0 10px;
  color: #156759;
}

.hotel-card .rating {
  color: #555;
  margin-bottom: 10px;
}

.hotel-card .book-now-btn {
  background: teal;
  color: #fff;
  padding: 10px 20px;
  margin-bottom: 15px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hotel-card .book-now-btn:hover {
  background: #007777;
}

/* Hotel Booking Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: 60px auto;
  padding: 30px 25px;
  border-radius: 20px;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  text-align: center;
  color: #333;
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-content input,
.modal-content select {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}

.modal-content label {
  font-weight: 500;
  margin-top: 10px;
  color: #555;
  text-align: left;
}

.modal-content button[type="submit"] {
  background-color: teal;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s;
}

.modal-content button[type="submit"]:hover {
  background-color: #006666;
}

/* Close Button */
.modal .close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #999;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

.modal .close:hover {
  color: #000;
}


.testimonials {
  padding: 60px 20px;
  background-color: #fffbe7;
  text-align: center;
}

.testimonials h2 {
  color: #156759;
  font-size: 32px;
  margin-bottom: 40px;
  border-bottom: 5px solid #156759;
  display: inline-block;
}

.testimonial-carousel {
  overflow: hidden;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: scrollTestimonials 20s linear infinite;
}

.testimonial-card {
  min-width: 300px;
  max-width: 400px;
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-family: 'Poppins', sans-serif;
  text-align: left;
  position: relative;
}

.testimonial-card::before {
  content: "❝";
  font-size: 40px;
  color: #00b3a7;
  position: absolute;
  top: 10px;
  left: 15px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
  padding-left: 25px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #156759;
  margin-top: 10px;
  padding-left: 25px;
}

.testimonial-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00b3a7;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0%);
  }

  12.5% {
    transform: translateX(-12.5%);
  }

  25% {
    transform: translateX(-25%);
  }

  37.5% {
    transform: translateX(-37.5%);
  }

  50% {
    transform: translateX(-50%);
  }

  62.5% {
    transform: translateX(-62.5%);
  }

  75% {
    transform: translateX(-75%);
  }

  87.5% {
    transform: translateX(-87.5%);
  }

  100% {
    transform: translateX(0%);
  }
}

.footer {
  background-color: #003b3b;
  color: #fff;
  width: 100%;
  padding: 40px 20px 10px;
  font-family: 'Poppins', sans-serif;
  /* margin-top: auto; */

}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  display: flex;
  flex-direction: column;
  min-width: 250px;
  margin-bottom: 20px;
  gap: 10px;
  text-align: center;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #00e0c6;

}

.qr-code {
  margin-top: 5px;
}

.qr-code img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 5px;
}

.qr-code p {
  font-size: 12px;
  color: #ccc;
}

.footer-section p,
.footer-section a {
  color: #ddd;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #e68900;
}

.footer-section ul {
  list-style: none;

}

.footer-section ul li {
  margin: 8px 0;
}

.footer-social-icons a {
  color: #fff;
  margin-right: 20px;
  font-size: 18px;
  transition: 0.3s;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #444;
  font-size: 13px;
}

.toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #156759;
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 16px;
  position: fixed;
  z-index: 1100;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: visibility 0s, opacity 0.5s ease;
  opacity: 0;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 20px;
  background-color: #0088ff;
  color: #fff;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #005fbb;
  transform: translateY(-3px);
}


.maint-cnt{
  padding: 5.3rem 15rem;
  text-align: center;
}