@import url('https://fonts.googleapis.com/css2?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 {
    --theme-color: #ffc815;
    --theme-color2: #012c6d;
    --second-color: #000;
    --font-family: "Poppins", sans-serif;
    --font-color: #6d6b72;
    --transition: 0.3s linear;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

html,
body {
    overflow-x: hidden;
    font-family: var(--font-family);
}

p {
    color: #000;
    font-size: 16px;
    font-family: var(--font-family);
}

a {
    text-decoration: none;
}

/*scroll*/

/*::-webkit-scrollbar-track{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #F5F5F5;
}

::-webkit-scrollbar
{
  width: 6px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
  background-color: var(--theme-color);
}*/

.form-control:focus {
    box-shadow: none;
    border-color: var(--theme-color);
}

/*===================================================
BUTTONS
===================================================*/

.btn-theme {
    position: relative;
    border-radius: 7px;
    background: var(--theme-color);
    overflow: hidden;
    cursor: pointer;
    border: none;
    padding: 10px 20px;
}

.btn-theme:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 150%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    background-color: var(--second-color);
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    z-index: -1;
}

.btn-theme:hover::after {
    top: -50%;
    z-index: 0;
}

.btn-theme span {
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 110%;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.btn-theme:hover span {
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

/*=======================================================
section title
=======================================================*/

.section-title {
    margin-bottom: 40px;
}

.section-title .title {
    font-size: 35px;
    font-weight: bold;
    text-transform: capitalize;
}

.section-title .progress {
    width: 10%;
    height: 3px;
}

.section-title.text-center .progress {
    margin: auto;
}

.section-title .progress-bar,
.widget-title .progress-bar {
    width: 100%;
    background-color: var(--theme-color);
    background-size: var(--bs-progress-height) var(--bs-progress-height);
    /*background-image: linear-gradient(45deg, rgb(255 255 255 / 80%) 25%, transparent 25%, transparent 50%, 
    rgb(255 255 255 / 80%) 50%, 
    rgb(255 255 255 / 80%) 75%, transparent 75%, transparent);*/
}

/*======================================================
header
======================================================*/

header {
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 99;
    background-color: #fff;
}

header .navbar-nav a {
    padding: 10px 20px;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    transition: 0.2s linear;
    position: relative;
}

header .navbar-nav a:hover {
    color: var(--second-color);
}

header .navbar-nav li {
    padding: 10px 0px;
}

.navbar-toggler-icon {
    background-image: none !important;
}

.navbar-toggler-icon i {
    color: #fff;
    font-size: 28px;
}

.header-social {
    display: flex;
    gap: 10px;
}

.header-social a {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: inline-block;
    background-color: #fff;
    text-align: center;
    line-height: 35px;
    color: var(--second-color);
}

.header-social a:hover {
    background-color: var(--theme-color);
    color: #fff;
}

/*header .navbar-brand::after {
  border-radius: 50%;
  content: "";
  height: 100px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 115px;
  z-index: 10;
  background-color: var(--theme-color);
}*/

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand span {
    position: relative;
    z-index: 1000;
    padding-left: 10px;
    font-size: 25px;
    font-weight: 600;
    color: #000;
}

.navbar-brand>img {
    display: block;
    left: 0;
    position: relative;
    top: 0;
    width: 85px;
    z-index: 100;
    background-color: #fff;
    border-radius: 10px;
}

.navbar-nav .menu {
    position: relative;
    transition: var(--transition);
}

.navbar-nav .menu i {
    font-size: 16px;
}

.navbar-nav li .dropdown_menu {
    border-top: 5px solid var(--second-color);
    border-bottom: 5px solid var(--second-color);
    display: none;
    min-width: 300px;
    background-color: #fff;
    position: absolute;
    top: 46px;
    left: 0;
    transition: var(--transition);
    max-height: 320px;
    line-height: 25px;
    overflow-y: auto;
    z-index: 1000;
}

.navbar-nav li .dropdown_menu a {
    display: block;
    padding: 7px 25px;
    font-size: 16px;
    line-height: 19px;
    color: #000;
    font-weight: 400;
}

.navbar-nav li .dropdown_menu a:hover {
    background-color: var(--theme-color);
    color: #fff;
}

/*=================================================
main slider
=================================================*/

.carousel-control-next,
.carousel-control-prev {
    width: 5%;
}

/*#main-slider:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 42%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  webkit-mask: url(../images/download.svg);
  mask: url(../images/download.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: -no-repeat;
  -webkit-mask-position: left top;
  mask-position: left top;
  -webkit-mask-size: cover;
  mask-size: cover;
  transform: rotate(180deg);
}*/

#main-slider img {
    width: 100%;
    height: 545px;
    object-fit: cover;
    filter: brightness(0.8);
}

.slider-caption {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    margin-inline: auto;
    color: #fff;
    max-width: 500px;
    width: 50%;
    text-align: center;
    background-color: rgb(0 0 0 / 45%);
    padding: 30px 20px;
    border-radius: 10px;
}

.slider-caption .caption-subtitle {
    color: #000;
    background-color: #fff;
    border-radius: 50px 50px;
    padding: 10px 20px;
    font-weight: 400;
    display: inline-block;
    letter-spacing: 2px;
}

.slider-caption .caption-title {
    font-size: 60px;
    font-weight: bold;
    margin-top: 20px;
    line-height: 1;
}

.slider-caption .caption-title span {
    /*-webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: var(--second-color);
  stroke: var(--second-color);*/
    color: #fff;
    position: relative;
    margin-left: 10px;
}

.slider-caption .caption-title span svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    transform: translate(-50%, -50%);
    overflow: visible;
    z-index: -1;
}

.slider-caption .caption-title span svg path {
    stroke: var(--theme-color);
    stroke-width: 140px;
    stroke: var(--theme-color);
    stroke-width: 140px;
    fill: none;
    opacity: 0;
    stroke-dasharray: 0 1500;
    transition: .3s;
    animation: headline-dash forwards;
    animation-duration: 1.2s;
    animation-iteration-count: 1;
}

@keyframes headline-dash {
    0% {
        stroke-dasharray: 0 1500;
        opacity: 1;
    }

    100% {
        stroke-dasharray: 1500 1500;
        opacity: 1;
    }
}

.slider-caption p {
    font-size: 1.3em;
    max-width: 79%;
}

.slider-caption .h2 {
    font-size: 70px;
    font-weight: 900;
}

.slider-caption .h2 span {
    color: var(--second-color);
}

/*=================================================
enquiry-form
=================================================*/

.enquiry-form form .form-title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #000;
}

.enquiry-form hr:not([size]) {
    top: -6px;
}

.home-enquiry-form .section-title {
    margin-bottom: 0px;
}


.accent-2 {
    width: 60px;
    position: relative;
    top: -9px;
    border-top: 1px solid var(--second-color);
}

.taxi-booking__form__title {
    position: relative;
    top: -27px;
    margin-bottom: 3px;
    display: inline-block;
    padding: 12px 46px 12px 20px;
    background-color: var(--second-color);
    /*  clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);*/
    border-radius: 50px;
    z-index: 1;
}

.taxi-booking__form__heading {
    margin: 0;
    position: relative;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 1.25;
    text-transform: capitalize;
    color: #fff;
}

/*.taxi-booking__form__heading::before {
  content: "";
  width: 6px;
  height: calc(100% - 5px);
  background-color: var(--theme-color);
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  border-radius: 45px 0 0 50px;
}*/

.enquiry-form form .input-group-text {
    color: #a3a3a3;
    background-color: #fff;
    border-left: none;
}

.enquiry-form form .input-group:focus .input-group-text {
    border-color: var(--second-color);
}

/*.enquiry-form form ::placeholder{
  color: var(--theme-color);
}*/

.enquiry-form form .form-control:focus {
    box-shadow: none;
    border-color: var(--second-color);
}

.enquiry-form form .btn-theme {
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
}

/*.enquiry-form form .btn-theme span{
  color: var(--theme-color);
}*/

/*===============================================
service section
===============================================*/

.service-box {
    background-color: var(--theme-color2);
    border-radius: 10px;
    color: #fff;
    transition: var(--transition);
}

.service-box .service-img img {
    border-radius: 10px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-box .service-body {
    padding: 20px;
}

.service-box .service-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: var(--second-color);
    border-radius: 50%;
    font-size: 30px;
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
}

.service-box .service-title {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 18px;
}

.service-box:hover {
    border-color: var(--second-color);
}

/*========================================================
about
========================================================*/

.about-img {
    position: relative;
}

.about-us .about-img img:first-child {
    width: 75%;
    display: block;
    margin-left: 110px;
    box-shadow: 0 20px 100px rgba(0, 0, 0, .1);
    border-radius: 6px;
}

.about-us .about-img img:last-child {
    width: 60%;
    box-shadow: 0 20px 100px rgba(0, 0, 0, .1);
    border-radius: 6px;
    margin-left: auto;
    display: block;
    margin-top: -190px;
}

.experience {
    width: 250px;
    height: 250px;
    background-color: var(--theme-color);
    border-radius: 50%;
    text-align: center;
    padding: 40px 0;
    color: #fff;
    position: absolute;
    top: 150px;
    left: 0;
    z-index: 1;
    border: 15px solid white;
}

.experience .year {
    font-size: 40px;
    font-weight: 800;
}

.experience p {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}

.about-us .owl-nav button {
    height: 56px;
    width: 56px;
    border-radius: 50px;
    border: 1px solid #ccc !important;
}

.about-us .owl-nav button.owl-next {
    margin-left: 20px;
}

.about-slider {
    background: url(../images/bg/about.webp);
}

/*==============Taxi Service section=========*/

.taxi-service-section .card {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    padding: 20px;
    border-radius: 20px;
    border: none;
}

.taxi-service-section .card .card-img {
    overflow: hidden;
    border-radius: 20px;
}

.taxi-service-section .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.3s linear;
}

.taxi-service-section .card .card-body {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.taxi-service-section .card .card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.taxi-service-section .card:hover img {
    -webkit-transform: scale(1.05) rotate(2deg);
    transform: scale(1.05) rotate(2deg);
    opacity: .8;
}

/*===============group buttons===============*/

.offer-action {
    text-align: center;
    background: var(--second-color) none repeat scroll 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    margin: 24px auto 0;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    border-radius: 4px;
}

.offer-action a {
    display: inline-block;
    text-transform: uppercase;
    padding: 15px 15px;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    width: 49%;
    line-height: 10px;
}

.offer-action a i {
    padding-right: 5px;
}

.offer-action:after {
    position: absolute;
    content: "";
    width: 66%;
    height: 100%;
    background: var(--theme-color) none repeat scroll 0 0;
    right: -36px;
    z-index: -1;
    -webkit-transform: skewX(40deg);
    transform: skewX(40deg);
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.offer-action:hover {
    background: var(--theme-color) none repeat scroll 0 0;
}

.offer-action:hover:after {
    background: var(--second-color) none repeat scroll 0 0;
}

.multi-button {
    margin-top: 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.multi-button a {
    width: 100%;
    display: inline-block;
    text-align: center;
}

.multi-button a i {
    padding-right: 5px;
}

/*================content-container=============*/

.content-container img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.content-container .content-box {
    border: 1px solid #dfdfdf;
    padding: 20px;
    border-radius: 10px;
}

.content-container .content-box p {
    text-align: justify;
}

.content-container .title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 15px;
    line-height: 1.2;
}

.driver-details__info {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-top: 25px;
    margin-top: 29px;
    border-top: 1px solid #dfdfdf;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}

.driver-details__info li {
    display: flex;
    align-items: center;
    gap: 11px;
}

.driver-details__info li .driver-details__info__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F2F2F2;
    font-size: 16px;
    color: var(--second-color);
    border-radius: 50%;
    transition: all 500ms ease;
}

.driver-details__info li a {
    color: #838383;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    transition: all 500ms ease;
}

/*=====================cab section=================*/

.tour-listing__card {
    position: relative;
    border-radius: 10px;
    border: 1px solid #EBE6DE;
    background-color: #ffffff;
    transition: all 500ms ease;
}

.tour-listing__card:hover {
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.06);
}

.tour-listing__card-image-box {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    z-index: 1;
    margin: -1px -1px 0;
}

.tour-listing__card-image-box img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.tour-listing__card-image {
    display: block;
    width: 100%;
    border-radius: 10px 10px 0 0;
    transition: all 500ms ease;
}

.tour-listing__card:hover .tour-listing__card-image {
    transform: scale(1.1);
}

.tour-listing__card-image-overlay {
    width: 100%;
    height: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgb(4 40 72 / 33%);
    z-index: 1;
    border-radius: 10px 10px 0 0;
    transition: all 500ms ease;
}

.tour-listing__card:hover .tour-listing__card-image-overlay {
    top: 0;
    height: 100%;
}

.tour-listing__card-content {
    padding: 30px;
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .tour-listing__card-content {
        padding: 32px 25px 25px;
    }
}

@media (max-width: 375px) {
    .tour-listing__card-content {
        padding: 32px 20px 20px;
    }
}

@media (max-width: 360px) {
    .tour-listing__card-content {
        padding: 32px 15px 20px;
    }
}

.tour-listing__card-title {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 1px;
    font-weight: bold;
    color: #000;
}

.tour-listing__card-title:hover {
    color: var(--theme-color);
}

.tour-listing__card-title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.tour-listing__card-title a:hover {
    background-size: 100% 1px;
}

.tour-listing__card-text {
    line-height: 24px;
    margin-bottom: 18px;
}

.tour-listing__card-inner-content {
    position: relative;
    padding: 17px 20px 15px;
    margin-top: 18px;
    background-color: #FAF5EE;
    border-radius: 10px;
    transition: all 400ms ease-in-out;
    z-index: 1;
}

.tour-listing__card-inner-content::after {
    content: "";
    width: 100%;
    height: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--theme-color);
    z-index: 1;
    border-radius: 10px 10px 0 0;
    transition: all 500ms ease;
    border-radius: 10px;
    z-index: -1;
}

.tour-listing__card:hover .tour-listing__card-inner-content::after {
    top: 0;
    height: 100%;
}

.tour-listing__card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.tour-listing__card-bottom-left {
    display: flex;
    align-items: center;
}

.tour-listing__card-day {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.tour-listing__card-day span {
    position: relative;
    top: -1px;
    font-size: 14px;
    color: var(--theme-color);
    margin-right: 9px;
    transition: all 0.4s ease-in-out;
}

.tour-listing__card:hover .tour-listing__card-day span {
    color: #ffffff
}

.tour-listing__card-day-text {
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.tour-listing__card:hover .tour-listing__card-day-text {
    color: #ffffff
}

.tour-listing__card-price {
    line-height: 1;
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
    color: #000;
    font-weight: bold;
}

.tour-listing__card:hover .tour-listing__card-price {
    color: #ffffff;
}

.tour-listing__card .multi-button .btn-theme {
    padding: 10px;
}

/*======================footer===================*/

.footer-wrapper {
    background-color: #fff;
    position: relative;
}

footer .ot-widget-about img {
    top: -6px;
}

.footer-wrapper .footer-wrapper-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: var(--theme-color);
    opacity: 0.93;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.footer-wrapper .justify-content-between {
    padding: 50px 60px 10px;
}

.widget-area {
    padding-top: 120px;
    padding-bottom: 75px;
}

.footer-widget,
.footer-widget .widget {
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
    box-shadow: none;
}

footer .footer-site_name {
    display: block;
    align-items: center;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}

footer .site_name_name {
    display: block;
    position: relative;
    top: -10px;
}

.footer-widget {
    margin-bottom: 40px;
}

.ot-widget-about .about-logo {
    margin-bottom: 30px;
}

.ot-widget-about .about-text {
    margin-bottom: 25px;
    margin-top: -0.46em;
    margin: -25px 0 18px 0;
    color: var(--font-color);
    font-weight: 550;
    line-height: 1.75;
    font-size: 14px;
}

.footer-wrapper .footer-gallary .gi {
    width: 90px;
    object-fit: cover;
    max-height: 90px;
    margin-bottom: 10px;
}

.footer-wrapper .footer-gallary .width-33 {
    width: 33% !important;
}

.footer-wrapper .footer-gallary .gi img {
    object-fit: cover;
    width: 90px;
    height: 90px;
    border: 1px solid #181818;
    size: cover;
    border-radius: 5px;
}

.footer-wrapper .footer-gallary .gi img:hover {
    opacity: 0.5;
}

.footer-wrapper .ot-social a {
    --icon-size: 45px;
    font-size: 14px;
    border-color: rgb(255 255 255 / 7%);
    background-color: rgb(255 255 255 / 7%);
}

@media (max-width: 1399px) {
    .ot-social a {
        margin-right: 3px;
    }
}

.ot-social a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: transparent;
    color: #363539;
    font-weight: 550;
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
    border-radius: 5px;
    border: 1px solid #fff;
}

.footer-widget .widget_title {
    /*    max-width: 275px;*/
    margin-bottom: 20px;
    font-weight: 600;
    color: #000;
    font-family: var(--second-font);
}

.widget_title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    line-height: 1em;
    margin: -0.1em 0 30px 0;
    padding-bottom: 20px;
}

.widget_title:before {
    content: '';
    height: 3px;
    width: 90px;
    background-color: var(--theme-color);
    font-weight: 550;
    position: absolute;
    bottom: 13px;
    left: 0;
}

.contact-info-box {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-info-box_text a:before {
    display: none;
    content: none;
}

.contact-info-box_text {
    display: block;
    color: var(--font-color) !important;
    font-size: 14px;
    font-weight: 550;
    margin-bottom: 0;
}

.contact-info-box_icon i {
    position: relative;
    left: 5px;
    top: 2px;
    font-size: 20px;
    color: var(--font-color);
}

.footer-widget.widget_nav_menu a {
    font-size: 14px;
    font-weight: 550;
    margin-bottom: 4px;
    display: block;
    max-width: 100%;
    padding-right: 0;
    background-color: transparent;
    position: relative;
    color: var(--font-color);
}

.footer-widget.widget_nav_menu a:before {
    content: "\f101";
    font-family: 'FontAwesome';
    font-weight: 600;
    left: 0;
    top: 0;
    color: var(--font-color) !important;
    background-color: transparent;
    border: none;
    color: inherit;
    transition: 0.4s linear;
    position: relative;
    padding-right: 10px;
    font-size: 15px;
}

.footer-widget.widget_nav_menu a:hover:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*.ot-widget-contact {
    max-width: 260px;
}*/

.info-box {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-box_icon {
    font-size: 16px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    background-color: transparent;
    border-radius: 50%;
    transition: 0.3s linear;
    border: 2px solid #fff;
}

.info-box_icon i {
    width: 35px;
    position: relative;
    left: -2px;
    top: -1px;
}

footer .info-box .info-box_text {
    display: block;
    color: #fff !important;
    font-size: 16px;
    font-weight: 550;
    margin-bottom: 0;
}

footer .info-box .info-box_text a {
    color: #fff !important;
    font-weight: 550;
}

.widget_nav_menu li {
    display: block;
    border-bottom: 1px dashed #fff;
    margin-bottom: 10px;
}

.copyright-wrap {
    padding: 10px 0;
    text-align: center;
    background-color: #efb700;
    border-top: 1px solid #313D54
}

.copyright-wrap .row {
    justify-content: space-between !important;
}

@media (max-width: 1199px) {
    .copyright-wrap {
        padding: 24px 0
    }
}

.copyright-wrap.style2 {
    background-color: var(--theme-color);
    border-top: 1px solid #fff;
    padding: 5px 0
}

.copyright-wrap p {
    color: #fff;
    font-weight: 600;
}

.copyright-wrap p a {
    color: #000;
    font-weight: 700;
}

.copyright-text {
    margin: 0;
    color: #fff;
    font-weight: 550;
}

.copyright-text a:hover {
    color: var(--second-color);
}

.footer-links li {
    display: inline-block;
    padding-right: 15px;
    margin-right: 10px;
    position: relative;
}

.footer-links a {
    font-family: inherit;
    color: #fff;
}

.footer-links ul {
    padding: 0;
    margin: 0;
}

footer .ul_padding_no {
    padding: 0;
}

.footer-widget.widget_nav_menu a:hover {
    background-color: transparent;
    color: var(--second-color);
}

ul.social-link {
    padding: 0;
}

ul.social-link li {
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
    display: inline-block;
}

ul.social-link li a {
    background-color: transparent;
    color: var(--font-color);
    height: 36px;
    width: 36px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--font-color);
    transition: all 0.3s ease-in-out;
}

.copyright-text a {
    color: #000;
}

.footer-wrapper .ot-social a:hover {
    border-color: var(--second-color);
    background-color: var(--second-color);
}

.logo-style {
    text-align: center;
    background: var(--theme-color);
    box-shadow: 0px 4px 2.5px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    padding: 10px;
    border-bottom: 3px solid var(--second-color);
    width: 142px;
    height: 135px;
    color: #fff;
    position: absolute;
    top: 10px;
}

form .title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

form hr {
    text-align: center;
}

/*breadcrumbs*/

.sub-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/about_banner.jpg);
    background-size: cover;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
    font-family: var(--font-family);
}

.sub-banner .breadcrumb-area {
    letter-spacing: 1px;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
}

.sub-banner .breadcrumb-area .h1 {
    margin: 0 0 5px;
    font-weight: 700;
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
}

.sub-banner .breadcrumbs li {
    display: inline-block;
    list-style: none;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.sub-banner .breadcrumbs li a {
    color: #fff;
}

.sub-banner .breadcrumbs .active {
    margin-left: 3px;
    color: #fff;
}

.sub-banner .breadcrumbs .active:before {
    content: "/";
    font-family: "font awesome 6 free";
    font-size: 16px;
    margin-right: 7px;
    font-weight: 600;
}

/*=============contact section======*/

.contact-section .card {
    padding: 30px;
    border-radius: 20px;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
    border: none;
    box-shadow: 0px 16px 51px 0px rgba(0, 0, 0, 0.07);
    gap: 20px;
    height: 100%;
}

.contact-section .card .card-icon {
    width: 23%;
}

.contact-section .card .card-body {
    width: 70%;
    padding: 0;
}

.contact-section .card i {
    background-color: var(--theme-color);
    font-size: 35px;
    color: #fff;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 10px;
    text-align: center;
}

.contact-section .card-title {
    font-size: 25px;
    font-weight: 600;
}

.contact-section .card p {
    margin-bottom: 0;
    font-size: 15px;
}

.contact-section .card.bg-white {
    background-color: #fff;
    color: #000;
}


/*.contact_details{
  background-color: #f1f1f1;
  padding: 30px;
  height: 100%;
  border-radius: 0 20px 20px 0;
}*/

/*service page*/

.service-page .contentBox img {
    width: 100%;
    border-radius: 100px 0 100px 0;
    margin-bottom: 20px;
}

.service-page .contentBox h3,
.service-page .contentBox .h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

.service-page .contentBox p {
    text-align: justify;
}

/*sidebar*/

.widget_service_categories {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    background-color: #e6fffe;
}

.widget-title .title {
    color: var(--theme-color);
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: bold;
    text-transform: capitalize;
}

.widget-title .progress {
    width: 30%;
    height: 6px;
    margin-bottom: 20px;
}

/*chardham page*/

.booking-form-wrap {
    border-radius: 10px;
    background: linear-gradient(125deg, rgba(99, 171, 69, 0.1) 0%, rgba(251, 176, 59, 0.1) 100%);
    border-radius: 5px;
    padding: 25px;
}

.package-details-area h4 {
    color: #000;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.75px;
    margin-bottom: 10px;
    padding-top: 10px;
}

.form-inner {
    line-height: 1;
}

.mb-20 {
    margin-bottom: 20px;
}

.form-inner label {
    color: #5d5b58;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    line-height: 1;
    margin-bottom: 7px;
}

.form-inner label span {
    color: red;
    font-size: 16px;
}

.form-inner input {
    width: 100%;
    border-radius: 0;
    background: #fff;
    color: #000;
    font-size: 13px;
    font-weight: 400;
    padding: 10px 20px;
    height: 50px;
    border: 1px solid #eee;
}

.form-inner textarea {
    width: 100%;
    border-radius: 5px;
    background: #fff;
    color: #5e5e5e;
    border: 1px solid #eee;
    outline: none;
    font-size: 13px;
    font-weight: 400;
    padding: 20px 25px;
    min-height: 150px;
}

.service-page ol {
    padding-left: 20px;
}

.service-page ol li {
    margin: 5px 0;
}

/*=================testimonial=================*/

.testimonial-section {
    /*background: url(../images/bg/testimonial.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;*/
}

.testimonial-item-two {
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    background: #fff;
    padding: 60px 35px 40px;
    position: relative;
    margin-top: 40px;
    margin-bottom: 30px;
}

.testimonial-icon-two {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme-color);
    font-size: 30px;
    color: #fff;
    line-height: 1;
    position: absolute;
    left: 35px;
    top: -40px;
}

.testimonial-content-two p {
    margin-bottom: 25px;
}

.testimonial-avatar-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.testimonial-avatar-info .avatar-thumb {
    width: 40px;
    flex: 0 0 40px;
    margin-right: 8px;
}

.testimonial-avatar-info .avatar-thumb img {
    border-radius: 50%;
}

.testimonial-avatar-info .avatar-content {
    text-align: left;
}

.testimonial-avatar-info .avatar-content .title {
    margin-bottom: 5px;
    font-size: 20px;
}

.testimonial-avatar-info .avatar-content p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.2;
}

.text-second {
    color: var(--second-color);
}

/*cab section*/

.banefits-two__single {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 55px;
    border-radius: 170px;
}

.banefits-two__single-img {
    position: relative;
    display: block;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
}

/*.banefits-two__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}*/

.banefits-two__single-img .inner::before {
    position: absolute;
    top: 0%;
    left: 0%;
    bottom: 0%;
    right: 0%;
    content: '';
    transform: scaleY(1.0);
    opacity: 0;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    z-index: 1;
}

/*.banefits-two__single:hover .banefits-two__single-img .inner::before {
  opacity: 0.70;
  transform: scaleY(1.0);
}*/

.banefits-two__single-img .inner img {
    width: 200px;
    transition: 0.3s linear;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 9px solid #f3f5fb;
}

/*.banefits-two__single:hover .banefits-two__single-img .inner img {
  transform: scale(1.1) rotate(1deg);
}*/

.banefits-two__single-content {
    position: relative;
    display: block;
    margin-top: 37px;
}

.banefits-two__single-content .cab-title {
    margin-bottom: 4px;
    font-size: 25px;
    font-weight: 600;
}

.banefits-two__single-content .multi-button .btn-theme {
    padding: 10px;
}

.btn-header {
    background-color: var(--second-color);
    color: #fff;
}

.btn-header:after {
    background-color: #000;
}

/*book now*/

.bookingform {
    box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
    border-radius: 10px;
    padding: 20px;
}

.booking-page .form-control,
.booking-page .form-select {
    padding: 10px;
}

.booking-page label {
    color: #000;
    margin-bottom: 5px;
}

.booking-page label span {
    color: var(--theme-color);
    padding-left: 5px;
}

.booking-page .enquiry-form {
    margin-bottom: 0 !important;
}

.booking-page .enquiry-form form {
    box-shadow: none;
    border-radius: 10px 0 0 10px;
}

.booking-page .enquiry-form form .form-title {
    color: #000;
}

.booking-page img {
    border-radius: 0 10px 10px 0;
}

.booking-page .enquiry-form form .btn-theme {
    border: none;
    padding: 13px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-one {
    position: relative;
    background-color: #F2F2F2;
}

.about-one--about {
    background-color: #FFFFFF;
}

.about-one__bg {
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    mix-blend-mode: overlay;
}

.about-one .container {
    position: relative;
    z-index: 1;
}

.about-one__image {
    position: relative;
}

.about-one__image__one {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-left: 50px;
}

@media (max-width: 575px) {
    .about-one__image__one {
        padding-left: 19px;
    }
}

/*.about-one__image__one::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50px;
  right: -50px;
   border: 3px solid var(--second-color); 
  background-color: var(--theme-color);
}*/

@media (max-width: 1199px) {
    .about-one__image__one::before {
        top: 25px;
        left: -25px;
    }
}

@media (max-width: 991px) {
    .about-one__image__one::before {
        top: 25px;
        left: -25px;
    }
}

@media (max-width: 575px) {
    .about-one__image__one::before {
        width: calc(100% - 30px);
        left: -6px;
        animation: zumpBottom 2s linear infinite;
    }
}

.about-one__image__two {
    position: relative;
    /*margin-left: auto;
  margin-top: -200px;*/
    width: 100%;
    max-width: 100%;
    z-index: 2;
    box-shadow: 0px 4px 60px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: 20px solid #FFFFFF;
}

@media (max-width: 1199px) {
    .about-one__image__two {
        margin-left: 35px;
        margin-top: -160px;
    }
}

@media (max-width: 991px) {
    .about-one__image__two {
        margin-left: 170px;
        margin-top: -279px;
    }
}

@media (max-width: 767px) {
    .about-one__image__two {
        margin-left: 130px;
    }
}

@media (max-width: 575px) {
    .about-one__image__two {
        margin: 70px 0 0 0;
    }
}

/*.about-one__image__two__img {
  border: 20px solid #FFFFFF;
}*/

.about-one__image__one__img,
.about-one__image__two__img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
}

.about-one__image__shape-one {
    position: absolute;
    top: -41px;
    right: -31px;
    animation: zumpBottom 2s linear infinite;
}

@media (max-width: 575px) {
    .about-one__image__shape-one {
        display: none;
    }
}

.about-one__image__shape-two {
    position: absolute;
    left: -35px;
    bottom: -37px;
    animation: zump 2s linear infinite;
}

@media (max-width: 575px) {
    .about-one__image__shape-two {
        display: none;
    }
}

.about-one__experience {
    position: relative;
    position: absolute;
    left: 46px;
    bottom: 9.75px;
    z-index: 1;
}

@media (max-width: 375px) {
    .about-one__experience {
        left: 30px;
    }
}

.about-one__experience__inner {
    padding-bottom: 12px;
    text-align: center;
}

.about-one__experience__year {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.about-one__experience__text {
    margin: 0;
    font-size: 16px;
    color: #000000;
    line-height: 1.75;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

@media (max-width: 375px) {
    .about-one__experience__text {
        font-size: 14px;
    }
}

.about-one__experience__shape {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-one__experience__shape__one,
.about-one__experience__shape__two {
    position: relative;
    width: 258px;
    height: 169px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background-color: var(--second-color);
}

@media (max-width: 375px) {

    .about-one__experience__shape__one,
    .about-one__experience__shape__two {
        width: 230px;
    }
}

.about-one__experience__shape__one {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
}

.about-one__experience__shape__two {
    left: -218px;
    background-color: #FFFFFF;
}

/*.about-one__content {
  margin-top: 29px;
}*/

@media (max-width: 991px) {
    .about-one__content {
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .about-one__content {
        margin-top: 0px;
    }
}

.about-one .sec-title {
    margin-bottom: 19px;
}

.about-one__sub-title {
    margin-bottom: 22px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.about-one__text-box {
    margin-bottom: 39px;
    border-bottom: 1px solid #DFDFDF;
}

.about-one__text {
    margin-bottom: 30px;
    letter-spacing: -0.03em;
    text-transform: capitalize;
}

.about-one__shape {
    max-width: 100%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 239px;
    animation: zumpBottom 2s linear infinite;
}

@media (max-width: 1599px) {
    .about-one__shape {
        max-width: 110px;
    }
}

@media (max-width: 1399px) {
    .about-one__shape {
        display: none;
    }
}

@keyframes zumpBottom {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    50% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/*float  buttons*/

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 15px;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    line-height: 60px;
    z-index: 100000;
}

.float-call {
    background-color: var(--theme-color);
    left: 15px;
    font-size: 22px;
    border: 2px solid #fff;
}

.my-float {
    margin-top: 5px;
    color: #25d366;
}

.my-call {
    margin-top: 5px;
}

/*testimonial-section*/

.bd-tm__item {
    background: #fff;
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
    padding: 46px 50px 50px 50px;
    border-radius: 6px;
    overflow: hidden;
    border-bottom: 3px solid var(--theme-color);
}

.bd-tm__item:hover .bd-tm__text p {
    color: #fff;
}

.bd-tm__item:hover .bd-tm__quote-icon i {
    color: #fff;
}

.bd-tm__item:hover .bd-tm__author {
    background: var(--theme-color);
}

.bd-tm__item:hover .bd-tm__author-name {
    color: #fff;
}

.bd-tm__item:hover .bd-tm__author-cat {
    color: #fff;
}

.bd-tm__item:hover::before {
    height: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .bd-tm__item {
        padding: 40px 20px 40px 20px;
    }
}

.bd-tm__rating {
    margin-bottom: 15px;
}

.bd-tm__rating i {
    color: var(--second-color);
}

.bd-hover-top::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    background: var(--theme-color);
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-transform: 0.5s;
    -moz-transform: 0.5s;
    -ms-transform: 0.5s;
    transform: 0.5s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.bd-hover-top {
    z-index: 1;
    position: relative;
}

.bd-hover-top:hover::before {
    height: 100%;
}

/*.bd-tm__rating i:last-child {
  color: var(--clr-common-gray-4);
}*/

.bd-tm__text {
    margin-bottom: 32px;
}

.bd-tm__text p {
    font-size: 20px;
    color: #353739;
    letter-spacing: -0.3px;
    font-weight: 600;
    line-height: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .bd-tm__text p {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 0px;
    }
}

.bd-tm__author {
    background: #f8f8f8;
    display: flex;
    position: relative;
    border-radius: 6px;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.bd-tm__author-name {
    margin-bottom: 0;
    padding-top: 16px;
}

.bd-tm__author-img {
    margin-right: 20px;
    width: 70px;
    height: 70px;
}

.bd-tm__author-img img {
    width: 100%;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.bd-tm__quote-icon {
    position: absolute;
    right: 0;
    top: -30px;
}

.bd-tm__quote-icon i {
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    font-size: 52px;
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    display: block;
    color: var(--theme-color);
}

@media (max-width: 575px) {
    .bd-section__tm-title {
        margin-bottom: 20px;
    }
}

/*our services*/

.bg-light {
    background: #f5f5f5 !important;
}

.feature-three__single {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    padding: 30px;
    z-index: 1;
    height: 100%;
}

.feature-three__single .shape1 {
    position: absolute;
    top: 45px;
    right: 10px;
    opacity: 0.5;
    z-index: 1;
}

.feature-three__single .shape2 {
    position: absolute;
    left: 0;
    bottom: 25px;
    opacity: 0.5;
    z-index: 1;
}

.feature-three__single::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    border-radius: 10px;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    content: "";
    z-index: -1;
}

.feature-three__single::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: scaleX(0.7) rotateX(0deg);
    transition: all 0.4s linear;
    border-radius: 10px;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    opacity: 0;
    z-index: -1;
    content: "";
}

.feature-three__single:hover::after {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.feature-three__single-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #eef0f6;
    margin: 0 auto 37px;
}

.feature-three__single-icon img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.feature-three__single-icon span::before {
    position: relative;
    display: inline-block;
    font-size: 50px;
}

.feature-three__single .h2 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
    text-transform: capitalize;
}

.feature-three__single .h2 {
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-three__single:hover .h2 {
    color: #ffffff !important;
}

.feature-three__single .border-box {
    position: relative;
    display: block;
    width: 50px;
    height: 3px;
    background: #eef0f6;
    margin: 10px auto 0px;
}

.feature-three__single .border-box::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 10px;
    height: 3px;
    content: "";
    margin: 0 auto;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-three__single:hover .border-box::before {
    background: #96a7d8;
}

.feature-three__single p {
    margin: 0;
    margin-top: 10px;
}

.feature-three__single .btn-box {
    position: relative;
    display: inline-block;
    margin-top: 24px;
}

.feature-three__single:hover p {
    color: #ffffff;
}

.feature-three__single .btn-box a {
    position: relative;
    display: block;
    padding: 0px 30px 0px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 50px;
    border-radius: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.feature-three__single .btn-box a:hover {
    color: #ffffff;
}

.feature-three__single .btn-box a span::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    top: 2px;
}

.feature-three__single::after {
    background-color: var(--theme-color);
}

/*==============best cab service=============*/

.taxi-service-section {
    position: relative;
    background-image: linear-gradient(90deg, #FAEDDC 0%, #EFF9EC 100%);
}

.taxi-service-section .inner-box {
    position: relative;
    display: block;
    background: #ffffff;
    border-radius: 25px;
    padding: 32px 20px 0px 20px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 500ms ease;
    text-align: center;
}

.taxi-service-section .inner-box .shape {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 139px;
    height: 139px;
    background-repeat: no-repeat;
    transition: all 500ms ease;
}

.taxi-service-section .inner-box:hover .shape {
    opacity: 0;
}

.taxi-service-section .inner-box .overlay-shape {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 139px;
    height: 139px;
    opacity: 0;
    background-repeat: no-repeat;
    transition: all 500ms ease;
}

.taxi-service-section .inner-box:hover .overlay-shape {
    opacity: 1;
}

.taxi-service-section .inner-box:hover {
    transform: translateY(-10px);
}

.taxi-service-section .inner-box .h3 {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.taxi-service-section .inner-box p {
    display: block;
    margin-bottom: 32px;
}

.taxi-service-section .inner-box .image-box {
    position: relative;
    display: inline-block;
    max-width: 220px;
    width: 100%;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 40px !important;
}

.taxi-service-section .inner-box .image-box img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 500ms ease;
}

.taxi-service-section .inner-box .image-box:before,
.taxi-service-section .inner-box .image-box:after {
    position: absolute;
    content: '';
    background: #fff;
    width: 5px;
    height: 100%;
    top: 0px;
    z-index: 1;
}

.taxi-service-section .inner-box .image-box:before {
    left: 0px;
}

.taxi-service-section .inner-box .image-box:after {
    right: 0px;
}

.taxi-service-section .inner-box .link-box {
    position: relative;
    display: block;
    padding: 17px 0px 18px 0px;
}

.taxi-service-section .inner-box .link-box:before {
    position: absolute;
    content: '';
    border-top: 1px dashed #d8d2d0;
    width: calc(100% + 40px);
    height: 1px;
    left: -20px;
    top: 0px;
}

.taxi-service-section .inner-box .link-box a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    font-family: 'Urbanist', sans-serif;
    color: #0c0c0c;
    font-weight: 800;
    text-transform: uppercase;
    padding-left: 32px;
}

.taxi-service-section .inner-box .link-box a:before {
    position: absolute;
    content: "\f061";
    font-family: 'fontawesome';
    font-size: 18px;
    top: 0;
    left: 0px;
    font-weight: 400;
    transition: all 500ms ease;
}

.taxi-service-section .inner-box .link-box a:hover {
    color: var(--theme-color);
}

/*a[href^="tel:"],.font-normal {
  font-family: cursive;
}*/

/*============our gallery=========*/

.gallery-one__single {
    position: relative;
    display: block;
    padding-top: 75px;
    max-width: 400px;
    width: 100%;
    z-index: 1;
}

.gallery-one__single::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #eef0f6;
    clip-path: polygon(0 0, 100% 6%, 100% 100%, 0% 100%);
    content: "";
    z-index: -1;
}

.gallery-one__single-img {
    position: relative;
    display: block;
}

.gallery-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    border-top-left-radius: 0px;
    z-index: 1;
}

.gallery-one__single-img .inner img {
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
    object-fit: cover;
}

.gallery-one__single:hover .gallery-one__single-img .inner img {
    transform: scale(1.2);
}

.gallery-one__single-img .inner::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.gallery-one__single:hover .gallery-one__single-img .inner::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.gallery-one__single-img .content-box {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ffffff;
    padding: 32px 0px 33px;
    padding-left: 20px;
    width: 280px;
    border-top-right-radius: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.gallery-one__single-img .content-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    transform: scaleX(0.7) rotateX(20deg);
    transition: all 0.4s linear;
    z-index: -1;
    border-top-right-radius: 20px;
    opacity: 0;
    background: var(--second-color);
}

.gallery-one__single:hover .gallery-one__single-img .content-box::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.gallery-one__single-img .content-box .h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.gallery-one__single-img .content-box .h3 a {
    transition: all 200ms linear;
    transition-delay: 0.1s;
    color: #000;
    font-weight: 700;
}

.gallery-one__single:hover .gallery-one__single-img .content-box .h3 a {
    color: #ffffff;
}

.gallery-one__single-img .content-box p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.gallery-one__single:hover .gallery-one__single-img .content-box p {
    color: #ffffff;
}

.gallery-one__single-img .btn-box {
    position: absolute;
    left: 255px;
    bottom: 32px;
    z-index: 2;
}

.gallery-one__single-img .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    transition: all 200ms linear;
    transition-delay: 0.3s;
    background-color: var(--theme-color);
}

.gallery-one__single:hover .gallery-one__single-img .btn-box a {
    background: #ffffff;
}

.gallery-one__single-img .btn-box a span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.gallery-one__single:hover .gallery-one__single-img .btn-box a span:before {
    color: var(--theme-color);
}

.gallery-one__carousel.owl-carousel {
    display: block;
    max-width: 375px;
    width: 100%;
    margin: 0 auto;
}

.gallery-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px 0px 0px;
}

/*about img three*/

.about-one__image__three {
    position: relative;
    margin-top: 70px;
    width: 100%;
    max-width: 300px;
    z-index: 2;
}

.about-one__image__three__img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    border-radius: 20px;
    height: 250px;
    object-fit: cover;
}

.about-one__image__one__img {
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.mnt-50 {
    margin-top: -50px;
}

/*================our cab services============*/

.service-item {
    background-color: #fff;
    padding: 60px 30px;
    border-radius: 170px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    height: 100%;
}

.service-item:before {
    content: "";
    background-color: var(--theme-color);
    width: 0;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s cubic-bezier(.785, .135, .15, .86);
    z-index: -1;
}

.service-item:after {
    content: "";
    background-color: var(--theme-color);
    width: 0;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all .3s cubic-bezier(.785, .135, .15, .86);
    z-index: -1;
}

.service-item:hover:after,
.service-item:hover:before {
    width: 100%;
}

.service-item .service-icon img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.service-item .h3 {
    font-size: 23px;
    margin: 30px 0 20px 0;
    line-height: 1;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
}

.service-item .h3 a {
    color: #000;
}

.service-item p {
    margin-bottom: 30px;
    transition: all .3s ease-in-out;
}

.service-btn i {
    background-color: #171a1d;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    transform: rotate(-45deg);
    transition: all .3s ease-in-out;
}

.service-item:hover .service-icon svg {
    fill: #fff
}

.service-item:hover p,
.service-item:hover .h3 a {
    color: #fff;
}

.service-item:hover .btn-theme {
    background-color: #fff;
}

.service-item:hover .btn-theme span {
    color: var(--second-color);
}

.service-item .btn-theme:hover span {
    color: #fff;
}

/*========testimonial new=========*/

.testimonial-section {
    background-image: url(../images/testimonials/bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testi-v2-item-box {
    display: flex;
    align-items: center;
    margin-left: 70px;
    border-radius: 20px;
    border: 1px solid #E3E3E3;
    background: #fff;
    margin-right: 10px;
    padding: 50px 55px 50px 0px;
    position: relative;
}

.testi-v2-item-box .image-wrap img {
    height: 160px;
    width: 160px;
    min-width: 160px;
    margin-left: -65px;
    margin-right: 30px;
    border-radius: 10px;
    /*    border: 1px solid #E3E3E3;*/
    object-fit: cover;
}

.testi-v2-name {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
}

.testi-v2-designation {
    color: var(--theme-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.testi-v2-des {
    margin-bottom: 8px;
}

.testi-v2-share {
    color: #FFB422;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.testi-v2-icon {
    color: var(--theme-color);
    font-size: 60px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    position: absolute;
    right: 30px;
    top: 30px;
}

.man-img {
    background-color: #337180;
}

.woman-img {
    background-color: #fd8469;
}

/*footer contactlist*/

.icon-box-v1-item {
    text-align: left;
    background-color: #02010100;
    border: 1px solid var(--theme-color);
    padding: 22px 45px 22px 45px;
    display: flex;
    align-items: center;
    height: 100%;
    transition: .4s;
    border-radius: 10px;
    box-shadow: 0px 16px 51px 0px rgba(0, 0, 0, 0.07);
}

.icon-box-v1-item .icon-box-v1-icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    font-size: 24px;
    background-color: #FFFFFF;
    border-radius: 100%;
    margin-right: 20px;
    color: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box-v1-item .icon-box-v1-title {
    color: #FFFFFF;
    margin: 0px 0px 3px 0px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.icon-box-v1-dec {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

/*===============form=========*/

.coolinput {
    display: flex;
    flex-direction: column;
    position: relative;
}

.coolinput label.text {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    background: #fff;
    margin-left: 0px;
}

.coolinput .input-group-text {
    border: none;
}

.coolinput .input {
    margin-left: 30px;
    padding: 1px;
    border: none;
    border-bottom: 1px solid #000;
    background: #fff;
    height: 35px;
    font-size: 14px;
}

/*.coolinput .input::placeholder{
  color: #4a4545;
}*/

.coolinput .input:focus {
    outline: none;
}

.coolinput i {
    color: #000000;
    position: absolute;
    top: 34px;
    left: 3px;
    font-size: 21px;
}

.coolinput input[type="time"]::-webkit-calendar-picker-indicator {
    background: none;
    background-size: 15px;
    position: relative;
    top: 3px;
    opacity: 0.7;
    right: -15px;
}

/*.home-enquiry-form .btn-theme{
  border-radius: 50px;
}*/

.enquiry-form .btn-theme {
    padding: 12px !important;
}


/*top header*/

.top-header.left-curve {
    background-color: var(--theme-color);
    color: #fff !important;
    font-size: 13px;
}

.top-header .top-phone,
.top-header .top-email {
    margin-right: 20px;
}

.top-header a,
.top-header p {
    color: #fff;
    font-size: 16px;
    display: inline-block;
}

.top-header .socials {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    float: right;
}

.socials li {
    display: inline-block;
}

.socials li a {
    text-align: center;
    line-height: 26px;
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    color: var(--second-color);
    border-radius: 4px;
    transition: background 0.5s;
    -webkit-transition: background 0.5s;
}

.socials li a i {
    color: var(--second-color);
}

.socials a,
.socials a i,
.socials a:hover,
.socials a:focus {
    color: #ffffff;
}

.top-header .text-lg-start i {
    margin-right: 5px;
}

.enquiry-btn {
    background-color: var(--theme-color);
    padding: 6px 15px;
    border-radius: 5px;
    border: 2px solid var(--theme-color);
    transition: 0.3s linear;
}

.enquiry-btn:hover {
    color: var(--theme-color);
    background-color: transparent;
}

/*about new*/

.image-column .inner-column {
    position: relative;
    padding-right: 110px;
    padding-bottom: 60px
}

.image-column .image-1 {
    position: relative;
    display: inline-block;
    margin-bottom: 0
}

.image-column .image-1:before {
    position: absolute;
    right: -55px;
    bottom: -45px;
    width: 100px;
    height: 185px;
    background-image: url(../images/shapes/dots-3.png);
    content: ""
}

.image-column .image-1 img {
    border-radius: 10px;
    width: 500px;
    height: 536px;
    object-fit: cover;
}

.image-column .image-2 {
    position: absolute;
    right: 0;
    top: -40px;
    margin-bottom: 0
}

.image-column .image-2:before {
    position: absolute;
    right: 100px;
    bottom: -80px;
    width: 20px;
    height: 60px;
    background-color: var(--theme-color);
    content: ""
}

.image-column .image-2 img {
    width: 320px;
    height: 294px;
    border-radius: 15px;
    object-fit: cover;
}

/*servicesection*/

.service-block .inner-box {
    position: relative;
    background-color: #fff;
    /*    border: 1px solid #e2e2e2;*/
    padding: 45px 25px 70px 50px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 10px;
    overflow: hidden
}

.service-block .inner-box::before {
    position: absolute;
    width: 124px;
    height: 121px;
    left: 0;
    top: 0;
    background-image: url(../images/shapes/dots.png);
    content: ""
}

.service-block .inner-box:hover {
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 60px rgba(0, 0, 0, .1);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px)
}

.service-block .inner-box:hover .icon-box {
    background-color: var(--theme-color)
}

.service-block .icon-box {
    position: absolute;
    right: -52px;
    bottom: -52px;
    height: 210px;
    width: 210px;
    /*    background: #f3f3f3;*/
    background-size: cover;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    padding: 40px 50px;
    border-radius: 50%
}

.service-block .title {
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 14px
}

.service-block .title:hover {
    color: var(--theme-color)
}

.service-block .text {
    position: relative;
    margin-bottom: 60px
}

/*cab services section new*/

.services-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.services-one__img {
    position: relative;
    display: block;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    overflow: hidden;
    z-index: 1;
}

.services-one__img:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: rgb(25 24 37 / 30%);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 1;
}

.services-one__single:hover .services-one__img:before {
    transform: scaleY(1.0);
}

.services-one__img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.services-one__single:hover .services-one__img img {
    transform: scale(1.1) rotate(2deg);
}

.services-one__content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    padding: 40px 40px 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__content {
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .10);
}

.services-one__title-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 21px;
}

.services-one__title-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.services-one__title-icon:before {
    position: absolute;
    top: 0;
    right: -20px;
    bottom: 0;
    width: 1px;
    content: "";
    background-color: #dcdce0;
}

.services-one__title-icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--theme-color);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1) rotateY(0deg);
}

.services-one__single:hover .services-one__title-icon span {
    transform: scale(.9) rotateY(360deg);
    color: #000;
}

.services-one__title {
    font-size: 25px;
    font-weight: 800;
    line-height: 31px;
    margin-left: 40px;
}

.services-one__title a {
    color: #000;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__title a {
    color: var(--theme-color);
}

.services-one__text {
    font-weight: 500;
    line-height: 32px;
    margin: 0;
}

.services-one__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #dcdce0;
    padding-top: 20px;
    margin-top: 19px;
}

.services-one__read-more {
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__read-more {
    color: var(--theme-color);
}

.services-one__arrow {
    position: relative;
    height: 32px;
    width: 45px;
    background-color: #fcf5f3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #000;
    font-size: 16px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.services-one__single:hover .services-one__arrow {
    color: #fff;
}

.services-one__arrow:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background-color: var(--theme-color);
    border-radius: 15px;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.services-one__single:hover .services-one__arrow:before {
    transform: scaleX(1.0);
}

/*testimonial-section new*/

.testimonial-section-new {
    background-color: #f6f6f6;
}

.testimonial-block {
    position: relative;
    padding: 60px 0 0
}

.testimonial-block .inner-box {
    position: relative;
    background-color: #fff;
    border-top: 12px solid var(--theme-color);
    padding: 30px 50px 45px;
    margin-bottom: 30px;
    border-radius: 10px
}

.testimonial-block .inner-box:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 138px;
    height: 96px;
    background-color: #f3f3f3;
    border-radius: 0 0 500px 0;
    content: ""
}

.testimonial-block .image-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    padding-left: 110px;
    align-items: center;
    margin-bottom: 25px
}

.testimonial-block .image-box .image {
    position: absolute;
    left: -10px;
    top: -100px;
    margin-bottom: 0;
    height: 132px;
    width: 132px;
    padding: 12px
}

.testimonial-block .image-box .image:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 50%;
    width: 100%;
    background-color: var(--theme-color);
    border-radius: 120px 120px 0 0;
    content: ""
}

.testimonial-block .image-box .image img {
    position: relative;
    height: 100%;
    width: 100%;
    border: 5px solid #fff;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 60px rgba(0, 0, 0, .1)
}

.testimonial-block .name {
    margin-bottom: 2px;
    font-size: 24px;
    font-weight: 600;
}

.testimonial-block .designation {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 26px;
    color: #6a6a6a;
    font-weight: 400
}

.testimonial-block .rating {
    position: relative;
    color: #ffba25;
    font-size: 14px;
    letter-spacing: .05em
}

/*cab section*/

.cab-service-section .inner-box {
    position: relative
}

.cab-service-section .inner-box:hover .image-box .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.cab-service-section .inner-box:hover .info-box:after {
    height: 100%;
}

.cab-service-section .inner-box:hover .info-box .title {
    color: #fff;
}

.cab-service-section .inner-box:hover .info-box .icon img {
    -webkit-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}

.cab-service-section .image-box {
    position: relative;
    padding-bottom: 30px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.cab-service-section .image-box .image {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
}

.cab-service-section .image-box .image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 4px;
}

.cab-service-section .info-box {
    position: absolute;
    right: 17px;
    left: 17px;
    bottom: -18px;
    background-color: #fff;
    padding: 29px 28px 36px 120px;
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 60px rgba(0, 0, 0, .1);
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

@media(max-width: 575.98px) {
    .cab-service-section .info-box {
        padding: 29px 28px 36px 108px
    }
}

.cab-service-section .info-box:before {
    content: "";
    position: absolute;
    background: var(--theme-color);
    left: -17px;
    bottom: 0;
    width: 83px;
    height: 100%;
    -webkit-transform: skew(16deg, 0deg);
    transform: skew(16deg, 0deg)
}

.cab-service-section .info-box:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    background-color: var(--second-color);
    content: "";
    z-index: -1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease
}

.cab-service-section .info-box .icon {
    border: 3px solid #fff;
    background-color: var(--theme-color);
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    position: absolute;
    left: 40px;
    top: 27px;
    height: 61px;
    width: 61px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.cab-service-section .info-box .icon img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.cab-service-section .info-box .title {
    display: inline-block;
    font-weight: 700;
    /* letter-spacing: -.1px; */
    line-height: 20px;
    margin-bottom: 0;
    z-index: 1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-size: 20px;
    position: relative;
    top: 8px;
}

@media(max-width: 1199.98px) {
    .cab-service-section .info-box .title {
        font-size: 16px
    }
}

.cab-service-section .info-box .read-more {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    right: 21px;
    top: 34px;
    height: 45px;
    width: 45px;
    background-color: #f8f5f1;
    color: #000;
    font-size: 20px;
    z-index: 1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease
}

.cab-service-section .info-box .read-more:hover {
    background-color: var(--theme-color);
    color: #fff;
}

/*outstation taxi service*/

.outstation-taxi-service .service-block .inner-box {
    padding: 25px !important;
    background-color: var(--theme-color);
    color: #fff;
}

.outstation-taxi-service .service-block .inner-box .title {
    color: #fff !important;
}

.outstation-taxi-service .inner-box .text {
    margin-bottom: 0;
}

/*one-way-taxi-service*/

.one-way-taxi-service ul li a {
    color: #000;
    font-size: 20px;
    transition: 0.3s linear;
}

.one-way-taxi-service ul li a:hover {
    color: var(--theme-color);
}

/*sidelist*/

.service-details__sidebar-service-list {
    margin: 0;
}

.service-details__sidebar-service-list li+li {
    margin-top: 15px;
}

.service-details__sidebar-service-list li a {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background-color: #fff;
    border-radius: 30px 0 30px 0;
    padding: 15px 40px;
}

.service-details__sidebar-service-list li a:hover {
    color: #fff;
    background-color: var(--theme-color);
}

.service-details__sidebar-service-list li a span {
    height: 32px;
    width: 45px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: #000;
    background-color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 15px;
}

.service-details__sidebar-service-list li a:hover span {
    transform: translateY(-50%);
    color: #fff;
    background-color: var(--second-color);
}

/*provide-taxi-section*/

.provide-taxi-section .card {
    text-align: center;
    padding: 10px;
    height: 100%;
}

.provide-taxi-section .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
}

.provide-taxi-section .card .card-title {
    font-size: 20px;
    color: #000;
    font-weight: 700;
    margin-bottom: 30px;
}

.provide-taxi-section .card .btn-theme {
    padding: 10px 30px;
}

/*about*/

.img-box1 {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 30px;
    margin-right: 50px;
    position: relative
}

@media (max-width: 575px) {
    .img-box1 {
        gap: 8px
    }
}

@media (max-width: 1299px) {
    .img-box1 {
        margin-right: 0
    }
}

.img-box1 .box-shape {
    top: -35px;
    left: -80px;
    position: absolute
}

.img-box1 .img1 {
    padding: 15px 0 15px 12px;
    border: 2px dashed var(--theme-color);
    border-radius: 10px;
    position: relative
}

.img-box1 .img1:before {
    content: '';
    height: 140px;
    width: 240px;
    max-width: 90%;
    position: absolute;
    bottom: -2px;
    left: -2px;
    background-color: var(--theme-color);
    border-radius: 0 0 0 10px
}

.img-box1 .img1 img {
    border-radius: 10px;
    -webkit-transform: translateX(2px);
    -ms-transform: translateX(2px);
    transform: translateX(2px);
    height: 100%;
    object-fit: cover;
    width: 350px;
}

.img-box1 .img2 {
    margin-top: 30px
}

@media (max-width: 575px) {
    .img-box1 .img2 {
        margin-top: 8px
    }
}

.img-box1 .img2 img {
    border-radius: 10px;
    width: 100%;
}

.feature-circle {
    background-color: #fff;
    text-align: center;
    padding: 35px 8px;
    border: 2px dashed var(--theme-color);
    border-radius: 10px
}

.feature-circle .box-title {
    font-size: 20px;
    margin: 5px 0 -0.3em 0
}

.feature-circle .circle {
    position: relative
}

.feature-circle .circle-num {
    color: #000;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.spin {
    -webkit-animation: spin 10s linear infinite;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

/*===============icon box=======*/

.service-section-new .icon-box {
    background-color: #FFFFFF;
    padding: 25px 40px;
    box-shadow: 0px 10px 60px 0px rgba(67, 67, 67, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.service-section-new .icon-box::before {
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    content: "";
    transition: all 0.3s ease;
    z-index: 1;
    transform: scale(1, 0);
    transform-origin: bottom;
    transition: transform 500ms ease;
}

.service-section-new .icon-box::after {
    width: 90%;
    height: 5px;
    background-color: var(--theme-color);
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    content: "";
}

.service-section-new .icon-box:hover:after {
    height: 0px;
    transition: transform 500ms ease;
}

.service-section-new .icon-box:hover:before {
    transform: scale(1, 1);
    transform-origin: bottom;
}

.service-section-new .icon-box .icon-box-content .title {
    font-size: 24px;
    font-weight: 700;
}

.service-section-new .icon-box:hover .mask-bg-iconbox,
.icon-box:hover .icon,
.icon-box:hover .title,
.icon-box:hover .des,
.icon-box:hover .btn-icon-box {
    color: #FFFFFF;
    z-index: 1;
}

.service-section-new .icon-box:hover .btn-icon-box {
    border: 2px solid #FFFFFF;
}

.service-section-new .icon-box:hover .mask-bg-iconbox {
    opacity: 0.5;
}

.service-section-new .icon-box .mask-bg-iconbox {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    color: #020101;
    opacity: 0.3;
}

.service-section-new .icon-box .icon img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s;
}

.mb-30 {
    margin-bottom: 30px;
}

.service-section-new .icon-box .btn-icon-box {
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    padding: 16px 38px;
    display: inline-block;
    border: 2px solid rgba(51, 51, 51, 0.1);
}

.service-section-new .icon-box .btn-icon-box:hover {
    background-color: #FFFFFF;
    color: #222222;
}

.service-section-new .icon-box .icon-box-content {
    position: relative;
    z-index: 3;
}

.service-section-new .icon-box .btn-icon-box i {
    font-size: 12px;
}

/*cab services*/

.service-card {
    position: relative;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.service-card .box-img {
    -webkit-clip-path: polygon(100% 0, 100% 100%, calc(100% - 100px) 100%, 50% calc(100% - 32px), 100px 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 100%, calc(100% - 100px) 100%, 50% calc(100% - 32px), 100px 100%, 0 100%, 0 0);
    border-radius: 10px 10px 0 0;
    overflow: hidden
}

.service-card .box-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out
}

.service-card .box-content {
    padding: 0 30px 40px 30px
}

.service-card .box-icon {
    border-radius: 99px;
    margin: -16px auto 2px auto;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    font-size: 30px;
    color: var(--theme-color);
}

.service-card .box-title {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 600;
}

.service-card .box-title a {
    color: #000;
    transition: 0.3s linear;
}

.service-card:hover a {
    color: var(--theme-color)
}

.service-card .box-text {
    margin-bottom: 22px
}

.service-card:hover .box-img img {
    transform: scale(1.1)
}

.service-card:hover .box-icon img {
    transform: rotateY(180deg)
}

/*testimonial new*/

#testimonial-1 .author-wrap {
    display: flex;
    align-items: center;
}

#testimonial-1 .author-thumb img {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
}

#testimonial-1 .author-desc {
    padding-left: 20px;
}

#testimonial-1 .author-desc .h5 {
    font-size: 20px;
}

#testimonial-1 .author-desc span {
    font-size: 15px;
    color: #898a9c;
}

#testimonial-1 .single-testimonial-item {
    background: #fff;
    padding: 65px 50px 70px;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid #f6f6f6;
    transition: 0.3s;
}

@media (max-width: 767px) {
    #testimonial-1 .single-testimonial-item {
        padding: 60px 45px;
    }
}

#testimonial-1 .single-testimonial-item p {
    margin-bottom: 50px;
    font-size: 17px;
}

#testimonial-1 .testimonial-icon i {
    font-size: 25px;
    background: var(--theme-color);
    padding: 15px;
    position: absolute;
    top: -20px;
    color: #fff;
    z-index: 9;
}

#testimonial-1 .single-testimonial-item::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0%;
    height: 4px;
    background-color: var(--theme-color);
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    opacity: 0;
    visibility: hidden;
}

#testimonial-1 .single-testimonial-item:hover::before {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

/*provide taxi service*/

.icon-box2 {
    border-radius: 117px;
    background-color: #FFFFFF;
    padding: 60px 45px;
    box-shadow: 0px 10px 60px 0px rgba(67, 67, 67, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.icon-box2::after {
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--theme-color);
    left: 0;
    right: 0;
    top: -100%;
    position: absolute;
    transition: all 0.4s ease-in-out;
}

.icon-box2::before {
    border: 1px dashed rgba(2, 6, 38, 0.1);
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    border-radius: 117px;
    margin: 15px;
    content: "";
    z-index: 1;
}

.icon-box2:hover::before {
    border: 1px dashed #FFFFFF;
}

.icon-box2:hover::after {
    top: 0px;
}

.icon-box2:hover .icon,
.icon-box2:hover .title {
    color: #FFFFFF;
    z-index: 2;
    position: relative;
}

.icon-box2:hover .check {
    background-color: #D2A98E;
    z-index: 1;
    position: relative;
}

.icon-box2:hover .icon {
    transform: rotateY(180deg);
}

.icon-box2 .icon {
    margin-bottom: 10px;
    color: var(--theme-color);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.icon-box2 .icon img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 55px 55px 20px 20px;
}

.icon-box2 .title {
    margin-bottom: 10px;
    text-align: center;
    z-index: 2;
    font-size: 23px;
    font-weight: 600;
}

/*cab-service-section*/

.cab-service-section {
    background: linear-gradient(rgba(44, 44, 44, 0.6), rgba(44, 44, 44, 0.6)), url(../images/bg/cabs.avif) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.cab-service-section .card {
    padding: 10px;
    text-align: center;
}

.cab-service-section .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
}

.cab-service-section .card .card-title {
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
}

.cab-service-section .card .card-body {
    padding: 0;
}

.btngroup {
    display: flex;
    gap: 10px;
    font-size: 13px;
}

.btngroup .btn-theme {
    padding: 10px 3px;
    width: 100%;
    text-align: center;
}

.amazing-trip .shadow-box {
    background: #FFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.09);
    border-radius: 5px;
    position: relative;
    display: block;
    color: #000;
    padding: 4px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    border-radius: 5px;
    position: relative;
    height: 100%;
    border: dashed 3px #dfdfdf;
    text-align: center;
    background-color: #F5F5F5;
}

.amazing-trip .shadow-box img {
    width: 100%;
    height: 100px;
    border-radius: 5px;
}

.amazing-trip .h4 {
    margin-bottom: 0;
}

/*about image*/

.p-relative {
    position: relative;
}

.about-2-image-area .main-image {
    text-align: center;
    padding-left: 20px;
}

.about-2-image-area .main-image img {
    border-radius: 0 100px 0 0;
    width: 90%;
    height: 548px;
    object-fit: cover;
}

.about-2-image-area .small-image {
    position: absolute;
    display: inline-block;
    bottom: 40px;
    right: -10px;
    border: 12px solid #fff;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    width: 50%;
}

.about-2-image-area .small-image img {
    width: 100%;
}

.about-2-image-area .icon-box {
    background: var(--theme-color);
    display: flex;
    padding: 20px 10px;
    justify-content: flex-start;
    align-items: center;
    gap: 26px;
    position: absolute;
    transform: rotate(270deg);
    top: 50%;
    left: -87px;
    max-width: 322px;
}

.about-2-image-area .icon-box .icon {
    color: var(--theme-color);
    font-size: 60px;
    padding: 25px 30px;
    background: #fff;
    display: inline-block;
    transform: rotate(90deg);
}

.about-2-image-area .icon-box h3 {
    color: #fff;
}

.about-2-image-area .icon-box p {
    color: #fff;
    margin: 0;
}

.about-2-image-area .shape-1 {
    position: absolute;
    top: 55px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

/*OUR SERVICES NEW*/

.team-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-one__single-inner {
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    height: 100%;
}

.team-one__single-img {
    position: relative;
    display: block;
}

.team-one__single-img .btn-box {
    position: absolute;
    left: 0;
    bottom: -25px;
    right: 0;
    margin: 0 auto;
    z-index: 5;
}

.team-one__single-img .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    display: none;
}

.team-one__single-img .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
    font-size: 15px;
    font-weight: 700;
}

.team-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team-one__single-img .inner:before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    right: 0px;
    flex-wrap: wrap;
    background: var(--theme-color);
    z-index: 1;
    opacity: 0.6;
    width: 100%;
    height: 100%;
    -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.team-one__single:hover .team-one__single-img .inner:before {
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.team-one__single-img .inner img {
    width: 100%;
    transition: all 700ms ease;
    height: 200px;
    object-fit: cover;
}

.team-one__single:hover .team-one__single-img .inner img {
    transform: scaleY(1.1);
}

.team-one__single-content {
    position: relative;
    display: block;
    text-align: center;
    background: #f7f7f7;
    padding: 33px 10px 20px;
    z-index: 1;
}

.team-one__single-content .shape1 {
    position: absolute;
    top: 30px;
    left: 15px;
    z-index: -1;
}

.team-one__single-content .shape2 {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: -1;
}

.team-one__single-content .h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
}

/*tour places*/

.tour-wrapper.style-six {
    padding: 25px 24px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    border: 1.5px dashed #4b4e52;
    position: relative;
}

.tour-wrapper.style-six .tour-thumb {
    height: 314px;
    width: 100%;
}

.image-overly a::before {
    position: absolute;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.8;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(180deg, rgba(28, 31, 57, 0) 17.61%, #0d1b2a 100%);
}

.tour-wrapper.style-six .tour-thumb img {
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.tour-thumb a::after,
.tour-thumb a::before {
    border-radius: 10px 10px 0 0;
}

.image-overly {
    position: relative;
    overflow: hidden;
}

.image-overly a::after {
    position: absolute;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    /*    border-radius: 10px;*/
    transition: all 0.3s ease-in-out;
    background: linear-gradient(180deg, rgba(0, 108, 228, 0) 0%, rgba(0, 108, 228, 0.75) 100%);
}

.tour-content-wrapper .tour-title {
    margin-top: 20px;
    margin-bottom: 10px;
}

.tour-content-wrapper .tour-title a {
    font-size: 28px;
    color: #000;
    font-weight: 600;
    line-height: 1.2;
}

.tour-wrapper.style-six:hover .tour-thumb a::before {
    opacity: 0;
}

.tour-wrapper.style-six:hover .tour-thumb a::after {
    opacity: 1;
}

.tour-wrapper.style-six:hover {
    border: 1.5px dashed transparent;
    box-shadow: 0px 4px 70px rgba(0, 0, 0, 0.15);
}

/*testimonial*/

.testimonial-style-four:not(:last-child) {
    margin-bottom: 24px;
}

.testimonial-style-four {
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 70px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.testimonial-style-four:nth-child(2n+1) {
    margin-inline-start: 96px;
}

.testimonial-style-four .testimonial-content {
    background-color: transparent;
    border: 1px solid #e2e4e7;
    padding: 24px 30px;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

.testimonial-style-four .testimonial-content p {
    margin-bottom: 20px;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.testimonial-avatar-wrap {
    display: flex;
    gap: 16px;
    align-items: center;
}

.avatar-thumb {
    max-width: 60px;
}

.bdevs-el-image img {
    border-radius: 50px 50px 50px 50px;
    width: 100%;
}

.rating-color {
    color: #fec300;
}

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

.avatar-meta-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.testimonial-style-four:hover .testimonial-content {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}

/*about images*/

.about-thumb-wrap {
    position: relative;
}

.about-thumb-wrap .img-1 {
    bottom: -53px;
    left: -39px;
    position: absolute;
    z-index: -1;
}

.about-thumb-wrap .img-2 {
    width: 470px;
    height: 500px;
    object-fit: cover;
}

.about-thumb-wrap .img-3 {
    margin-bottom: -75px;
    margin-left: -215px;
    vertical-align: bottom;
    width: 375px;
    height: 270px;
    object-fit: cover;
    border: 10px solid #fff;
}

.about-thumb-wrap .exprience-wrap {
    display: inline-block;
    position: absolute;
    right: -20px;
    text-align: center;
    top: 17px;
}

.about-thumb-wrap .exprience-wrap img {
    margin-bottom: -15px;
}

.about-thumb-wrap .exprience-wrap .details {
    background: url(../images/abouts/shape-2.png);
    background-position: 50%;
    background-size: cover;
    padding: 45px 30px;
}

.about-thumb-wrap .exprience-wrap .details h1 {
    color: #fa4318;
    color: var(--theme-color);
    font-size: 64px;
    font-weight: 900;
    line-height: 83px;
    margin-bottom: 0;
}

.about-thumb-wrap .exprience-wrap .details p {
    color: #080c24;
    color: var(--heading-color);
    font-weight: 600;
    line-height: 19px;
}

/*testimonial new*/

.single-testimonial-wrap {
    background: rgba(8, 12, 36, 0.05);
    border-radius: 5px;
    margin-top: 60px;
    padding: 0 34px 40px 40px;
}

.single-testimonial-wrap .icon {
    margin-bottom: -9px;
    -webkit-transform: translateY(-39px);
    transform: translateY(-39px);
    position: relative;
    width: 81px;
    height: 69px;
    padding: 10px;
    top: -40px;
    background: var(--theme-color);
    transform: rotate3d(0, 1, 1, -60deg);
    border: 9px solid #FFF;
}

.single-testimonial-wrap .icon img {
    width: 100%;
    height: 100%;
    transform: rotate(42deg);
}

.single-testimonial-wrap p {
    border-left: 3px solid #fa4318;
    border-left: 3px solid var(--theme-color);
    color: #4d5765;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
    padding-left: 7px;
}

.single-testimonial-wrap .client-wrap {
    align-items: center;
    display: flex;
    margin-top: 29px;
}

.single-testimonial-wrap .client-wrap .thumb {
    flex: none;
    margin-right: 10px;
}

.single-testimonial-wrap .client-wrap .thumb img {
    width: 60px;
}

.single-testimonial-wrap .client-wrap .details .h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 31px;
    margin-bottom: 3px;
    color: #000;
}

.single-testimonial-wrap .client-wrap .details p {
    border: 0;
    color: #4d5765;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    padding-left: 0;
}

/*amazing trip*/

.service-area.style-2 .single-service-wrap {
    margin-bottom: 40px;
    margin-top: 0;
    -webkit-transform: none;
    transform: none;
}

.service-area.style-2 .single-service-wrap .details {
    padding: 40px 29px 30px;
}

.single-service-wrap {
    position: relative;
    z-index: 1;
    background-color: #fff;
}

.single-service-wrap:hover .thumb:after,
.single-service-wrap:hover .thumb:before {
    border-color: transparent transparent transparent #fa4318;
    border-color: transparent transparent transparent var(--theme-color);
}

.single-service-wrap:hover .details {
    background: #fa4318;
    background: var(--theme-color);
}

.single-service-wrap:hover .details .h5,
.single-service-wrap:hover .details p {
    color: #fff;
}

.single-service-wrap:hover .details p {
    border-bottom-color: #fff;
}

.single-service-wrap:hover .details .btn-wrap .read-more-text {
    color: #fff;
}

.single-service-wrap:hover .details .btn-wrap .read-more-text span {
    background: #fff;
    color: #fa4318;
    color: var(--theme-color);
}

.single-service-wrap .thumb {
    margin: 0 30px;
    position: relative;
    z-index: 0;
    padding-top: 30px;
}

.single-service-wrap .thumb:after {
    left: -30px;
}

.single-service-wrap .thumb:after,
.single-service-wrap .thumb:before {
    border-color: transparent transparent transparent #fff;
    border-style: solid;
    border-width: 40px 0 0 39px;
    bottom: 68px;
    content: "";
    height: 0;
    position: absolute;
    transition: all 0.3s ease-in;
    width: 0;
    z-index: -1;
}

.single-service-wrap .thumb:before {
    right: -30px;
    -webkit-transform: translateY(-175%);
    transform: rotate(270deg);
}

.single-service-wrap .thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.single-service-wrap .thumb .icon {
    border: 8px solid var(--theme-color);
    background: #fff;
    border-radius: 50%;
    height: 70px;
    line-height: 50px;
    margin-bottom: -70px;
    margin-left: auto;
    position: relative;
    right: 20px;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 70px;
}

.single-service-wrap .thumb .icon img {
    width: 40px;
    height: 40px;
}

.single-service-wrap .details {
    background: #fff;
    box-shadow: 0 6px 30px rgba(0, 35, 90, 0.08);
    padding: 32px 29px 30px;
    transition: all 0.3s ease-in;
}

.single-service-wrap .details .h5 {
    line-height: 31px;
    margin-bottom: 8px;
    transition: all 0.3s ease-in;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.single-service-wrap .details p {
    border-bottom: 1px solid rgba(8, 12, 36, 0.15);
    line-height: 26px;
    margin-bottom: 20px;
    padding-bottom: 17px;
    transition: all 0.3s ease-in;
}

.single-service-wrap .details .btn-wrap .read-more-text {
    color: #080c24;
    color: var(--heading-color);
    display: flex;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease-in;
}

.single-service-wrap .details .btn-wrap .read-more-text:after {
    display: none;
}

.single-service-wrap .details .btn-wrap .read-more-text span {
    color: #fff;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    transition: all 0.3s ease-in;
    width: 26px;
}

.service-details-wrap .thumb .icon,
.single-service-wrap .details .btn-wrap .read-more-text span {
    background: #fa4318;
    background: var(--theme-color);
    border-radius: 50%;
    margin-left: auto;
    text-align: center;
}

.service-details-wrap .thumb .icon {
    height: 70px;
    line-height: 68px;
    margin-bottom: -70px;
    position: relative;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 70px;
}

.service-details-wrap .thumb .icon img {
    width: auto;
}

.service-details-wrap h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
    margin-bottom: 9px;
    margin-top: 28px;
}

.service-details-wrap p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 18px;
}

.service-details-wrap p.last-para {
    margin-bottom: -8px;
}

/*services section*/

/*footer contact*/

.footer-top {
    background-position: 50%;
    border-bottom: 1px solid hsla(0, 0%, 100%, .2);
    margin-bottom: 30px;
    padding: 37px 0 0;
}

.footer-top .single-footer-top {
    display: flex;
    margin-bottom: 33px;
    position: relative;
}

.footer-top .single-footer-top .icon {
    background: var(--theme-color);
    border-radius: 5px;
    flex: none;
    height: 80px;
    line-height: 80px;
    margin: 6px 20px 0 6px;
    position: relative;
    text-align: center;
    width: 80px;
}

.footer-top .single-footer-top .icon:after {
    background: #fa4318;
    border-radius: 5px;
    content: "";
    height: 80px;
    left: -6px;
    opacity: .3;
    position: absolute;
    top: -6px;
    width: 80px;
}

.footer-top .single-footer-top .details .h6 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 4px;
}

.footer-top .single-footer-top .details p {
    color: #d6d6d6;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

.footer-top .single-footer-top:after {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD4AAACiCAYAAAAZZX58AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAANBSURBVHgB7Z27bhtBDEWvNkCAAEnlKt3UAfL/vzNVOlcpUirDhIJpWY99zIPk8ACrMdZqDq4OpEoCCufz+RMmYynSX8r5o5yfMRHL6XT6U87XciVMxEIPRf4XnWX175iERfydy/VS5L9hNki6XD9n6F0uTi/535ik9+X6xiy9L3fuZ0TvPnu/t7j73pdH//Tc+7LiORnRu5/e1yzusvdV4oS33leLMxnRu+3ety7upvfN4oSH3neJMxnRu73ejyxuuvdD4oTV3g+LMxnRu43eay1urvdq4oSl3quKMxnRu97eWyxuovcm4oT23puJMxnRu67eWy+utvfm4oTG3ruIMxnR+/jeey6uqveu4oSW3ruLMxnR+5jeRy0+vPdh4sTI3oeKMxnRe7/eNSw+pHcV4kTv3tWIMxnRe9vetS3erXd14kSP3lWKMxnRe/3eNS/etHfV4kSr3tWLMxnRe53erSxevXcz4kTN3k2JMxnR+/7eLS5epXeT4sTR3s2KMxnR+7berS++u3fz4sSe3l2IMxnR+/PePS2+qXdX4sTa3t2JMxnR++3evS7+tHe34sSj3l2LMxnR+1vvMyx+s/cpxInr3qcRZzK499nEiRM9zCaeyvVKzU8jfmn70voU4kX6azle8L/xOaD3bn4Pf/cBZobFE7hredO1+HXXErfi0fUdvC6ecKNriTvxR11LXIlH1yvwtHjCk64lLsTXdi0xLx5db8T64gkbupaYFd/TtcSkeHR9AIuLJ+zsWmJK/GjXEjPi0XUlrCyeUKFriXrxml1LVItH1w3QvHhC5a4lKsVbdS1RJx5dN0bb4gkNu5aoEe/RtUSFeHTdEQ2LJ3TqWjJUvHfXkmHi0fUgRi2eMKBrSXfxkV1LuopH1wrouXjC4K4lXcS1dC1pLh5dK6P14gmKupY0E9fYtaSJeHStmBaLJyjtWlJVXHvXkmri0bURai2eYKBryWFxS11LDolH1wY5sniCsa4lu8Stdi3ZLB5dG2fr4gmGu5asFvfQtWSVeHTtiDWLJzjpWvJQ3FvXkrvi0bVT7i2e4LBryQdxz11L3olH1xMgF09w3rXkn/gsXUsW/jq/ubq+cFb22+A9+Avi7Ps2zpCveAAAAABJRU5ErkJggg==);
    content: "";
    height: 160px;
    position: absolute;
    right: 0;
    top: -38px;
    width: 61px;
}

.footer-top .single-footer-top.after-none:after {
    display: none;
}

/*=========================================================================
=========================================================================
=========================================================================
=========================================================================*/

.shake {
    -webkit-animation-name: wobble;
    animation-name: wobble;
    -webkit-animation-duration: 0.8s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -webkit-transform-origin: 50% 100%;
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.header-call-btn {
    background-color: rgba(255, 200, 21, 0.2);
    border: 1px solid var(--theme-color);
}

.header-call-btn span {
    color: var(--second-color);
}

.header-call-btn:hover span {
    color: #fff;
}

header .navbar-nav .header-call-btn:before {
    content: '';
    background: #fff;
    position: absolute;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

header .navbar-nav .header-call-btn:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    background-color: var(--second-color);
    transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    z-index: -1;
}

header .navbar-nav .header-call-btn:hover {
    color: #fff;
    background-color: #000;
}

header .navbar-nav .header-call-btn:hover::after {
    top: -60%;
}

header .navbar-nav {
    align-items: center;
}

/*===================outstation-taxi-service=============*/

.outstation-taxi-service .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.outstation-taxi-service .card svg {
    color: var(--theme-color);
}

.outstation-taxi-service .card .card-img {
    padding: 10px;
}

.outstation-taxi-service .card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.outstation-taxi-service .card .card-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.outstation-taxi-service .card .card-body {
    padding: 10px;
}

.outstation-taxi-service .card p {
    text-align: justify;
}

.outstation-taxi-service .card .card-footer {
    background-color: #fff;
    display: flex;
    gap: 10px;
    border: none;
    padding: 10px;
}

.outstation-taxi-service .card .card-footer a {
    width: 100%;
    background: var(--theme-color);
    text-align: center;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
}

/*.outstation-taxi-service .card .card-footer a:last-child{
  background-color: #25d366;
}*/

/*##################about us#######################*/

.about__img-wrap-two {
    text-align: center;
    position: relative;
    padding: 30px 0;
}

@media (max-width: 991.98px) {
    .about__img-wrap-two {
        margin-bottom: 50px;
    }
}

@media (max-width: 767.98px) {
    .about__img-wrap-two {
        padding: 30px 15px 30px 0;
    }
}

.about__img-wrap-two>img {
    width: 100%;
    border-radius: 10px;
    border-left: 4px solid var(--theme-color);
    position: relative;
    z-index: 1;
}

.about__img-wrap-two .shape img {
    position: absolute;
    left: 8%;
    bottom: -3%;
}

@media (max-width: 1199.98px) {
    .about__img-wrap-two .shape img {
        left: -2%;
    }
}

.about__img-wrap-two::before {
    content: "";
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 135px;
    height: 100%;
    background: var(--theme-color);
    border-radius: 10px;
    z-index: 1;
}

@media (max-width: 1199.98px) {
    .about__img-wrap-two::before {
        right: 0;
    }
}

.experience__box-two {
    position: absolute;
    transform: rotate(180deg);
    left: 11px;
    bottom: 9%;
    padding: 60px;
}

@media (max-width: 767.98px) {
    .experience__box-two {
        display: none;
    }
}

.experience__content {
    display: flex;
    align-items: center;
    gap: 20px;
    writing-mode: vertical-lr;
    position: relative;
}

@media (max-width: 1199.98px) {
    .experience__content {
        left: 42%;
    }
}

.experience__content .title {
    font-size: 50px;
    line-height: 0.8;
    font-weight: 800;
    margin-bottom: 0;
    color: #fff;
    position: relative;
}

.experience__content .title::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -9px;
    width: 34px;
    height: 2px;
    background: var(--second-color);
}

.experience__content p {
    margin-bottom: 0;
    text-align: left;
    color: #fff;
    line-height: 1.2;
}

.experience__shape {
    position: absolute;
    left: 30%;
    top: 0;
    width: 37%;
    height: 100%;
    transform: rotate(180deg);
    z-index: -1;
}

@media (max-width: 1199.98px) {
    .experience__shape {
        left: 63%;
    }
}

.experience__shape svg {
    width: 100%;
    height: 100%;
    color: var(--theme-color);
    overflow: visible;
}

.alltuchtopdown {
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
}

@keyframes alltuchtopdown {
    0% {
        transform: rotateX(0deg) translateY(0px);
    }

    50% {
        transform: rotateX(0deg) translateY(-20px);
    }

    100% {
        transform: rotateX(0deg) translateY(0px);
    }
}

.about__content-two .btn-theme {
    display: inline-block;
}

.bg-theme {
    background-color: var(--theme-color);
}

table thead th {
    background-color: var(--theme-color) !important;
    color: #fff !important;
}

/*########################our services##############*/

.service-section-new {
    padding-bottom: 100px;
}

.features__item-two {
    border-radius: 10px;
    border: 1px solid #bababa;
    background: #FFF;
    box-shadow: 0px 0px 11px -3px;
    padding: 30px 30px;
    display: block;
    text-align: center;
    gap: 20px;
    margin-top: 30px;
}

.service-section-new .div_top_margin {
    position: relative;
    top: 40px;
}

@media (max-width: 1199.98px) {
    .features__item-two {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .features__item-two {
        flex-wrap: nowrap;
    }
}

.features__icon-two img {
    width: 57px;
}

.features__item-two:hover .features__icon-two img {
    transform: rotateY(180deg);
}

.features__icon-two {
    width: 83px;
    height: 83px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    background: #fff;
    line-height: 0;
    color: var(--theme-color);
    font-size: 50px;
    margin-bottom: 10px;
}

.features__icon-two i {
    transition: all 0.4s ease-out 0s;
    transform: rotateY(0);
}

.features__content-two .title {
    margin-bottom: 10px;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    color: #000;
}

.features__content-two p {
    margin-bottom: 0;
    color: var(--font-color);
}

/*our destination*/

.our-destination-area .card {
    border-radius: 2px 15px;
    border: 2px solid var(--theme-color);
    overflow: hidden;
    text-align: center;
    padding: 20px;
}

.our-destination-area .card.border-black {
    border-color: #000;
}

.our-destination-area .card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.our-destination-area .card .card-title {
    font-size: 20px;
    font-weight: 600;
}

.link_section ul {
    margin-bottom: 0;
}

.link_section ul li {
    padding: 7px 0;
    border-bottom: 1px dashed var(--font-color);
}

.link_section ul li::marker {
    color: var(--font-color);
}

.link_section ul li a {
    color: var(--font-color);
    display: block;
    font-size: 16px;
    font-weight: 600;
}

/**************cabs section**********************/

.cab-service-area .card {
    box-shadow: 0px 25px 20px 0px #cdcdcd;
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #bababa;
    border-top: 4px solid #ccc;
}

.cab-service-area .card img {
    width: 80%;
    height: 180px;
    object-fit: contain;
}

.cab-service-area .card .card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cab-service-area .card .card-body {
    background-color: #ebebeb;
}

.cab-service-area .card p {
    padding: 1rem;
    margin-bottom: 0;
}

.cab-service-area .card ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.cab-service-area .card ul img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    padding: 5px;
    margin: 3px 0;
    background: #fff;
}

.cab-service-area .card ul li {
    font-size: 14px;
    text-transform: uppercase;
}

.cab-service-area .card .card-footer {
    padding: 0;
    display: flex;
    border: none;
}

.cab-service-area .card .card-footer a {
    width: 100%;
    background: var(--theme-color);
    text-align: center;
    padding: 10px;
    color: #fff;
}

.cab-service-area .card .card-footer a:last-child {
    background-color: var(--second-color);
}

/***********Project Card*************/

.our-destination-area {}

.project-card-img {
    overflow: hidden;
    height: 250px;
    background: #fff;
    border-top-right-radius: 10px;
}

.project-card-img img {
    width: 70%;
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin: auto;
    height: auto;
    top: 50%;
    left: 50%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.project-card-icon {
    border: 7px solid #D4CBB9;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 83px;
    -webkit-transform: translate(45px, -117px);
    -ms-transform: translate(45px, -117px);
    transform: translate(45px, -117px);
    position: relative;
    z-index: 1;
    background: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    display: none;
}

.our-destination-area .project-card {
    border: 3px solid var(--second-color);
    border-radius: 2px 15px 2px 15px;
}

.our-destination-area .yellow_card {
    border: 3px solid var(--theme-color);
}

.project-card-icon img {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    width: 60px;
    display: none;
}

.project-card-content {
    margin-bottom: 10px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-size: 15px;
}

@media (max-width: 320px) {
    .project-card-content {
        font-size: 14px
    }
}

.project-card-details {
    background: #fff;
    padding: 18px;
    -webkit-transition: 0.4s;
    position: relative;
    transition: 0.4s;
    background-color: #fff;
    background: #fff;
    bottom: 4%;
    left: 0%;
    border-bottom-left-radius: 13px;
}

.project-card .box-title {
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .project-card .box-title {
        font-size: 16px
    }
}

@media (max-width: 320px) {
    .project-card .box-title {
        font-size: 16px
    }
}

.project-card:hover .project-card-icon {
    border-color: #fff;
    background: var(--theme-color)
}

.project-card:hover .project-card-icon img {
    -webkit-filter: invert(1);
    filter: invert(1);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
}

.project-card:hover .project-card-details {
    background-color: var(--theme-color)
}

.project-card:hover .box-title {
    color: #fff
}

.project-card:hover .project-card-content {
    color: #fff
}

.project-card:hover .btn-theme {
    background-color: var(--second-color);
}

.project-card-details .btn-theme:after {
    background-color: #fff;
    z-index: -1;
}

/*************FAq*************/

.faqs__area-six {
    .accordion-item {
        box-shadow: 0 4px 20px -1px rgba(19, 16, 34, 0.05);
        border-radius: 30px !important;
        -webkit-border-radius: 30px !important;
        -moz-border-radius: 30px !important;
        -ms-border-radius: 30px !important;
        -o-border-radius: 30px !important;
        border: none;
        --bs-accordion-btn-icon-transform: rotate(90deg);
    }

    .accordion-item+.accordion-item {
        margin-top: 17px;
    }

    .accordion-item .accordion-header .accordion-button {
        border-radius: 30px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
        font-size: 1.25rem;
        padding: 13px 10px;
        border-bottom: 2px solid #000;
        font-weight: 700 !important;
    }

    @media (max-width: 1199px) {
        .accordion-item .accordion-header .accordion-button {
            font-size: 1.125rem;
        }
    }

    @media (max-width: 575px) {
        .accordion-item .accordion-header .accordion-button {
            font-size: 1rem;
        }
    }

    .accordion-item {
        background-color: transparent;
        background: transparent;
        border-radius: 0 !important;
        box-shadow: none;
        border: none !important;
        border-bottom: 2px solid #000;
    }

    .accordion-item .accordion-button {
        background-color: transparent;
        border-radius: 0 !important;
        box-shadow: none;
        border: none !important;
        border-bottom: 2px solid #000 !important;
    }

    .accordion-item .accordion-header .accordion-button:not(.collapsed) {
        background-color: transparent;
        background: transparent;
        color: #000;
        border: none;
        border-bottom: 2px solid #fff;
    }

    .accordion-item:first-of-type .accordion-button {
        border-radius: 0 !important;
    }

    .accordion-item .accordion-header .accordion-button:focus {
        box-shadow: none;
    }

    .accordion-item .accordion-header .accordion-button::after {
        background-image: none;
        content: "\f107";
        font-family: "Fontawesome";
        font-weight: 900;
    }

    .accordion {
        border-radius: 0 !important;
    }

    .accordion-item .accordion-body {
        padding: 13px 10px;
    }

    .accordion-item .accordion-body p {
        color: var(--font-color);
        font-size: 15px;
        margin-bottom: 10px;
    }

    .accordion.style-border .accordion-item+.accordion-item {
        margin-top: 10px;
    }

    .accordion.style-border .accordion-item {
        background-color: transparent;
        box-shadow: none;
        border: none;
        border-radius: 0 !important;
        border-bottom: 2px solid var(--second-color);
    }

    .accordion.style-border .accordion-item .accordion-header .accordion-button {
        background-color: transparent;
        /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
        font-family: var(--display-font);
        font-weight: 700;
        font-size: 19px;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        padding-inline: 0;
        color: var(--second-color);
        padding: 20px 8px;
    }
}

.box-need-help img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/*response page*/

.response-section .card {
    padding: 30px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    border: none;
}

.response-section .card .card-icon {
    border-radius: 50%;
    height: 110px;
    width: 110px;
    box-shadow: 0 0 18px #c2c2c2;
    background: #fff;
    margin: 0 auto;
    line-height: 113px;
    font-size: 75px;
    overflow: hidden;
    border: 1px solid #2ea729;
}

.response-section .card p {
    font-size: 20px;
    color: var(--font-color);
}

.response-section .card .card-icon i {
    text-shadow: 0px 0px #d4d4d4, 1px 1px #d4d4d4, 2px 2px #d4d4d4, 3px 3px #d4d4d4, 4px 4px #d4d4d4, 5px 5px #d4d4d4, 6px 6px #d4d4d4, 7px 7px #d4d4d4, 8px 8px #d4d4d4, 9px 9px #d4d4d4, 10px 10px #d4d4d4, 11px 11px #d4d4d4, 12px 12px #d4d4d4, 13px 13px #d4d4d4, 14px 14px #d4d4d4, 15px 15px #d4d4d4, 16px 16px #d4d4d4, 17px 17px #d4d4d4, 18px 18px #d4d4d4, 19px 19px #d4d4d4, 20px 20px #d4d4d4, 21px 21px #d4d4d4, 22px 22px #d4d4d4, 23px 23px #d4d4d4, 24px 24px #d4d4d4, 25px 25px #d4d4d4, 26px 26px #d4d4d4, 27px 27px #d4d4d4, 28px 28px #d4d4d4, 29px 29px #d4d4d4, 30px 30px #d4d4d4, 31px 31px #d4d4d4, 32px 32px #d4d4d4, 33px 33px #d4d4d4, 34px 34px #d4d4d4, 35px 35px #d4d4d4, 36px 36px #d4d4d4;
    width: 66%;
    height: 66%;
    border-radius: 50%;
    color: #2ea729;
}

@media only screen and (min-width: 1025px) {
    .enquiry-form form {
        position: relative;
        z-index: 1;
        background: #fff;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        padding: 20px 30px;
        padding-top: 10px;
        border-radius: 10px;
        box-shadow: 0 0 28px 0 #0004;
    }

    .home-enquiry-form {
        width: 100%;
        position: absolute;
        bottom: -150px;
    }

    .home-enquiry-form .btn-theme {
        width: auto !important;
        display: block;
        margin: auto;
        margin-top: 5px;
        padding: 10px 20px !important;
    }

    .navbar-nav .menu:hover .dropdown_menu {
        display: block;
    }

    .footer {
        padding-top: 40px;
        padding-bottom: 10px;
        border-top: 1px solid #6d6b72;
    }

    .provide-taxi-section .card .card-title {
        margin-bottom: 50px;
    }

    .provide-taxi-section .card .btn-theme {
        position: absolute;
        margin: auto;
        text-align: center;
        bottom: 15px;
        left: 25%;
        right: 25%;
    }

    /*  about*/
    .img-box1 .img1 img {
        height: 575px;
    }

    .img-box1 .img2 img {
        height: 273px;
        object-fit: cover;
    }

    .about__img-wrap-two>img {
        width: 421px;
        height: 513px;
    }
}

/*phone and tablet media query*/

@media only screen and (max-width: 768px) {
    header .navbar-collapse {
        max-height: 100vh;
        padding: 20px 0;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
        border-bottom: 1px solid #000;
    }

    header .navbar-nav {
        align-items: normal;
    }

    header .navbar-nav a {
        padding: 0;
    }

    .navbar-nav .menu i {
        float: right;
    }

    .navbar-nav li .dropdown_menu {
        position: static;
        margin-top: 20px;
    }

    /*  main slider*/
    #main-slider:before {
        background-color: transparent;
    }

    .slider-caption {
        width: 80%;
        text-align: center;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .slider-caption .caption-subtitle {
        font-size: 12px;
    }

    .slider-caption .caption-title {
        font-size: 2em;
        margin-top: 20px;
    }

    .slider-caption p {
        font-size: 12px;
        max-width: 100%;
    }

    .slider-caption .h2 {
        font-size: 30px;
        text-align: center;
    }

    #main-slider img {
        height: 300px;
    }

    /*enquiry form*/
    .enquiry-form {
        margin: 5px;
        /*  background: url(../images/bg/form.jpg) no-repeat;*/
        background: #fff;
        background-position: right;
    }

    .home-enquiry-form {
        border: 5px solid #f2f2f2;
        border-radius: 40px;
        width: 96%;
        margin: auto;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .coolinput label.text {
        margin-left: 30px;
    }

    /*section title*/
    .section-title .progress {
        width: 40%;
    }

    /*about*/
    .about-us .about-img img:first-child {
        margin-left: 0px;
        width: 90%;
        float: right;
    }

    .about-us .about-img img:last-child {
        margin-top: -140px;
    }

    .experience {
        width: 85px;
        height: 85px;
        border: 5px solid white;
        padding: 22px 0px;
        margin-top: -30px;
    }

    .experience .year {
        font-size: 13px;
        font-weight: 800;
    }

    .experience p {
        color: #fff;
        font-weight: 600;
        font-size: 8px;
    }

    /*testimonials*/
    .testimonial-slider {
        position: static;
    }

    .navbar-brand>img {
        width: 80px;
    }

    .navbar-brand span {
        font-size: 18px;
    }

    .multi-button a {
        font-size: 13px;
    }

    .navbar-toggler {
        background-color: var(--theme-color);
        padding: 6px;
    }

    header .navbar-nav a:before {
        display: none;
    }

    /*about*/
    .about-one__experience__shape__two {
        width: 230px;
    }

    .content-container .title {
        font-size: 28px;
    }

    .footer {
        padding-top: 25px;
        padding-bottom: 0px;
        border-top: 1px solid #6d6b72;
    }

    .contact-section .card .card-icon {
        width: 31%;
    }

    .footer-widget .widget_title {
        margin-bottom: 5px;
    }

    .section-title {
        margin-bottom: 25px;
    }

    /*about*/
    .about-one__image__two {
        margin: 0;
    }

    .about-one__image__one__img,
    .about-one__image__two__img {
        width: 100%;
        border-width: 10px;
    }

    .about-one__image__one {
        width: 80%;
    }

    .about-one__image__one__img {
        height: 250px;
    }

    .about-one__image__three__img {
        height: 130px;
    }

    .about-one__content {
        margin-top: 80px;
    }

    /*about new*/
    .image-column .image-1 img {
        width: 100%;
        height: auto;
    }

    .image-column .image-2 {
        display: none;
    }

    .image-column .inner-column {
        padding-right: 0;
        padding-bottom: 0;
    }

    .services-one__title-icon span {
        font-size: 35px;
    }

    .testimonial-block .image-box {
        flex-direction: column;
        padding-left: 0;
    }

    .testimonial-block .image-box .info-box {
        flex-direction: column;
        margin-top: 40px;
    }

    .service-page .contentBox img {
        border-radius: 75px 0 75px 0;
    }

    .img-box1 .img1 img {
        width: 100%;
    }

    /*cab-service-section*/
    .cab-service-section .card {
        padding: 5px;
    }

    .cab-service-section .card img {
        height: 100px;
    }

    .cab-service-section .card .card-title {
        font-size: 13px;
    }

    .btngroup {
        gap: 5px;
        font-size: 7px;
    }

    .btngroup i {
        padding-right: 3px;
    }

    .amazing-trip p {
        font-size: 14px;
        margin-top: 5px;
    }

    .amazing-trip .h4 {
        font-size: 20px;
        margin-top: 5px;
    }

    .tour-wrapper.style-six .tour-thumb {
        height: 230px;
    }

    .testimonial-style-four:nth-child(2n+1) {
        margin-inline-start: 0;
    }

    /*about img*/
    .about-thumb-wrap .img-2 {
        width: 100%;
    }

    .about-thumb-wrap .img-3 {
        bottom: 0;
        margin-left: 0;
        margin-top: 0;
        position: absolute;
        right: 0;
        width: 287px;
        height: 244px;
    }

    .section-title .title {
        font-size: 25px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .coolinput label.text {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .coolinput .input {
        height: 35px;
        padding: 0 1px;
        margin-left: 28px;
        width: auto;
    }

    .coolinput i {
        left: 1px;
    }

    .enquiry-form form .btn-theme {
        border-radius: 30px;
    }

    .socials .res_dnone {
        display: none;
    }

    .service-section-new .div_top_margin {
        top: 0;
    }

    .service-section-new .row .col-lg-4 {
        margin-top: 0;
    }

    .service-section-new .row {
        margin-top: 5px;
    }

    .service-section-new {
        padding-bottom: 30px;
    }

    .service-page .row:first-child {
        flex-direction: column-reverse;
    }

    .widget_service_categories {
        display: none;
    }

    .service-page {
        padding-top: 12px !important;
    }

    footer .site_name_name {
        top: -10px;
    }
}

.content-block p {
    margin-bottom: 20px;
}

.content-block hr {
    border: 1px solid #a9a9a9;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
}

.content-block ol li {
    list-style: auto;
}

.content-block h3 {
    margin-bottom: 20px;
}

.booking-form {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-family);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

.booking-form .h4 {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin-inline: -8px;
    background: var(--theme-color2);
    border-radius: 30px;
    margin-top: -1px;
    padding: 2px;
    letter-spacing: -0.01em;

}

.booking-form .nav-tabs {
    justify-content: center;
    margin-bottom: 0px;
    background: linear-gradient(145deg, #cfcfcf, #ffffff);
    border-radius: 50px;
    padding: 5px;
    box-shadow: inset 0 2px 4px rgb(0 0 0 / 19%);
    border: 1px solid #afafaf;
}

.booking-form .nav-tabs .nav-link {
    border: none;
    border-radius: 25px;
    color: var(--font-color);
    font-weight: 600;
    padding: 8px 25px;
    margin: 0 5px;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.booking-form .nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--theme-color) 0%, #ffd84d 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.booking-form .nav-tabs .nav-link:hover::before,
.booking-form .nav-tabs .nav-link.active::before {
    left: 0;
}

.booking-form .nav-tabs .nav-link:hover {
    color: #000;
}

.booking-form .nav-tabs .nav-link.active {
    color: var(--second-color);
    background: transparent;
    box-shadow: 0 4px 15px rgba(255, 200, 21, 0.3);
}

.booking-form .sub-tabs {
    margin-top: 8px;
}

.booking-form .nav-pills {
    justify-content: center;
    margin-bottom: 5px;
    gap: 10px;
}

.booking-form .nav-pills .nav-link {
    background: rgb(255 200 21 / 30%);
    color: #000000;
    border-radius: 25px;
    padding: 2px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid var(--theme-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booking-form .nav-pills .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--theme-color) 0%, #ffd84d 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.booking-form .nav-pills .nav-link:hover {
    border-color: var(--theme-color);
    box-shadow: 0 4px 12px rgba(255, 200, 21, 0.2);
}

.booking-form .nav-pills .nav-link.active {
    background: transparent;
    border-color: var(--theme-color);
    color: var(--second-color);
    box-shadow: 0 6px 20px rgba(255, 200, 21, 0.3);
}

.booking-form .nav-pills .nav-link.active::before {
    opacity: 1;
}

.booking-form .form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 10px 20px;
    border-radius: 15px;
    border: 1px solid #ffc81578;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.booking-form .form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-color) 0%, #ffd84d 100%);
}

.booking-form .section-title {
    color: var(--theme-color2);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.booking-form .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--theme-color);
    border-radius: 2px;
}

.booking-form .form-label {
    font-weight: 600;
    color: var(--theme-color2);
    margin-bottom: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form .input-group {
    margin-bottom: 5px;
    position: relative;
}

.booking-form .input-group-text {
    background: linear-gradient(135deg, var(--theme-color) 0%, #ffd84d 100%);
    border: none;
    color: var(--second-color);
    border-radius: 8px 0 0 8px;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 2px 0 8px rgba(255, 200, 21, 0.3);
}

.booking-form .form-control {
    border: 1px solid #898989;
    border-left: none;
    border-radius: 0 8px 8px 0;
    padding: 7px 8px;
    font-size: 0.9rem;
    height: auto;
    transition: all 0.3s ease;
    background: #fff;
}

.booking-form .form-control:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(255, 200, 21, 0.1);
    background: #fff;
}

.booking-form .form-control::placeholder {
    color: #898989;
    font-size: 0.85rem;
}

.booking-form .btn-add-stop {
    font-size: 0.75rem;
    padding: 6px 12px;
    background: rgba(255, 200, 21, 0.1);
    border: 2px solid var(--theme-color);
    color: var(--theme-color2);
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.booking-form .btn-add-stop:hover {
    background: var(--theme-color);
    color: var(--second-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 200, 21, 0.3);
}

.booking-form .btn-theme {
    background: linear-gradient(135deg, var(--theme-color) 0%, #ffd84d 100%);
    color: var(--second-color);
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 200, 21, 0.4);
}

.booking-form .btn-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.booking-form .btn-theme:hover::before {
    left: 100%;
}

.booking-form .btn-theme:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 200, 21, 0.6);
    background: linear-gradient(135deg, #ffd84d 0%, var(--theme-color) 100%);
}

.booking-form .remove-stop {
    background: #dc3545;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 0 6px 6px 0;
    transition: all 0.3s ease;
}

.booking-form .remove-stop:hover {
    background: #c82333;
    transform: scale(1.05);
}

.booking-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffc815' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 2px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 18px;
}

/* Animation for tab transitions */
.booking-form .tab-pane.fade.show.active {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .booking-form {
        padding: 15px;
        border-radius: 10px;
        max-width: 95%;
        margin-inline: auto;
        margin-bottom: 15px;
    }

    .booking-form .form-section {
        padding: 20px;
        border-radius: 12px;
    }

    .booking-form .nav-pills .nav-link {
        padding: 6px 15px;
        font-size: 0.8rem;
    }

    .booking-form .btn-theme {
        padding: 10px 30px;
        font-size: 0.85rem;
    }

    .booking-form .nav-tabs .nav-link {
        padding: 8px 18px;
    }
}

@media (max-width: 576px) {
    .booking-form {
        padding: 12px;
    }

    .booking-form .form-section {
        padding: 15px;
    }

    .booking-form .nav-tabs .nav-link {
        margin: 2px 0;
        text-align: center;
    }
}

@media only screen and (min-width: 768px) {
    .home-booking-form {
        position: absolute;
        top: 20px;
        left: 10%;
        width: 40%;
        max-width: 490px;
    }
}



/* Banner Section Styles */
.bg-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
}

.bg-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 44, 109, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.banner-box {
    position: relative;
    z-index: 2;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    justify-content: center;
}

.breadcrumb-item {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
}

.breadcrumb-item a {
    color: var(--theme-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #ffffff;
    opacity: 0.8;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
    opacity: 0.6;
    content: ">";
}

/* Heading Styles */
.banner-box h2 {
    color: #ffffff;
    font-family: var(--font-family);
    font-size: 3rem;
    font-weight: 700;
    margin: 15px 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* HR Styles */
#hr3 {
    border: none;
    height: 3px;
    width: 80px;
    background: var(--theme-color);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(255, 200, 21, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .bg-banner {
        padding: 80px 0;
    }

    .banner-box h2 {
        font-size: 2.2rem;
    }

    .breadcrumb {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .bg-banner {
        padding: 60px 0;
    }

    .banner-box h2 {
        font-size: 1.8rem;
    }

    .breadcrumb-item {
        font-size: 13px;
    }
}

/* Animation for better user experience */
.banner-box {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional hover effects */
.breadcrumb-item a:hover {
    transform: translateY(-1px);
}

#hr3 {
    transition: var(--transition);
}

.banner-box:hover #hr3 {
    width: 100px;
    background: #ffffff;
}


/* Service Detail Section */
.service-detail-section {
    background-color: #f8f9fa;
    font-family: var(--font-family);
}

.service-detail-section {
    .service-main-image {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .service-img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        transition: var(--transition);
    }

    .service-img:hover {
        transform: scale(1.02);
    }

    .service-main-title {
        font-size: 32px;
        font-weight: 700;
        color: var(--theme-color2);
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
    }

    .service-main-title span {
        color: var(--theme-color);
    }

    .service-main-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 3px;
        background: var(--theme-color);
    }

    .service-intro {
        background: #ffffff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
        border-left: 4px solid var(--theme-color);
    }

    .service-intro p {
        color: var(--font-color);
        line-height: 1.7;
        margin-bottom: 0;
        font-size: 16px;
    }

    /* Section Titles */
    .section-title {
        font-size: 24px;
        font-weight: 600;
        color: var(--theme-color2);
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background: var(--theme-color);
    }

    /* Service Highlights */
    .service-highlights {
        margin-bottom: 40px;
    }

    .highlights-container {
        margin-top: 20px;
    }

    .highlight-item {
        background: #ffffff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
        text-align: center;
        transition: var(--transition);
        border-top: 3px solid var(--theme-color);
    }

    .highlight-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    }

    .highlight-item i {
        font-size: 36px;
        color: var(--theme-color);
        margin-bottom: 15px;
    }

    .highlight-item h4 {
        font-size: 18px;
        font-weight: 600;
        color: var(--theme-color2);
        margin-bottom: 10px;
    }

    .highlight-item p {
        color: var(--font-color);
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 0;
    }

    /* Service Options */
    .service-options {
        margin-bottom: 40px;
    }

    .option-card {
        background: #ffffff;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        margin-bottom: 25px;
        transition: var(--transition);
        border-left: 4px solid var(--theme-color);
    }

    .option-card:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    }

    .option-card h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--theme-color2);
        margin-bottom: 15px;
    }

    .option-card h3 i {
        color: var(--theme-color);
        margin-right: 10px;
    }

    .option-card p {
        color: var(--font-color);
        line-height: 1.7;
        margin-bottom: 0;
        font-size: 15px;
    }

    /* Route Information */
    .route-info {
        margin-bottom: 40px;
    }

    .route-details {
        background: #ffffff;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    }

    .route-item {
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eaeaea;
    }

    .route-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .route-item h4 {
        font-size: 18px;
        font-weight: 600;
        color: var(--theme-color2);
        margin-bottom: 12px;
    }

    .route-item h4 i {
        color: var(--theme-color);
        margin-right: 8px;
    }

    .route-item p {
        color: var(--font-color);
        line-height: 1.6;
        margin-bottom: 8px;
        font-size: 15px;
    }

    /* Booking Process */
    .booking-process {
        margin-bottom: 40px;
    }

    .process-steps {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .process-step {
        flex: 0 0 23%;
        background: #ffffff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        text-align: center;
        margin-bottom: 15px;
        transition: var(--transition);
    }

    .process-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    }

    .step-icon {
        width: 50px;
        height: 50px;
        background: var(--theme-color);
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 700;
        margin: 0 auto 15px;
    }

    .process-step h4 {
        font-size: 16px;
        font-weight: 600;
        color: var(--theme-color2);
        margin-bottom: 10px;
    }

    .process-step p {
        color: var(--font-color);
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 0;
    }

    /* Service CTA */
    .service-cta {
        background: linear-gradient(135deg, var(--theme-color2) 0%, #001a3d 100%);
        padding: 30px;
        border-radius: 8px;
        color: #ffffff;
        text-align: center;
        margin-bottom: 40px;
    }

    .service-cta h2 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #ffffff;
    }

    .service-cta p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 25px;
        color: #e6e6e6;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .cta-btn {
        padding: 12px 25px;
        border-radius: 5px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: var(--transition);
        font-size: 16px;
    }

    .phone-btn {
        background: var(--theme-color);
        color: var(--second-color);
    }

    .phone-btn:hover {
        background: #ffd84d;
        color: var(--second-color);
        transform: translateY(-2px);
    }

    .book-btn {
        background: #ffffff;
        color: var(--theme-color2);
    }

    .book-btn:hover {
        background: #f0f0f0;
        color: var(--theme-color2);
        transform: translateY(-2px);
    }

    .cta-btn i {
        margin-right: 8px;
    }

    /* FAQ Section */
    .faq-section {
        margin-bottom: 20px;
    }

    .faq-wrapper {
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    .accordion-item {
        border: 1px solid #eaeaea;
        border-radius: 5px;
    }

    .accordion-button {
        font-weight: 600;
        color: var(--theme-color2);
        padding: 15px 20px;
        font-size: 16px;
        background: #f9f9f9;
    }

    .accordion-button:not(.collapsed) {
        background: var(--theme-color);
        color: var(--second-color);
    }

    .accordion-button i {
        margin-right: 10px;
        color: var(--theme-color);
    }

    .accordion-button:not(.collapsed) i {
        color: var(--second-color);
    }

    .accordion-body {
        padding: 20px;
        color: var(--font-color);
        line-height: 1.6;
        font-size: 15px;
    }

    .accordion-body ul {
        margin-top: 10px;
        padding-left: 20px;
    }

    .accordion-body li {
        margin-bottom: 5px;
    }

    /* Sidebar */
    .services-sidebar {
        background: #ffffff;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        margin-top: 30px;
    }

    .sidebar-title {
        font-size: 20px;
        font-weight: 600;
        color: var(--theme-color2);
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--theme-color);
    }

    .side-bar-categories ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .side-bar-categories li {
        margin-bottom: 10px;
        border-bottom: 1px dashed #eaeaea;
        padding-bottom: 10px;
    }

    .side-bar-categories li:last-child {
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
    }

    .side-bar-categories a {
        color: var(--font-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        transition: var(--transition);
        font-size: 14px;
    }

    .side-bar-categories a:hover {
        color: var(--theme-color);
        transform: translateX(5px);
    }

    .side-bar-categories a i {
        margin-right: 8px;
        color: var(--theme-color);
        font-size: 12px;
    }

    .phone-link {
        color: var(--theme-color2);
        text-decoration: none;
        font-weight: 600;
    }

    .phone-link:hover {
        color: var(--theme-color);
        text-decoration: underline;
    }

    /* Responsive Design */
    @media (max-width: 991px) {
        .service-main-title {
            font-size: 28px;
        }

        .section-title {
            font-size: 22px;
        }

        .process-step {
            flex: 0 0 48%;
        }
    }

    @media (max-width: 767px) {
        .service-img {
            height: 300px;
        }

        .service-main-title {
            font-size: 24px;
        }

        .section-title {
            font-size: 20px;
        }

        .process-step {
            flex: 0 0 100%;
        }

        .cta-buttons {
            flex-direction: column;
        }

        .cta-btn {
            justify-content: center;
        }

        .option-card,
        .route-details,
        .service-intro {
            padding: 15px;
        }
    }
}

.services-bar-widget .booking-form .nav-tabs .nav-link {
    padding: 6px 13px;
}


.cab-listing-page .search-summary-section {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.cab-listing-page .search-summary-card {
    background: white;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}


.cab-listing-page .route-points {
    display: flex;
    align-items: center;
    gap: 8px 0;
    flex-wrap: wrap;
}

.cab-listing-page .route_grid {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    width: 33.33%;
    margin-bottom: 10px;
    justify-content: start;
    padding-inline: 5px;
}

.cab-listing-page .route-point {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    /* flex: 1; */
    min-width: 0;
    align-items: center;
}


.cab-listing-page .point-icon {
    width: 24px;
    height: 24px;
    background: var(--theme-color2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.cab-listing-page .point-icon i {
    font-size: 10px;
    color: #fff;
}

.cab-listing-page .point-details h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--font-color);
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cab-listing-page .point-details .location {
    font-size: 15px;
    font-weight: 500;
    color: var(--second-color);
    margin: 0 0 1px 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
    text-overflow: ellipsis;
}

.cab-listing-page .point-details .datetime {
    font-size: 14px;
    color: var(--font-color);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 500;
}

.cab-listing-page .route-connector {
    color: var(--theme-color2);
    font-size: 10px;
    flex-shrink: 0;
}

.btn-modify {
    background: var(--theme-color2);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-modify:hover {
    background: var(--theme-color);
    color: var(--second-color);
    transform: translateY(-1px);
}

/* Modal Styles */
.cab-listing-page .modal-header {
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
    background: var(--theme-color2);
}

.cab-listing-page .modal-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.cab-listing-page .btn-close {
    filter: invert(1);
}

.cab-listing-page .modal-body {
    padding: 16px;
}

.cab-listing-page .section-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-color2);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e9ecef;
}

.cab-listing-page .form-group {
    margin-bottom: 10px;
}

.cab-listing-page .form-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--second-color);
    margin-bottom: 4px;
    display: block;
}

.cab-listing-page .input-group {
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.cab-listing-page .input-group-text {
    background: #f8f9fa;
    border: 1px solid #ced4da;
    border-right: none;
    padding: 6px 8px;
    font-size: 11px;
    color: var(--font-color);
}

.cab-listing-page .form-control,
.cab-listing-page .form-select {
    border: 1px solid #ced4da;
    border-left: none;
    padding: 6px 8px;
    font-size: 11px;
    height: 38px;
}

.cab-listing-page .form-control:focus,
.cab-listing-page .form-select:focus {
    box-shadow: 0 0 0 2px rgba(1, 44, 109, 0.1);
    border-color: var(--theme-color2);
}

.cab-listing-page .btn-add-stop {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 3px;
}

.cab-listing-page .stop-location-item {
    margin-bottom: 6px;
}



.cab-listing-page .remove-stop {
    padding: 4px 8px;
    font-size: 10px;
}

.cab-listing-page .modal-footer {
    padding: 12px 16px;
    border-top: 1px solid #e9ecef;
}

.cab-listing-page .modal-footer .btn {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
}

/* Empty State */
.cab-listing-page .empty-state {
    padding: 40px 20px;
    text-align: center;
}

.cab-listing-page .empty-gif {
    max-height: 150px;
}

.cab-listing-page .empty-state h3 {
    font-size: 16px;
    color: var(--second-color);
    margin: 12px 0 6px 0;
}

.cab-listing-page .empty-state p {
    font-size: 12px;
    color: var(--font-color);
    margin: 0;
}

/* Mobile Tabs */
.cab-listing-page .cab-tabs-mobile {
    margin-bottom: 12px;
}

.cab-listing-page .nav-tabs-scroll {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cab-listing-page .nav-tabs-scroll::-webkit-scrollbar {
    display: none;
}

.cab-listing-page .nav-tabs {
    border: none;
    display: inline-flex;
    min-width: 100%;
}

.cab-listing-page .nav-tabs .nav-link {
    border: none;
    border-radius: 6px;
    padding: 8px;
    margin: 0 4px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    min-width: 80px;
}

.cab-listing-page .nav-tabs .nav-link.active {
    background: var(--theme-color2);
    border-color: var(--theme-color2);
}

.cab-listing-page .cab-tab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cab-listing-page .cab-tab-content img {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 3px;
}

.cab-listing-page .cab-tab-content .cab-info h6 {
    font-size: 10px;
    font-weight: 500;
    color: var(--second-color);
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

.cab-listing-page .cab-tab-content .cab-info .price {
    font-size: 11px;
    font-weight: 600;
    color: var(--theme-color2);
    text-align: center;
    line-height: 1.2;
}

.cab-listing-page .nav-tabs .nav-link.active .cab-info h6,
.cab-listing-page .nav-tabs .nav-link.active .cab-info .price {
    color: white;
}

/* Mobile Cab Cards */
.cab-listing-page .cab-card-mobile {
    background: white;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
}

.cab-listing-page .offer-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #dc3545;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 600;
    z-index: 2;
}

.cab-listing-page .cab-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}


.cab-listing-page .cab-details h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--second-color);
    margin: 0 0 4px 0;
}

.cab-listing-page .price-section {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cab-listing-page .original-price {
    font-size: 10px;
    color: var(--font-color);
    text-decoration: line-through;
}

.cab-listing-page .final-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-color2);
}

.cab-listing-page .savings {
    font-size: 9px;
    color: #dc3545;
    font-weight: 500;
}

.cab-listing-page .cab-features {
    margin-bottom: 10px;
}

.cab-listing-page .cab-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cab-listing-page .cab-features li {
    font-size: 10px;
    color: var(--font-color);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.2;
}

.cab-listing-page .cab-features i {
    font-size: 9px;
    margin-top: 1px;
    flex-shrink: 0;
}

.cab-listing-page .cab-features .text-danger {
    color: #dc3545 !important;
    font-weight: 500;
}

.cab-listing-page .btn-select-cab {
    width: 100%;
    background: var(--theme-color2);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    transition: var(--transition);
}

.cab-listing-page .btn-select-cab:hover {
    background: var(--theme-color);
    color: var(--second-color);
    transform: translateY(-1px);
}

/* Desktop Cab Cards */
.cab-listing-page .cab-card-desktop {
    background: white;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    transition: var(--transition);
}

.cab-listing-page .cab-card-desktop:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.cab-listing-page .offer-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    z-index: 2;
}

.cab-listing-page .cab-card-desktop .cab-image img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 4px;
}

.cab-listing-page .cab-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--second-color);
    margin: 0 0 15px 0;
}

.cab-listing-page .cab-specs {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cab-listing-page .cab-specs span {
    font-size: 15px;
    color: var(--font-color);
    display: flex;
    font-weight: 500;
    align-items: center;
    gap: 4px;
}

.cab-listing-page .cab-specs span span {
    color: var(--theme-color);
    font-weight: 800;
}

.cab-listing-page .cab-specs i {
    font-size: 14px;
    color: var(--theme-color2);
    width: 12px;
}

.cab-listing-page .price-info {
    text-align: center;
}

.cab-listing-page .price-info .original-price {
    font-size: 15px;
    margin-bottom: 2px;
}

.cab-listing-page .price-info .savings {
    font-size: 16px;
    margin-bottom: 4px;
}

.cab-listing-page .price-info .final-price {
    font-size: 25px;
    font-weight: 700;
}

.cab-listing-page .cab-card-desktop .cab-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cab-listing-page .cab-card-desktop .cab-features li {
    font-size: 14px;
    color: var(--font-color);
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}

.cab-listing-page .cab-card-desktop .cab-features i {
    font-size: 14px;
}

.cab-listing-page .cab-card-desktop .btn-select-cab {
    width: 100%;
    background: var(--theme-color2);
    color: white;
    border: none;
    padding: 13px 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.cab-listing-page .cab-card-desktop .btn-select-cab:hover {
    background: var(--theme-color);
    color: var(--second-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cab-listing-page .route-points {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .cab-listing-page .route-connector {
        display: none;
    }

    .cab-listing-page .route-point {
        width: 100%;
    }

    .cab-listing-page .modify-search {
        text-align: center !important;
        margin-top: 8px;
    }
}

@media (max-width: 576px) {
    .cab-listing-page .search-summary-card {
        padding: 8px;
    }

    .cab-listing-page .cab-card-mobile {
        padding: 10px;
    }

    .cab-listing-page .cab-header {
        gap: 8px;
    }

    .cab-listing-page .cab-image img {
        width: 50px;
        height: 40px;
    }
}

/* Utility Classes */
.cab-listing-page .text-theme {
    color: var(--theme-color) !important;
}

.cab-listing-page .text-theme2 {
    color: var(--theme-color2) !important;
}

.cab-listing-page .bg-theme {
    background: var(--theme-color) !important;
}

.cab-listing-page .bg-theme2 {
    background: var(--theme-color2) !important;
}

/* Animation for new stop locations */
.cab-listing-page .stop-location-item {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for buttons */
.cab-listing-page .btn-loading {
    position: relative;
    color: transparent !important;
}

.cab-listing-page .btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media(max-width: 768px) {
    .cab-listing-page .nav-tabs {
        justify-content: space-between;
    }

    .cab-listing-page .nav-tabs .nav-item {
        width: 48%;
        margin-bottom: 5px;
    }

    .cab-listing-page .nav-tabs .nav-link {
        width: 100%;
    }
}

/* Layout Structure */
.cab-review-page .review-container {
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.cab-review-page .main-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 20px;
    align-items: start;
}

.cab-review-page .booking-summary {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cab-review-page .contact-form-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

/* Cab Header */
.cab-review-page .cab-header {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, var(--theme-color2) 0%, #1e4a8a 100%);
    color: white;
}

.cab-review-page .cab-info-grid {
    display: grid;
    grid-template-columns: 135px 1fr;
    gap: 15px;
    align-items: center;
}

.cab-review-page .cab-image {
    width: 127px;
    height: 78px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cab-review-page .cab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cab-review-page .cab-details h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: white;
}

.cab-review-page .cab-specs {
    display: flex;
    gap: 15px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.cab-review-page .cab-price {
    font-size: 25px;
    font-weight: 700;
    color: var(--theme-color);
    margin: 0;
}

/* Booking Details */
.cab-review-page .booking-details {
    padding: 15px;
}

.cab-review-page .details-tabs {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 15px;
}

.cab-review-page .tab-buttons {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e9ecef;
}

.cab-review-page .tab-btn {
    padding: 10px 15px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 16px;
    font-weight: 700;
    color: var(--font-color);
    cursor: pointer;
    transition: var(--transition);
}

.cab-review-page .tab-btn.active {
    color: var(--theme-color2);
    border-bottom-color: var(--theme-color2);
}

.cab-review-page .tab-content {
    padding: 15px 0;
}

.cab-review-page .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 16px;
}

.cab-review-page .detail-item:last-child {
    border-bottom: none;
}

.cab-review-page .detail-label {
    font-weight: 500;
    color: var(--second-color);
    min-width: 100px;
}

.cab-review-page .detail-value {
    color: var(--font-color);
    text-align: right;
    flex: 1;
}

.cab-review-page .inclusion-list,
.cab-review-page .exclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cab-review-page .inclusion-list li,
.cab-review-page .exclusion-list li {
    padding: 6px 0;
    font-size: 16px;
    color: var(--font-color);
    border-bottom: 1px solid #f8f9fa;
}

.cab-review-page .inclusion-list li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
}

.cab-review-page .exclusion-list li:before {
    content: "✗";
    color: #dc3545;
    font-weight: bold;
    margin-right: 8px;
}

/* Contact Form */
.cab-review-page .form-section {
    padding: 20px;
}

.cab-review-page .section-header {
    font-size: 21px;
    font-weight: 600;
    color: var(--theme-color2);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.cab-review-page .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-bottom: 15px;
}

.cab-review-page .form-group {
    margin-bottom: 12px;
}

.cab-review-page .form-group.full-width {
    grid-column: 1 / -1;
}

.cab-review-page .form-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--second-color);
    margin-bottom: 4px;
    display: block;
}

.cab-review-page .form-control {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 12px;
    transition: var(--transition);
}

.cab-review-page .form-control:focus {
    border-color: var(--theme-color2);
    box-shadow: 0 0 0 2px rgba(1, 44, 109, 0.1);
    outline: none;
}

/* Billing Section */
.cab-review-page .billing-section {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
}

.cab-review-page .billing-section h4 {
    font-size: 19px;
    font-weight: 600;
    color: var(--theme-color2);
    margin-bottom: 10px;
}

/* Amenities */
.cab-review-page .amenities-section {
    margin: 15px 0;
}

.cab-review-page .amenity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.cab-review-page .amenity-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cab-review-page .amenity-check input {
    margin: 0;
}

.cab-review-page .amenity-check label {
    font-size: 15px;
    color: var(--font-color);
    margin: 0;
    line-height: 1.2;
    cursor: pointer;
}

.cab-review-page .amenity-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-color2);
    min-width: 50px;
}

/* Fare Summary */
.cab-review-page .fare-summary {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
}

.cab-review-page .total-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cab-review-page .total-label h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--second-color);
    margin: 0 0 2px 0;
}

.cab-review-page .tax-note {
    font-size: 13px;
    color: var(--font-color);
    margin: 0;
}

.cab-review-page .total-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-color2);
}

.cab-review-page .fare-breakup {
    position: relative;
}

.cab-review-page .breakup-toggle {
    font-size: 16px;
    color: var(--theme-color2);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

.cab-review-page .breakup-details {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    z-index: 10;
    display: none;
}

.cab-review-page .breakup-details.show {
    display: block;
}

.cab-review-page .breakup-item {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid #f8f9fa;
}

.cab-review-page .breakup-item:last-child {
    border-bottom: none;
    font-weight: 600;
    color: var(--theme-color2);
}

.cab-review-page .breakup-item:last-child .full_price {
    font-size: 20px;
}

/* Agreement */
.cab-review-page .agreement {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

.cab-review-page .agreement input {
    margin-top: 2px;
}

.cab-review-page .agreement small {
    font-size: 15px;
    line-height: 1.2;
    color: var(--font-color);
    line-height: 1.3;
}

.cab-review-page .policy-link {
    color: var(--theme-color2);
    text-decoration: none;
}

.cab-review-page .policy-link:hover {
    text-decoration: underline;
}

/* Payment Options */
.cab-review-page .payment-options {
    margin: 15px 0;
}

.cab-review-page .payment-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.cab-review-page .payment-option:hover {
    border-color: var(--theme-color2);
}

.cab-review-page .payment-option.selected {
    border-color: var(--theme-color2);
    background: rgba(1, 44, 109, 0.05);
}

.cab-review-page .payment-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cab-review-page .payment-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--second-color);
}

.cab-review-page .payment-amount {
    font-size: 17px;
    font-weight: 600;
    color: var(--theme-color2);
}

/* Fixed Bottom Bar - Mobile */
.cab-review-page .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e9ecef;
    padding: 10px 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.cab-review-page .mobile-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cab-review-page .mobile-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-color2);
}

.cab-review-page .mobile-cab {
    font-size: 12px;
    color: var(--font-color);
}

.cab-review-page .btn-proceed {
    width: 100%;
    background: var(--theme-color2);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cab-review-page .btn-proceed:hover {
    background: var(--theme-color);
    color: var(--second-color);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cab-review-page .main-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-bottom: 120px;
    }

    .cab-review-page .contact-form-section {
        position: static;
    }

    .cab-review-page .form-grid {
        grid-template-columns: 1fr;
    }

    .cab-review-page .mobile-bottom-bar {
        display: block;
    }

    .cab-review-page .fare-summary {
        display: none;
    }
}

@media (max-width: 576px) {
    .cab-review-page .review-container {
        padding: 10px;
    }

    .cab-review-page .cab-header {
        padding: 12px;
    }

    .cab-review-page .cab-info-grid {
        display: flex;
    }

    .cab-review-page .cab-image img {
        object-fit: contain;
    }

    .cab-review-page .cab-image {
        width: 200px;
        height: 100px;
    }

    .cab-review-page .cab-details h2 {
        font-size: 18px;
    }

    .cab-review-page .cab-specs {
        font-size: 14px;
    }

    .cab-review-page .cab-details {
        width: 100%;
    }

    .cab-review-page .tab-btn {
        font-size: 15px;
        padding-inline: 5px;
        letter-spacing: -0.02em;
    }

    .cab-review-page .tab-buttons {
        margin-inline: -6px;
        justify-content: space-between;
    }

    .cab-review-page .detail-item {
        font-size: 15px;
        line-height: 1.2;
    }

    .cab-review-page .form-section {
        padding: 15px;
    }
}

/* Utility Classes */
.cab-review-page .hidden-mobile {
    display: block;
}

.cab-review-page .hidden-desktop {
    display: none;
}

@media (max-width: 768px) {


    .cab-review-page .hidden-desktop {
        display: block !important;
    }
}

.pac-container {
    z-index: 99999 !important;
    /* higher than your modal */
}

.modal-backdrop.show {
    z-index: 999 !important;
}

#myModal {
    z-index: 1000 !important;
}

/*contact page*/
.contact__box {
    .contact-form-section form {
        background-color: var(--theme-color);
        position: relative;
    }

    .contact-form-section form .form-title,
    .contact-form-section form .form-control {
        position: relative;
    }

    .contact-background-overlay {
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        position: absolute;
        opacity: 0.4;
    }

    .contact-form-section form .btn-theme {
        background-color: var(--second-color);
    }

    .contact-form-section .contact-box {
        box-shadow: rgba(100, 100, 111, .2)0 7px 29px;
        border-radius: 20px;
        background-color: var(--theme-color);
    }

    .contact-form-section img {
        width: 100%;
        height: 100%;
        border-radius: 20px 0 0 20px;
        object-fit: cover;
        position: relative;
        z-index: 20;
        overflow: visible;
        right: 30px;
        /*    background: linear-gradient(to right, #1d226a, white);*/
    }

    .contact-form-section iframe {}

    .contact-form-section form {
        padding: 30px;
        border-radius: 0 20px 20px 0;
    }

    .contact-form-section form .form-control {
        margin-bottom: 15px;
        padding: 15px;
    }

    .contact-form-section form .form-title {
        font-size: 30px;
        color: #fff;
        margin-bottom: 15px;
        background-color: transparent;
        font-weight: 600;
    }

    .contact-form-section form label {
        color: #fff;
    }
}

@media(max-width: 768px) {
    .bg-banner {
        padding: 40px 0 40px;
    }

    .banner-box h2 {
        margin: 0;
        margin-top: 10px;
        font-size: 22px;
    }

    .service-detail-section .col-lg-4.pb-30 {
        order: -1;
    }

    .service-detail-section .services-sidebar {
        display: none;
    }

    .contact__box .contact-form-section img {
        right: 0;
    }

    .cab-listing-page .form-section .col {
        flex: 1 0 100%;
    }

    .cab-listing-page .route_grid {
        width: 100%;
        margin-bottom: 10px;
    }

    .cab-listing-page .cab-info {
        margin-top: 10px;
    }

    .cab-listing-page .cab-info h4 {
        margin-bottom: 5px;
    }
}


.wrapper-book .wrapper-book-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 5px solid var(--theme-color);
    margin-bottom: 10px;
    padding-left: 20px;
}

.wrapper-book .wrapper-book-header h3 {
    font-size: 36px;
    font-weight: 600;
    color: #74787c;
    margin: 0;
}

.wrapper-book .badge {
    border-radius: 2px;
}

#trip-timing span b {
    color: #74787c;
}

.cab-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
    column-count: 2;
}

.cab-info ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #55595c;
}

.cab-info ul li span {
    font-weight: 600;
    color: var(--theme-color2);
}

.cab-info p {
    color: var(--theme-color2);
    font-weight: 600;
    margin-bottom: 0;
}


/* =================phone media query================= */
@media only screen and (max-width: 767px) {
    .cab-info ul {
        column-count: 1;
    }

    .fixedMobile {
        position: fixed;
        bottom: 6px;
        left: 0;
        right: 0;
        z-index: 1;
        background: #fff;
        box-shadow: 0 0 12px #cfcfcf;
        padding: 0 15px;
    }

    .cab-review-page .agreement {
        margin-bottom: 55px;
    }
}