/**
* Template Name: QuickDrive – Free Bootstrap Car Rental Booking Template
* Template URL: https://www.templaterise.com/template/quickdrive-free-bootstrap-car-rental-booking-template
* Updated: January 05 2025 with Bootstrap v5.3.3
* Author: templaterise.com
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary: #4424EC;
  --white: #ffffff;
  --bg-primary: #10375C;
  --btn-hover: #cc4528;
  --text-color-1: #10375C;
  --text-color-2: #1A202C;
  --text-color-3: #4424EC;
}


ul {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.text-primary {
  color: var(--text-color-1) !important;
}

.text-color-2 {
  color: var(--text-color-2) !important;
}

.text-color-3 {
  color: var(--text-color-3) !important;
}

.font-weight-800 {
  font-weight: 800;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-400 {
  font-weight: 400;
}
.text-color-1 {
  color:  var(--text-color-1);
}

.header-section {
  padding-top: 80px;
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #4520EB 0%, #1D86FF 100%);
}


.header {
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 9999999;
  height: 5.5rem;
  background: linear-gradient(
    90deg,
    hsla(215, 78%, 19%, 1) 0%,
    hsla(210, 18%, 96%, 1) 16%,
    hsla(213, 19%, 89%, 1) 24%,
    hsla(215, 78%, 19%, 1) 38%
  );
  border-bottom: 1px solid #B8B8B8;
}

.site-header {
  background: linear-gradient(
    90deg,
    hsla(215, 78%, 19%, 1) 0%,
    hsla(210, 18%, 96%, 1) 16%,
    hsla(213, 19%, 89%, 1) 24%,
    hsla(215, 78%, 19%, 1) 38%
  ) !important;
}

.site-header .navmenu a,
.site-header .navmenu a:focus,
.site-header .logo,
.site-header .mobile-nav-toggle {
  text-shadow: 0 1px 2px rgba(16, 55, 92, 0.55);
}

.site-header #lang-select {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(16, 55, 92, 0.55);
}

.hero-section {
  margin-top: 5.5rem !important;
}

.header .logo {
  line-height: 1;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  background: var(--primary);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.login-btn, .register-btn {
  border: 1px solid var(--bg-primary);
  border-radius: 8px;
  padding: 10px 25px !important;
  display: block;
  font-weight: 500;
}

.register-btn {
  color: #ffffff !important;
  background-color: var(--bg-primary);
  margin-left: .8rem;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    margin-left: .8rem;
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--white);
    margin: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--text-color-2);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {

  .customer-section, .revenue-card {
    display: none;
  }

  .mobile-nav-toggle {
    color: var(--white);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    background-color: var(--white);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--white);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--text-color-2);
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--primary);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    transform: rotate(180deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--primary);
    position: absolute;
    font-size: 20px;
    top: 80px;
    right: 35px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    background: var(--white);
  }

  .login-btn, .register-btn {
      margin: .8rem;
      width: 7.5rem;
  }

}



.mt-6 {
  margin-top: 6rem;
}


.mt-7 {
  margin-top: 7rem;
}

@media (min-width: 992px) {
  .mt-lg-7 {
    margin-top: 7rem !important;
  }
}

.pt-6 {
  padding-top: 6rem;
}

.pt-7 {
  padding-top: 7rem;
}

.header-img {
  width: 100%;
  height: auto;
  border-radius: 2.5rem 0 0 0;
}

@media (min-width: 576px) {
  .header-img {
    width: 400px;
  }
}

@media (min-width: 768px) {
  .header-img {
    width: 500px;
  }
}

@media (min-width: 992px) {
  .header-img {
    width: 680px;
  }
}

.heading-large {
  font-size: 2.5rem;
  font-weight: 700;
}

 .subheading {
  font-size: 1rem;
  font-weight: 400;
}

@media (min-width: 576px) { /* Small screens */
   .heading-large {
    font-size: 3rem;
  }
   .subheading {
    font-size: 1rem;
  }
}

@media (min-width: 768px) { /* Medium screens */
   .heading-large {
    font-size: 3.5rem;
  }
   .subheading {
    font-size: 1rem;
  }
}

@media (min-width: 992px) { /* Large screens */
   .heading-large {
    font-size: 3rem;
  }
   .subheading {
    font-size: 1.2rem;
  }
}

.bg-primary {
  background-color: var(--bg-primary) !important;
}


.btn-hover {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-hover:hover{
  color: #fff !important;
  background-color: var(--bg-primary) !important;
}

.underline{
  text-decoration: underline;
}



.text-size-16 {
  font-size: 1rem;
}

.text-size-14 {
  font-size: 14px;
}

.text-size-46 {
  font-size: 2.9rem;
}

.text-size-18 {
  font-size: 1.1rem;
}

.text-size-24 {
  font-size: 1.5rem;
}

.text-size-20 {
  font-size: 1.2rem;
}

.text-size-48 {
  font-size: 3rem;
}

.text-size-40 {
  font-size: 2.5rem;
}

.text-size-32 {
  font-size: 2rem;
}

.process-icon {
  width: 80px;
  height: 80px;
  background-color: #f3f0ff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.process-icon i {
  font-size: 2rem;
  color: #6c5ce7;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.process-step p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.connector {
  position: absolute;
  top: 0px;
  right: -50%;
  width: 100%;
  height: 2px;
  z-index: -1;
}

@media (max-width: 768px) {
  .connector {
      display: none;
  }

  .process-step {
      margin-bottom: 2rem;
  }
}

.form-select {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
}

.booking-section {
    background-color: #F3F3F3;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 4px 4px 0px #00000026;
}

.form-label {
    font-size: 14px;
    color: #000;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .booking-section {
        margin-bottom: 20px;
    }
}

.search-container {
  background-color: #F6F7F9;
  padding-bottom: 80px;
}

.search-section {
  padding: 0 1rem;
  margin-top: -50px;
  position: relative;
  z-index: 9;
}


.car-card {
  border-radius: 6px;
  transition: transform 0.2s;
}
.car-card:hover {
  transform: translateY(-5px);
}
.favorite-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  background: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.rent-now-btn {
  background-color: var(--primary);
  border: none;
  border-radius: 4px !important;
}
.rent-now-btn:hover {
  background-color: #4c32ac;
}
.nav-tabs .nav-link {
  color: var(--text-color-2);
  border: none;
  padding: 15px 25px;
  font-size: 1.3rem;

}
.nav-tabs .nav-link.active {
  color: #000;
  border-bottom: 2px solid #5D3FD3;
  font-weight: 500;

  background-color: transparent;
}
.car-rental-section {
background: #4B57D326;
padding: 5rem 0;
}


.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border: 1px solid #CFCFCF;
}

.faq-question {
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #333;
  font-size: 1.2rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
padding: 0 1.5rem;
font-size: 1rem;
font-weight: 500;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer ul {
  list-style-position: inside;
  margin-top: 0.5rem;
}

.faq-answer li {
  margin: 0.5rem 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: #f3f0ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon i {
  color: #6c47ff;
  font-size: 24px;
}

.place-carousel .item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  gap: 0.5rem;
}

.arrow-icon {
  width: 38px;
  height: 38px;
  background: #4B57D326;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.place-carousel .owl-nav .owl-prev,
.place-carousel .owl-nav .owl-next {
position: absolute;
bottom: -45px;
display: flex;
justify-content: center;
align-items: center;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
font-size: 14px !important;
width: 40px;
height: 40px;
border-radius: 50%;
color: #000 !important;
box-shadow: 0px 2px 10px 0px #00000026;
}

.testimonials-carousel .owl-nav .owl-prev,
.testimonials-carousel .owl-nav .owl-next {
position: absolute;
bottom: -80px;
display: flex;
justify-content: center;
align-items: center;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
font-size: 14px !important;
width: 40px;
height: 40px;
border-radius: 50%;
color: #000 !important;
box-shadow: 0px 2px 10px 0px #00000026;
}

.place-carousel .owl-nav .owl-prev,
.testimonials-carousel .owl-nav .owl-prev{
right: 70px;
}

.place-carousel .owl-nav .owl-next,
.testimonials-carousel .owl-nav .owl-next {
right: 20px;
}

.place-carousel .owl-nav button:hover,
.testimonials-carousel .owl-nav button:hover {
color: #fff !important;
background-color: var(--bg-primary) !important;
}

.place-carousel .owl-dots{
position: absolute;
left: 0;
bottom: -45px;
}

.testimonial-section .owl-dots {
position: absolute;
left: 0;
bottom: -70px;
}

.place-section .owl-dots .owl-dot span,
.testimonial-section .owl-dots .owl-dot span {
margin: 5px 7px;
display: block;
transition: opacity 0.2s ease;
}

.place-section .owl-theme .owl-dots .owl-dot.active span,
.testimonial-section .owl-theme .owl-dots .owl-dot.active span {
width: 30px !important;
height: 10px !important;
margin: 5px 7px;
background: var(--text-color-2);
}

.testimonial-card {
  background-color: #4B57D326;
  border-radius: .5rem;
  border: none;
  transition: transform 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.avatar-placeholder {
  width: 50px;
  height: 50px;
  background-color: #e0e0e0;
  border-radius: 50%;
}

.avatar-placeholder img {
  border-radius: 50%;
}

.star-rating {
  color: #FEA250;
}

.footer {
  background-color: var(--primary);
  color: #fff;
  padding: 40px 20px;
}

.site-footer {
  background: linear-gradient(
    90deg,
    hsla(215, 78%, 19%, 1) 0%,
    hsla(210, 18%, 96%, 1) 16%,
    hsla(213, 19%, 89%, 1) 24%,
    hsla(215, 78%, 19%, 1) 38%
  ) !important;
}

/*.site-footer,*/
/*.site-footer a,*/
/*.site-footer h5,*/
/*.site-footer p,*/
/*.site-footer .footer-bottom p {*/
/*  text-shadow: 0 1px 2px rgba(16, 55, 92, 0.55);*/
/*}*/
.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: none;
  color: var(--text-color-2);
}

.footer .social-icons li a {
    color: var(--primary);
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-right: 10px;
}

.footer .social-icons i {
  cursor: pointer;
  text-align: center;
}

.footer .social-icons li a:hover {
  color: #fff !important;
  background-color: var(--bg-primary) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  padding-top: 20px;
}

.footer .list-unstyled li a {
display: block;
margin-bottom: .5rem;
}

/* Accessible financed-project navigation disclosure */
.projects-nav-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.projects-nav-trigger i {
  transition: transform .2s ease;
}

.projects-nav-item.is-open > .projects-nav-trigger i {
  transform: rotate(180deg);
}

.projects-nav-trigger:focus-visible,
.projects-submenu-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.projects-submenu[hidden] {
  display: none !important;
}

@media (min-width: 1200px) {
  .navmenu .projects-nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin: 10px 15px;
    padding: 0;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
  }

  .navmenu .projects-nav-trigger:hover,
  .navmenu .projects-nav-trigger.active,
  .navmenu .projects-nav-trigger:focus {
    color: var(--text-color-2);
  }

  .navmenu .projects-submenu {
    position: absolute;
    z-index: 1000;
    top: calc(100% - .1rem);
    right: 0;
    display: none;
    width: min(34rem, 70vw);
    margin: 0;
    padding: .55rem;
    border-radius: .4rem;
    background: #fff;
    box-shadow: 0 12px 30px rgba(10, 35, 58, .22);
  }

  .navmenu .projects-nav-item.is-open > .projects-submenu,
  .navmenu .projects-nav-item:focus-within > .projects-submenu:not([hidden]) {
    display: block;
  }

  .navmenu .projects-submenu li {
    margin: 0;
  }

  .navmenu .projects-submenu-link,
  .navmenu .projects-submenu-link:focus {
    display: block;
    margin: 0;
    padding: .75rem .85rem;
    border-radius: .3rem;
    color: var(--primary);
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.45;
    white-space: normal;
  }

  .navmenu .projects-submenu-link:hover,
  .navmenu .projects-submenu-link.active {
    background: #eef7fa;
    color: #087f8c;
  }

  .projects-submenu-link:focus-visible {
    outline-color: var(--primary);
    outline-offset: -2px;
  }
}

@media (max-width: 1199px) {
  .navmenu .projects-nav-item {
    display: block;
  }

  .navmenu .projects-nav-trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 10px 20px;
    color: var(--text-color-2);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
  }

  .navmenu .projects-nav-trigger.active {
    color: var(--primary);
  }

  .navmenu .projects-submenu {
    position: static;
    display: none;
    width: auto;
    margin: 0 1rem .4rem;
    padding: .25rem 0 .25rem .75rem;
    border-left: 3px solid rgba(24, 167, 179, .35);
    background: #f7fafb;
    box-shadow: none;
  }

  .navmenu .projects-nav-item.is-open > .projects-submenu {
    display: block;
  }

  .navmenu .projects-submenu li {
    margin: 0;
  }

  .navmenu .projects-submenu-link,
  .navmenu .projects-submenu-link:focus {
    display: block;
    margin: 0;
    padding: .75rem;
    color: var(--text-color-2);
    font-size: .93rem;
    font-weight: 700;
    line-height: 1.45;
    white-space: normal;
  }

  .navmenu .projects-submenu-link.active {
    color: var(--primary);
  }

  .projects-nav-trigger:focus-visible,
  .projects-submenu-link:focus-visible {
    outline-color: var(--primary);
    outline-offset: -2px;
  }
}
