/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --sec-heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
  --heading-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #feb027; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --cities-background-color: #cf1516;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529; /* The default color of the main navmenu links */
  --nav-hover-color: #feb027; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #feb027; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1b1b1b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #353535;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-weight: 400;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight:500;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--accent-color) 50%,
    color-mix(in srgb, var(--accent-color), transparent 75%) 52%
  );
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 62px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 600;
  text-transform: uppercase;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: var(--nav-font);
    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;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    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(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 400;
    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;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 13px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 13px;
  font-family: var(--nav-font);
}

.footer .footer-popular-cities {
  font-family: var(--nav-font);
  font-size: 14px;
  line-height: 1.8;
}

.footer .footer-popular-cities a {
  color: #ffffff;
}

.footer .footer-popular-cities > strong {
  color: var(--accent-color);
}

.footer .contact-icon {
  font-size: 16px;
  color: var(--accent-color);
}

.footer .footer-contact a {
  color: #ffffff !important;
}

.footer .footer-contact a:hover {
  color: var(--accent-color);
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-family: var(--nav-font);
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  display: inline-block;
  line-height: 1.2;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  font-family: var(--nav-font);
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .copyright .sitename {
  text-transform: uppercase;
  color: var(--accent-color);
}

.footer .footer-menu-link a {
  color: #ffffff;
}

.footer .footer-menu-link a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
 overflow: visible;
 }

.section-bg {
  background-color: transparent;
  padding: 160px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.section-bg .container {
  position: relative;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
    overflow: visible;
    
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  width: 100%;
  min-height: calc(100vh - 200px);
  position: relative;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}
.form-control {
  border-radius: 0%;
}
.form-group .dropdown .border {
  border-radius: 0%;
}
.datepicker td,
.datepicker th {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.85rem;
}

.datepicker {
  margin-bottom: 0rem;
}
.datepicker-dropdown {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.vehicle-img {
  width: 50px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 10px 14px;
  white-space: nowrap;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
}
.dropdown-item span,
.custom-select option {
  font-size: 14px;
}
.dropdown-menu {
  max-height: 260px;
  overflow-y: auto;
}
.tab-content .form-button {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  border: 0px;
  padding: 8px;
}
.form-group .custom-select {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.why-choose-us .choose-box {
  background: #fff;
  border-radius: 16px;
  /* padding: 30px 15px; */
  transition: 0.3s;
  border: 1px solid #eee;
}

.why-choose-us .choose-box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

.wc-icon {
  width: 70%;
  height: auto;
  object-fit: contain;
}

.services-section {
  background: #fcf8f0;
}

/* Service card base */
.service-card {
  background: #ffffff;
  border-radius: 28px;
  min-height: auto;
  transition: 0.3s;
  border: 1px solid #eee;
  position: relative;
}

.service-card h4 {
  font-weight: 700;
  font-size:20px;
}
.service-card p{
font-size: 14px;
font-weight: 400;
}

/* Dark highlighted card */
.active-service {
  background: var(--accent-color) !important;
  color: #000000;
}

/* Hover effect */

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.12);
  background: var(--accent-color);
  color: #000000;
}
.service-card:hover .service-btn {
  background: #ffffff;
  color: var(--accent-color);
}

/* icon wrapper */
.icon-wrap {
  width: 70px;
  height: 70px;
  background: #fcf8f0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.active-service .icon-wrap {
  background: rgba(255, 255, 255, 0.1);
}

.icon-wrap img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Arrow button */
.service-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  /* position: absolute; */
  /* bottom: 20px; */
  left: 20px;
  transition: 0.3s ease;
}

.service-card:hover .service-btn {
  transform: translateX(5px);
}

.active-service .service-btn {
  background: #ffffff;
  color: var(--accent-color);
}
.about-section {
  background: #ffffff;
}

/* Image Container */
.about-img-box {
  border-radius: 20px;
  background: #ffffff;
  /* border: 1px solid #e2e6ea; */
}

.about-img-box img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Text */
.about-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--default-color);
  font-weight: 400;
}

/* Bullet List */
.about-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.about-list li {
  font-size: 16px;
  margin-bottom: 12px;
  /* display: flex; */
  align-items: center;
  color: var(--default-color);
}

.about-list i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 10px;
}

/* Button */
.about-btn {
  background: var(--accent-color);
  padding: 12px 22px;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
  color: #fff;
  transform: translateY(-3px);
}

.fleet-section {
  background: #ffffff;
}

.fleet-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s ease;
  font-family: var(--heading-font);
  border: #dadada solid 1px;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Image section */
.fleet-img-box {
  background: #dadada;
  padding: 10px;
  text-align: center;
}

.fleet-img-box img {
  height: 130px;
  object-fit: contain;
}

/* Badge */
.popular-badge {
  background: #ffe58a;
  color: #5b4b00;
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 20px;
}

/* Pricing */
.pricing p span {
  float: right;
  font-weight: bold;
}

.pricing p {
  font-size: 14px;
}

.fleet-card .type-text {
  font-size: 14px;
}

/* Icons row */
.fleet-info-icons span {
  margin-right: 20px;
  font-size: 14px;
}

.fleet-info-icons i {
  color: var(--accent-color);
  margin-right: 5px;
}

/* Beta box */
.beta-box {
  background: #fff6d6;
  padding: 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 15px;
}

/* Buttons */
.fleet-btn-primary {
  background: var(--accent-color);
  color: #fff !important;
  padding: 10px 25px;
  border-radius: 8px;
}

.fleet-btn-primary:hover {
  background: var(--heading-color);
  color: #fff !important;
}

.fleet-btn-outline {
  border: 2px solid var(--heading-color);
  padding: 10px 25px;
  color: var(--heading-color) !important;
  border-radius: 8px;
}

.fleet-btn-outline:hover {
  background: var(--heading-color);
  color: #fff !important;
}

.trip-section {
  background: #fcf8f0;
}

/* Card */
.trip-card {
  background: #fff;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.trip-card:hover {
  transform: translateY(-5px);
}

/* Image */
.trip-img {
  width: 120px;
  flex-shrink: 0;
}

.trip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.trip-content {
  padding: 15px;
  width: 100%;
}

.trip-content h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.trip-type {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}

.trip-info {
  font-size: 14px;
  margin-bottom: 5px;
}

.trip-price {
  font-weight: 500;
  margin-bottom: 10px;
}

.trip-price span {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
}

/* Buttons */
.trip-actions {
  display: flex;
  gap: 10px;
}

.btn-call {
  background: var(--accent-color);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
}

.btn-call:hover {
  background-color: #000000;
  color: #ffffff;
}

.btn-book {
  background: #fff;
  border: #000 solid 2px;
  color: #000;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
}
.btn-book:hover {
  background-color: #000000;
  color: #ffffff;
}

/* Mobile */
@media (max-width: 575px) {
  .trip-card {
    flex-direction: column;
  }

  .trip-img {
    width: 100%;
    height: 160px;
  }
}

.cta-section {
  position: relative;
  padding: 40px 0;
  background: url("../img/cab-booking.jpg") center/cover no-repeat;
  overflow: hidden;
}

.cta-section .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.85));
  z-index: 1;
}

.cta-section .container {
  z-index: 2;
}

.cta-section .cta-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.cta-section .cta-text {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.95;
  font-weight: 500;
}

.cta-section .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-call,
.cta-section .btn-book {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-section .btn-call {
  background: #fff;
  color: var(--accent-color);
}

.cta-section .btn-call:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  color: #ffffff;
}

.cta-section .btn-book {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-section .btn-book:hover {
  background: #fff;
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 576px) {
  .cta-section .cta-title {
    font-size: 2rem;
  }
  .cta-section .cta-section {
    padding: 70px 0;
  }
}

.estimate-section {
  background: #f7fbfb;
}

.table th {
  width: 40%;
  background: #e9f4f3;
}

@media (max-width: 768px) {
  .estimate-section h3 {
    text-align: center;
  }
}
#estimateSection {
  display: none;
}
.estimate-section {
  background: #f7fbfb;
}

.table th {
  width: 40%;
  background: #e9f4f3;
}
.tab-banner .bg-primary {
  background: #fff007;
  color: #000000;
}
/* .tab-banner .nav-item .nav-link {
  background-color: #fff007;
  color: #000000;
  font-weight: 700;
} */
.active {
  color: #fde801;
}
.note {
  background-color: #f6f3c4;
  color: #000000;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.inner-page .hero {
  --default-color: #000000;
  --background-color: #cccccc;
  --heading-color: #000000;
  width: 100%;
  min-height: 20px;
  position: relative;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.inner-page .hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.inner-page .hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.inner-page .hero .container {
  position: relative;
  z-index: 3;
}

.inner-page .hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.inner-page .hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.inner-page .hero .btn-get-started {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.inner-page .hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.inner-page .hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.inner-page .hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.inner-page .hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.inner-page .hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .inner-page .hero h2 {
    font-size: 32px;
  }

  .inner-page .hero p {
    font-size: 18px;
  }
}

.about-page {
  background: #ffffff;
}

.section-title {
  font-weight: 700;
  color: var(--accent-color);
}

.about-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
}

.icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background: #e9f4f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 45px;
}

.about-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.about-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Mobile */
@media (max-width: 576px) {
  .section-title {
    text-align: center;
  }
}

.services-section {
  background: #f7fbfb;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 180px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 20px;
  text-align: center;
}

.service-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #004c4c;
}

.service-content p {
  font-size: 0.95rem;
  color: #555;
}

/* Mobile */
@media (max-width: 576px) {
  .service-img {
    height: 160px;
  }
}

.cities-section {
  background: #fcf8f0;
}

.city-card {
  display: block;
  background: var(--cities-background-color);
  color: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.city-card:hover {
  background-color: color-mix(
    in srgb,
    var(--cities-background-color),
    transparent 10%
  );
  color: #ffffff;
  transform: translateY(-4px);
}

.city-card i {
  font-size: 18px;
}

.city-icon {
  width: 32px;
  height: 32px;
  background: #f52521;
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-card span {
  font-weight: 500;
}

/* Mobile optimization */
@media (max-width: 576px) {
  .city-card {
    font-size: 14px;
    padding: 14px;
  }
}

.why-us-section {
  background: #f8fdfc;
}

.why-us-section h2 {
  color: var(--accent-color);
}

.why-list li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
}

.why-list i {
  color: #28a745;
  margin-right: 8px;
}

.why-vector {
  max-width: 420px;
  animation: float 3s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.booking-info-section {
  background: #ffffff;
}

.booking-info-section .section-title {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
}

.booking-info-section .section-subtitle {
  font-weight: 600;
  font-size: 24px;
  margin-top: 20px;
}

.step-list,
.terms-list {
  padding-left: 18px;
}

.step-list li,
.terms-list li {
  margin-bottom: 10px;
  color: #444;
  font-size: 15px;
}

.route-list .route-link {
  display: block;
  margin-bottom: 8px;
  color: #ff7a00;
  font-weight: 500;
  text-decoration: none;
}

.route-list .route-link:hover {
  text-decoration: underline;
}

.booking-vector {
  max-width: 420px;
  animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.oneway-info-section {
  background: #ffffff;
}

.oneway-info-box {
  border-radius: 24px;
}

.oneway-info-section .section-title {
  /* font-size: 28px; */
  font-weight: 700;
  color: var(--accent-color);
}

.oneway-info-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.call-btn {
  background: var(--accent-color);
  color: #fff;
  padding: 8px 18px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: #000000;
  color: #fff;
  transform: translateY(-2px);
}

.info-vector {
  max-width: 260px;
}

.contact-page .contact-hero {
  background: linear-gradient(rgba(0, 60, 60, 0.8), rgba(0, 60, 60, 0.8)),
    url("https://images.unsplash.com/photo-1532634896-26909d0d4b1f")
      center/cover;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.contact-page .contact-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.contact-page .icon-circle .bi {
  width: 50px;
  height: 50px;
  background: #0d6efd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

.contact-page .contact-info a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.contact-page .contact-info a:hover {
  color: #0d6efd;
}

iframe {
  border-radius: 16px;
}

.terms-section {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
}
.terms-section h1 {
  font-size: 2rem;
  font-weight: 700;
}
.terms-section h2 {
  font-size: 1.3rem;
  margin-top: 30px;
  font-weight: 600;
}
.terms-section p,
.terms-section li {
  color: #555;
  line-height: 1.7;
}
.policy-box {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
}
.policy-box h1 {
  font-size: 2rem;
  font-weight: 700;
}
.policy-box h2 {
  font-size: 1.3rem;
  margin-top: 30px;
  font-weight: 600;
}
.policy-box p,
.policy-box li {
  color: #555;
  line-height: 1.7;
}
.policy-wrapper {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
}
.policy-wrapper h1 {
  font-size: 2rem;
  font-weight: 700;
}
.policy-wrapper h2 {
  margin-top: 30px;
  font-size: 1.3rem;
  font-weight: 600;
}
.policy-wrapper p,
.policy-wrapper li {
  color: #555;
  line-height: 1.8;
}
/* Force Mapbox input to be visible */
.mapboxgl-ctrl-geocoder {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 45px;
}

.mapboxgl-ctrl-geocoder input {
  width: 100% !important;
  height: 45px;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ced4da;
}

.mapboxgl-ctrl-geocoder input:focus {
  border-color: #f4b400;
  box-shadow: 0 0 0 0.2rem rgba(244,180,0,.25);
}
.suggestions {
      position:absolute;
      width:100%;
      z-index:9999;
      max-height:200px;
      overflow-y:auto;
    }
    .fix-call {
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 100;
  width: 250px;
  text-align: right;
}
.fix-call span {
  display: none;
}
.fix-call a i {
  font-size: 25px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 100%;
  color: #fff;
  background-color: #111;
}
.fix-call a .phone {
  background-color: #0d6efd;
}
.fix-call a .fa-whatsapp {
  background-color: #39c83a;
}
.fix-call a .fa-taxi {
  
}
.fix-call.common {
  display: block;
}
@media screen and (max-width: 992px) {
  .fix-call span {
    display: block;
  }
  .fix-call.common {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  .fix-call {
    position: absolut;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 10000;
    background: linear-gradient(120deg, #f5d695, #eaca6f, #fcea9c, #dfb254);
    /* background-color: var(--accent-color); */
     background-color: transparent;
    text-align: center;
    padding: 0;
    box-shadow: 0px -5px 30px rgba(0, 0, 0, 0.5) !important;
    text-align: center;
    display: table;
  }
  .fix-call a {
    color: #333 !important;
    font-size: 12px;
    display: inline-block;
    width: 30%;
    text-align: center;
    line-height: 25px;
    padding-top: 14px;
    padding-bottom: 8px;
    border-right: solid 1px rgba(0, 0, 0, 0.1);
  }
  .fix-call a:last-child {
    border-right: solid 0px #ddd;
  }

  .fix-call a i {
    color: #111 !important;
    font-size: 25px !important;
    display: block;
    margin: 0 auto;
    clear: both;
    width: auto;
    height: auto;
    line-height: 25px;
    border-radius: 0;
    background-color: transparent;
  }
  .fix-call a .fa-home {
    color: #111 !important;
  }
  .fix-call a .phone {
    color: #0d6efd !important;
    font-size: 27px !important;
    background-color: transparent;
  }
  .fix-call a .fa-whatsapp {
    color: #48a91f !important;
    font-size: 27px !important;
    background-color: transparent;
  }
  .fix-call a .fa-taxi {
    color: var(--cities-background-color) !important;
    font-size: 27px !important;
    background-color: transparent;
  }
}
