/* Common styles */

@font-face {
  font-family: 'Helvetica-Black';
  src: url('./assets/fonts/Helvetica-Black.otf') format('opentype');
}


@font-face {
  font-family: 'Helvetica-Light';
  src: url('./assets/fonts/Helvetica-Light.otf') format('opentype');
}


@font-face {
  font-family: 'Helvetica-Bold';
  src: url('./assets/fonts/Helvetica-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'Helvetica-Regular';
  src: url('./assets/fonts/Helvetica-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Helvetica-UltraLight';
  src: url('./assets/fonts/Helvetica-UltraLight.otf') format('opentype');
}


@font-face {
  font-family: 'Helvetica-ExtraBold';
  src: url('./assets/fonts/Helvetica-ExtraBold.ttf') format('truetype');
}


@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.vehicle-content .vehicle-info {
  opacity: 0;
}

/* Add a CSS class to trigger the animation */
.animated {
  animation: slideAndFade 1.5s ease-in-out;
}



/* Fade in the text */
.animated .vehicle-info {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

* {
  box-sizing: border-box;
}

#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: top 0.3s;
  background-color: #fff;
}





#navbar.hide {
  top: -100px;
  /* Set to the height of your navbar */
}

.container {
  max-width: 1200px;
  margin: 0 auto;

}


.logo-container {
  font-family: 'Helvetica-Light', Arial, sans-serif;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Add any additional styles for the container */
}

/* Navigation styles */
.navigation {
  top: 0;
  z-index: 100;
  color: #000;
  display: flex;

  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-family: 'Helvetica-UltraLight', Arial, sans-serif;
  font-size: 20px;
  font-weight: 100;
  transition: top 0.3s ease-in-out;
}

.navigation .logo {
  max-width: 200px;
}

.navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.navigation ul li {
  margin-left: 10px;
}

#navbar nav ul li.active a {
  color: #FEBB12;
  /* Change the color to your desired active link color */
}

.navigation ul li a {
  text-decoration: none;
  color: #000;
  padding: 10px;
  font-family: 'Helvetica-Light', Arial, sans-serif;
  font-size: 1.1rem;

}

.logo {
  max-width: 200px;
}

.left-side-nav {
  display: none;
}


#main {
  width: 100%;
  height: 100%;
  display: flex;
}

#main div {
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
}

.headercontainer {
  max-width: 1200px;
  align-items: center;
  display: flex;
  margin: 0 auto;
}


.video-container {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;

}


.headerimg {
  width: 50%;
}

h1 {
  font-family: "Helvetica-ExtraBold", Arial, sans-serif;
  color: #1e1e1e;
  text-align: center;
  font-size: 3rem;
}

h2 {
  font-family: "Helvetica-ExtraBold", Arial, sans-serif;
  color: #1e1e1e;
  text-align: center;
  font-size: 3rem;
}

.headertitle {
  font-family: "Helvetica-Bold", Arial, sans-serif;
  color: #FEBB12;
  text-align: center;
  font-size: 3rem;
}

.second-line {
  font-family: "Helvetica-Light", Arial, sans-serif;
  color: #1e1e1e;
  font-size: 2rem;
  text-align: center;
}

.section-padding {
  background-color: #fff;
}

div {
  margin: 0;
  padding: 0;
}

.buttons-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.button {
  width: 200px;
  height: 60px;
  margin: 0 10px;
}

.qr-image {
  height: 30%;
  width: 50%;
}

.fade-in {
  animation: fade-in 3s forwards;
  /* Add 'forwards' to keep the animation's final state */
  opacity: 0;
}


nav ul li a:hover,
nav ul li a:active {
  color: #febB12;
  animation: colorChange ease-in;
}

.login-button:hover,
.login-button:active {
  background-color: #febB12;
  border-radius: 10px;
}


/* Login button styles */
.login-button {
  background-color: transparent;
  color: #333;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid;
}

#banner {
  width: 100%;
  background: linear-gradient(to top, rgba(255, 250, 230, 1), rgba(255, 243, 204, 0));
}

.features-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1px;
  margin-top: 3%;
  margin-bottom: 3%;
}


.feature img {
  width: 25%;
  height: auto;

}



.feature {
  text-align: center;
  width: 30%;
  font-family: "Helvetica-Light", Arial, sans-serif;
  color: #1e1e1e;
  text-align: center;
}


.feature-title {
  font-family: "Helvetica-Bold", Arial, sans-serif;
  color: #1e1e1e;
  text-align: center;
  font-size: 1.1rem;
}


.feature p {
  text-align: center;
  font-family: "Helvetica-Light", Arial, sans-serif;
  color: #1e1e1e;
  text-align: center;
  font-size: 1rem;
}


.vehicle-section {
  background-color: #FEBB12;
}

.vehicle-container {
  display: flex;
  align-items: center;
}

.vehicle-image {
  width: 50%;
}

.vehicle-image img {
  width: 100%;

}

.vehicle-content {
  flex: 1;

}

.vehicle-info {
  padding-left: 20%;
  padding-right: 20%;
}

.vehicle-info h2 {
  font-size: 2rem;
  font-family: "Helvetica-ExtraBold", Arial, sans-serif;
  color: #1e1e1e;
  text-align: center;
}

.vehicle-info p {
  font-family: "Helvetica-Light", Arial, sans-serif;
  font-size: 1.2rem;
  color: #1e1e1e;
  text-align: center;

}




/* Your existing CSS styles */

.category-feature {
  text-align: center;
  width: 60%;
  padding: 10px;
  font-family: "Helvetica-Light", Arial, sans-serif;
  color: #1e1e1e;
  align-self: center;
}

/* Make the <img> elements circular */
.category-feature img {
  width: 10%;
  /* Reduce the size of the image to accommodate the border */
  height: auto;
  padding: 15px;
  /* Reduce the padding to avoid excessive spacing */
  border-radius: 50%;
  /* Make the image circular */
  transition: background-color 0.3s ease;
  /* Add transition effect for smooth color change */
  border: 1px solid;
  border-color: #febB12;
  box-sizing: content-box
    /* Prevent the border from affecting the image size */
}

/* Adjust the container size to maintain balance */
.category-feature h3,
.category-feature p {
  margin: 20px 20px;
  /* Add some margin to separate the elements */
}




/* Change the background color only when hovering over the image */
.category-feature img:hover {
  background-color: #1e1e1e;
  /* Set the background color when hovering */
}

.category-feature-title {
  font-family: "Helvetica-ExtraBold", Arial, sans-serif;
  color: #1e1e1e;
  font-size: 1.1rem;
}

/* Adjust the height and add scrolling for the <p> elements */
.category-feature p {
  font-family: "Helvetica-Light", Arial, sans-serif;
  color: #1e1e1e;
  font-size: 1rem;
  overflow-y: auto;
  /* Add scrolling if content exceeds the max-height */
}

/* Your other CSS styles */


.app-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}




.category-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Center the category-feature items */
  width: 100%;
}



.central-images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.central-images img {
  width: 100%;
  opacity: 0;
  display: none;
  animation: fadeInOut 5s infinite;
}

.app-screenshot.active {
  display: block;
  opacity: 1;
}

/*Get Listed Style */

.get-listed-header h1 {
  font-family: "Helvetica-ExtraBold", Arial, sans-serif;
  color: #1e1e1e;
  text-align: left;
  font-size: 2.5rem;
}

.get-listed-paragraph {
  font-family: "Helvetica-Light", Arial, sans-serif;
  font-size: 1.4rem;
  color: #1e1e1e;

}


.get-listed-header p {
  font-family: "Helvetica-Light", Arial, sans-serif;
  font-size: 1.4rem;
  color: #1e1e1e;



}


.get-listed-img {
  width: 100%;
}

.advertise-header img {
  width: 100%;

}



.get-listed-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.division {
  flex: 1;
  text-align: center;
  margin: 15px;
  padding: 10px;
  border: 0.5px solid;
  border-radius: 10px;
}

.division img {
  width: 80%;
  /* Adjust image width as needed */

  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.division h2 {
  margin: 0;
  font-family: "Helvetica-ExtraBold", Arial, sans-serif;
  font-size: 1.4rem;
  color: #333;
  /* Adjust font color as needed */
}

.division-content {
  background-color: #f1f1f1;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.3s ease-in-out;

}

.division:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}




@keyframes fadeInOut {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}



/* Initially, hide the elements outside the container */
.get-listed-container .division {
  opacity: 0;
  transform: translateY(100%);
}

/* Add animation class to make the elements appear from bottom to top */
.get-listed-container .division.animate {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

/* Add animation class to make the elements appear from bottom */
.get-listed-container .division.animate-from-bottom {
  animation-name: slideInFromBottom;
}

/* Add animation class to make the elements appear from top */
.get-listed-container .division.animate-from-top {
  animation-name: slideInFromTop;
}

/* The @keyframes animation for appearing from bottom */
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* The @keyframes animation for appearing from top */
@keyframes slideInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}




footer {

  color: #fff;
  margin-top: 5%;
  text-align: center;
}

.footer-container {
  background-color: #1e1e1e;

}




.footer-display {
  display: flex;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 1%;
  padding-bottom: 1%;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  /* Change this to column */
  justify-content: center;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 15px 35px;
  /* Adjust the margin to create vertical spacing */
  text-align: left;
  font-family: 'Helvetica-Light', Arial, sans-serif;

}

.footer-links a:hover {
  text-decoration: underline;
}

.contact-email a:hover {
  text-decoration: underline;
}


.contact-info {
  text-align: right;
  max-width: 1200px;
}


.contact-address-header {
  margin: 25px 35px;
  color: #fff;
  text-decoration: none;
  font-family: 'Helvetica-ExtraBold', Arial, sans-serif;
}

.contact-email a {
  color: #fff;
  text-decoration: none;
}

.contact-email,
.contact-address {
  margin: 25px 35px;

  /* Adjust the margin to create vertical spacing */
  font-family: 'Helvetica-Light', Arial, sans-serif;

}


/*Partner Styles  */


.image-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* Five equal columns */
  gap: 10px;
  /* Space between images */

}


.image-grid img {
  width: 100%;
  border-radius: 15px;

}

.image-grid img:hover {
  box-shadow: 0 4px 8px rgba(254, 187, 18, 1);
  transform: scale(1.1);
  /* Adjust the scale value for the zoom effect */
}


/* Animate images from left to right */
@keyframes slideInFromLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.image-grid img {
  visibility: hidden;
  /* Hide the image by default */
}

/* Intersection Observer shows images when in view */
.image-grid img.image-show {
  animation: slideInFromLeft 1s ease-in-out;
  /* Adjust the duration and easing as needed */
  animation-fill-mode: both;
  visibility: visible;
}


/* FAQ Styles */
.faq {
  padding: 20px;
}

.accordion-item {
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
  opacity: 0;
  /* Initially set opacity to 0 to hide the accordion items */
  transform: translateX(-20px);
  /* Initially move the items to the left */
  transition: opacity 0.8s ease, transform 0.8s ease;
  /* Add transition for opacity and transform */
}

.accordion-header {
  font-family: 'Helvetica-ExtraBold', sans-serif;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 10px;
  background-color: #f0f0f0;
}

.accordion-content {
  font-family: 'Helvetica-Light', sans-serif;
  font-size: 1.2em;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: max-height 0.3s ease, visibility 0s linear 0.3s;
  /* Delay visibility change */
}

.accordion-content.active {
  padding: 30px;
  max-height: 2000px;
  /* Adjust the max-height value based on your content */
  visibility: visible;
  /* Show content when active */
}

@keyframes fadeInAccordion {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 1;
}

.accordion-item.fade-in {
  animation: fadeInAccordion 5s ease forwards;
  /* Animate with keyframes */
}

.accordion-header::before {
  content: "+";
  /* Icon for collapsed state */
  display: inline-block;
  margin-right: 10px;
}

.accordion-content.active+.accordion-header::before {
  content: "-";
  /* Icon for expanded state */
}


/*About Us Styles */



.informap-logo {
  width: 40%;
  align-self: center;
}

.informap-container {

  text-align: center;
}

/* Terms Styles */


.terms-container {
  padding: 20px;
}

.terms {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 20px;
}




.terms-container h1 {
  font-family: 'Helvetica-Extra-Bold', Arial, sans-serif;
  text-align: left;
  font-size: 3rem;
  color: #1e1e1e;
}

.terms-container h2 {
  font-family: 'Helvetica-Bold', Arial, sans-serif;
  text-align: left;
  font-size: 1.5rem;
}

.terms-container h3 {
  font-family: 'Helvetica-Regular', Arial, sans-serif;
  text-align: left;
  font-size: 1.5rem;
}




.terms-container p {
  font-family: 'Helvetica-Light', Arial, sans-serif;
  text-align: justify;
  font-size: 1.2rem;
}

.terms-container li {
  font-family: 'Helvetica-Light', Arial, sans-serif;
  text-align: justify;
  font-size: 1.2rem;
}

.terms-secondline {
  font-family: 'Helvetica-Extra-Bold', Arial, sans-serif;
  text-align: left;
  font-size: 3rem;
  color: #FEBB12;
}



.footer {
  font-family: 'Helvetica-Light', Arial, sans-serif;
  text-align: justify;
  color: #777;
  margin-top: 30px;
}

#mySidenav {
  display: none;
}

#menu {
  display: none;
}



/* Responsive styles */
@media (max-width: 767px) {

  .fab {
    display: none;
  }

  #menu {
    display: block;
  }

  #mySidenav {
    display: block;
  }

  #navbar {
    display: none;
  }

  #main {
    width: 100%;
    height: 100%;
    display:block;
  }
  
  #main div {
    -ms-flex: 1;
    /* IE 10 */
    flex: 1;
  }


  h1 {
    font-family: "Helvetica-ExtraBold", Arial, sans-serif;
    color: #1e1e1e;
    text-align: center;
    font-size: 2rem;
  }

  .second-line {
    font-family: "Helvetica-Light", Arial, sans-serif;
    color: #1e1e1e;
    font-size: 1.3rem;
    text-align: center;
  }


  .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #1e1e1e;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }

  .sidenav a {
    padding: 8px 8px 8px 32px;
    font-family: "Helvetica-Light", Arial, sans-serif;
    text-decoration: none;
    font-size: 1.4rem;
    color: #818181;
    display: block;
    transition: 0.3s;
  }

  .sidenav a:hover {
    color: #FEBB12;
  }

  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }

  .login-button {
    background-color: transparent;
    color: #333;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid;
  }

  .buttons-container {
    display: block;
    text-align: center;
    /* To center the content within the .buttons-container */
  }

  .headercontainer {
    display: block;
    text-align: center;
    /* To center the content within the .buttons-container */
  }

  .headerimg {
    display: none;
  }

  .features-container {
    display: block;
    text-align: center;
    /* To center the content within the .buttons-container */
  }


  .feature img {
    width: 20%;
    height: auto;

  }



  .feature {
    text-align: center;
    width: 100%;
    font-family: "Helvetica-Light", Arial, sans-serif;
    color: #1e1e1e;
    text-align: center;
  }


  .feature-title {
    font-family: "Helvetica-Bold", Arial, sans-serif;
    color: #1e1e1e;
    text-align: center;
    font-size: 1.5rem;
  }

  .feature p {
    text-align: center;
    font-family: "Helvetica-Light", Arial, sans-serif;
    color: #1e1e1e;
    text-align: center;
    font-size: 1.1rem;
  }

  .vehicle-container {
    display: block;
    text-align: center;
    /* To center the content within the .buttons-container */
  }

  .vehicle-info {
    padding: 3%;
  }

  .vehicle-info h2 {
    font-size: 1.2rem;
    font-family: "Helvetica-ExtraBold", Arial, sans-serif;
    color: #1e1e1e;

  }

  .vehicle-info p {
    font-family: "Helvetica-Light", Arial, sans-serif;
    font-size: 1rem;
    color: #1e1e1e;

  }

  .vehicle-image {
    width: 100%;
  }

  .headertitle {
    font-family: "Helvetica-Bold", Arial, sans-serif;
    color: #FEBB12;
    text-align: center;
    font-size: 2rem;
  }

  h2 {
    font-family: "Helvetica-ExtraBold", Arial, sans-serif;
    color: #1e1e1e;
    text-align: center;
    font-size: 2rem;
  }

  .app-container {
    display: block;
    text-align: center;
    /* To center the content within the .buttons-container */
  }

  .category-section {
    display: block;
    text-align: center;
    /* To center the content within the .buttons-container */
  }

  .category-feature {
    text-align: center;
    font-family: "Helvetica-Light", Arial, sans-serif;
    color: #1e1e1e;
    align-self: center;
    width: 100%;
  }

  .central-images {
    display: block;
    text-align: center;
    /* To center the content within the .buttons-container */
  }

  .get-listed-header h1 {
    font-family: "Helvetica-ExtraBold", Arial, sans-serif;
    color: #1e1e1e;
    text-align: center;
    font-size: 2rem;
  }

  .get-listed-header p {
    font-family: "Helvetica-Light", Arial, sans-serif;
    font-size: 1.1rem;
    color: #1e1e1e;
    text-align: center;
  }

  .get-listed-container {
    display: flex;
    justify-content: space-between;
    padding: 10px;
  }

  .division {
    flex: 1;
    text-align: center;
    margin: 5px;
    padding: 5px;
    border: 0.5px solid;
    border-radius: 10px;
  }

  .division img {
    width: 80%;
    /* Adjust image width as needed */

    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
  }

  .division h2 {
    margin: 0;
    font-family: "Helvetica-ExtraBold", Arial, sans-serif;
    font-size: 0.7rem;
    color: #333;
    /* Adjust font color as needed */
  }

  .get-listed-paragraph {
    font-family: "Helvetica-Light", Arial, sans-serif;
    font-size: 1rem;
    color: #1e1e1e;
    text-align: center;

  }

  .get-listed-header h1 {
    font-family: "Helvetica-ExtraBold", Arial, sans-serif;
    color: #1e1e1e;
    text-align: center;
    font-size: 1.2rem;
    overflow: hidden;
    /* Hide overflow */
    text-overflow: ellipsis;
    /* Add ellipsis (...) when text overflows */
  }

  .get-listed-paragraph {
    font-family: "Helvetica-Light", Arial, sans-serif;
    font-size: 1rem;
    color: #1e1e1e;
    text-align: center;

  }

  .image-grid {
    display: block;
    text-align: center;
    /* To center the images within the .image-grid container */
  }

  .image-grid img {
    display: block;
    width: 65%;
    margin: 2% auto;
    /* Set margin to center the images horizontally */
  }



  .accordion-content {
    font-family: 'Helvetica-Light', sans-serif;
    font-size: 0.9em;
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.3s ease, visibility 0s linear 0.3s;
    /* Delay visibility change */
  }

  .accordion-content.active {
    padding: 20px;
    max-height: 500px;
    /* Adjust the max-height value based on your content */
    visibility: visible;
    /* Show content when active */
  }

  .accordion-header {
    font-family: 'Helvetica-ExtraBold', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    background-color: #f0f0f0;
  }

  .accordion-item {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
    opacity: 0;
    /* Initially set opacity to 0 to hide the accordion items */
    transform: translateX(-20px);
    /* Initially move the items to the left */
    transition: opacity 0.8s ease, transform 0.8s ease;
    /* Add transition for opacity and transform */
  }

  .informap-logo {
    width: 80%;
    align-self: center;
  }
}