* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  background: #ffffff;
}

/* ===== TOP BAR  ===== */
.top-bar {
  width: 100%;
  background: linear-gradient(to right,#6b97b5,#0f4c75);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  min-height: 50px;
  position: relative;
  z-index: 100;
}

.logo img {
  max-width: 110px;
  height:auto;
  display: block;
  filter: brightness(140%) drop-shadow(0  0 6px rgba(255,255,255,0.8));
}

.navbar {
  display: flex;
  gap: 25px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.navbar a i {
  margin-right: 8px;
}

/* ===== SLIDER ===== */
.slider {
  width: 100%;
  height: 650px;
  overflow: hidden;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
}

/* ===== SLIDER CONTENT -  ===== */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #edf2f3;;
  z-index: 3;
  width: 100%;
}

.slide-content h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.slide-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);

}

.book-btn {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  width: auto;
  display: inline-block;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: linear-gradient(45deg, #00b4d8, #008b8b);
  box-shadow: 0 6px 15px rgba(92,184,92,0.5);
  transform: translateY(-3px)
}

/* ===== OUR VEHICLES SECTION ===== */
.vehicles-section {
  padding: 40px 20px;
  text-align: center;
}

.vehicles-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
.top-bar {
    flex-direction: column;
    padding: 5px;
    gap: 15px;
  }
  .logo img{
    max-width: 110px;
  }
}

.vehicle-service {
  margin-top: 0;
  padding: 60px 20px;
  text-align: center;
  background: #ffffff;
}

.vehicle-service h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.vehicles {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  width: 280px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0 5px;
}

.card p {
  padding: 0 10px;
  font-size: 14px;
  color: #555;
}

.btn {
  display: inline-block;
  margin: 15px;
  padding: 10px 15px;
  background: #119b44;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* BOOKING */
.trip-booking {
  background: #ffffff;
  padding: 50px 15px;
  
}
.blink {
  margin-bottom: 20px;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  50% { opacity: 0.5; }
}


.container {
  max-width: 450px;
  margin: auto;
  background: #0077b6; /* ocean blue */
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #008b8b;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  border: none;
  border-radius: 5px;
  border: 2px solid #008b8b; /* peacock blue */
}

button {
  width: 100%;
  padding: 12px;
  background: #25D366;
  color: white;
  border: none;
  cursor: pointer;
}

/* FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 15px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
}

/* ================= ABOUT ================= */
.about {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(left);
  background-color: white;
}

.about-content {
  max-width: 800px;
  margin: auto;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 500px;
  text-align: left;
}

.list li {
  background: #ffffff;
  margin: 10px 0;
  padding: 12px 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  font-size: 16px;
  position: relative;
  padding-left: 35px;
}

/* check icon */

#para{
  margin-top: 40px;
  margin-bottom: 5px;
}
.list li::before {
  content: "✔";
  position: absolute;
  left: 12px;
  color: #25D366;
  font-weight: bold;
}
.list li{
  background-color:#008b8b ;
  color: white;
}

/* ================= SERVICES ================= */

.service {
  padding: 20px 20px;
  text-align: center;
  
  background-color: white;
}

.service h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #222;
}

.service p {
  font-size: 16px;
  color: #444;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}
/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 60px 20px;
  text-align: center;
  background:  white;
  
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

/* CONTAINER */
.testimonial-container {

  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* CARD */
.testimonial-card {
  background: #008b8b;
  padding: 20px;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-5px);
}

/* TEXT */
.testimonial-card p {
  font-style: italic;
  color: white;
}

.testimonial-card h4 {
  margin-top: 10px;
  color: #fff8dc;
  font-size: 14px;
}

/* ================= FOOTER ================= */
.footer {
  background: #bcb8b8;
  color: white;
  text-align: center;
  text-wrap-style: auto;
  padding: 30px 10px;
}

.social {
  text-align: center;
  margin-top: 20px;
}

.social a {
  display: inline-block;
  margin: 5px 10px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.social a:hover {
  color: #25D366;
}
/* FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 15px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 20px;
}