/* Reset some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  
/* Navigation Bar */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  z-index: 10;
  height: 80px;
}

.logo {
  display: flex;
  align-items: flex-start; /* Ensures logo aligns to the top */
}
.logo img {
  height: 195px; /* Try increasing this */
  width: 190px;
  margin-top: 20px;
}

.navbar .menu-btn {
  display: none;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}


/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/back.jpg'); /* Background Image */
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Container for Text & Image */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  color: white;
}

/* Left Text Section */
.hero-text {
  flex: 1;
  text-align: left;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.2rem;
  margin: 10px 0;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #f39c12;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.btn:hover {
  background-color: #e67e22;
}

/* Right Image Section */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
}


/* About & Why Choose Us Section */
.about-why-choose {
  padding: 50px 20px;
  background-color: white;
  text-align: center;
}

/* Section Titles */
.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* About Us Paragraph */
.about-text {
  width: 70%;
  max-width: 800px;
  margin: 0 auto 40px auto; /* Centered with bottom gap */
  font-size: 18px;
  line-height: 1.6;
  color: black;
}

/* Why Choose Us Container */
.why-choose-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Individual Boxes */
.why-choose-box {
  width: 30%;
  max-width: 300px;
  padding: 20px;
  background-color: #f0edff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
}

/* Icons Styling */
.why-choose-box i {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 10px;
  display: block;
}

/* Box Paragraph */
.why-choose-box p {
  font-size: 16px;
  color: black;
}





  
 
 /* Vehicles Section */
.vehicles {
  padding: 50px 20px;
  text-align: center;
  background-image: url('images/back.jpg'); /* Background Image */
  background-size: cover;

}
.vehicles h2 {
  margin-bottom: 30px;
  color: white;
  font-size: 40px;
}

.vehicle-card:hover {
  transform: translateY(-5px);
}
.vehicle-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.vehicle-card p {
  margin-bottom: 15px;
}
 .vehicle-cards h3 {
  margin: 15px 0 20px;
  text-align: center;
  color: white;
  font-size: 25px;
}
.sedan-cards,
.suv-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
 
}

/* Ensure each vehicle card has consistent styling */
.vehicle-card1 {
  background: #f0edff;
  width: 300px; /* Adjust width as needed */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  text-align: center;
  padding-bottom: 15px;
}
.vehicle-card1 h3{
  color: #000000;
  font-size: 20px;
}

.vehicle-card1 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #f0edff;
  
   
}

/* WhatsApp button and text wrapper */
.whatsapp-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.whatsapp-btn img {
  width: 30px;
  height: 30px;
  
}

.whatsapp-text {
  text-decoration: none;
  color: #25D366;  /* WhatsApp green color */
  font-weight: bold;
  font-size: 1em;

}

  
  /* Services Section */
  .services {
    padding: 50px 20px;
    background:white;
    text-align: center;
  }
  .services h2 {
    margin-bottom: 30px;
    font-size: 40px;
  }
  .services-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
  }
  .service-card {
    background: #fff;
    min-width: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    flex-shrink: 0;
  }
  .service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  .service-card h3 {
    padding: 15px;
  }
  

  /* Tour Packages Section */
  .tour-packages {
    padding: 50px 20px;
    text-align: center;
    background: #f4f4f4;
    background-image: url('images/back.jpg'); /* Background Image */
  }
  .tour-packages h2 {
    margin-bottom: 30px;
    font-size: 40px;
    color: white;
  }
  .tour-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: flex-start; /* ⬅ Prevents all cards from matching tallest */
  }
  
  .tour-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    width: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    align-self: flex-start; /* ⬅ Only this card resizes itself */
    transition: all 0.2s ease-in-out;
  }
  
  .tour-slider {
    display: flex;
    overflow: hidden;
    gap: 20px;
    /* Optional: add a border or background to highlight the slider area */
    padding: 10px;
  }
  
  .tour-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  .tour-card h3 {
    padding: 15px;
  }
  .tour-button-container {
    margin-top: 50px;
  }
  .more-details-btn {
    padding: 10px 20px;
    border: none;
    background-color:#e67e22;
    color: #fff;
    cursor: pointer;
    border-radius: 50px;
    transition: background 0.3s ease;
    font-size: larger;
  }
  
  .hidden {
    display: none;
  }
  .tour-card .destination-details {
    margin: 10px;
  }
 
  .destination-details {
    margin: 0 15px 15px;
    text-align: left;
    transition: max-height 0.3s ease;
    overflow: hidden;
    max-height: 0;
  }
  
  .destination-details.visible {
    max-height: 500px; /* enough for full content */
  }
 
  .tour-card .more-text-btn {
    background-color: #fff;
    color: #a3a375;
    border: none;
    padding: 8px 16px;
    margin: 10px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.4); /* ⬅ shadow below with blur */
  }
  
  
 
  
 
  

  

  



  /* Contact Us Section (Two Columns) */
.contact-us {
  padding: 50px 20px;
 
}
.contact-us h2 {
  text-align: center;
  margin-bottom: 30px;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info {
  flex: 1 1 300px;
  padding: 20px;
  text-align: left;
  font-size: 1.1em;
}
.contact-form-container {
  flex: 1 1 300px;
  padding: 20px;
}
#contactForm {
  display: flex;
  flex-direction: column;
}
#contactForm input,
#contactForm textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}
#contactForm button {
  padding: 10px;
  border: none;
 background-color:#e67e22 ;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

  
  /* Footer */
  footer {
    background-image: url('images/back.jpg'); /* Background Image */
    background-size: cover; 
    color: #fff;
    padding: 30px 20px;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
  }
  .footer-container h3 {
    margin-bottom: 15px;
    text-align:center ;
  }
  .footer-container ul {
    list-style: none;
  }
  .footer-container ul li {
    margin-bottom: 10px;
  }
  .footer-container ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-follow {
    max-width: 300px;
    text-align: right;
  }

  .footer-follow h3{
    max-width: 300px;
    text-align: right;
  }

  .footer-follow p{
    text-align: right;
  }
  .footer-message{
    text-align:center ;
    max-width: 300px;
  }
  footer p {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
  }
  
  /* Responsive styling */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
    }
    .navbar .nav-links {
      flex-direction: column;
      background: #442943;
      position: absolute;
      top: 60px;
      right: 0;
      width: 200px;
      display: none;
      padding: 10px;

    }
    .navbar .nav-links.active {
      display: flex;
    }
    .navbar .nav-links li {
      margin: 10px 0;
    }
    .menu-btn {
      display: block;
    }
  }
  
  
  .btn-custom {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #7F00FF, #E100FF); /* Purple gradient */
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

.btn-custom:hover {
  background: linear-gradient(135deg, #FEB47B, #FF7E5F);
  box-shadow: 0 6px 20px rgba(255, 126, 95, 0.4);
  transform: translateY(-2px);
}

/* Sticky Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to right, #7F00FF, #E100FF); /* Purple gradient */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s ease;
}


/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* Hover underline */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #ffb347;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #ffb347;
}

/* Hamburger Menu Button */
.menu-btn {
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  display: none;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #7F00FF;
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 20px;
    border-radius: 0 0 0 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 15px;
}

.hero-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #eeeeee;
  margin-bottom: 30px;
}

.why-choose-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.why-choose-box {
  background: #f5f5ff;
  padding: 30px 20px;
  border-radius: 16px;
  width: 300px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.why-choose-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.why-choose-box i {
  font-size: 40px;
  color: #007BFF;
  margin-bottom: 15px;
}

.why-choose-box p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}


.vehicle-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.vehicle-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
  padding: 20px;
  text-align: center;
  transition: 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.vehicle-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.vehicle-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  margin: 10px 0;
  font-weight: 600;
  color: #333;
}

.vehicle-capacity {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
}

.whatsapp-wrapper {
  margin-top: 10px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: linear-gradient(135deg, #1ebe4a, #25D366);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(30, 190, 74, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #1aa244, #20c05b);
  box-shadow: 0 6px 16px rgba(30, 190, 74, 0.4);
  transform: translateY(-2px);
}

.whatsapp-btn img {
  width: 20px;
  margin-right: 8px;
}


@media (max-width: 768px) {
  .vehicle-card {
    max-width: 100%;
  }
}


/* Hide scrollbar in all browsers */
.services-slider {
  overflow: hidden;
}

/* Style each card properly */
.service-card {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.service-card h3 {
  margin-top: 12px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

.tour-packages {
  padding: 60px 20px;
  background: #f7f9fb;
  text-align: center;
}

.tour-packages h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #222;
  font-weight: 700;
}

.tour-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.tour-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.tour-card h3 {
  margin: 15px 0 10px;
  font-size: 1.2rem;
  color: #333;
}

.more-text-btn {
  padding: 8px 20px;
  border: none;
  background-color: #0088cc;
  color: #fff;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.more-text-btn:hover {
  background: linear-gradient(135deg, #FF7E5F, #FEB47B);
  color:#fff;
}

.destination-details {  
  padding: 10px;
  color: #555;
  font-size: 0.9rem;
  text-align: left;
}

/* Book Now Button Section */
.tour-button-container {
  margin-top: 40px;
}

.more-details-btn {
  padding: 12px 28px;
  background-color: #ff6600;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s, transform 0.3s;
}

.more-details-btn:hover {
  background-color: #cc5200;
  transform: translateY(-2px);
}

.contact-us {
  background-color: #f9f9f9;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-us h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.contact-info p {
  font-size: 1rem;
  margin: 10px 0;
  color: #555;
}

.contact-info i {
  margin-right: 10px;
  color: #3498db;
}

.contact-form-container {
  flex: 1;
  min-width: 280px;
}

#contactForm label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fefefe;
  transition: border-color 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #3498db;
  outline: none;
}

#contactForm button {
  margin-top: 20px;
  background-color: #3498db;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contactForm button:hover {
  background-color: #2980b9;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 20px;
  }
}

.whatsapp-icon {
  position: fixed !important;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.whatsapp-icon:hover {
  background-color: #1ebe5d;
}

