@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    padding: 0; margin: 0;
    box-sizing: border-box; text-transform: capitalize;
    transition: .4s linear;
    outline: none; border: none; text-decoration: none;
    text-transform: unset!important;
    font-family: 'Montserrat', sans-serif;

}

:root{
    --main-color: #01838F;
    --dark-main-color: #02838F;
    --yellow-color: #FEF59F;
    --white-color: #fff;
    --gray-color: #FAFBFB;
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

html{
    font-size: 65.5%;
    scroll-behavior: smooth;
    transition: .10s all;
}

body{
    overflow-x: hidden;
    background: #fff;
}

a{
    text-decoration: none!important;
}

ol, ul{
    padding-left: 0;
}

::-webkit-scrollbar{
    width: .6rem;
}

::-webkit-scrollbar-track{
    background: #DBEBEC;
}

::-webkit-scrollbar-thumb{
    background: var(--yellow-color);
}

/*Start header*/
nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 5%;
      background: transparent;
      position: relative;
      z-index: 10; z-index: 1000;
      position: fixed; top: 0; left: 0; width: 100%;
    }

    nav.black{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 5%;
      background: transparent;
      position: relative;
      z-index: 10; z-index: 1000;
      position: fixed; top: 0; left: 0; width: 100%;
    }


    .logo {
      font-size: 30px;
      font-weight: bold;
    }

    .logo img{
        height: 4rem;
        /*transition: filter 0.3s ease;*/

    }

    .logo span:nth-child(1),
    .logo span:nth-child(3) {
      color: #ccc;
    }

    .logo span:nth-child(2) {
      color: orange;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      width: 30px;
      cursor: pointer;
      gap: 6px;
    }

    .menu-toggle div {
      height: 3px;
      background: white;
      border-radius: 5px;
      transition: all 0.4s ease;
    }

    .bar1 { width: 100%; }
    .bar2 { width: 80%; }
    .bar3 { width: 60%; }

    .menu-toggle.active .bar1 {
      transform: rotate(45deg) translate(5px, 5px);
      width: 100%;
    }

    .menu-toggle.active .bar2 {
      opacity: 0;
    }

    .menu-toggle.active .bar3 {
      transform: rotate(-45deg) translate(5px, -5px);
      width: 100%;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-links a {
      color: rgb(230 236 255 / 70%);
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 1.6rem;
      font-weight: 500;
    }

    .nav-links a:hover {
      color: white;
    }

    .nav-links .active {
      color: white;
      font-weight: 600;
    }

    .contact-btn {
      background: var(--yellow-color);
        color: var(--dark-main-color)!important;
        padding: 12px 22px;
        border: 1.8px solid var(--yellow-color);
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem !important;
        font-weight: 600!important;
    }

    .contact-btn:hover {
      border: 1.8px solid var(--white-color);
      background-color: #fff;
    }

/* Scroll behavior styling */
nav.nav-scrolled {
  background-color: #01838f;
  transition: background 0.3s ease;
}

nav.nav-scrolled .nav-links a {
  color: white !important;
}

nav.nav-scrolled .contact-btn {
  background-color: transparent;
  color: black !important;
  border: 1.8px solid var(--white-color);

}

/*nav.nav-scrolled .logo img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}*/

nav.nav-scrolled .logo-img {
  content: url('https://d2rgo8dacqxio8.cloudfront.net/quicktaxi/logo.svg');
}

/*End header*/

/*Start home section*/
.quicktaxi-driver {
  padding: 6rem 5%;
  background: var(--main-color);
  color: #fff; padding-bottom: 0;
}

.quicktaxi-driver .row{
    margin-top: 4rem;
}

.quicktaxi-driver__title {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.4;
}

.quicktaxi-driver__highlight {
  color: var(--yellow-color);
}

.quicktaxi-driver__description {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 2rem 0;
  max-width: 52rem;
}

.quicktaxi-driver__buttons {
  gap: 2rem;
  margin-top: 2.5rem;
}

.quicktaxi-driver__btn-outline {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1.2rem 2.4rem;
  border: 2px solid var(--yellow-color);
  color: #fff;
  background: transparent;
  border-radius: 0.6rem;
  transition: all 0.3s ease;
}

.quicktaxi-driver__btn-outline:hover {
  background-color: var(--yellow-color);
  color: #007c89;
}

.quicktaxi-driver__btn-filled {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1.2rem 2.4rem;
  background-color: #ffef94;
  color: #007c89;
  border-radius: 0.6rem;
  border: none;
  transition: all 0.3s ease;
}

.quicktaxi-driver__btn-filled:hover {
  background-color: var(--white-color);
}

.quicktaxi-driver__image {
  max-width: 100%;
  height: auto;
}
/*End home section*/

/*Start quickdriven section*/
.quicktaxi-driveearn {
  padding: 4rem 5%;
  background-color: #ffffff;
}

.quicktaxi-driveearn__heading {
  font-size: 3.8rem;
  font-weight: 700;
  color: #02838F;
  margin-bottom: 2rem;
}

.quicktaxi-driveearn__subheading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #02838F;
  margin-bottom: 1rem;
}

.quicktaxi-driveearn__desc {
  font-size: 1.5rem;
  color: #02838F;
  font-weight: 400;
  line-height: 1.7;
  max-width: 60rem;
}
/*End quickdriven section*/

/*Start howitwork section*/
.quicktaxi-howitworks {
  padding: 6rem 5%;
  background-color: #fff6a8;
  position: relative;
}

.quicktaxi-howitworks__title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #01A7C3;
  margin-bottom: 1.5rem;
}

.quicktaxi-howitworks__desc {
  font-size: 1.6rem;
  color: #01A7C3;
  font-weight: 400;
  max-width: 55rem;
  margin-bottom: 4rem;
}

.quicktaxi-howitworks__step {
  margin-bottom: 3rem;
}

.quicktaxi-howitworks__step h5 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #01A7C3;
  margin-bottom: 0.8rem;
  position: relative;
}

.quicktaxi-howitworks__step{
    border-left: 4.2px solid #01A7C3;
    padding-left: 2rem;
}

.dashed{
    border-left: 3.2px dashed #01A7C3;
    padding-left: 2rem;
}

.quicktaxi-howitworks__step p {
  font-size: 1.5rem;
  color: #01A7C3;
  line-height: 1.6;
}

.quicktaxi-howitworks__btn {
  margin-top: 2rem;
}

.quicktaxi-howitworks__btn button {
  background-color: #01a7c3;
  color: #fff;
  padding: 1.2rem 2.4rem;
  font-size: 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.quicktaxi-howitworks__btn button:hover {
  background-color: #00969b;
}

/*.quicktaxi-howitworks__images {
  text-align: center;
}*/

.quicktaxi-howitworks__images img {
  max-width: 100%;
  height: auto;
}

.quicktaxi-howitworks-img img{
    width: 90%; display: block;
    margin: auto;
}

.howit-vector{
    position: absolute;
    bottom: 0;
    left: -122px;
    max-width: 270px;
}
/*End howitwork section*/

/*Start quicktaxi why section*/
.quicktaxi-whydrive {
  padding: 6rem 5%;
  background-color: #01A7C3;
  color: #fff;
  text-align: center;
}

.quicktaxi-whydrive__title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.quicktaxi-whydrive__subtitle {
  font-size: 1.6rem;
  max-width: 70rem;
  margin: 0 auto 4rem;
  font-weight: 400;
}

.quicktaxi-whydrive__card {
  background: transparent;
  padding: 2rem 1rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.quicktaxi-whydrive__card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.quicktaxi-whydrive__icon img{
  width: 60px;
  margin-bottom: 1.5rem;
}

.quicktaxi-whydrive__feature-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.quicktaxi-whydrive__feature-desc {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #e3f6f9;
  max-width: 28rem;
  margin: 0 auto;
}

.quicktaxi-whydrive__btn {
  margin-top: 4rem;
  display: flex; align-items: center; gap: 1.5rem;
  justify-content: center;
}

.quicktaxi-whydrive__btn-driver {
  font-size: 1.6rem;
  padding: 1rem 2.5rem;
  border: 2.4px solid var(--yellow-color);
  box-shadow: var(--box-shadow);
  border-radius: 8px;
  background-color: transparent;
  color: #fff; font-weight: 600;
  display: inline-flex;
  align-items: center;
  height: 60px;
  text-decoration: none;
  transition: 0.3s ease;
}

.quicktaxi-whydrive__btn a:hover {
  background-color: #fff;
  color: #00a6c4; border-radius: 8px;
}

.quicktaxi-whydrive__btn a img{
    height: 60px;
}
/*End quicktaxi why section*/

/*Start review section*/
.quicktaxi-community-section {
  padding: 6rem 5%;
  background-color: #F4F4F4;
}

.quicktaxi-community-section__top h2 {
  font-size: 3.6rem;
  color: #02838F;
  font-weight: 700;
  margin-bottom: 1rem;
}


.quicktaxi-community-section__top p {
  color: #02838F;
  font-size: 1.6rem;
  font-weight: 400;
}

.quicktaxi-community-section__seeall {
  display: block;
  text-align: right;
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #02838F;
  text-decoration: none;
}

.quicktaxi-community-section__carousel .quicktaxi-community-section__card {
  border-radius: 0.6rem;
  padding: 2.5rem;
  height: 100%;
}

.quicktaxi-community-section__quote-icon {
  font-size: 5rem;
  color: #02838F;
  margin-bottom: 1rem;
  border-bottom: 2px solid #02838F;
}

.quicktaxi-community-section__text {
  font-size: 1.6rem;
  font-weight: 600;
  color: #02838F;
  line-height: 1.6;
  margin-bottom: 2rem;
}


.quicktaxi-community-section__user {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.quicktaxi-community-section__user img {
  width: 45px !important;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.quicktaxi-community-section__user-info {
  font-size: 1.4rem;
  color: #02838F;
  font-weight: 600;
}

.quicktaxi-community-section__user-info span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #02838F;
}
/*End review section*/

/*Start plan section*/
.plans-features-section {
  padding: 6rem 5%;
  background-color: #ffffff;
  position: relative;
}

.plans-features-section .section-subtitle {
  text-align: center;
  color: #01A7C3;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.plans-features-section .section-title {
  text-align: center;
  color: #01A7C3;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  max-width: 700px; margin: auto;
}

.plans-features-section .section-desc {
  text-align: center;
  color: #01A7C3;
  font-size: 1.4rem;
  max-width: 60rem;
  margin: 2.6rem auto;
  line-height: 1.7;
}

.plans-features-section .join-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.plans-features-section .join-btn a {
  background-color: #01A7C3;
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  padding: 1.2rem 3rem;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 181, 192, 0.2);
}

.plans-features-section .join-btn a:hover {
  background-color: #0098a2;
}

.plans-features-section .feature-card {
  background-color: #f9f9f9;
  border-radius: 1rem;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover{
    background-color: #01A7C3;
}

.feature-card:hover .feature-title{
    color: var(--white-color);
}

.feature-card:hover .feature-text{
    color: var(--white-color);
}

.feature-card:hover .feature-icon{
    background-color: #ffffff2e;
}

.plans-features-section .feature-card:hover {
  transform: translateY(-5px);
}

.plans-features-section .feature-icon {
  background-color: #01A7C3;
  color: #fff;
  font-size: 2rem;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  margin-bottom: 1.5rem;
}

.plans-features-section .feature-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #01A7C3;
  margin-bottom: 0.8rem;
}

.plans-features-section .feature-text {
  font-size: 1.6rem;
  color: #01A7C3;
  line-height: 1.7;
}

.plans-features-section .highlight {
  background-color: #01A7C3;
  color: #fff;
}

.plans-features-section .highlight .feature-title,
.plans-features-section .highlight .feature-text {
  color: #fff;
}

.plans-features-section .highlight .feature-icon {
  background-color: #fff;
  color: #00b5c0;
}
/*End plan section*/

/*Start download app section*/
.download-app-section {
  padding: 6rem 5%;
  background-color: #e5f07e;
}

.download-app-section .download-box {
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 4rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.download-app-section .download-left {
  flex: 1 1 60%;
  max-width: 100%;
}

.download-app-section .download-left h6 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #02838F;
  margin-bottom: 1rem;
}

.download-app-section .download-left h2 {
  font-size: 3.4rem;
  font-weight: 700;
  color: #02838F;
  margin-bottom: 1.5rem;
}

.download-app-section .download-left p {
  font-size: 1.6rem;
  color: #02838F;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.download-app-section .download-left p:last-child {
  color: #01A7C3;
  font-weight: 700;
  font-size: 1.6rem;
}

.download-app-section .download-right {
  flex: 1 1 30%;
  max-width: 100%;
  text-align: center;
  margin-top: 2rem;
}

.download-app-section .download-right .qr-icon {
  font-size: 7rem;
  color: #007382;
  margin-bottom: 2rem;
}

.download-app-section .download-right .btn-download {
  background-color: #007382;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 0.6rem;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.download-app-section .download-right .btn-download:hover {
  background-color: #005e6c;
}

.download-right-qr{
    margin-bottom: 3.5rem;
}

.download-right-qr img{
    max-width: 200px;
    width: 100%;
}
/*End download app section*/

/*Start footer section*/
.quick-taxi-footer {
  padding: 6rem 5%;
  background-color: #f8fdfc;
  color: #007c88;
}

.quick-taxi-footer-logo {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.quick-taxi-footer-text {
  font-size: 2rem;
  line-height: 1.6;
  margin: 2.5rem 0;
  color: #02838F;
  font-weight: 400;
  max-width: 360px;
}

.quick-taxi-footer-input-form {
  display: flex;
  align-items: center;
  max-width: 320px;
  border-bottom: 2px solid #007c88;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.quick-taxi-footer-input-form input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 1.6rem; font-weight: 600;
  padding: 0.5rem 1rem 0.5rem 0;
  color: #007c88;
}

.quick-taxi-footer-input-form input::placeholder {
  color: #02838F!important;
  opacity: .4rem;
}

.quick-taxi-footer-input-form button {
  background: none;
  border: none;
  color: #007c88;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 0.5rem;
}

.quick-taxi-footer-input-form button:hover {
  color: #005f69;
}

.quick-taxi-footer-collab {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.quick-taxi-footer-collab img {
  height: 2.2rem;
}

.quick-taxi-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-taxi-footer-links li {
  margin-bottom: 1.5rem;
}

.quick-taxi-footer-links a {
  font-size: 1.6rem;
  font-weight: 600;
  color: #007c88;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-taxi-footer-links a:hover {
  text-decoration: underline!important;
}

.quick-taxi-footer-social {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.quick-taxi-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #128b96;
    border-radius: 50%;
}

.quick-taxi-footer-links{
    margin-top: 3rem;
}

.quick-taxi-footer-social i {
  font-size: 1.6rem;
  color: #ffffff;
}

.quick-taxi-footer-social a:hover {
  background-color: var(--yellow-color);
}

.quick-taxi-footer-social a:hover i{
    color: var(--main-color);
}

.quick-taxi-footer-collab{
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 1.5rem; font-size: 1.6rem;
    font-weight: 500;
    margin-top: 2rem;
}

.quick-taxi-footer-collab img{
    height: 4rem;
}

.quick-taxi-footer-logo img{
    height: 5rem;
}
/*End footer section*/

/*Start contact page ui*/
.quick-taxi-contact-section {
  padding: 4rem 5%;
  background-color: #ffffff;
}

.quick-taxi-contact-section .row{
    margin-top: 7rem;
}

.quick-taxi-contact-form {
  background-color: #00b4d8;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  color: #fff;
}

.quick-taxi-contact-form label {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.quick-taxi-contact-form input, .quick-taxi-contact-form select {
    width: 100%;
    font-size: 1.6rem;
    padding: 1.4rem 1.2rem;
    border-radius: 0.7rem;
    border: none;
    margin-bottom: 2rem;
    outline: none;
}

.quick-taxi-contact-form input::placeholder{
    color: #01A7C3;
}

.quick-taxi-contact-form select {
  appearance: none;
}

.quick-taxi-contact-form .form-note {
  font-size: 1.2rem;
  color: #e0f7fa;
  margin-bottom: 1.5rem;
}

.quick-taxi-contact-form button {
  background-color: #fef08a;
  color: #01A7C3;
  font-size: 1.6rem;
  padding: 0.8rem 2.5rem;
  border: none;
  border-radius: 0.6rem;
  font-weight: 600;
  transition: 0.3s;
}

.quick-taxi-contact-form button:hover {
  background-color: #fff176;
}

.quick-taxi-contact-right h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #01A7C3;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-taxi-contact-right h2 img{
    width: 50px;
}

.quick-taxi-contact-right h2 span {
  display: block;
  font-weight: 400;
  color: #00b4d8;
}

.quick-taxi-contact-right p {
    font-size: 1.6rem;
    margin: 2rem 0;
    color: #01a7c3;
    max-width: 500px;
    line-height: 1.7;
}

.quick-taxi-contact-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.quick-taxi-contact-icons .contact-item {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #007c88;
  font-weight: 500;
  gap: 1rem;
}

.contact-item h4{
    font-size: 2rem;
    font-weight: 600;
    color: #01A7C3;
}

.quick-taxi-contact-icons i {
  background-color: #00b4d8;
  color: #fff;
  padding: 0.8rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  margin-right: 1rem;
}

.contact-item-icon{
    width: 45px;
    height: 45px;
    display: flex;
    background: #01a7c3;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.contact-item-icon img{
    width: 20px;
}

.contact-item{
    font-size: 2rem;
    font-weight: 600;
}
/*End contact page*/

.faq-section {
  padding: 6rem 5%;
  text-align: center;
  background-color: #F9FAFB;
}

.faq-section .faq-badge {
  background-color: #008c9e;
  color: #fff;
  font-size: 1.4rem;
  padding: 0.4rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.faq-section-heading h2{
  text-align: center;
    color: #01A7C3;
    font-size: 3.6rem;
    font-weight: 700;
    max-width: 700px;
    margin: auto;
    margin-bottom: 2rem;
}

.faq-section-heading h2 span{
    color: #02838F;
}

.faq-section .accordion-item {
  border: 2px solid #01a7c333;
  border-radius: 8px !important;
  margin-bottom: 1.5rem;
  overflow: hidden;
/*  box-shadow: 0 4px 12px rgba(0,0,0,0.05);*/
}

.faq-section .accordion-button {
  font-size: 1.8rem;
  font-weight: 600;
  color: #008c9e;
  background-color: #f5fdff;
  padding: 2rem 2rem;
  border: none;
  transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #e3f9ff;
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-body {
    font-size: 1.6rem;
    padding: 1.6rem 2rem;
    background-color: #ffffff;
    text-align: left;
    color: #008c9e;
    line-height: 1.7;
}

.faq-section .accordion-button::after {
  content: '\2b'; /* plus icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.6rem;
  color: #008c9e;
  background-image: none;
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: '\f068'; /* minus icon */
  transform: rotate(0);
}

/*Start about page */
.movement-on-wheels-section {
  background-color: #01A7C3;
  padding: 6rem 5%;
  color: #fff;
  text-align: center;
}

.movement-on-wheels-section{
    margin-top: 7rem;
}

.movement-on-wheels-section h2 {
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.movement-on-wheels-section p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #f2f2f2;
  max-width: 750px;
  margin: 0 auto 3rem auto;
}

.movement-on-wheels-section p strong {
  font-weight: 700;
  color: var(--yellow-color);
}

.about-illustration img {
  max-width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
}
/*2*/
.plans-features-section {
  padding: 6rem 5%;
  background-color: #fff;
}

.plans-features-section .section-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #01A7C3;
  margin-bottom: 1.2rem;
}

.plans-features-section .section-subheading {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #01A7C3;
  margin-bottom: 3rem;
}

.plans-features-section .section-description {
  font-size: 2rem;
  color: #01A7C3;
  font-weight: 500;
  line-height: 1.7;
  padding-bottom: 1.5rem;
  margin-bottom: 4rem;
  border-bottom: 3px solid #01A7C3;
}

 .rocket-icon img{
  width: 100%;
  max-width: 150px;
}

.plans-features-section .feature-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 1rem;
}

.plans-features-section .feature-icon {
  background-color: #01A7C3;
  border-radius: 0.6rem;
  margin-bottom: 1rem;
  width: 65px; height: 65px;
  display: flex; align-items: center;
  justify-content: center;
}

.plans-features-section .feature-icon img{
    width: 30px;
}

.plans-features-section .feature-title {
  font-size: 2rem;
  font-weight: 700;
  color: #01A7C3;
  margin-bottom: 1rem;
}

.plans-features-section .feature-text {
  font-size: 1.6rem;
  color: #01A7C3;
  line-height: 1.6;
}
/*3*/
.OurValuesSection {
  padding: 6rem 5%;
  background-color: #02838F;
}

.OurValuesSection-title {
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white-color);
}

.OurValuesSection-subtitle {
  font-size: 1.6rem;
  max-width: 60rem;
  color: #d3f5f5;
  margin-bottom: 2rem;
}

.OurValuesSection-btn a {
  padding: 1.2rem 2.4rem;
  background-color: #01A7C3;
  color: white;
  font-weight: 600;
  font-size: 1.4rem;
  border-radius: 0.6rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.OurValuesSection-btn a:hover {
  background-color: #00a0b0;
}

.OurValuesSection-box {
  background-color: #01A7C3;
  border-radius: 1rem;
  padding: 3rem 2.4rem;
  color: white;
  transition: transform 0.3s ease;
  height: 100%;
}

.OurValuesSection-box:hover {
  transform: translateY(-4px);
}

.OurValuesSection-icon img{
  width: 40px;
  margin-bottom: 1rem;
}

.OurValuesSection-box-title {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.OurValuesSection-box-text {
  font-size: 1.6rem;
  color: #FAFBFB;
  line-height: 1.7;
}
/*4*/
.quicktaxi-testimonial-section {
  padding: 6rem 5%;
  background-color: #F9FAFB;
  text-align: center;
  position: relative;
}

.quicktaxi-testimonial-section h5 {
  color: #00838f;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.quicktaxi-testimonial-section h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #02838F;
  margin-bottom: 3rem;
}

.quicktaxi-testimonial-section .testimonial-quote {
  font-size: 1.6rem;
  font-weight: 600;
  color: #02838F;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  position: relative;
  line-height: 1.6;
}

.quicktaxi-testimonial-section .testimonial-quote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 4.5rem;
  color: #02838F;
  display: block;
  margin-bottom: 1rem;
}

.quicktaxi-testimonial-section .testimonial-author {
  margin-top: 2rem;
}

.quicktaxi-testimonial-section .testimonial-author img {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: block;
}

.quicktaxi-testimonial-section .testimonial-author h6 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #02838F;
  margin-bottom: 0.2rem;
}

.quicktaxi-testimonial-section .testimonial-author p {
  font-size: 1.4rem;
  color: #02838F;
  margin: 0;
}

.owl-nav{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 2;
  padding: 0 1rem;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background-color: #00a8c6 !important;
  color: #fff !important;
  border-radius: 0.8rem !important;
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem !important;
  transition: background 0.3s ease;
}

.owl-nav button:hover {
  background-color: #007b8a !important;
}
/*End about page*/

/*Start how it work main section*/
.quicktaxi-working {
  padding: 6rem 5%;
  position: relative;
  background-color: #FEF59F;
}

.quicktaxi-working .container{
    margin-top: 7rem;
    max-width: 100%;
}

.quicktaxi-working .quicktaxi-working-content {
  max-width: 900px;
  text-align: left;
}

.quicktaxi-working .quicktaxi-working-heading {
  font-size: 4.4rem;
  font-weight: 700;
  color: #01A7C3;
  margin-bottom: 0.5rem;
}

.quicktaxi-working .quicktaxi-working-subheading {
  font-size: 4.4rem;
  color: #01A7C3;
}

.quicktaxi-working .quicktaxi-working-description {
  font-size: 1.8rem;
  color: #01A7C3;
  margin-top: 2rem;
  line-height: 1.7;
}

.howit-vector2 {
    position: absolute;
    right: -17px;
    max-width: 270px;
    top: 50%;
    transform: translate(53%, -50%);
}

/*2*/
.quicktaxi-howitworks-driver {
  padding: 6rem 5%;
  background-color: #02838F;
  position: relative;
}

.quicktaxi-howitworks__title-driver {
  font-size: 3.6rem;
  font-weight: 700;
  color: #FAFBFB;
  margin-bottom: 1.5rem;
}

.quicktaxi-howitworks__desc-driver {
  font-size: 1.6rem;
  color: #FAFBFB;
  font-weight: 400;
  max-width: 55rem;
  margin-bottom: 4rem;
}

.quicktaxi-howitworks__step-driver {
  margin-bottom: 3rem;
}

.quicktaxi-howitworks__step-driver h5 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FAFBFB;
  margin-bottom: 2rem;
  position: relative;
}

.quicktaxi-howitworks__step-driver{
    border-left: 4.2px solid #FAFBFB;
    padding-left: 2rem;
}

.dashed-driver{
    border-left: 3.2px dashed #FAFBFB;
    padding-left: 2rem;
}

.quicktaxi-howitworks__step-driver p {
  font-size: 1.5rem;
  color: #FAFBFB;
  line-height: 1.6;
}

.quicktaxi-howitworks__btn-driver {
  margin-top: 2rem;
}

.quicktaxi-howitworks__btn-driver button {
  background-color: #fff;
  color: #02838F;
  padding: 1.2rem 2.4rem;
  font-size: 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.quicktaxi-howitworks__btn-driver button:hover {
  background-color: var(--yellow-color);
  color: #02838F;
}

.quicktaxi-howitworks__images {
}

.quicktaxi-howitworks__images img {
  max-width: 100%;
  height: auto;
}

.quicktaxi-howitworks-img img{
    width: 90%; display: block;
    margin: auto;
}

.howit-vector{
    position: absolute;
    bottom: 0;
    left: -122px;
    max-width: 270px;
}

.quicktaxi-howitworks__images h2{
    font-size: 3.6rem;
    font-weight: 700;
    color: #FAFBFB;
    margin: 0;
    display: flex; align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.quicktaxi-howitworks__images h2 img{
    width: 35px;
}

.quicktaxi-howitworks__images p{
    font-size: 1.6rem;
    color: #FAFBFB;
    margin: 0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/*3*/
.quicktaxi-howitworks-driver2 {
  padding: 6rem 5%;
  background-color: #FAFBFB;
  position: relative;
}

.quicktaxi-howitworks__title-driver2 {
  font-size: 3.6rem;
  font-weight: 700;
  color: #01A7C3;
  margin-bottom: 1.5rem;
}

.quicktaxi-howitworks__desc-driver2 {
  font-size: 1.6rem;
  color: #01A7C3;
  font-weight: 400;
  max-width: 55rem;
  margin-bottom: 4rem;
}

.quicktaxi-howitworks__step-driver2 {
  margin-bottom: 3rem;
}

.quicktaxi-howitworks__step-driver2 h5 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #01A7C3;
  margin-bottom: 2rem;
  position: relative;
}

.quicktaxi-howitworks__step-driver2{
    border-left: 4.2px solid #01A7C3;
    padding-left: 2rem;
}

.dashed-driver2{
    border-left: 3.2px dashed #01A7C3;
    padding-left: 2rem;
}

.quicktaxi-howitworks__step-driver2 p {
  font-size: 1.5rem;
  color: #01A7C3;
  line-height: 1.6;
}

.quicktaxi-howitworks__btn-driver2 {
  margin-top: 2rem;
}

.quicktaxi-howitworks__btn-driver2 button {
  background-color: #01A7C3;
  color: #fff;
  padding: 1.2rem 2.4rem;
  font-size: 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.quicktaxi-howitworks__btn-driver2 button:hover {
  background-color: #00969b;
}

.quicktaxi-howitworks__images {
}

.quicktaxi-howitworks__images img {
  max-width: 100%;
  height: auto;
}

.quicktaxi-howitworks-img img{
    width: 80%; display: block;
    margin: auto; 
    margin-top: 2rem;
}

.howit-vector{
    position: absolute;
    bottom: 0;
    left: -122px;
    max-width: 270px;
}

.quicktaxi-howitworks__images2 h2{
    font-size: 3.6rem;
    font-weight: 700;
    color: #01A7C3;
    margin: 0;
    display: flex; align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.quicktaxi-howitworks__images2 h2 img{
    width: 35px;
}

.quicktaxi-howitworks__images2 p{
    font-size: 1.6rem;
    color: #01A7C3;
    margin: 0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/*4*/
.smart-systems-rides {
  padding: 6rem 5%;
  background-color: #F4F4F4;
  text-align: center;
}

.smart-systems-rides .container h2 span{
    color: #02838F;
}

.smart-systems-rides .container h2 {
    font-size: 4.2rem;
    font-weight: 700;
    color: #01A7C3;
    margin-bottom: 1rem;
}

.smart-systems-rides-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  color: #02838F;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.smart-systems-rides-box {
  background-color: #007d8a;
  border-radius: 1rem;
  padding: 2rem;
  color: #ffffff;
  height: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.smart-systems-rides-tag {
    display: inline-block;
    background-color: #2bb4a838;
    color: #ffffff;
    padding: 1.4rem 1.2rem;
    border-radius: 0.6rem;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.smart-systems-rides-box-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  margin-top: 1.4rem;
}

.smart-systems-rides-box-text {
  font-size: 1.4rem;
  color: #e0f7f8;
  line-height: 1.6;
}
/*End how it work main section*/

/*join as driver page start */
.quicktaxi-cta-section {
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #02838F;
}

.quicktaxi-cta-section-text{
    max-width: 800px;
    margin: auto;
    margin-top: 7rem;
}

.quicktaxi-cta-section h6 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #FAFBFB;
}

.quicktaxi-cta-section h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.3;
  color: #FAFBFB;
  margin-bottom: 2.5rem;
}

.quicktaxi-cta-section p {
  font-size: 1.5rem;
  color: #cde8ec;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.quicktaxi-cta-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  height: 55px;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.quicktaxi-cta-form input {
  flex: 1;
  background-color: #A7D3D7;
  padding: 1.4rem 2rem;
  color: var(--main-color);
  font-size: 1.6rem;
  border: none;
  font-weight: 600;
  outline: none;
}

.quicktaxi-cta-form input::placeholder{
    color: var(--main-color);
    font-weight: 600;
    font-size: 1.6rem;
}

.quicktaxi-cta-form button {
  background-color: #01A7C3;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.4rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quicktaxi-cta-form button:hover {
  background-color: #03789e;
}

.quicktaxi-cta-icons-left,
.quicktaxi-cta-icons-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  color: #fdfdfd99;
}

.quicktaxi-cta-icons-left {
  left: 2rem;
}

.quicktaxi-cta-icons-right {
  right: 2rem;
}

.quick-taxi-cta-home-deco1{
    width: 80px;
    position: absolute;
    top: 60%;
    left: 300px;
}

.quick-taxi-cta-home-deco2{
    width: 56px;
    position: absolute;
    top: 60%;
    right: 300px;
}
/*2*/
.quicktaxi-requirements-section {
  padding: 6rem 5%;
  text-align: center;
  background-color: #FAFBFB;
}

.quicktaxi-requirements-section h6 {
  color: #02838F;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.quicktaxi-requirements-section h2 {
  font-size: 3.2rem;
    font-weight: 700;
    color: #02838F;
    margin-bottom: 2rem;
}

.quicktaxi-requirements-section p.requirements-subtext {
  font-size: 1.6rem;
  color: #02838F;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.quicktaxi-requirements-item {
  padding: 2rem;
  text-align: center;
}

.quicktaxi-requirements-icon{
    margin-bottom: 2rem;
}

.quicktaxi-requirements-icon img{
  width: 40px;
}

.quicktaxi-requirements-item h5 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #02838f;
    margin: 0;
    margin-bottom: 0.8rem;
}

.quicktaxi-requirements-item p {
  font-size: 1.6rem;
  color: #02838f;
  margin: 0;
  line-height: 1.7;
}

.feature-vector{
    position: absolute;
    top: 70px;
    right: -122px;
    max-width: 270px;
}
/*3*/
.simple-onboarding-process {
  padding: 6rem 5%;
  background-color: #FAFBFB;
}
.simple-onboarding-process .title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #01A7C3;
  margin: 0;
}
.simple-onboarding-process .desc {
  font-size: 1.6rem;
  color: #01A7C3;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.simple-onboarding-process .checklist {
  list-style: none;
  padding-left: 0;
}
.simple-onboarding-process .checklist li {
  font-size: 1.4rem;
  color: #01A7C3;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.simple-onboarding-process .checklist li i {
  color: #DBE577;
  margin-right: 1rem;
  font-size: 2.7rem;
}
.simple-onboarding-process label {
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
  font-weight: 600;
  color: #01A7C3;
}
.simple-onboarding-process input,
.simple-onboarding-process select,
.simple-onboarding-process textarea {
  width: 100%;
  padding: 1.5rem 1.2rem;
  border-radius: 0.6rem;
  border: none;
  background-color: #7CD1DF;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white-color);
  resize: none;
}

.simple-onboarding-process select option{
    background-color: var(--white-color);
    color: var(--dark-main-color);
}

.simple-onboarding-process input::placeholder{color: var(--white-color);}
.simple-onboarding-process textarea::placeholder{color: var(--white-color);}
.simple-onboarding-process .btn-submit {
  background-color: #00a9c8;
  color: #fff;
  padding: 0.8rem 3rem;
  font-size: 1.4rem;
  font-weight: 600!important;
  border: none;
  border-radius: 0.6rem;
  margin-top: 2rem;
}


/*Media quaries*/
@media screen and (max-width: 1246px){
    .quick-taxi-cta-home-deco1{
    width: 80px;
    position: absolute;
    top: 60%;
    left: 50px;
}

.quick-taxi-cta-home-deco2{
    width: 56px;
    position: absolute;
    top: 60%;
    right: 50px;
}
}

@media screen and (max-width: 991px){
html{
    font-size: 55%;
}

.OurValuesSection-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 2rem;
  }

  .OurValuesSection-subtitle {
    margin-bottom: 0;
  }

}

@media screen and (max-width: 991px){ 
.menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #154347;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    padding: 0 30px;
    pointer-events: none;
  }

  .nav-links.open {
    max-height: 500px;
    opacity: 1;
    padding: 20px 30px;
    pointer-events: auto;
  }

  .nav-links a,
  .contact-btn {
    padding: 10px 0;
  }

  .contact-btn{
    padding: 10px 17px!important;
  }
}

@media screen and (max-width: 768px){
  .quicktaxi-driver__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .quicktaxi-driver__btn-outline,
  .quicktaxi-driver__btn-filled {
    width: 100%;
    text-align: center;
  }

  /*.quicktaxi-driver .row{
    margin-top: 6rem;
    flex-direction: column-reverse;
  }*/

  .quicktaxi-driver-text{
    text-align: center;
  }

  .quicktaxi-driver__btn-outline{
    font-size: 2rem;
    padding: 1.4rem 2.4rem;
  }

  .quicktaxi-driver__btn-filled{
    font-size: 2rem;
    padding: 1.4rem 2.4rem;
  } 

  .quicktaxi-driveearn__heading {
    text-align: center;
  }

  .quicktaxi-driveearn__subheading,
  .quicktaxi-driveearn__desc {
    text-align: center;
  }

  .quicktaxi-community-section__seeall {
    text-align: center;
    margin-top: 2rem;
  }

  .download-app-section .download-box {
    flex-direction: column;
    text-align: center;
  }

  .download-app-section .download-left, 
  .download-app-section .download-right {
    flex: 1 1 100%;
    margin-top: 2rem;
  }

  .howit-vector {
    left: 50%;
    opacity: .1;
    max-width: 270px;
    bottom: 0;
    transform: translate(-50%, -50%);
}

.owl-nav {
    top: 105%;
    justify-content: center;
    gap: 2rem;
  }

  .feature-vector {
    opacity: .3;
    max-width: 100px;
    bottom: 0;
    transform: translate(-50%, -50%);
    right: -62px;
}

.rocket-icon img {
    margin: auto;
    display: block;
}

.howit-vector2 {
    opacity: .1;
}

.quicktaxi-howitworks__images{margin-top: 2rem}
}


@media screen and (max-width: 650px){ 
    .quicktaxi-whydrive__feature-desc{
        max-width: 100%;
    }

    .quick-taxi-cta-home-deco1{
        width: 30px;
        top: 30%;
        left: 14px;

    }

    .quick-taxi-cta-home-deco2{
        width: 30px;
        top: 30%;
        right: 14px;
    }
}

@media screen and (max-width: 450px){
html{
    font-size: 50%;
}

}
