:root {
  --primary-color: #ffffff;
  --Navbar-color: #EAEFEF;
  --black-color: #000000;
  --main-color: #4073B9;
  --boxshadow-color: rgba(149, 157, 165, 1);
  --border-color: #521c0d;
  --blue-color:#4073B9;
}
*{
     font-family: "KoHo", sans-serif;
     box-sizing: border-box;
     margin: 0;
     padding: 0;
}
a{
    text-decoration: none;
    color: var(--black-color);
}
.row {
  --bs-gutter-x: 0 !important;
}
p{
  margin-bottom: 0;
}
h3{
  margin-bottom: .25rem !important;
}
.navbar {
  background-color: var(--blue-color);
  color: var(--main-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
   position: sticky;
  top: 0;
  z-index: 100;
 
}

.menu {
  display: flex;
  gap: 1.5rem;
}
.menu a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.menu a.active,
.sidebar a.active {
  color:var(--blue-color);
  background-color:var(--primary-color);
  border-radius: 4px;
}
.menu a.active:hover,
.sidebar a.active:hover {
  color:var(--blue-color);
}
.menu a:hover,
.sidebar a:hover{
  color: var(--primary-color);
}
.hamburger {
  display: none;
  cursor: pointer;
}
.sidebar {
  position: fixed;
  top: 5.7rem;
  right: 0;
  width: 65%;
  background-color: var(--main-color);
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
  height: calc(100% - 5.7rem);
  
}
.sidebar a {
  text-decoration: none;
  font-size: 1.1rem;
   font-weight: 600;
  transition: all 0.3s ease;
  color: var(--primary-color);

}
@media (max-width: 768px) {
  .menu {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .sidebar.active {
    display: flex;
  }
}
/* 
Home page Banner start */

.main-image {
  width: 100%;
}
span.color-main{
    color: var(--main-color);
} 
.benefit-home-container {
    background-color: var(--main-color);
}
.benefit-image h1{
  color: #4073B9;
}
/* footer section */
footer{
    background-color: var(--blue-color);
}
.copyright-section{
    border-top: 2px solid var(--primary-color);
}
footer p a,footer h3,.copyright-section p ,.copyright-section p a{
  color: var(--primary-color);
}

a sup{
  font-size: .6rem;
}
.contact-footer p img{
  margin: 0.1rem;
}
@media(max-width:576px){
  .copyright-section{
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
  }
   .copyright-section p{
    padding: 0.2rem 0 !important;
   }
}

/* app store */
.app-available{
    background-image: linear-gradient(to right, var(--main-color), var(--black-color));
}
/* services start */
#benefit-container ,#choose-container,#team-container{
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.benefit-card{
 width: 30%;
 background-color: var(--primary-color);
 padding: 0.8rem;
 border-radius: 6px;
 margin: 0.7rem 0;
 }
.benefit-card span{
    display: flex;
} 
.benefit-card span h3{
    padding-left: 0.3rem;
}
@media (max-width :768px){
    #benefit-container{
    display: block;
    width: 100%;
}
   .benefit-card {
 width: 100%;
 margin: 0.8rem 0;
   } 
}

/* choose card start */
.choose-card div{
    background-color: var(--main-color);
    border-radius: 50%;
    height: 120px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;   
}
.choose-card{
 width: 30%;
 padding: 0.8rem;
 margin: 0.4rem 0;
 text-align: center;
  display: flex;
  
    justify-content: center;
    align-items: center;
    flex-direction: column;   
 }
 @media (max-width :768px){
    #choose-container{
    display: block;
    width: 100%;
}
   .choose-card {
 width: 100%;
 margin: 0.8rem 0;
   } 
}

/* team member start */
.team-card div{
    background-color: var(--main-color);
    border-radius: 50%;
    height: 120px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;   
}

.team-card{
 width: 20%;
 padding: 1rem;
 margin: 1rem 0;
 text-align: center;
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    border-radius: 6px;  
 }
  .team-card p{
 margin: 0.5rem 0;
 }
 @media (max-width:1460px){
.team-card h4{
  height: 40px;
 }
 .team-card p{
  height: 55px;
 }
 }
 @media (max-width:992px){
 .team-card p{
  height: 60px;
 }
 }
 @media (max-width:769px){
.team-card h4 ,.team-card p{
  height: 35px;
 }
 }
 
 .team-card button{
    color: var(--main-color);
    margin: 0.5rem 0;
 }
 @media (max-width :768px){
    #team-container{
    display: block;
    width: 100%;
}
   .team-card {
 width: 100%;
 margin: 0.8rem 0;
   } 
}

/* about page start */
.about-hero-image .about-image h1 {
  font-size: 5vw !important;
  top: 38% !important;
  left: 5%;
}
@media(max-width:768px){
.about-us-column{
  flex-direction: column-reverse !important;
}
}
.subscription{
  background-color: var(--main-color);
}
.why-us{
  background-color: var(--Navbar-color);
}
#whyOto-container{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.whyOto-card{
 width: 100%;
 background-color: var(--primary-color);
 padding: 0.8rem;
 border-radius: 6px;
 margin: 0.7rem 0;
   display: flex;
   align-items: center;
   justify-content: start;
 }
.whyOto-card span{
  width:10%;
} 
.whyOto-card span img{
    padding-right: 0.5rem;
}
.whyOto-card p{
  padding-left: 0.4rem;
}
@media (max-width :768px){
    #whyOto-container{
    display: block;
    width: 100%;
}
   .whyOto-card {
 width: 100%;
 margin: 0.8rem 0;
   } 
}
@media (max-width:1025px){
  .whyOto-card span{
  width:18%;
} 
}
.mission{
  background-color: var(--Navbar-color);
}
.mission-card {
  background-color: var(--primary-color);
  border-radius: 0 30px 0 30px;
  height: 150px;
}
.mission-card h3{
  height: 55px;
}
@media (max-width:992px){
  .mission-card{
     height: 190px;
  }
}
@media (min-width:520px) and (max-width:769px){
  .mission-card{
     height: 170px;
  }
}
.light-blue ,.dark-blue{
  height: 120px;
}
@media (max-width:992px){
 .light-blue ,.dark-blue{
     height: 135px;
  }
}
@media  (max-width:769px){
 .light-blue ,.dark-blue{
     height: 136px;
  }
}
.light-blue{
  background-color:var(--Navbar-color);
  width: 100%;
   border-radius: 6px;
   padding: 0.6rem;
}
.dark-blue{
  background-color: var(--main-color);
  width: 100%;
  border-radius: 6px;
  padding: 0.6rem;
  color: var(--primary-color);
}
.dark-blue-color{
  color: var(--main-color);
}
.dark-blue h3, .light-blue h3{
height: 50px;
}
button.button-color{
  background-color: var(--main-color);
  color: var(--primary-color);
  border: none;
  border-radius:30px;
}
.modal.show{
   display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.modal-dialog{
  height: 90% !important;
  width: 80% !important;
  max-width: 80% !important;
}
.modal-content{
  height: 100% !important;
   overflow-y: scroll;
      padding:0.5rem;
}
@media(max-width:1024px){
.modal-dialog{
  height: 80% !important;
}
}
@media(max-width:576px){
  .modal-dialog{
    width: 90% !important;
    max-width: 90% !important;
  }
}
@media (max-width:510px){
  button.button-color{
 padding: 0.4rem 0.5rem !important;
}
.faq-container h2{
  font-size: 1.2rem;
}
}
 .scroller{
        max-height: 180px;
        overflow-y: scroll;
    }

    /* Assurance page start */
    .benefit-hero-image .benefit-image h1 {
  font-size: 5vw !important;
  top: 38% !important;
  left: 5%;
}

.buttons {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
    }
    .buttons button {
      padding: 10px 20px;
      cursor: pointer;
      border: none;
      background-color: var(--Navbar-color);
      border-radius: 6px;
      font-weight: 500;
    }
    .buttons button.active {
      background-color: var(--main-color);
      color: var(--primary-color);
      border:none;
      font-weight: 600;
    }
    .content {
      display: none;
      padding: 20px;
    }

    .content.active {
      display: block;
    }
#driver-container , #customer-container , #women-container , #corporate-container{
 display: flex;
      flex-wrap: wrap;
      gap: 20px;
}
.driver-card , .customer-card , .women-card , .corporate-card{
    width: calc(33.33% - 13.33px); 
      box-sizing: border-box;
      text-align: center;
      padding: 1rem;
}
@media (max-width:510px){
    .buttons button {
      padding: 5px 10px;
    }
}
 @media (max-width:767px){
  .driver-card , .customer-card , .women-card , .corporate-card{
     width: calc(50% - 13.33px); 
  }
 } 
   
.driver-img-content{
  width: 100%;
  display: flex;
}
.driver-img-content2{
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
}
 #driverSafety-container,.driver-img, #driverSafety-container2,#driverSafety-container3 ,#driverSafety-container1,.driver-img, #driverSafety-container22,#driverSafety-container33,#driverSafety-container44{
  width: 50%;
 }
 #driverSafety-container,.driver-img, #driverSafety-container2,#driverSafety-container3 ,#driverSafety-container1,.driver-img, #driverSafety-container22,#driverSafety-container33,#driverSafety-container44{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }
 
 .driverSafety-card, .driverSafety2-card, .driverSafety3-card,.driverSafety1-card, .driverSafety22-card, .driverSafety33-card,.driverSafety44-card {
   width: 100%;
background-color: var(--Navbar-color);
  border-radius: 6px;
  padding: 0.5rem 0.6rem;
  margin: 1rem 0;
 }
 @media (max-width:1100px){
#driverSafety-container, #driverSafety-container2,#driverSafety-container3 ,#driverSafety-container1, #driverSafety-container22,#driverSafety-container33,#driverSafety-container44{
  padding: 0 1rem;
   }
 }
 @media (max-width:769px){
  .driver-img-content{
  width: 100%;
  display: block;
}
  .driver-img-content2{
  width: 100%;
  display: block;
}
 #driverSafety-container,.driver-img{
  width: 100%;
 }
  #driverSafety-container,.driver-img, #driverSafety-container2,#driverSafety-container3 ,#driverSafety-container1,.driver-img, #driverSafety-container22,#driverSafety-container33,#driverSafety-container44{
  width: 100%;
 }
 }

 /* contact page start */
 .quick-contact{
 display: flex;
 justify-content: center;
 align-items: center;
 }
form button{
  width: 100px;
}
  .map-container {
      position: relative;
      width: 100%;
      height: 450px;
    }

    .map-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      background: transparent;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: 0;
      z-index: 1;
    }
 .contact-box{
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
 }
 .information-section{
background-color: var(--main-color);
 }
 #contactForm{
  text-align: center;
 }
 form .input,
form textarea {
  width: 80%;
  height: 3rem;
  border: none;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border-radius: 4px;
}
 .name-box-container{
  width: 80%;
  display: flex;
   gap: 2%;
}

 .fname-box,.lname-box{
  width:49%;
 

}
.fname-box input ,.lname-box input{
  width: 100%;
  height: 3rem;
  border: none;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border-radius: 4px;
}

form textarea {
  height: 5rem !important;
  resize: none;
}
 .error {
    color: red;
  }
  .success {
    color: green;
  }

/* career page start */
hr.solid{
 border: 2px solid var(--main-color);
}
.background-blue{
  background-color: var(--Navbar-color);
}
ul li{
  list-style: none;
}
#job-container{
 display: flex;
      flex-wrap: wrap;
      margin: 1.5rem 0;
      gap: 1rem;
      justify-content: center;
      align-items: center;  
}
.job-card {
    width: calc(32.33% - 13.33px); 
      box-sizing: border-box;
      text-align: center;
      padding: 1rem;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; 
        height: 240px;
         display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
}
.job-card a{
         display: flex;
      align-items: center;
      flex-direction: column;
      }
.job-card a h3{
height: 65px;
margin-top: 0.5rem;
}
.job-card a p{
height: 55px;
}
.job-card a h6{
  margin-bottom: 0 !important;
}
a .career-icon{
  height: 55px;
  width: 55px;
  border-radius: 25%;
  background-color: var(--Navbar-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
 @media (max-width:1024px){
    #job-container{
    padding: 0.6rem 1rem;
  }
  .job-card {
     width: calc(50% - 10.33px); 
  }
 } 
 @media (max-width:576px){
  .job-card {
     width: calc(100% - 13.33px); 
  }
 } 
 @media (min-width:577px) and (max-width:1024px){
.job-card{
  height: 240px;
}
 }

 /* #privact policty start */
 .privacy-image,.notices-image{
  background-color: var(--Navbar-color);
  height: 25vw;
 }
.benefit-hero-image  .privacy-image h1 {
  font-size: 5vw !important;
  top: 38% !important;
  left: 30%;
 
}
.benefit-hero-image  .notices-image h1 {
  font-size: 5vw !important;
  top: 38% !important;
  left: 40%;
}