@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&amp;family=Roboto:wght@100;300;400;500;700;900&amp;display=swap');


/*====================
        2. Theme variables
        ======================*/

:root {
    --body-font: 'Roboto', sans-serif;
    --heading-font: 'Inter', sans-serif;
    --theme-color: #FFB300;
    --theme-bg-light: #F9F9F9;
    --body-text-color: #757F95;
    --color-white: #ffffff;
    --color-dark: #111111;
    --color-green: #11B76B;
    --color-blue: #0049D0;
    --color-yellow: #FBA707;
    --hero-overlay-color: #01060F;
    --slider-arrow-bg: rgba(255, 255, 255, 0.2);
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --border-info-color: rgba(0, 0, 0, 0.08);
    --border-info-color2: rgba(0, 0, 0, 0.05);
    --border-white-color: rgba(255, 255, 255, 0.08);
    --border-white-color2: rgba(255, 255, 255, 0.05);
    --footer-bg: #111111;
    --footer-bg2: #181818;
    --footer-text-color: #F5FAFF;
}



/*====================
        3. General css
        ======================*/

*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: var(--body-text-color);
    line-height: 1.8;
}

a {
    color: var(--color-dark);
    display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

a:hover {
    color: var(--color-blue);
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-dark);
    margin: 0px;
    font-weight: 700;
    font-family: var(--heading-font);
    line-height: 1.2;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0px;
    color: #000;
}

.img,
img {
    max-width: 100%;
    -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;
    height: auto;
}

label {
    color: #999;
    cursor: pointer;
    font-weight: 400;
}

*::-moz-selection {
    background: #d6b161;
    color: var(--color-white);
    text-shadow: none;
}

::-moz-selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

::selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}



/*====================
        4. Preloader
        ======================*/

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-ripple div {
    position: absolute;
    border: 4px solid var(--theme-color);
    opacity: 1;
    border-radius: 50%;
    animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes loader-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}



/*====================
        6. Margin & padding
        ======================*/

.pb-140 {
    padding-bottom: 140px;
}

.pd-50 {
    padding: 50px 0;
}

.py-120 {
    padding: 120px 0;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-0 {
    padding-top: 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mt-0 {
    margin-top: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-150 {
    margin-top: 150px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mr-300 {
    margin-right: 300px;
}

.ml-300 {
    margin-left: 300px;
}



/*====================
        8. Theme button
        ======================*/

.theme-btn {
    font-size: 14px;
    color: var(--color-dark);
    padding: 14px 25px;
    transition: all 0.5s;
    text-transform: uppercase;
    position: relative;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--theme-color);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.theme-btn::before {
    content: "";
    height: 300px;
    width: 300px;
    background: var(--color-dark);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.theme-btn:hover {
    color: var(--color-white);
}

.theme-btn:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
    margin-left: 5px;
}

.theme-btn span {
    margin-right: 5px;
}

.theme-btn2 {
    background: var(--color-white);
    color: var(--color-dark);
}

.theme-btn2::before {
    background: var(--theme-color);
}

.theme-btn2:hover {
    color: var(--color-dark);
}



/*====================
        9. Container
        ======================*/

/* @media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 100%;
    }
} */



/*====================
        11. Header top css
        ======================*/

.header-top {
    padding: 8px 150px 10px 150px !important;
    position: relative;
    background: var(--color-dark);
    border-bottom: 5px solid var(--theme-color);
    z-index: 1;
}

.header-top::before {
    content: "";
    position: absolute;
    background: var(--theme-color);
    border-radius: 0 50px 0 0;
    border-right: 15px solid #fff;
    width: 10%;
    top: 0;
    left: 0;
    bottom: -1px;
    z-index: -1;
}

.header-top::after {
    content: "";
    position: absolute;
    background: var(--theme-color);
    border-radius: 50px 0 0 0;
    border-left: 15px solid #fff;
    width: 10%;
    top: 0;
    right: 0;
    bottom: -1px;
    z-index: -1;
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-contact ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-top-contact a {
    color: var(--color-white);
    font-weight: 500;
}

a {
    text-decoration: none !important;
}

.header-top-contact a i {
    color: var(--theme-color);
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top-link a {
    color: var(--color-white);
    margin-right: 12px;
}

.header-top-link a:hover {
    color: var(--theme-color);
}

.header-top-social span {
    color: var(--color-white);
}

.header-top-social a {
    color: var(--color-white);
    font-size: 16px;
    text-align: center;
    margin-left: 14px;
    transition: var(--transition);
}

.header-top-social a:hover {
    color: var(--theme-color);
}


@media all and (max-width: 1199px) {

    .header-top-contact ul {
        gap: 10px;
    }

    .header-top-social a {
        width: 34px;
        height: 34px;
        line-height: 37px;
        margin-left: 0;
    }

    .header-top-left {
        margin-right: 5px;
    }
}

@media all and (max-width: 992px) {
    .header-top {
        display: none;
    }
}



/*====================
        12. Navbar css
        ======================*/

.navbar {
    background: var(--color-white);
    padding-top: 0px;
    padding-bottom: 0px;
    box-shadow: var(--box-shadow);
    z-index: 999;
}

.navbar.fixed-top {
    background: var(--color-white);
    box-shadow: var(--box-shadow2);
    animation: slide-down 0.7s;
}


@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar .navbar-brand .logo-display {
    display: block;
}

.navbar .navbar-brand .logo-scrolled {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block;
}

.navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-mobile-icon {
    display: inline-block;
    width: inherit;
    height: inherit;
}

.navbar-brand {
    margin-right: 0;
}

.navbar-brand img {
    width: 70px;
}

.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: 'Font Awesome 6 Pro';
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 14px;
}

@media all and (max-width: 1199px) {
    .nav-right {
        margin-left: 25px !important;
    }

    .navbar .nav-item .nav-link {
        margin-right: 15px;
    }

    .navbar .nav-right-btn {
        display: none;
    }

    .position-relative {
        padding: 0 80px 0 80px !important;
    }

    .navbar .nav-item .nav-link {
        margin-right: 40px !important;
    }

    .header-top {
        padding: 8px 100px 10px 100px !important;
    }
}

@media all and (min-width: 992px) and (max-width: 1199px) {
    .position-relative {
        padding: 0 80px 0 80px !important;
    }

    .navbar .nav-item .nav-link {
        margin-right: 40px !important;
    }

    .header-top {
        padding: 8px 100px 10px 100px !important;
    }
}

@media all and (min-width: 992px) {
    .navbar .nav-item .nav-link {
        margin-right: 60px;
        padding: 30px 0 30px 0;
        font-size: 17px;
        font-weight: 600;
        color: var(--color-dark);
        text-transform: capitalize;
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        border: none;
        left: -15px;
        border-radius: 8px;
        background: var(--color-white);
        width: 220px;
        box-shadow: var(--box-shadow);
    }

    .navbar .nav-item .dropdown-menu li {
        border-bottom: 1px solid var(--border-info-color);
    }

    .navbar .nav-item .dropdown-menu li:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 16px;
        padding: 9px 25px;
        font-weight: 600;
        color: var(--color-dark);
        position: relative;
        overflow: hidden;
        text-transform: capitalize;
        transition: all .3s ease-in-out;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        background: transparent;
        color: var(--theme-color);
        padding-left: 32px;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item::before {
        content: "//";
        position: absolute;
        left: 15px;
        top: 9px;
        color: var(--theme-color);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: -1;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
        opacity: 1;
        visibility: visible;
    }

    .navbar .nav-item .nav-link {
        position: relative;
    }

    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
        color: var(--theme-color);
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 140%;
    }

    .navbar #main_nav {
        justify-content: center;
    }

    /* nav right */
    .nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        /*margin-left: 45px;*/
    }

    .nav-right-link {
        position: relative;
        font-size: 20px;
        color: var(--color-dark);
        transition: var(--transition);
    }

    .nav-right-link:hover {
        color: var(--theme-color) !important;
    }

    .nav-right .sidebar-btn .nav-right-link,
    .nav-right .search-btn .nav-right-link {
        border: none;
        background: transparent;
        color: var(--color-dark);
        font-size: 28px;
        padding-right: 0;
    }

    .nav-right .search-btn .nav-right-link {
        font-size: 20px;
        padding: 0;
    }

    .nav-right .theme-btn {
        padding: 12px 25px;
    }

}

/* mobile menu */
.mobile-menu-right {
    display: none;
}

@media all and (max-width: 991px) {
    .navbar {
        top: 0;
        right: 0;
        left: 0;
        position: fixed;
    }

    .navbar-brand {
        padding-left: 10px;
    }

    .navbar-brand img {
        width: 70px;
    }

    .navbar-collapse {
        max-height: 220px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px;
        background-color: var(--color-white);
    }

    .dropdown-toggle::after {
        float: right;
    }

    .navbar .nav-item .nav-link {
        color: var(--color-dark);
        font-weight: 700;
        transition: var(--transition);
    }

    .navbar .nav-item .nav-link:hover {
        color: var(--theme-color) !important;
    }

    .navbar-toggler {
        padding: 0;
        border: none;
    }

    .mobile-menu-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .mobile-menu-right .nav-right-link {
        background: transparent;
        border: none;
        font-size: 20px;
        color: var(--color-dark);
    }

    .mobile-menu-right .nav-right-link:hover {
        color: var(--theme-color);
    }

    .search-area.open {
        top: 50px !important;
    }

    .navbar-toggler-mobile-icon {
        font-size: 25px;
        color: var(--color-dark);
        font-weight: 500;
    }

    .navbar .dropdown-menu {
        border-radius: 8px;
    }

    .nav-right {
        display: none;
    }

}



/*====================
        15. sidebar popup css 
        ======================*/

.sidebar-popup {
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.sidebar-popup.open {
    visibility: visible;
    opacity: 1;
}

.sidebar-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 450px;
    background: var(--color-white);
    visibility: hidden;
    opacity: 0;
    padding: 40px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: 9999;
}

.sidebar-wrapper.open {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.sidebar-content {
    position: relative;
    overflow-y: auto;
    height: calc(100vh - 75px);
}

.close-sidebar-popup {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 38px;
    height: 38px;
    line-height: 36px;
    border-radius: 50px;
    text-align: center;
    border: none;
    font-size: 20px;
    background: var(--color-dark);
    color: var(--color-white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.close-sidebar-popup:hover {
    background: var(--theme-color);
}

.sidebar-logo img {
    width: 120px;
}

.sidebar-about {
    margin-top: 40px;
}

.sidebar-about h4 {
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sidebar-contact {
    margin-top: 20px;
}

.sidebar-contact h4 {
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.sidebar-contact li {
    margin: 10px 0;
}

.sidebar-contact li a {
    color: #000;
}

.sidebar-contact li i {
    margin-right: 5px;
    color: var(--theme-color);
}

.sidebar-contact li a:hover {
    color: var(--theme-color);
}

.sidebar-social {
    margin-top: 25px;
}

.sidebar-social h4 {
    margin-bottom: 20px;
    font-size: 19px;
    text-transform: uppercase;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    margin-right: 8px;
    background: var(--color-dark);
    color: var(--color-white);
    box-shadow: var(--box-shadow);
}

.sidebar-social a:hover {
    background: var(--theme-color);
}



/* Modal CSS */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-left {
    background: url('../images/taxi.jpg') center center/cover no-repeat;
    min-height: 100%;
}

.modal-right {
    padding: 30px;
}

.modal-header {
    border-bottom: none;
}

.form-control {
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #ccc;
}

.form-buttons {
    display: flex;
    gap: 15px;
}

.form-buttons .form-btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn {
    background-color: #FFB300;
    color: #111111;
}

.send-btn:hover {
    background-color: #000;
    color: #fff;
}

.call-btn {
    background-color: #111111;
    color: #fff;
}

.call-btn:hover {
    background-color: #FFB300;
    color: #000;
}

@media (max-width: 576px) {
    .form-buttons {
        flex-direction: column !important;
    }

    .form-buttons .form-btn {
        width: 100%;
    }
}



/* Home Page CSS */
.hero-section {
    position: relative;
    background-image: url('../images/slider-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-subtitle {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.hero-title {
    color: var(--color-yellow);
    font-size: 54px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.2;
}

.hero-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 8px;
}

.hero-btn-yellow {
    background-color: var(--color-yellow);
    color: #000000;
    border: 2px solid var(--color-yellow);
}

.hero-btn-yellow:hover {
    background-color: #fff;
    border-color: #fff;
    color: #000000;
    text-decoration: none;
}

.hero-btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-btn-outline:hover {
    background-color: var(--color-yellow);
    border: 2px solid var(--color-yellow);
    color: #000000;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-btn-group {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 250px;
    }
}

.site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.site-title-tagline {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color);
}

.site-title-tagline::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 100%;
    background: var(--theme-color);
    opacity: .2;
    left: -2px;
    bottom: 0;
}

.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 45px;
    color: var(--color-dark);
    margin-bottom: 0;
}

.site-title span {
    color: var(--theme-color);
}

@-webkit-keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }

    50% {
        transform: translateX(72px);
    }

    100% {
        transform: translateX(-1px);
    }
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }

    50% {
        transform: translateX(72px);
    }

    100% {
        transform: translateX(-1px);
    }
}

@media screen and (max-width: 520px) {
    .site-title {
        font-size: 26px !important;
    }
}

.about-feature-list .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.about-feature-list .icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-yellow);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.about-feature-list .content h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-yellow);
    color: #000000;
    padding: 11px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: none;
}

.read-more-btn i {
    margin-right: 12px;
    font-size: 16px;
}

.read-more-btn:hover {
    color: #fff;
    text-decoration: none;
    background-color: #000;
}

.taxi-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    background: #ffffff;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
}

.car-list {
    position: relative;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
	border-style: solid;
    border-width: 2px;
    border-color: #f3f3f3;
    overflow: hidden;
}

.car-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 2px solid #FFC000;
    border-bottom: 2px solid #FFC000;
    transform: scale(0, 1);
    transform-origin: bottom center;
    transition: transform 0.5s ease;
    pointer-events: none;
		border-radius: 10px;
}

.car-list::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-left: 2px solid #FFC000;
    border-right: 2px solid #FFC000;
    transform: scale(1, 0);
    transform-origin: left center;
    transition: transform 0.5s ease;
    pointer-events: none;
		border-radius: 10px;
}

.car-list:hover::before {
    transform: scale(1, 1);
}

.car-list:hover::after {
    transform: scale(1, 1);
}

.taxi-img {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.taxi-img img {
    max-width: 100%;
    height: auto;
}

.taxi-title {
    color: var(--color-yellow);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.taxi-details {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.taxi-details li {
    color: #222222;
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.taxi-details li i {
    color: var(--color-yellow);
    font-size: 18px;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-yellow);
    color: #000000;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    gap: 8px;
}

.book-btn:hover {
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

.cta-section {
    background-color: #121212;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.cta-content-wrap {
    padding: 80px 0;
}

.cta-text {
    position: relative;
    padding-right: 40px;
}

.cta-text h2 {
    color: var(--color-yellow);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-text p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.cta-divider {
    position: absolute;
    right: 0;
    top: 5%;
    height: 90%;
    width: 1px;
    background-color: #ffffff;
}

.cta-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.cta-phone .taxi-icon {
    color: var(--color-yellow);
    font-size: 45px;
    margin-right: 20px;
}

.cta-phone .phone-number {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
}

.book-now-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-yellow);    
    border: 3px solid var(--color-yellow);
    color: #000000;
    padding: 11px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.book-now-cta-btn i {
    margin-right: 10px;
}

.book-now-cta-btn:hover {
    background-color: transparent;
    color: var(--color-yellow);
    border: 3px solid var(--color-yellow);
    text-decoration: none;
}

.zigzag,
.zigzag-reverse {
    height: 30px;
    width: 100%;
    background: conic-gradient(#000 90deg, var(--color-yellow) 90deg 180deg, #000 180deg 270deg, var(--color-yellow) 270deg);
    background-size: 30px 30px;
    /* Adjust size of squares here */
}

.zigzag {
    animation: bgSlide2 20s linear infinite;
    -webkit-animation: bgSlide2 20s linear infinite;
}

.zigzag-reverse {
    animation: bgSlide2Reverse 20s linear infinite;
    -webkit-animation: bgSlide2Reverse 20s linear infinite;
}

@keyframes bgSlide2 {
    0% {
        background-position: 0 0;
    }

    20% {
        background-position: -100px 0;
    }

    40% {
        background-position: -200px 0;
    }

    60% {
        background-position: -150px 0;
    }

    80% {
        background-position: -100px 0;
    }

    100% {
        background-position: 0px 0;
    }
}

@keyframes bgSlide2Reverse {
    0% {
        background-position: 0 0;
    }

    20% {
        background-position: -100px 0;
    }

    40% {
        background-position: -150px 0;
    }

    60% {
        background-position: -200px 0;
    }

    80% {
        background-position: -100px 0;
    }

    100% {
        background-position: 0px 0;
    }
}

@media (max-width: 991px) {
    .cta-divider {
        display: none;
        /* Hide divider on small screens */
    }

    .cta-text {
        padding-right: 0;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 32px;
    }

    .cta-phone .phone-number {
        font-size: 28px;
    }
}

.transfer-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.transfer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 15px;
    margin: 0 auto;
}

.transfer-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    font-size: 1rem;
    color: #444;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.transfer-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .transfer-title {
        font-size: 1.5rem;
    }

    .transfer-item {
        font-size: 0.95rem;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .transfer-section {
        padding: 30px 10px;
    }

    .transfer-grid {
        grid-template-columns: repeat(auto-fit, minmax(169px, 1fr));
    }

    .transfer-title {
        font-size: 1.3rem;
    }
}

.faq-area .accordion-item {
    border: none;
    margin-bottom: 30px;
    background: var(--color-white);
    border-radius: 12px !important;
    box-shadow: var(--box-shadow);
}

.faq-img img {
    border-radius: 15px;
}

.faq-area .accordion-item span {
    width: 45px;
    height: 45px;
    margin-right: 15px;
}

.faq-area .accordion-item i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50px;
    background: var(--theme-color);
    text-align: center;
    color: var(--color-white);
}

.faq-area .accordion-button:not(.collapsed) {
    color: var(--theme-color);
    background: transparent;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.accordion-button {
    border-radius: 0px !important;
    background: transparent;
    font-weight: 700;
    font-size: 20px;
    color: var(--color-dark);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    border-bottom: 1px solid var(--theme-color);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media all and (max-width: 991px) {
    .faq-right {
        margin-bottom: 50px;
    }

    .accordion-button {
        font-size: 16px;
    }
}


/* Services Page CSS */
.service-area {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-item {
    position: relative;
    padding: 0 20px 20px 20px;
    margin-bottom: 25px;
    transition: var(--transition);
    z-index: 1;
}

.service-item::before {
    content: "";
    position: absolute;
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    border-radius: 20px;
    width: 100%;
    left: 0px;
    top: 130px;
    bottom: 0px;
    z-index: -1;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-img img {
    border-radius: 30px;
}

.service-content {
    position: relative;
    margin-top: 5px;
}

.service-icon {
    position: absolute;
    width: 90px;
    height: 90px;
    line-height: 82px;
    background: var(--theme-color);
    font-size: 50px;
    color: var(--color-white);
    text-align: center;
    border-radius: 50%;
    margin-top: -50px;
    right: 40px;
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.service-icon img {
    width: 50px;
}

.service-arrow {
    margin-top: 25px;
}

.service-title a {
    font-size: 22px;
    margin: 20px 0;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.service-title a:hover {
    color: var(--theme-color);
}

.service-arrow .theme-btn {
    padding: 10px 22px;
}



/* Book A Ride Page CSS */
.taxi-banner {
    position: relative;
    background-image: url('../images/book-a-ride-banner.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
}

.taxi-banner .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.taxi-banner .container {
    position: relative;
    z-index: 2;
}

.booking-form-wrapper {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    padding: 20px;
    max-width: 1200px;
    /* Adjust based on your container */
    margin: 0 auto;
}

.booking-form-wrapper .form-group {
    position: relative;
    margin-bottom: 20px;
}

.booking-form-wrapper .form-control,
.booking-form-wrapper .form-select {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    color: #495057;
    background-color: #fff;
    transition: border-color 0.3s;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.booking-form-wrapper .form-control:focus,
.booking-form-wrapper .form-select:focus {
    border-color: #FBA707;
    outline: none;
}

.booking-form-wrapper .form-control::placeholder {
    color: #888888;
}

.booking-form-wrapper .no-icon {
    padding-left: 15px !important;
}

.booking-form-wrapper .input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888888;
    font-size: 16px;
    z-index: 2;
    pointer-events: none;
}

.booking-form-wrapper .textarea-icon {
    top: 20px;
    transform: none;
}

.booking-form-wrapper .select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888888;
    pointer-events: none;
}

.booking-form-wrapper input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 1;
    cursor: pointer;
}

.booking-form-wrapper textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.booking-form-wrapper .btn-submit {
    background-color: #FBA707;
    color: #000000;
    padding: 12px 35px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-form-wrapper .btn-submit:hover {
    background-color: #000;
}



/* Contact Us Page CSS */
.contact-banner {
    position: relative;
    background-image: url('../images/service-banner.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
}

.contact-banner .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-banner .container {
    position: relative;
    z-index: 2;
}

.contact-us h1 {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .contact-banner {
        padding: 80px 0;
    }

    .contact-us h1 {
        font-size: 36px;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 30px 20px;
    position: relative;
    margin-bottom: 25px;
    border-radius: 20px;
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-info::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--theme-color);
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 20px;
    right: 15px;
    top: 15px;
    transition: var(--transition);
}

.contact-info:hover::before {
    width: 80%;
    height: 80%;
}

.contact-info:hover {
    transform: translateY(-8px)
}

.contact-info-icon i {
    font-size: 35px;
    color: var(--color-white);
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50px;
    background: var(--theme-color);
}

.contact-info h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.contact-info p {
    color: var(--color-dark);
    font-weight: 500;
    font-size: 16px;
}


@media all and (max-width: 768px) {
    .contact-content {
        margin-top: 50px;
        margin-bottom: 0;
    }
}

.contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
}

.col-left {
    width: 48%;
    position: relative;
    padding: 20px;
    border-radius: 8px;
}

.contact-image-wrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 90%;
    margin: 0 auto;
}

.yellow-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid var(--color-yellow);
    border-radius: 20px 300px 300px 300px;
    padding: 10px;
    z-index: 1;
}

.image-content-path {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 90%;
    height: 90%;
    overflow: hidden;
    border-radius: 20px 300px 300px 300px;
    z-index: 2;
}

.image-content-path img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.col-right {
    width: 50%;
    padding: 20px 40px;
}

.contact-text-wrap {
    margin-bottom: 30px;
}

.contact-text-wrap h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.contact-text-wrap p {
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 15px;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.form-row .form-group {
    width: 48%;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px 15px 15px 15px;
    border: 1px solid #ced4da;
    border-radius: 12px;
    height: 55px;
    font-size: 15px;
    background: #ffffff;
    color: #212529;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--color-yellow);
    outline: none;
    box-shadow: 0 0 5px rgba(255, 179, 0, 0.2);
}

.form-control::placeholder {
    color: #7a7c7f;
    font-size: 14px;
}

.form-group .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-yellow);
    font-size: 18px;
    z-index: 2;
}

textarea.form-control {
    resize: vertical;
    height: 150px;
    padding: 15px 15px 15px 15px;
}

textarea+.input-icon {
    top: 25px;
    transform: none;
}

.btn-submit {
    display: inline-block;
    background-color: var(--color-yellow);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: capitalize;
    transition: background-color 0.3s;
    float: right;
}

.btn-submit:hover {
    background-color: #e6a300;
}

@media (max-width: 991px) {
    .contact-row {
        flex-direction: column-reverse;
        padding: 10px;
    }

    .col-left,
    .col-right {
        width: 100%;
        padding: 15px;
    }

    .contact-image-wrap {
        margin-top: 30px;
    }

    .btn-submit {
        float: none;
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        width: 100%;
    }
}


/* Footer CSS */
.footer-bg {
    background-color: #111;
    background-image: url(../images/footer-bg.png);
    color: #777;
    background-position: 0 0 !important;
    background-repeat: no-repeat;
    background-size: contain;
}

.zigzag-separator {
    position: relative;
    height: 38px;
    background-image: url(../images/zigzag-box-2.png);
    background-repeat: repeat-x;
    background-color: #111111;
    animation: bgSlide 20s linear infinite;
    -webkit-animation: bgSlide 20s linear infinite;
}

@keyframes bgSlide {
    0% {
        background-position: 0 0;
    }

    20% {
        background-position: -100px 0;
    }

    40% {
        background-position: -200px 0;
    }

    60% {
        background-position: -150px 0;
    }

    80% {
        background-position: -100px 0;
    }

    100% {
        background-position: 0px 0;
    }
}

.menu {
    display: inherit !important;
}

.pb-70 {
    padding-bottom: 30px;
}

.pt-90 {
    padding-top: 40px;
}

.footer-top-heiding {
    margin-bottom: 50px;
    margin-top: 15px;
    position: relative;
    z-index: 0;
    padding: 0 80px;
}

.footer-top-heiding .container {
    padding-bottom: 50px;
    padding-top: 30px;
}

.footer-top {
    padding: 0px 80px 60px 80px;
}

.f-logo {
    width: 156px;
}

img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

.text-right {
    text-align: right;
}

.footer-social a {
    font-size: 16px;
    display: inline-block;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff47;
    text-align: center;
    line-height: 40px;
    color: #fff !important;
}

.footer-social a:hover {
    color: #ffc000 !important;
}

.p-relative {
    position: relative;
    z-index: 0;
}

.footer-widget .textwidget {
    color: #99A3AC;
}

li {
    list-style: none;
}

.redux-footer h2 {
    margin-top: 0px;
}

.f-widget-title h2 {
    font-size: 25px;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 30px;
    color: #FFB300;
}

.footer-widget p {
    color: #d0d0d0;
    line-height: 33px;
}

.mb-30 {
    margin-bottom: 30px;
}

ul {
    margin: 0px;
    padding: 0px;
}

.footer-widget .widgettitle {
    color: #FFB300;
    text-align: left;
    font-size: 25px;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 30px;
}

.footer-widget .widget ul li {
    color: #fff;
    text-align: left;
    margin-bottom: 10px;
}

.footer-link ul li a {
    color: #d0d0d0;
    display: inline-block;
    text-decoration: none;
    transition: .5s;
}

.footer-link ul li a:hover {
    color: #ffc000;
    margin-left: 10px;
}

.footer-link ul li a i {
    margin-right: 5px;
    color: rgb(255, 192, 0);
    font-size: 14px;
}

.f-contact {
    display: flex;
}

.f-contact .icon {
    float: left;
    margin-top: 7px;
    margin-right: 15px;
    width: 40px;
}

.f-contact i {
    width: 40px;
    height: 40px;
    background: #3a3a3a7d;
    line-height: 40px;
    color: #ffc000 !important;
    text-align: center;
    border-radius: 50%;
    float: left;
}

.copyright-wrap {
    background: #111;
    color: #ffffff82;
    font-size: 15px;
    padding: 0 80px;
}

.copyright-wrap .container {
    padding: 0px 0 30px;
}

.copyright-wrap li {
    display: inline;
    padding-left: 15px;
    margin-left: 40px;
    position: relative;
}

.copyright-wrap li a {
    color: #ffffff82;
    transition: .5s;
    text-decoration: none;
}

.copyright-wrap li a:hover {
    color: #ffc000;
}

@media screen and (min-width: 820px) and (max-width: 1024px) {
    .footer-top,
    .footer-top-heiding,
    .copyright-wrap {
        padding: 0px;
    }
}

@media screen and (min-width: 320px) and (max-width: 819px) {
    .footer-bg {
        background-size: cover;
    }

    .footer-top,
    .footer-top-heiding,
    .copyright-wrap {
        padding: 0 20px;
    }

    .text-right {
        text-align: left !important;
    }

    .footer-widget .widgettitle {
        margin-top: 25px;
        margin-bottom: 0px;
    }
}