:root{
  --first-color:#EC5D19;
  --second-color:rgba(107, 107, 107, 1);
  --third-color:white;
  --fourth-color:black;
}
/* 6666666666 */

*{
  margin: 0;
  padding: 0;
}
/* html {
  margin: 0 !important;
  overflow-x: hidden !important;
}
body {
  margin: 0 !important;
  overflow-x: hidden !important;
}
@media(min-width:770px){
  html {
    margin: 0 !important;
    overflow-x: hidden !important;
  }
  body {
    margin: 0 !important;
    overflow-x: hidden !important;
  }
} */
 



html{
  margin: 0 !important;
  overflow-x: hidden !important;
}
/* body {
  margin: 0 !important;
  overflow: hidden !important;
} */
body {
  margin: 0 !important;
  overflow-x: hidden !important;
}


ul{
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none !important;
}
body{
  direction: ltr;
}
section{
  margin: 30px auto;
}
picture{
  overflow: hidden;
}
img{
  object-fit: cover;
}
/* 
var(--first-color)
var(--second-color)
var(--third-color)
var(--fourth-color)
 */


/* nav start */

nav {
  background-color: var(--first-color);
  /* background-color: black; */
  padding: 10px 20px;
  box-shadow: 0 0 15px 2px rgba(255, 255, 255, 0.881);
  width: 100%;
}


.container.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  color: var(--third-color);
}

nav .logo {
  margin-left: 0px;
  display: flex;
  height: 60px;
  overflow: hidden;
}

.logo img {
  height: 100%;
  object-fit: cover;
}
/* .logo img {
  filter: invert(14%) brightness(23%) contrast(100%);
} */

.nav-menu {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.nav-menu li a {
  text-decoration: none;
  margin: 0;
  color: var(--third-color);
  padding: 8px 12px;
  font-size: 20px;
  border-radius: 4px;
  transition: 0.4s ease;
}

.nav-menu li a:hover {
  color: var(--fourth-color);
}

/* Toggle Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--third-color);
  font-size: 1.5rem;
  cursor: pointer;
}
.nav-toggle i{
  font-size: 30px;
}


nav .icons {
  display: flex;
  gap: 8px;
}
nav .icons i{
  font-size: 22px;
  color: white;
  transition: 0.4s ease;


}

nav .icons a:hover i{
  color :black;
}



/* Responsive Styles */
@media (max-width: 768px) {

  nav .myNav{
    position: fixed;
    /* position: relative; */
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: var(--first-color);
    width: 100%;
    text-align: center;
    padding: 10px 0;
    align-items: flex-start;
    /* box-shadow: 0px 2px 15px 2px rgba(255, 255, 255, 0.881); */
    

  }

  .nav-menu.active {
    display: block !important;

  }

  .nav-toggle {
    display: block;
  }

  nav .icons {
    display: none;
  }
}


/* nav end */

/* hero section start */
section.hero{
  margin: 0px auto ;
  padding: 25px 0;

  /* background-color: var(--fourth-color); */
  /* background-image: linear-gradient(to right  , black, var(--first-color) ); */
  /* background-image: linear-gradient(to left  , black, var(--first-color) ); */
  /* background-image: linear-gradient(to right, var(--first-color), black); */
  /* background-image: linear-gradient(to left , var(--first-color) , black ); */
  background-image: linear-gradient(to left, var(--first-color) 10%, rgb(0, 0, 0) 40%, black 90%);



  border-radius: 0 0 0 180px;
}
.heroContainer{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 100px;
  align-items: center;
  flex-wrap: wrap;
  min-height: 580px;

  /* height:80vh; */
}
.hero picture{
  display: flex;
  width: 450px;
  height: 450px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  /* box-shadow: 0px 0px 30px var(--first-color); */

}
.hero picture img{
  width: 100%;
  object-fit: cover;
  /* border-radius: 50px; */
}
.hero article{
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 500px;
  padding: 20px;
  color: white ;
}
.hero article h2{
  font-size: 40px;
  font-weight: bold;
  color: var(--first-color);
}
.hero article p{
  font-size: 24px;
  line-height: 26px;
  color: white;
}


@media(max-width:1200px){

  section.hero{
    background-image: linear-gradient(to top, var(--first-color) 10%, rgb(0, 0, 0) 40%, black 90%);
  }
  
  
  .hero picture {
    width: 370px;
    height: 370px;
    margin: 0 auto 30px;
}
.heroContainer{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  text-align: center;

}


}
@media(max-width:426px){

  section.hero{
    background-image: linear-gradient(to top, var(--first-color) 10%, rgb(0, 0, 0) 40%, black 90%);
  }
  
  .heroContainer{
    flex-direction: column;
    justify-content: center;
    gap: 10px !important;
    align-items: center;
    text-align: center;
  }
  .hero picture {
    width: 270px;
    height: 270px;
    margin: 0 auto 30px;
}
.hero article p{
}
}



/* hero section end */


/* images slider start */
.imagesSlider{
  margin: 60px auto;
}

.owl-nav {
  position: absolute;
  top: 50%; /* Center buttons vertically */
  width: 100%; /* Make sure buttons span the carousel width */
  display: flex;
  justify-content: space-between; /* Place buttons on left and right */
  transform: translateY(-50%); /* Center them perfectly */
}

.owl-prev, .owl-next {
  background-color: rgba(0, 0, 0, 0.7); /* Dark translucent background */
  color: #fff; /* White text/icons */
  font-size: 20px!important; /* Icon size */
  border: none; /* Remove any default borders */
  border-radius: 50% !important; /* Circular buttons */
  width: 40px; /* Button size */
  height: 40px; /* Button size */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  transition: all 0.3s ease-in-out;
}

.owl-prev:hover, .owl-next:hover {
  background-color: var(--first-color) !important; /* Change to a lighter color on hover */
  transform: scale(1.1); /* Slight zoom effect */
}

.owl-prev {
  left: -50px; /* Position to the left of the carousel */
}

.owl-next {
  right: -50px; /* Position to the right of the carousel */
}

.owl-carousel .item {
  text-align: center;
  width: 250px;
  margin: 0 auto;
}


.owl-carousel .item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width:426px) {
  .imagesSlider{
    display: none !important;
  }
}

/* images slider end */

/* Tag start */
section.tag{
  background-color: var(--first-color);
  text-align: center;
  padding: 60px ;
}
@media(max-width:768px){
  section.tag{

    padding: 30px ;
  }
}
.tag h2{
  font-size: 35px;
}
.tag p{
  /* color: var(--second-color); */
  font-size: 22px;
  width: 70%;
  margin: 0 auto;
  line-height: 28px;
  color: var(--third-color);
}
@media(max-width:426px){

  .tag h2{
    font-size: 28px;
  }
  .tag p{
    /* color: var(--second-color); */
    font-size: 18px;
    width: 85%;
    margin: 0 auto;
    line-height: 20px;
  }
}

/*********/
section.tag2{
  background-color: var(--fourth-color);
  text-align: center;
  padding: 30px ;

}
.tag2 h2{
  font-size: 35px;
  color: var(--first-color);
}
.tag2 p{
  color: var(--second-color);
  font-size: 22px;
  width: 70%;
  margin: 0 auto;
  line-height: 28px;
  color: var(--third-color);
}
@media(max-width:426px){
  .tag2 p,.tag p{
    width: 100%;
    margin-top: 10px;
  }
}
/* Tag end */

/* feature start */
.feature{
  display: flex;
  justify-content: center;
  gap: 100px;
  align-items: center;
  flex-wrap: wrap;
  margin: 50px auto;
}
.feature:nth-child(odd){
  flex-direction: row;
}

.feature:nth-child(even){
  flex-direction: row-reverse;
}
.feature .content{
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: px;
}
.content .title{
  font-size: 32px;
  color: var(--first-color);
}
.content .subTitle{
  font-size: 22px;
  font-weight: bold;
  line-height: 18px;

}
.content .description{
  color: var(--second-color);
  font-size: 18px;
}
.feature picture{
  display: flex;
  width: 550px  ; /**********/
  height: auto; /**********/
  overflow: hidden;
  border-radius: 120px 0 ;
}
@media (max-width:1205px){
  .feature .content{
    width: 350px;
  }
  .feature picture{
    width: 450px;
  }
  
}
.feature picture img{
  width: 100%;
object-fit: cover; /**********/
}

@media(max-width:426px){
  .feature{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px !important;
    align-items: center;
    flex-wrap: wrap;
    margin: 50px auto;
  }
  .feature .content{
    width: 90%;
  }
  .feature picture{
    width: 90%;
    border-radius: 80px 0 ;
  }
}


/* feature end */


/* Pictures grid start */
/* Container grid */
.picsGrid {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 426px) {
  .picsGrid {
    display: flex;
  }
}

.picsGrid picture {
  width: 100px;
  border-radius: 5px;
  overflow: hidden;
}

.picsGrid picture img {
  object-fit: cover;
  width: 100%;
  cursor: pointer;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  animation: zoomIn 0.3s ease;
}

/* Zoom-in animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


/* Pictures grid end */






















/* Feedback start */
.Feedback{
  background-color: black;
  color: white;
  text-align: center;
  padding: 50px 0;
}
.Feedback .cards{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.Feedback .cards .card{
  width: 300px;
  background-color: var(--first-color);
  border-radius:  40px 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  color: var(--third-color);
}
.Feedback .card .icons{
  font-size: 20px;
  color: yellow;
}
.Feedback .card .comment{
  line-height: 18px;
}

.Feedback .card .person{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.person picture{
  width: 65px;
  height: 65px;
  padding: 10px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid black;
}
.person picture img{
  width: 100%;
  object-fit: cover;
}
.person .pDeatails{
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pDeatails p{
  margin: 0;
}
.pDeatails .pName{
  font-weight: bold;
}
/* Feedback end */

/* footer start */
.footer {
  background-color: var(--fourth-color);
  color: var(--first-color) !important;
  padding: 20px 0;
  direction: ltr;
}
.footer a{
  color: var(--third-color);
  transition: 0.3s;
}
.footer a:hover{
  color: var(--first-color);
  text-align: center;
}
footer ul{
  margin: 0;
  padding: 0;
}

.container2 {
  width: 90%;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.MainColumn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%; 
  max-width: 40%;
}

.MainColumn picture { 
  max-width: 100px;
}

.MainColumn picture img {
  width: 100%;
  object-fit: cover;
}
.MainColumn p{
  width: 100%;/***********/
  text-align: center;
}

div.social {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  font-size: 28px;
}

.secColumn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap; 
  width: 100%; 
  max-width: 50%;
}

h3 {
  margin-bottom: 20px !important;
  color: white;
}

.pages, .services, .contact {
  text-align: center;
  flex: 1 1 calc(33.33% - 20px); 
  min-width: 150px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.separate {
  width: 90%;
  margin: 20px auto;
  height: 1px;
  background-color: var(--second-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .MainColumn {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .social {
    justify-content: center;
  }

  .secColumn {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 100%;
  }

  .pages, .services, .contact {
    text-align: center;
    flex: none;
    width: 100%;
  }

  .separate {
    width: 90%;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 10px 0;
  }
}
/* footer end */

/* how to ride start */
.stepsSection{
  text-align: center;
  background-color: var(--third-color);
  padding: 25px 0;
  color: var(--third-color);
}
.stepsSection .steps{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap:wrap;
  
}
.step{
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0);
  background-color: var(--fourth-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 300px;
  height: 370px;
  transition: 0.5s;
  position: relative;
}
.step:hover{
  cursor: pointer;
}
.step span{
  position: absolute;
  background-color:#ec5c19d4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  top: 10px;
  left: 10px;
}

.step picture{
  display: flex;
  height:  100%;
  overflow: hidden;

}
.step picture img{
  object-fit: cover;
  height: 100%;
}
.step .instruct{
padding: 16px 10px 0 ;
background-color: rgba(0, 0, 0, 0.769);
/* text-align: start; */
}
.step .instruct{

  position: absolute;
  bottom: -130px;
  width: 100%;
  transition: 0.5s;
}


.step:hover .instruct {

  transition: 1s;
  bottom: 0px;
}

/* how to ride end */

/* download start */
.download {
  text-align: center;
  background-color: black;
  color: #EC5D19;
  padding: 25px 15px; 
}

.download h2 {
  font-size: 2rem; 
  margin-bottom: 20px;
}

.download .icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; 
  margin: 40px auto;
}

.download .icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: white;
  border: 1px solid white;
  border-radius: 20px;
  padding: 15px 30px;
  transition: 0.4s;
  flex: 1 1 auto; 
  max-width: 300px; 
}

.download .icons a:hover {
  color: var(--first-color);
  border: 1px solid var(--first-color);
}

.download .icons a p {
  margin: 0;
  font-size: 1.2rem; 
}

.download .icons a i {
  font-size: 2rem; 
}

@media (max-width: 768px) {
  .download h2 {
    font-size: 1.8rem; 
  }

  .download .icons {
    gap: 20px; 

  .download .icons a {
    flex: 1 1 45%; 
    padding: 10px 20px; 
  }

  .download .icons a p {
    font-size: 1rem; 
  }

  .download .icons a i {
    font-size: 1.8rem; 
  }
}
}
@media (max-width: 426px) {
  .download h2 {
    font-size: 1.5rem;
  }

  .download .icons a {
    flex: 1 1 100%; 
    padding: 10px 15px; 
  }

  .download .icons a p {
    font-size: 0.9rem; 
  }

  .download .icons a i {
    font-size: 1.5rem; 
  }
}


/* download end */




/* faq start */
/* FAQ Section Start */
section.faqs {
  padding: 50px 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    ),
    url("./Images/imgs/img14.jpg");
    /* url("/Images/imgs/img14.jpg"); */
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  min-height: 900px;
}

.faq-image {
  width: 400px;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid white;
}

.faq-image img {
  width: 100%;
  object-fit: cover;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  max-width: 420px;/***********/
  transition: 0.5s;
}

.faq-question {
  background-color: var(--first-color);
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  border: none;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;

}

.faq-question:hover,
.faq-question:focus {
  background-color: #b64714;
  transform: scale(1.02);
  outline: none;
}

.faq-answer {
  background-color: #f7f7f7;
  color: #333;
  padding: 15px 20px;
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: none;
  line-height: 1.4;
  overflow: hidden;
}

.faq-answer.open {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  section.faqs {
    padding: 30px 10px;
  }

  .faq-image {
    width: 100%;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}




/* faq end */


.Using{
  margin-top: 100px;
}
/*****Test******/