/* 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: 180px; /* Try increasing this */
  width: 180px;
}

.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;
    }
  }
  