.product-description li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.5em;
    list-style: none;
}

.product-description li::before {
    content: "➔";
    position: absolute;
    left: 0;
    color: #c49b66;
    font-size: 1.25em;
}
/* Custom styles */
body {
  font-family: Arial, sans-serif;
}

/* Navbar Styling */
.navbar {
  background-color:#d8c5b4 !important;
}

.navbar-brand img {
  height: 72px;
 
}

.navbar-nav .nav-link {
  font-weight: bold;
  margin-left: 10px;
  color: #fff !important;
}

i.fas.fa-shopping-cart {
  color: red;
}

/* banner */

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, sans-serif;
}

.banner {
  
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
/* height: 100vh; */
background-image: url('/images/desert-buggy-banner.avif');
background-size: cover;
background-position: center;
  background-repeat: no-repeat;
position: relative;
padding: 135px;
color: #fff;
text-align: center;
overflow: hidden;
/* padding: 20px; */
}

.text-content h1 {
font-size: 3rem;
margin-bottom: 10px;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.text-content p {
font-size: 1.5rem;
margin-bottom: 20px;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

    .search-bar {
        position: relative;
        width: 80%; /* Full width for the search bar */
        margin-bottom: 20px; /* Add some space below */
        z-index: 1000;
       
    }

    .fancy-search {
        width: 100%; /* Full width */
        padding: 15px; /* Increased padding for a bigger look */
        font-size: 18px; /* Larger font size for better readability */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
        transition: border-color 0.3s; /* Smooth border color transition */
    }

    .fancy-search:focus {
        outline: none; /* Remove default outline */
        box-shadow: 0 0 5px rgba(0, 91, 183, 0.5); /* Glow effect on focus */
    }

    #searchResults {
      position: absolute; /* Position the dropdown independently of other elements */
      top: 100%; /* Position directly below the search input */
      left: 0;
      width: 100%;
      max-height: 200px; /* Control the dropdown's maximum height */
      overflow-y: auto; /* Enable vertical scrolling within the dropdown */
      z-index: 9999; /* Ensure it appears above other elements */
      background-color: #fff;
      border: 1px solid #ccc;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
      padding: 8px;
      border-radius: 4px;
  }
  
  /* Styling for each dropdown item */
  .result-item {
      padding: 10px; /* Padding for dropdown items */
      color: #333; /* Text color */
      text-decoration: none; /* Remove underline */
      display: block; /* Make items block elements */
      cursor: pointer; /* Change cursor to pointer for clarity */
  }
  
  .result-item:hover {
      background-color: #f1f1f1; /* Highlight on hover */
  }


  /* modal */

  .modal {
    background-color: rgba(255, 255, 255, 0.9); /* Light background */
    color: #333; /* Dark text */
}



/* .search-bar {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
}

.search-bar input {
width: 800px;
padding: 10px;
font-size: 1rem;
border-radius: 5px;
border: none;
outline: none;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);

} */

/* .search-bar button {
padding: 10px 20px;
margin-left: 10px;
font-size: 1rem;
border: none;
border-radius: 5px;
background-color: #ff5722;
color: white;
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
transition: background-color 0.3s ease;
} */

/* .search-bar button:hover {
background-color: #e64a19;
} */

@media (max-width: 768px) {
.text-content h1 {
    font-size: 2rem;
}

.text-content p {
    font-size: 1.2rem;
}

.search-bar input {
    width: 100%;
}
}







/* End */


h2, .h2 {
font-size: 30px;
}
h1, h2, h3 {
margin-bottom: 10px;
margin-top: 20px;
}

.lead {
font-weight: 200;
line-height: 1.4;
margin-bottom: 20px;
}

body {
color: #333333;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.col-md-8 {
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
}

/* Product Card Styling */
/* Additional styles to center the last two cards */
/* Main product card styling */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px; /* Softer rounded corners */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Slightly bigger shadow for depth */
  transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  background: linear-gradient(145deg, #f8f9fa, #e9ecef); /* Gradient background */
}

/* Hover effects */
.product-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Larger shadow on hover */
  transform: translateY(-8px); /* Lift the card slightly */
  background-color: #ffffff; /* Lighten background on hover */
}

/* Card image container with a rounded effect */
.product-card .card-image {
  overflow: hidden;
  border-radius: 10px;
}

.product-card .card-image img {
  transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for zoom and filter */
}

.product-card:hover .card-image img {
  transform: scale(1.1); /* Zoom effect on hover */
  filter: brightness(90%); /* Slight darkening for the zoom effect */
}

/* Deal sticker with better contrast and position */
.deal-sticker {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ff6347; /* Tomato red */
  color: white;
  padding: 8px 15px;
  font-size: 0.9em;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Adding a shadow for emphasis */
}

/* Card body text */
.card-body .card-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.card-body .card-title:hover {
  color: #007bff; /* Blue color on hover for the title */
}

.card-text .old-price {
  color: #6c757d;
  font-size: 1em;
  text-decoration: line-through;
  margin-right: 15px;
}

.card-text .new-price {
  font-size: 20px;
  color: #28a745;
  font-weight: bold;
}

/* Button styling */
.btn {
  width: 100%;
  padding: 12px 0; /* Larger padding for better button feel */
  font-size: 1.1em;
  border-radius: 8px; /* Rounded button corners */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover effects for buttons */
.btn:hover {
  transform: scale(1.05); /* Slight scale-up effect */
}

.add-to-cart-btn {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
}

.add-to-cart-btn:hover {
  background-color: #0056b3;
  border-color: #004085;
}

/* View details button */
.btn-primary {
  background-color: #28a745;
  border-color: #28a745;
}

.btn-primary:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

/* Add spacing for text and elements */
.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* Spacing for bottom section of the card */
.card-body .mt-auto {
  margin-top: auto;
}

/* Ensure that card images do not stretch oddly */
.card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Cart Modal Styling */
#cartModal .modal-body {
  overflow-x: auto;
}

/* Footer Styling */
.footer-cta.pt-5.pb-5 {
  margin-top: 120px;
}
ul {
    margin: 0px;
    padding: 0px;
}
.footer-section {
  background: orange;
  position: relative;
  margin-top: 25px;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.footer-map iframe {
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.copyright-area{
  background: #f9f9f9;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

/* animation for jeep icon */


/* Jeep Animation Styles */
.jeep-animation {
    position: absolute; /* Make sure the jeep is positioned absolutely */
    bottom: 20px; /* Adjust this value as needed */
    left: -100px; /* Start off-screen to the left */
    animation: moveJeep 5s linear infinite; /* Repeat the animation infinitely */
}

.jeep-animation img {
    width: 100px; /* Set a specific width for the jeep */
    height: auto; /* Maintain aspect ratio */
}

@keyframes moveJeep {
    0% {
        left: -100px; /* Start position */
    }
    100% {
        left: 100%; /* End position, off-screen to the right */
    }
}

/* why choose us */
.why-choose-us {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.why-choose-us-title {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: orange;
}

.usp-section {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Ensures alignment starts at the top */
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.usp-card {
    background-color: #fff;
    border-radius: 8px;
    width: 250px; /* Fixed width */
    min-height: 300px; /* Ensure equal height */
    max-height: 300px; /* Prevent expansion */
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.usp-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}

.usp-card-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin: 10px 0 5px;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis for long text */
}

.usp-card-desc {
    font-size: 0.95em;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis for long text */
    max-height: 3em; /* Limit height */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
/* text moving animation */

/* Marquee Container Styling */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    position: relative;
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 10px 0;
    z-index: 1; 
}
.title {
    position: relative; /* This ensures the marquee content has its own stacking context */
    z-index: 1; /* Lower z-index than the search results */
}
/* Marquee Content Styling */
.marquee-content {
    display: inline-block;
    padding-right: 50px; /* Space between repeats */
    font-size: 18px;
    font-weight: bold;
    z-index: 1;
    color: #333; /* Text color */
    animation: marqueeAnimation 20s linear infinite;
}

/* Keyframes for the continuous scroll effect */
@keyframes marqueeAnimation {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* cart table */


.cart-container {
  padding: 20px;
}

/* Cart Items Styles */
.cart-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.cart-item {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
}

.cart-item img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.cart-item p {
  margin: 5px 0;
}

/* Quantity Input & Button */
.quantity {
  width: 60%;
  margin-right: 10px;
}
.inner-page-btn {
  background-color: #f28000;
  color: white;
  padding: 3px 13px;
  font-size: 1.2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.inner-page-btn:hover {
  background-color: #ff9900; /* Lighter orange on hover */
}

.btn {
  margin-top: 10px;
}

/* Cart Summary */
.cart-summary {
  margin-top: 30px;
  text-align: right;
}



/* end */

/* end */

/* end */
  /* Optional styling for search bar */
  .fancy-search {
    padding-right: 2.5rem;
    font-size: 1rem;
  }
  

/* cart count styling */
.badge-pill {
    position: relative;
    top: -10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 14px;
}

/* discountion section  */
/* Background styling */
.promo-section {
  background-image: url('/images/camel-ride-desert-safari.jpg');
  background-size: cover;
  background-position: center;
  
  background-color: rgba(220, 100, 0, 0.6);
  /* color: #f8d300; */
  padding: 100px 0;
  margin-bottom: 50px;
  text-align: center;
}


.promo-card {
  background-color: rgba(255, 255, 255, 0.85); /* Slightly transparent white */
  padding: 50px;
  border-radius: 10px;
  display: inline-block;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for card */
}

.promo-title {
  font-size: 3rem; /* Increased font size */
  font-weight: 800; /* Bolder font weight for title */
  color: #f5b300; /* Golden Yellow */
  margin-bottom: 20px;
}

.promo-subtitle {
  color: #6c757d; /* Neutral gray for subtitle */
  font-style: italic;
  margin-bottom: 20px;
}

.promo-button {
  background-color: #ff9900; /* A brighter yellow-orange */
  color: white;
  font-weight: bold;
  padding: 10px 30px;
  font-size: 1.1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.promo-button:hover {
  background-color: #f2a200; /* Darker yellow on hover */
}

.promo-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.6); /* Focus effect */
}





/* end */
/* faqs */



.card-header {
  background-color: orange;
}
.btn-link {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.btn-link:hover {
    color: #000;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  color: orange;
  margin-bottom: 30px;
}
.card-body {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}
.faq-adjustment {
    /* margin: 0px 0px 10px 10px; */
    margin-bottom: 40px;
}
/* faqs end */

/* conatct us */

/* Example custom styles for contact page */
.col-md-4.right-box {
  top: 88px;
}
.container {
  max-width: 1200px;
}

.form-label {
  font-weight: bold;
}

.shadow {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.bg-light {
  background-color: orange !important;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}
form.p-4.shadow.rounded.bg-light {
  margin-bottom: 100px;
}


/* prodcut detail page */

/* Styling for Call-to-Action Paragraph */
.call-to-action {
  font-size: 1.25em;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5em;
}

/* Styling for Section Headings */
.section-heading {
  font-size: 1.75em;
  font-weight: bold;
  color: #c49b66;
  text-transform: uppercase;
  margin-top: 2em;
  border-left: 5px solid #c49b66;
  padding-left: 10px;
}

/* Styling for Highlight List */
.highlight-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1em;
}

.highlight-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.75em;
}

.highlight-list li::before {
  content: "➔";
  position: absolute;
  left: 0;
  color: #c49b66;
  font-size: 1.25em;
}

/* Styling for Inclusions List */
.inclusions-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1em;
}

.inclusions-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.5em;
}

.inclusions-list li::before {
  content: "➔";
  position: absolute;
  left: 0;
  color: #c49b66;
  font-size: 1.25em;
}

/* Styling for Important Information List */
.important-info {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1em;
}

.important-info li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.5em;
}

.important-info li::before {
  content: "➔";
  position: absolute;
  left: 0;
  color: #c49b66;
  font-size: 1.25em;
}

/* General Paragraph Styling */
p {
  font-size: 1em;
  line-height: 1.6;

  margin-bottom: 1em;
}



/* end */
/* Gallery  */


 /* Style for zoom effect */
 .gallery-item {
  position: relative;
  overflow: hidden;
}

.zoom-effect {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover .zoom-effect {
  transform: scale(1.1); /* Zoom in the image */
  filter: brightness(0.8); /* Optional: Slightly darken the image */
}
/* end */

/* testomonial */

/* Testimonial Section Styles */
.testimonial-section {
  background-color: #f9f9f9;
  padding: 40px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: orange;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  margin-top: 20px;
}

/* Testimonial Item Styling */
.testimonial-item {
  background-color: #fff; /* White background for clean look */
  padding: 20px;
  border-radius: 10px; /* Rounded corners for softer appearance */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); /* Deeper shadow for more depth */
  flex: 1 1 30%; /* Default: 3 columns */
  text-align: center;
  min-width: 250px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease, background-color 0.3s ease;
  background: linear-gradient(145deg, #fff, #f7f7f7); /* Subtle gradient effect */
}

/* Hover Effects */
.testimonial-item:hover {
  transform: translateY(-8px); /* Slightly more lift */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
  background-color: #fff8e1; /* Light yellow background on hover */
}

/* Testimonial Text Styling */
.testimonial-text {
  font-size: 1.1rem;
  color: #666; /* Slightly lighter gray for better readability */
  font-style: italic;
  margin-bottom: 15px; /* Add space below text */
  transition: color 0.3s ease;
}

/* Testimonial Text Hover (Optional) */
.testimonial-item:hover .testimonial-text {
  color: #f39c12; /* Yellowish color on hover */
}

/* Author Styling */
.testimonial-author {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
  transition: color 0.3s ease;
}

/* Author Name Hover */
.testimonial-item:hover .testimonial-author {
  color: #f39c12; /* Yellow color for author's name on hover */
}

/* Decorative Yellow Border */
.testimonial-item::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 60px;
  height: 4px;
  background-color: #f39c12; /* Bold yellow accent line */
  border-radius: 5px;
}

/* Add a subtle yellow glow when focused */
.testimonial-item:focus-within {
  box-shadow: 0 0 12px 3px rgba(243, 156, 18, 0.6); /* Yellowish glow */
}

