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

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
header {
  background:  #00b3b3;;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.logo span {
  color: #00ffff;
  font-style: italic;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin-left: 15px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}
nav ul li a:hover {
  color: #00ffff;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
}

/* HERO SECTION */
.hero-section {
  width: 100%;
  height: 100vh;
}
.hero-section .swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-text {
  background: rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
}
.hero-text h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 18px;
  margin-bottom: 15px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.btn-primary {
  background: #00b3b3;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
  margin-top: 15px;
}
.btn-primary:hover {
  background: #008080;
}

/* ABOUT */
.about-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 50px 0;
}
.about-container img {
  width: 50%;
  border-radius: 10px;
}
.about-text {
  width: 50%;
}
.about-text h2 {
  margin-bottom: 10px;
  color: #008080;
}
.about-text ul {
  margin-top: 15px;
}
.about-text ul li {
  margin-bottom: 10px;
  margin-left: 15px;
}

/* VEHICLES */
h2 {
  text-align: center;
  margin: 40px 0 20px;
  color: #008080;
}
.packages-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.package-card {
  width: 300px;
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
}
.package-card:hover {
  transform: translateY(-5px);
}
.package-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.package-card h3 {
  margin: 10px 0;
  color: #008080;
}

/* BOOKING FORM */
.booking-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-form input,
.booking-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.booking-form button {
  background: #00b3b3;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer; 

}
.booking-form button:hover {
  background: #008080;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 26px;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* FOOTER */
footer {
  background: #008080;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  .about-container img,
  .about-text {
    width: 100%;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 60px;
    background: #008080;
    width: 200px;
  }
  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* SECTION */
#vehicles {
  margin: 60px 0;
  text-align: center;
}

/* Caption */
.section-caption {
  max-width: 600px;
  margin: 10px auto 30px;
  color: #555;
  font-size: 16px;
}

/* GRID */
.vehicle-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* CARD */
.vehicle-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}
#vehicles {
  margin: 60px 0;
  text-align: center;
}

.section-caption {
  max-width: 650px;
  margin: 10px auto 30px;
  color: #555;
  font-size: 16px;
}

/* GRID */
.vehicle-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* CARD */
.vehicle-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.vehicle-card:hover {
  transform: translateY(-8px);
}

/* IMAGE + VIDEO */
.vehicle-card img,
.vehicle-card video {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* TITLE */
.vehicle-card h3 {
  padding: 12px;
  color: #008080;
  font-size: 16px;
}
/* ABOUT SLIDER */
.aboutSwiper {
  width: 100%;
}

.about-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* BOX */
.about-box {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* IMAGE */
.about-box img {
  width: 300px;
  border-radius: 10px;
  object-fit: cover;
  margin-top: 20px;
}

/* CONTENT */
.about-content {
  max-width: 400px;
  margin-top: 15px;
}

.about-content h2 {
  color: #008080;
  margin-bottom: 10px;
}

.about-content h3 {
  margin-bottom: 10px;
}

.about-content p {
  margin-bottom: 10px;
  color: #555;
}

/* BUTTONS */
.about-buttons {
  display: flex;
  gap: 10px;
}
/* REVIEW SECTION */
#reviews {
  margin: 60px 0;
  text-align: center;
}

/* CARD */
.review-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* REVIEW SECTION */
#reviews {
  margin: 70px 0;
  text-align: center;
}

/* SWIPER FIX */
.reviewSwiper {
  width: 100%;
  padding-bottom: 30px;
}

.reviewSwiper .swiper-slide {
  display: flex;
  justify-content: center;
}

/* REVIEW BOX */
.review-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* TEXT */
.review-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

/* STARS */
.review-box h4 {
  color: #f4b400;
  margin-bottom: 5px;
}

/* NAME */
.review-box span {
  color: #008080;
  font-size: 14px;
}
/* FOOTER */
footer {
  background: #008080;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

/* TEXT */
.footer-tagline {
  margin: 10px 0;
  font-size: 15px;
  opacity: 0.9;
}

/* DETAILS */
.footer-details p {
  margin: 8px 0;
}

/* LINKS */
.footer-details a {
  color: #fff;
  text-decoration: none;
}

.footer-details a:hover {
  text-decoration: underline;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.8;
}
#tours {
  margin: 70px 0;
  text-align: center;
}

/* GRID */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

/* CARD */
.tour-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* IMAGE */
.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER EFFECT */
.tour-card:hover img {
  transform: scale(1.1);
}

/* TEXT */
.tour-card h3 {
  margin: 10px 0 5px;
  color: #008080;
}

.tour-card p {
  font-size: 14px;
  color: #555;
  padding: 0 10px 15px;
}

/* CENTER BUTTON */
.tour-call {
  margin-top: 30px;
}

.tour-call .btn-primary {
  padding: 10px 20px;
  font-size: 16px;
}
.about-container{
  text-align:center;
  padding:60px 20px;
}

.section-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:10px;
}

.section-subtitle{
  color:gray;
  margin-bottom:40px;
}
