
.dropdown-button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-size: 16px;
  margin-bottom: 10px;
}

.dropdown-content {
  display: none;
  padding: 10px;
  background-color: #f9f9f9;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
}

th, td {
  text-align: left;
  padding: 8px;
}

/* Remove the lines between rows and columns */
th {
  background-color: #ffffff;
  color: #007BFF;
  border-bottom: 2px solid #ddd; /* Only bottom border for headers */
}

td {
  border-bottom: 1px solid #ddd; /* Minimal bottom border for separation */
}

/* Remove top padding from the first row */
table tr:first-child td {
  padding-top: 0;
}

nav {
  height: 55px; /* Slightly smaller height for mobile */
  padding: 0.5rem 0.5rem; /* Adjust padding to reduce navbar width */
  box-sizing: border-box; /* Include padding and border in the element's total width */
  border-top: none;
  border-bottom: none; /* Remove bottom border */
  background: white; /* Ensure navbar has a white background on mobile */
  background-color: white !important;
  width: 100%;
}
/* Existing CSS */
a {
  text-decoration: none;
}

/* Spacing below Navbar */
.slideshow-spacing {
  margin-top: 60px; /* Add margin to push the slideshow down */
}

/* Slideshow container with smaller dimensions */
.slideshow-container {
  max-width: 600px;
  position: relative;
  margin: auto;
  overflow: hidden;
  height: 400px; /* Adjusted for better image fit */
}

/* Slide images */
.mySlides {
  display: none;
  height: 100%;
}

.slideshow-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the entire image fits without cropping */
}

/* Navigation dots */
.dot-container {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}

.active {
  background-color: transparent;
}
.fa-instagram {
  font-size: 24px;
  color: #e4405f;
}
.fa-facebook {
  font-size: 24px;
  color: #111cb4;
}
.fa-youtube {
  font-size: 24px;
  color: #e70909;
}
.card button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 20px;
}
.card button:hover {
  background-color: #0056b3;
}
.card:hover {
  transform: scale(1.05);
}

/* Vehicle Details Section */
.vehicle-details-container {
  display: block; /* Prevent flex layout from restricting width on larger screens */
  margin: 50px auto;
  padding: 0 20px;
  max-width: 1200px; /* Allow more space for wider screens */
}

.vehicle-details h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
  text-align: center; /* Center the heading */
}

.vehicle-details p,
.vehicle-details ul {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  text-align: justify; /* Justify the text */
}

.vehicle-details ul {
  padding-left: 20px; /* To add some padding for list items */
}
footer {
  background-color: #5f5f5f;
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 0.5rem 0; /* Reduce padding */
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem; /* Reduced font size */
  margin: 0; /* Remove any extra margin */
}
footer p,
footer a {
  font-size: 0.8rem; /* Apply to all paragraph and link tags within footer */
}

footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between icons */
  margin-bottom: 15px; /* Space between icons and "Connect Now" heading */
}

footer .social-icons a {
  font-size: 24px;
  color: white; /* Make icons visible */
  text-decoration: none;
  transition: transform 0.3s;
}

footer .social-icons a:hover {
  transform: scale(1.2); /* Slight zoom effect on hover */
}

footer h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

footer form {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

footer form input {
  padding: 10px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-right: 10px;
}

footer form button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  background-color: #000000;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

footer form button:hover {
  background-color: #63676b;
}

footer p {
  text-align: center;
  margin: 5px 0;
  color: black;
}

footer p:last-child {
  margin-bottom: 0;
}
.specifications {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.specification-section {
  flex: 1; /* Flex-grow to occupy equal space */
  margin: 0 10px; /* Space between sections */
  padding: 20px; /* Padding for section */
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 5px; /* Rounded corners */
  background-color: #f9f9f9; /* Light background */
  margin-bottom: 20px; /* Add space between boxes */
  margin-top: 20px; /* Add space above the boxes */
}

.specification-section h3 {
  text-align: center; /* Center the headings */
  color: #333;
}

.feature-cards {
  display: flex; /* Use flexbox for horizontal layout */
  justify-content: center; /* Center items */
  flex-wrap: wrap; /* Allow wrapping */
}

.feature-cards ul {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  display: flex; /* Use flexbox for horizontal layout */
  flex-wrap: wrap; /* Allow wrapping to next line if necessary */
  justify-content: center; /* Center the items horizontally */
  margin: 0; /* Remove default margin */
}

.feature-cards ul li {
  width: 150px; /* Fixed width for consistency */
  height: 100px; /* Fixed height for consistency */
  margin: 10px; /* Space between items */
  padding: 10px; /* Padding for better spacing */
  background-color: #e9e9e9; /* Light background for items */
  border-radius: 5px; /* Rounded corners */
  border: 1px solid #ccc; /* Optional border for visibility */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow for card effect */
  display: flex; /* Use flex to center content */
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  text-align: center; /* Center text */
  transition: transform 0.3s; /* Smooth hover effect */
  font-size: 14px; /* Consistent font size */
}

.feature-cards ul li:hover {
  transform: translateY(-3px); /* Lift effect on hover */
}
.container {
  display: flex;
  justify-content: space-around;
  align-items: stretch; /* Ensures equal height */
  margin-top: 20px;
  gap: 20px; /* Adds spacing between the boxes */
}

/* Individual box styling */
.box {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex: 1; /* Ensures boxes are of equal width */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 300px; /* Optional: Set a max width for the boxes */
  text-align: center; /* Center align text */
}

h3 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 15px;
  justify-content: center;
}

.footer-links a {
  color: white;
  text-decoration: none;
}
.dropdown-section {
  width: 100%;
}

.dropdown-item {
  margin-bottom: 10px;
}

.dropdown-button {
  width: 100%;
  padding: 10px;
  text-align: left;
  background: none;
  color: #333333; /* Dark text color */
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  border-bottom: 1px solid #ccc; /* Line separating items */
}

.dropdown-button:focus {
  outline: none;
}
.value {
  display: inline-block; /* Keep the value inline */
  margin-left: 10px; /* Adjust space between label and value */
}

.dropdown-content {
  display: none;
  padding: 10px 0; /* Adjust padding if needed */
  background-color: transparent; /* Transparent background */
}

.dropdown-item.active .dropdown-content {
  display: block;
}

.arrow {
  transition: transform 0.3s ease;
}

.dropdown-item.active .arrow {
  transform: rotate(180deg);
}
.specification-item {
  display: flex;
  justify-content: flex-start; /* Aligns items to the left */
  padding: 5px 0; /* Optional: add some spacing */
}

.specification-item .blue-text {
  margin-right: 10px; /* Space between the label and the colon */
  position: relative; /* Position relative for precise control */
}

.specification-item .value {
  flex-grow: 1; /* Allows the value to take the remaining space */
}

.specification-item .blue-text::after {
  content: ":"; /* Adds a colon after the label */
  position: absolute;
  right: 0; /* Aligns the colon to the right */
}

.header-section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.header-image {
  width: 100%;
  height: auto;
}
.container {
        display: flex;
        align-items: center;
        background-color: white;
        padding: 20px; /* Adjust padding to fit well on both mobile and desktop */
        border-radius: 10px;
        max-width: 800px; /* Maximum width for larger screens */
        width: 100%; /* Allow full width on mobile */
       margin-right: -316px;
      }


.description-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px; /* Set a max width for larger screens */
}

.description-text {
  font-size: 16px;
  color: #333;
  margin: 0; /* Remove margin to decrease space */
}

.brochure-section {
  display: flex;
  align-items: center;
  margin-left: 10px; /* Reduce left margin to bring button closer */
}

.download-button {
  background-color: #007bff;
  color: white;
  padding: 12px 20px; /* Adjust padding for a better fit */
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: #0056b3;
}

.header-section {
  position: relative;
  width: 100%;
  height: 79vh; /* Make the header take the full height of the viewport */
  overflow: hidden;
}

.header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the full area without distortion */
}
.image-section {
  width: 100%;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.responsive-image {
  width: 100%;
  max-width: 1200px; /* Max width for larger screens */
  height: auto;
  display: block;
  object-fit: cover;
}
.blue-text {
  color: #007bff; /* Set the text color to blue */
}
.brochure-section {
  margin: 20px;
}

.button-container {
display: flex;
flex-direction: row; /* Default to column for mobile */
gap: 10px; /* Space between buttons */
align-items: flex-start; /* Align buttons to the start */
}

/* Styles for download button and 360 view button */
.download-button{
  
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove underline from anchor */
  
  
}
.view-360-button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none; /* Remove underline from anchor */
}

.view-360-button {
  border-radius: 4px; /* Add border-radius for consistency */
}



.vehicle-dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 250px; /* Adjust as needed for images */
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}

.vehicle-dropdown-content .vehicle-dropdown-item {
display: flex;
align-items: center; /* Align image and text */
padding: 10px;
border-bottom: 1px solid #ddd; /* Optional: to separate each item */
}

.vehicle-dropdown-content .vehicle-dropdown-item a {
display: flex;
align-items: center;
text-decoration: none;
color: black;
width: 100%;
}

.vehicle-dropdown-content .vehicle-dropdown-item:hover {
background-color: #f1f1f1; /* Change background on hover */
}

.vehicle-dropdown-img {
width: 50px; /* Adjust size for images */
height: auto;
margin-right: 10px;
}

.vehicle-dropdown:hover .vehicle-dropdown-content {
display: block; /* Show dropdown on hover */
}

/* Adjust the dropdown for mobile screens */
@media (max-width: 768px) {
    nav ul li {
        margin: -9px;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        position: relative;
    }
/* Drop Down Mobile View */
.vehicle-dropdown-content { 
min-width: 100%; /* Full width on mobile */
font-size: 14px;  /* Adjust font size for mobile */
}

.vehicle-dropdown-item {
flex-direction: column; /* Stack image and text vertically */
padding: 5px; /* Reduce padding */
}

.vehicle-dropdown-img {
width: 80%; /* Reduce image size */
margin-right: 0;
margin-bottom: 5px;
}

.vehicle-dropdown-item a {
font-size: 14px; /* Smaller text size */
}



  th, td {
    display: block;
    width: 100%;
  }

  tr {
    margin-bottom: 10px;
    display: block;
    border-bottom: 2px solid #ddd;
  }

  th {
    background-color: #ffffff;
    color: #007bff;
    padding-top: 10px;
  }
  .slideshow-container {
    max-width: 100%;
    height: 250px; /* Adjusted for smaller screens */
  }
  .container {
    flex-direction: column; /* Stack boxes vertically */
    align-items: center;
  }
  .box {
    width: 100%; /* Boxes take up full width */
    max-width: none; /* Remove max width for mobile */
  }
  .vehicle-details-container {
    flex-direction: column;
    align-items: center;
  }
  .vehicle-details {
    width: 100%;
  }
  .vehicle-details h2 {
    font-size: 24px;
  }
  .vehicle-details p,
  .vehicle-details ul {
    font-size: 14px;
  }

  /* Stack the footer sections vertically */
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Make the logo centered */
  .footer-section img {
    margin: 0 auto 20px;
  }

  /* Adjust the social icons section */
  .social-icons {
    justify-content: center;
    margin: 20px 0;
  }

  /* Reduce padding in the footer */
  footer {
    padding: 15px 10px;
    margin: -9px;
  }

  /* Reduce text size for mobile */
  footer p {
    font-size: 14px;
  }

  /* Adjust footer links for mobile */
  footer ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  footer ul li {
    margin: 5px 0;
  }
  .dropdown-section {
    width: 100%;
  }

  .dropdown-item {
    margin-bottom: 10px;
  }

  .dropdown-button {
    width: 100%;
    padding: 10px;
    text-align: left;
    background: none;
    color: #333; /* Dark text color */
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    border-bottom: 1px solid #ccc; /* Line separating items */
  }

  .dropdown-button:focus {
    outline: none;
  }

  .dropdown-content {
    display: none;
    padding: 10px 0; /* Adjust padding if needed */
    background-color: transparent; /* Transparent background */
  }

  .dropdown-item.active .dropdown-content {
    display: block;
  }

  .arrow {
    transition: transform 0.3s ease;
  }

  .dropdown-item.active .arrow {
    transform: rotate(180deg);
  }
 .container {
        flex-direction: column;
        padding: 15px;
        width: 94%;
        margin-top: -46px;
        margin-left: -274px;
 }

  .brochure-section {
    margin-top: 5px; /* Reduce space above the button */
    justify-content: center; /* Center button on mobile */
  }

  .description-section {
    margin-bottom: 5px; /* Adjust bottom margin for mobile */
  }

  .header-section {
    height: 21vh; /* Adjust the height for mobile screens (50% of viewport height) */
  }

  .header-image {
    width: 100%; /* Ensures the container takes full width */
    max-width: 100%; /* Prevents the image from exceeding the container's width */
    height: auto; /* Keeps the aspect ratio intact */
    display: flex;
    justify-content: center; /* Centers the image horizontally */
  }
  .responsive-image {
    width: 100%;
    height: auto;
  }
  .button-container {
    flex-direction: row; /* Row layout for desktop */
    align-items: center; /* Center align buttons vertically */
}

.view-360-button {
    margin-right: 10px; /* Space between 360 view button and download button */
    padding: 34px 30px; /* Increase padding for larger button */
    font-size: 1.1em; /* Increase font size for larger button */
}

.download-button {
   margin-left: 10px;   /* No changes needed, but you can keep existing styles */
}
}

.arrow-icon {
margin-right: 5px; /* Space between icon and text */
font-size: 20px; /* Adjust icon size */
}

.popup {
display: none; /* Hidden by default */
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.8);
}

.popup-content {
background-color: #fff;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%; /* Width of the popup */
max-width: 600px; /* Max width for larger screens */
border-radius: 8px; /* Rounded corners */
position: relative; /* Needed for positioning next/prev buttons */
}

.slideshow-container {
position: relative;
max-width: 100%; /* Responsive slideshow width */
}

.slide {
display: none; /* Hide all slides by default */
justify-content: center; /* Center images */
align-items: center; /* Center images */
}

.image-view {
width: 100%; /* Responsive image width */
max-width: 500px; /* Maximum width for each image */
border-radius: 4px; /* Rounded corners */
}

.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
color: black; /* Change arrow color to black */
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}

.prev {
left: 0;
border-radius: 3px 0 0 3px; /* Rounded corners on the left */
}

.next {
right: 0;
border-radius: 0 3px 3px 0; /* Rounded corners on the right */
}

.prev:hover, .next:hover {
background-color: rgba(0, 0, 0, 0.2); /* Slightly darker background on hover */
}

.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}

.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}

