@font-face {
    font-family: "TT Commons";
    src: url("../fonts/TT Commons Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "TT Commons";
    src: url("../fonts/TT Commons DemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "TT Commons";
    src: url("../fonts/TT Commons Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
:root {
    --default-font: "TT Commons", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

    --heading-font: "TT Commons", sans-serif;
    --paragraph-font: "TT Commons", sans-serif;
}

/* :root {
  --default-font: "Cabin", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Cabin", sans-serif;
  --paragraph-font: "verela", sans-serif;
} */

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #525151; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #1e73be; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #ff4a17; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #e5eaee; /* The default color of the main navmenu links */
    /* --nav-hover-color: #ff4a17;  */
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #ff4a17; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f1f4fa;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #000910;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #28323a;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.section-1-h2 {
    font-size: 28px;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* =========================
   HEADER BASE
========================= */
.header {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000 100%);
    --background-color: rgba(0, 0, 0, 0);
    --default-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 14px 0;
    z-index: 997;
}

/* ===== MAIN LAYOUT: LOGO LEFT | NAV CENTER | ICONS RIGHT ===== */
#header .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px;
    flex-direction: row !important; /* kill row-reverse */
}

/* LOGO ALWAYS LEFT */
#header .logo {
    flex: 0 0 auto !important;
    order: 1 !important;
    margin-right: auto !important;
    margin-left: 0 !important;
    float: none !important;
}

#header .logo img {
    height: 60px;
    width: auto;
    display: block;
    max-height: 60px;
}

/* NAV (CENTER ON DESKTOP) */
#header .navmenu {
    flex: 1 !important;
    order: 2 !important;
    /* display: flex !important;
  justify-content: center !important; */
    min-width: 0 !important;
}

#header .navmenu ul {
    display: flex;
    align-items: center;
    /* gap: 22px; */
    margin: 0;
    padding: 0;
    list-style: none;
}

#header .navmenu a {
    font-family: Roboto;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

/* ICONS ALWAYS RIGHT */
#header .header-actions {
    flex: 0 0 auto !important;
    order: 3 !important;
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 15px;
    white-space: nowrap;
    float: none !important;
}

/* Buttons/icons */
#header .cta-btn {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin: 0;
}

#header .cta-btn i,
#header .mobile-nav-toggle {
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

/* =========================
   DESKTOP: Registration hover FIX
========================= */
@media (min-width: 1200px) {

    #header .navmenu li.dropdown {
        position: relative;
    }

    /* invisible hover bridge (MOST IMPORTANT) */
    #header .navmenu li.dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 14px; /* gap filler */
    }

    /* dropdown */
    #header .navmenu li.dropdown > ul {
        display: none;
        position: absolute;
        top: 100%; /* NO GAP */
        left: 0;
        min-width: 220px;
        background: rgba(0, 0, 0, 0.95);
        border-radius: 12px;
        padding: 10px 0;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
        z-index: 9999;

        /* vertical list */
        display: flex;
        flex-direction: column;

        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: .25s ease;
    }

    /* KEEP OPEN when hovering parent OR dropdown */
    #header .navmenu li.dropdown:hover > ul,
    #header .navmenu li.dropdown > ul:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* dropdown items */
    #header .navmenu li.dropdown > ul > li {
        width: 100%;
    }

    #header .navmenu li.dropdown > ul > li > a {
        display: block;
        padding: 10px 16px;
        color: #ffffff !important;
        text-decoration: none;
    }

    /* hover / active */
    #header .navmenu li.dropdown > ul > li > a:hover,
    #header .navmenu li.dropdown > ul > li > a.active {
        color: #ff5a00 !important;
        background: rgba(255, 255, 255, 0.08);
    }
}

/* =========================
   MOBILE/TABLET NAV DRAWER
========================= */
@media (max-width: 1199px) {

    /* nav visible, but ul hidden until open */
    #header .navmenu {
        display: block !important;
        flex: 0 0 auto !important;
        order: 2 !important;
        width: auto !important;
    }

    /* hamburger FORCE visible */
    #header .mobile-nav-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        color: #ffffff !important;
        font-size: 24px !important;
        z-index: 10003;
    }

    /* hide menu by default */
    #header .navmenu > ul {
        display: none !important;
    }

    /* =========================
     OVERLAY (background)
  ========================= */
    body.mobile-nav-active::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.60);
        /* z-index: 998;   */
        pointer-events: auto;
    }

    /* =========================
     WHITE MENU CARD (centered)
  ========================= */
    body.mobile-nav-active #header .navmenu > ul {
        display: block !important;
        position: fixed;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 360px;
        background: #ffffff;
        border-radius: 18px;
        padding: 22px 20px;
        z-index: 10001; /* ABOVE overlay */
        pointer-events: auto;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    }

    /* Ensure every menu item clickable */
    body.mobile-nav-active #header .navmenu > ul,
    body.mobile-nav-active #header .navmenu > ul * {
        pointer-events: auto;
    }

    /* menu items spacing */
    body.mobile-nav-active #header .navmenu > ul > li {
        margin-bottom: 18px;
    }

    /* menu links */
    body.mobile-nav-active #header .navmenu > ul > li > a {
        color: #333;
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        text-decoration: none;
    }

    /* active link */
    body.mobile-nav-active #header .navmenu > ul > li > a.active {
        color: #ff5a00;
        font-weight: 600;
    }

    /* =========================
     DROPDOWN (Registration) - FIXED
  ========================= */
    /* Registration heading */
    body.mobile-nav-active #header .navmenu li.dropdown > a {
        color: #ff5a00;
        font-weight: 600;
    }

    /* dropdown list default hidden */
    body.mobile-nav-active #header .navmenu li.dropdown > ul {
        display: none !important;
        position: static !important;
        background: #f7f7f7;
        padding: 14px;
        border-radius: 12px;
        margin-top: 12px;
    }

    /* when open show */
    body.mobile-nav-active #header .navmenu li.dropdown.dropdown-open > ul {
        display: block !important;
    }

    /* dropdown links */
    body.mobile-nav-active #header .navmenu li.dropdown > ul li a {
        color: #333;
        display: block;
        padding: 10px 0;
        text-decoration: none;
    }

    /* rotate chevron when open (optional) */
    body.mobile-nav-active #header .navmenu li.dropdown.dropdown-open > a .toggle-dropdown {
        transform: rotate(180deg);
        transition: .2s;
    }

    /* =========================
     ACTIONS ORDER (Mobile/Tablet)
     user -> phone -> hamburger (right end)
  ========================= */
    #header .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
    }

    /*#header .header-actions .cta-btn.login{ order: 1 !important; }*/
    #header .header-actions .cta-btn.phone {
        order: 2 !important;
    }

    #header .header-actions .mobile-nav-toggle {
        order: 3 !important;
        margin-left: auto !important;
        font-size: 23px !important;
    }

    /* =========================
     CLOSE (X) ICON (Top right)
  ========================= */
    #header .mobile-nav-toggle.bi-x {
        position: fixed;
        top: 20px;
        right: 28px;
        font-size: 36px !important;
        z-index: 10002;
        font-size: 26px;
        color: #ffffff;
        cursor: pointer;
        pointer-events: auto;
    }
}

@media (max-width: 400px) {

    #header .header-inner {
        gap: 1px;
    }

    /* #header .cta-btn.phone span {
    display: none;
  } */
}

/* MOBILE extra tuning */
@media (max-width: 767px) {
    .header {
        padding: 10px 0;
    }

    #header .logo img {
        height: 42px !important;
        max-height: 42px !important;
    }

    #header .cta-btn i,
    #header .mobile-nav-toggle {
        font-size: 18px !important;
    }
}

/* .header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
} */

/* fleets  */
#carClassesNav .nav-link {
    /*border-radius: 999px;*/
    border-radius: 10px;
    padding: 6px 18px;
    font-weight: 500;
    color: #6b6b8b;
    pointer-events: auto !important;
}

#carClassesNav .nav-link.active {
    background-color: #1e73be;
    color: #fff;
}

.card-title {
    margin-bottom: var(--bs-card-title-spacer-y);
    color: var(--bs-card-title-color);
    font-size: 22px;
}

.bi-person::before {
    content: "\f4e1";
    font-size: 22px !important;
}

.bi-suitcase::before {
    content: "\f900";
    font-size: 22px !important;
}

.passenger {
    font-size: 22px !important;
}

.car-card {
    border: none !important;
    border-radius: 10px !important;
    background-color: #f8f9fa;
}

.car-card .card-img-top {
    /* padding: 20px 20px 0; */
    padding: 0px 12px 0;
    height: 170px;
    object-fit: contain;
}

/* Smooth and slower carousel animation */
.carousel-inner {
    transition: transform 1s ease-in-out !important;
}

.carousel-item {
    transition: transform 1s ease-in-out !important;
}

/* Center align cards if they are less than 4 (desktop) */
.carousel-item .row {
    justify-content: center !important;
}

/* customer review section */

/* .statsB{ padding:50px 16px; background:#fff; font-family:Arial,sans-serif; }
.statsB-wrap{ max-width:1100px; margin:0 auto; text-align:center; }
.statsB-title{ font-size:28px; font-weight:900; margin:0 0 22px; color:#1e73be; }

.statsB-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    background: #f8f9fa;
    border-radius: 18px;
    overflow: hidden;
}

.statsB-item{
  flex:1;
  padding:18px 10px;
}

.statsB-val{ font-size:30px; font-weight:900; color:#111; line-height:1.1; }
.statsB-lbl{ margin-top:8px; font-size:14px; color:#555; font-weight:700; }

.statsB-divider{ width:1px; background:#eee; }

@media (max-width:900px){
  .statsB-row{ flex-wrap:wrap; }
  .statsB-item{ flex:1 1 50%; }
  .statsB-divider{ display:none; }
}
@media (max-width:520px){
  .statsB-item{ flex:1 1 100%; }
  .statsB-title{ font-size:22px; }
} */

/*
.minimalStats{
  padding:60px 16px;
  background:#fff;
  font-family:Arial,sans-serif;
  color:#111;
  text-align: center;
}

.minimalStats-wrap{ max-width:1100px; margin:0 auto; }

.minimalStats-title{
  color:#1e73be;
  margin:0 0 26px;
  font-size:28px;
  font-weight:900;
}


.minimalStats-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}


.minimalStats-item {
    border-radius: 10px;
    padding: 18px 18px;
    background: #f8f9fa;
}

.minimalStats-top{
  display:flex;
  align-items:center;
  gap:10px;
  color:#555;
  font-weight:800;
  font-size:13px;
}

.miniIcon{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:12px;
  background:#faf7ef;
  border:1px solid #f1e3be;
}

.minimalStats-val{
  margin-top:12px;
  font-size:34px;
  font-weight:950;
  letter-spacing:-.5px;
}

@media (max-width:900px){ .minimalStats-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){
  .minimalStats-grid{ grid-template-columns:1fr; }
  .minimalStats-title{ font-size:22px; }
} */

/* use this customer trusted reviews section */
.elegantStats {
    padding: 15px 16px;
    /* background: radial-gradient(1000px 420px at 20% 0%, #1d1d1d 0%, #0d0d0d 55%, #070707 100%); */
    background: #f8f9fa;
    color: #000;
    text-align: center;
}

.elegantStats-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.elegantStats-title {
    text-align: center;
    margin: 0 0 26px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: .2px;
}

.elegantStats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.elegantStats-card {
    /* position:relative;
  border-radius:18px; */
    padding: 22px 18px;
    /* background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04)); */
    /* background: #fff;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  overflow:hidden;
  transition:.25s; */
}

.elegantStats-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(201, 165, 74, .14);
    border: 1px solid rgba(201, 165, 74, .35);
    margin-bottom: 14px;
}

.elegantStats-icon svg {
    width: 22px;
    height: 22px;
    fill: #c9a54a;
}

.elegantStats-val {
    font-family: "TT Commons";
    font-size: 35px;
    font-weight: 700;
    line-height: 1.1;
    color: #1e73be;
}

.elegantStats-lbl {
    margin-top: 8px;
    font-size: 14px;
    opacity: .85;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
    .elegantStats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .elegantStats-grid {
        grid-template-columns: 1fr;
    }

    .elegantStats-title {
        font-size: 22px;
    }
}

/* use this customer trusted reviews section */

/* this section is like bt me trusted section */

:root {
    --impact-bg: #ffffff;
    --impact-text: #0b1220;
    --impact-muted: #6b7280;
    --impact-border: #eef2f7;
    --impact-card: #ffffff;
    --impact-shadow: 0 12px 28px rgba(15, 23, 42, .06);
    --impact-accent: #1e73be; /* blue */
}

.impact {
    background: var(--impact-bg);
    padding: 64px 16px 56px;
}

.impact__container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.impact__eyebrow {
    margin: 0 0 10px;
    font: 700 12px/1.2 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    letter-spacing: .12em;
    color: var(--impact-accent);
}

.impact__title {
    margin: 0;
    color: var(--impact-text);
    font: 800 clamp(28px, 3.3vw, 48px)/1.08 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    letter-spacing: -0.02em;
}

.impact__accent {
    color: var(--impact-accent);
}

.impact__subtitle {
    margin: 14px auto 18px;
    max-width: 820px;
    color: var(--impact-muted);
    font: 500 clamp(14px, 1.15vw, 16px)/1.6 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.impact__br {
    display: none;
}

.impact__toggle {
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border: 1px solid #e6ebf3;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, .06);
    margin: 6px 0 34px;
}

.impact__tab {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
    background: transparent;
    color: #6b7280;
    font: 700 13px/1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    transition: background .18s ease, color .18s ease, transform .18s ease;
    outline: none;
}

.impact__tab.is-active {
    background: var(--impact-accent);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
}

.impact__tab:active {
    transform: translateY(1px);
}

.impact__tab:focus-visible {
    outline: 3px solid rgba(29, 78, 216, .25);
    outline-offset: 3px;
}

.impact__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.impact-card {
    text-align: left;
    background: var(--impact-card);
    border: 1px solid var(--impact-border);
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(15, 23, 42, .05);
    padding: 18px 18px 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.impact-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.impact-card__icon svg {
    color: inherit;
}

.impact-card__icon--blue {
    background: #eef2ff;
    color: #2563eb;
}

.impact-card__icon--amber {
    background: #fff7ed;
    color: #d97706;
}

.impact-card__icon--gold {
    background: #fffbeb;
    color: #ca8a04;
}

.impact-card__icon--indigo {
    background: #eef2ff;
    color: #4f46e5;
}

.impact-card__label {
    margin: 2px 0 10px;
    color: #4b5563;
    font: 650 12px/1.2 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.impact-card__value {
    margin: 0;
    color: var(--impact-text);
    font: 900 28px/1.1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    letter-spacing: -0.02em;
}

.impact-card__hint {
    margin: 8px 0 0;
    color: #9ca3af;
    font: 600 11px/1.2 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

/* Responsive */
@media (max-width: 980px) {
    .impact__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .impact {
        padding: 52px 14px 46px;
    }

    .impact__subtitle {
        margin-bottom: 16px;
    }

    .impact__br {
        display: inline;
    }

    .impact__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .impact-card {
        padding: 16px;
    }

    .impact-card__value {
        font-size: 26px;
    }
}

/* this section is like bt me trusted section */

/* customer review section */

/* Mobile: keep fleet buttons in one horizontal line */
@media (max-width: 575.98px) {
    #carClassesNav .nav-item {
        flex: 0 0 auto;
    }
}

/* 5 cards per row on desktop (Economy) */
@media (min-width: 768px) {
    .col-md-5th {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* ---------- MOBILE SCROLLING BEHAVIOR FOR CARDS ---------- */
@media (max-width: 767.98px) {
    /* Row inside each slide: horizontal scroll, no wrapping */
    #carClassesCarousel .carousel-item .row {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        padding-bottom: 8px;
    }

    /* Hide scrollbar on WebKit (optional) */
    #carClassesCarousel .carousel-item .row::-webkit-scrollbar {
        display: none;
    }

    /* Every card takes ~80% width so ek card nicely center aata hai */
    #carClassesCarousel .carousel-item .col-12,
    #carClassesCarousel .carousel-item .col-12.col-md-5th,
    #carClassesCarousel .carousel-item .col-12.col-md-3 {
        flex: 0 0 100%;
        max-width: 80%;
        scroll-snap-align: start;
    }
}

/* fleets  */

/* Achievements */
.stats-box {
    background: #f0f3f9;
    border-radius: 20px;
    /* border: 2px solid #ff4d7a21; */
}

/* Vertical dividers on desktop */
@media (min-width: 992px) {
    .stats-item:not(:last-child) {
        border-right: 1px solid #ff4a17;
    }
}

/* Pink icon style */
.stats-icon i {
    color: #ff4a17;
    font-size: 40px;
    display: inline-block;
}

/* Achievements */

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .cta-btn {
        order: 2;
        margin: 0 10px 0 0;
        padding: 6px 7px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(21, 34, 43, 0.85);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu > ul > li {
        white-space: nowrap;
        padding: 15px 10px;
    }

    .navmenu > ul > li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 13px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-transform: uppercase;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover > a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    /*background-color: var(--background-color);*/
    background-color: #212529;
    font-size: 15px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: var(--heading-color);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* .footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
} */

.footer span {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 3px;
    font-size: 13px;
    line-height: 0;
    color: var(--accent-color);
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    display: flex;
    background-color: var(--background-color);
    transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: var(--background-color);
    color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

.icon-pill {
    width: 40px;
    height: 40px;
    background-color: #f06a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
    /* padding: 0px 0 0 0; */
    line-height: 32px;
}

/* Floating Action Buttons */
/*.fab-container {*/
/*    position: fixed;*/
/*    bottom: 75px; */
/*    right: 8px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 12px;*/
/*    z-index: 9999;*/
/*}*/

/* Hide by default */
.fab-container {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

/* Show when scrolled */
/* =========================
   Floating Container
   ========================= */
.fab-container.active {
    opacity: 1;
    visibility: visible;
    position: fixed; /* scroll ke sath fixed rahega */
    bottom: 75px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    z-index: 9999;
}

/* Button styles */
.fab {
    width: 45px;
    height: 45px;
    /* border-radius: 10%; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    text-decoration: none;
    /* box-shadow: 0px 4px 10px rgba(0,0,0,0.25); */
    transition: transform 0.2s ease, opacity 0.2s;
    position: relative; /* tooltip ke liye zaroori */
}

/* .fab:hover{
  transform: scale(1.12);
  opacity: 0.95;
} */

.fab-container a:hover {
    color: #fff;
}

/* Colors */
.fab.whatsapp {
    background-color: #25D366;
    border-radius: 0 0 6px 6px;
}

.fab.call {
    background-color: #ff7a18;
}

.fab.search {
    background-color: #000;
}

.fab.booknow {
    background: #007bff;
    border-radius: 6px 6px 0 0;
}

/* =========================
   Tooltip Label (Screenshot style)
   ========================= */

/* Tooltip bubble */
.fab::after {
    content: attr(data-label);
    position: absolute;
    right: 62px; /* icon se left side distance */
    top: 50%;
    transform: translateY(-50%);
    background: #111; /* label background */
    color: #fff;
    font-size: 12px;
    padding: 12px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    letter-spacing: 2px;
}

/* Tooltip arrow */
.fab::before {
    content: "";
    position: absolute;
    right: 55px; /* arrow position */
    top: 50%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-left-color: #111; /* arrow color */
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease;
}

/* Show on hover + keyboard focus */
.fab:hover::after,
.fab:hover::before,
.fab:focus::after,
.fab:focus::before {
    opacity: 1;
    visibility: visible;
}

.fab:hover::after,
.fab:focus::after {
    transform: translateY(-50%) translateX(-4px); /* slight slide */
}

/* Mobile: hover nahi hota; optional: label disable ya tap focus par show */
@media (max-width: 768px) {
    .fab::after, .fab::before {
        display: none; /* agar mobile pe labels nahi chahiye */
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/*#preloader {*/
/*position: fixed;*/
/*inset: 0;*/
/*z-index: 999999;*/
/*overflow: hidden;*/
/*!*background: var(--background-color);*!*/
/*transition: all 0.6s ease-out;*/
/*}*/

/*#preloader:before {*/
/*content: "";*/
/*position: fixed;*/
/*top: calc(50% - 30px);*/
/*left: calc(50% - 30px);*/
/*!*border: 6px solid #ffffff;*!*/
/*!*border-color: var(--accent-color) transparent var(--accent-color) transparent;*!*/
/*border-radius: 50%;*/
/*width: 60px;*/
/*height: 60px;*/
/*!*animation: animate-preloader 1.5s linear infinite;*!*/
/*}*/

/*@keyframes animate-preloader {*/
/*0% {*/
/*transform: rotate(0deg);*/
/*}*/

/*100% {*/
/*transform: rotate(360deg);*/
/*}*/
/*}*/

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 30px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 76px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.step-icon {
    width: 60px;
    height: 30px;
    background: #1e73be;
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.section-title {
    padding-bottom: 20px;
    position: relative;
}

.section-title h2 {
    font-size: 16px;
    font-weight: 600;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, #000000, transparent 0%);
    position: relative;
}

.section-title .how {
    font-size: 16px;
    font-weight: 600;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, #ffffff, transparent 0%);
    position: relative;
}

/* .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
} */

.section-title p {
    color: #1e73be;
    margin: 0;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--heading-font);

}

.section-title h2 {
    margin: 0;
    text-align: left;
}

/* WHY */
.section-title .small-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000000;
    position: relative;
}

/* line after WHY */
.section-title .small-title::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

/* CHOOSE US */
.section-title .main-title {
    display: block;
    color: #1e73be;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--heading-font);
    margin-top: 24px;
}

@media (max-width: 768px) {
    .section-title p {
        font-size: 24px;
    }
}

/* Oval / blob-style image */
.oval-img-wrapper {
    width: 300px;
    height: 390px;
    overflow: hidden;
    /* border-radius: 55% 45% 60% 40% / 45% 55% 40% 60%; */
    margin: auto;
}

.oval-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Thumbnails */
.thumb {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    object-fit: cover;
    border: 3px solid transparent;
    transition: 0.3s;
}

.thumb:hover {
    border-color: #ff6f3c;
}

/* Line under text */
.underline {
    width: 70px;
    height: 5px;
    background: #ff6f3c;
    margin: 15px 0;
}

/* Carousel wrapper: hide overflow, no native scroll */
.airports-carousel {
    position: relative;
    overflow: hidden;
}

/* Horizontal track of slides */
.airports-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Each slide contains up to 8 cards (4x2 grid on desktop) */
.airport-slide {
    min-width: 100%; /* one slide = full viewport of carousel */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Cards just fill the grid cell */
.airport-card {
    width: 100%;
}

/* Tablet: 2 columns x 4 rows (still max 8 cards) */
@media (max-width: 991.98px) {
    .airport-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column x 8 rows */
@media (max-width: 575.98px) {
    .airport-slide {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services .details h3 {
        font-size: 16px !important;
    }

    .airport-carousel-nav {
        display: inline-flex;
        gap: 0.5rem;
        margin-top: 35px;
    }

    .section-title .small-title {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #000000;
        position: relative;
    }

    .section-title .main-title {
        display: block;
        color: #1e73be;
        font-size: 18px;
        font-weight: 800;
        text-transform: uppercase;
        font-family: var(--heading-font);
        margin-top: 24px;
    }

    .default-btnn {
        background-color: #1a73e8;
        border-radius: 2px;
        height: 45px;
        width: 160px !important;
        font-size: 12px !important;
        font-weight: 500;
        color: #fff;
        padding: 0 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        overflow: hidden;
        border: 0;
    }

    .default-bt {
        background-color: #ef672d;
        border-radius: 2px;
        height: 45px;
        width: 160px !important;
        font-size: 12px !important;
        font-weight: 500;
        color: #fff;
        padding: 0 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        overflow: hidden;
        border: 0;
    }

    .default-btn {
        background-color: #EF672D;
        border-radius: 2px;
        height: 45px;
        width: 160px !important;
        font-size: 12px !important;
        font-weight: 500;
        color: #fff;
        padding: 0 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        overflow: hidden;
        border: 0;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* =========================
   HERO (VIDEO + THUMB CROSSFADE)
========================= */

.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Thumbnail (recommended: <img class="hero-thumb"> ) */
/* Also keeps compatibility if you use plain .hero img */
.hero-thumb,
.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; /* background layer */
    opacity: 1; /* visible first */
    transition: opacity 0.8s ease-in-out;
}

/* When video is ready, we will fade thumbnail out by adding .hide */
.hero-thumb.hide,
.hero img.hide {
    opacity: 0;
}

/* Video layer */
.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; /* same bg layer */
    opacity: 0; /* hidden first */
    transition: opacity 0.8s ease-in-out;
}

.hero video.loaded {
    opacity: 1; /* fade in when ready */
}

/* Overlay */
.hero:before {
    content: "";
    background: color-mix(in srgb, #000910bf, transparent 60%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* Content */
.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90%;
    text-align: center;
}

.hero .heading-size {
    margin: 0;
    font-size: 44px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

@media screen and (max-width: 1400px) and (min-width: 1200px) {
    .hero h2 {
        font-size: 42px;
    }

    .hero .heading-size {
        font-size: 38px;
    }

    /* optional: adjust framing on this range */
    /* .hero-thumb, .hero video { object-position: center 20%; } */
}

.hero p {
    /*margin-top: 10px;*/
    font-size: 22px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero form {
    margin-top: 40px;
    width: 100%;
    max-width: 1100px;
}

.hero .btn-get-started {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
}

.hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    font-weight: 400;
    color: var(--default-color);
}

.hero .btn-watch-video i {
    color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.section-partner-h2 {
    font-size: 36px;
}

.section-3-partner-h3 {
    font-size: 20px;
}

.section-client-h2 {
    font-size: 36px;
}

/* =========================
   MOBILE LAYOUT
========================= */
@media (max-width: 768px) {

    .hero {
        height: 100vh;
        align-items: stretch;
    }

    /* Put face higher (apply to thumb + video) */
    .hero-thumb,
    .hero video,
    .hero img {
        object-position: center 0% !important; /* tweak 0% / 15% */
    }

    /* Slightly faster transitions on mobile (optional) */
    .hero-thumb,
    .hero video,
    .hero img {
        transition: opacity 0.6s ease-in-out;
    }

    .hero .container {
        height: 114% !important;
        justify-content: flex-end !important;
        padding-bottom: 11vh;
    }

    .hero .heading-size {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .hero h2 {
        font-size: 14px;
    }

    .hero p {
        font-size: 12px;
    }

    .section-1-h1 {
        font-size: 25px !important;
    }

    .section-1-h2 {
        font-size: 16px;
    }

    .section-partner-h2 {
        font-size: 30px;
    }

    .section-client-h2 {
        font-size: 25px;
    }

    .hero form {
        margin-top: 20px;
    }
}

.header-inner > * {
    flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
    /* xl se chhota = mobile/tablet */
    .logo {
        margin: 0 auto; /* logo ko center ki taraf dhakel dega */
    }
}

.stats-split {
    /* background: #f7f8fc; */
    border-radius: 28px;
}

.stat-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 16px 18px;
    /* box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06); */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.stat-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient(135deg, #ff5a1f, #ff9933);*/
    color: #ffffff;
    font-size: 26px;
}

.stat-icon-wrap img {
    width: 65px;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #1e73be;
    line-height: 1.1;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
}

/* Mobile tweaks */
@media (max-width: 575.98px) {
    .stat-card {
        padding: 14px;
    }

    .stat-number {
        font-size: 22px;
    }
}

.how-works-simple {
    background: var(--background-color);
}

.hws-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ff5a1f;
}

.hws-title {
    font-weight: 800;
    letter-spacing: 0.05em;
}

.hws-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #e1e4f0;
}

.hws-row:last-child {
    border-bottom: none;
}

.hws-number {
    font-size: 28px;
    font-weight: 800;
    color: #1e73be;
    min-width: 50px;
}

.hws-content h5 {
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.hws-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #ffffff;
}

/* Mobile */
@media (max-width: 575.98px) {
    .hws-row {
        align-items: flex-start;
    }

    .hws-number {
        font-size: 22px;
        min-width: 40px;
    }
}

/*Achievements */
.stats-variant {
    background: radial-gradient(circle at top left, #ffe9df 0, #f7f8fc 45%, #e7f2ff 100%);
    border-radius: 28px;
}

/* Top badge */
.stats-badge {
    background: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 500;
    color: #444;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ff5a1f;
    position: relative;
}

.badge-dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 1px solid rgba(255, 90, 31, 0.5);
    animation: pulse-dot 1.4s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

/* Left highlight card */
.highlight-card {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

/* Right stat cards */
.stat-card-variant {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.stat-card-variant:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.18);
    border-color: rgba(0, 123, 255, 0.25);
}

/* Icon circle */
.stat-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff5a1f, #ff9933);
    color: #fff;
    font-size: 26px;
}

/* Text */
.stat-number-variant {
    font-size: 26px;
    font-weight: 700;
    color: #1e73be;
    line-height: 1.1;
}

.stat-label-variant {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .stats-variant {
        border-radius: 0;
    }

    .highlight-card {
        margin-bottom: 4px;
    }

    .stat-card-variant {
        padding: 14px 14px;
    }

    .stat-number-variant {
        font-size: 22px;
    }
}

/*Achievements */

/*faq */
/* .faq-transfer-section {
    background: #f7f8fc;
} */

.faq-badge {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.faq-image-wrapper img {
    object-fit: cover;
    min-height: 260px;
}

.faq-accordion .accordion-item {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e2e6f0;
    margin-bottom: 0.6rem;
    background-color: #ffffff;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 0.98rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #1e73be;
    /* background-color: #eef4ff; */
    box-shadow: none;
}

.faq-accordion .accordion-body {
    font-size: 0.92rem;
    color: #6c757d;
}

/* Small screens */
@media (max-width: 767.98px) {
    .faq-transfer-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/*faq */

.image-card {
    position: relative;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    /* box-shadow: 0px 15px 35px rgba(0,0,0,0.25); */
    transition: transform .3s;
}

.image-card:hover {
    transform: translateY(-4px);
}

.image-card::before {
    /* KEEP SAME SOFT GRADIENT LIKE YOUR DESIGN */
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.40),
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.05)
    );
}

/* top airports */
.airports-sections {
    padding: 3rem 0;
}

.airport-cards {
    border-radius: 18px;
    border: 1px solid #f0f0f0;
    background: #ffffff;
    /*box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);*/
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.airport-code-pill {
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    border: 1px solid #e3e3e3;
    background-color: #fafafa;
    color: #6b7280;
}

.airport-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.airport-subtitle {
    font-size: 0.9rem;
    color: #4b5563;
}

.airport-country {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
}

.airport-image {
    margin-top: 1rem;
}

.airport-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f97316;
    text-decoration: none;
}

.airport-link:hover {
    text-decoration: underline;
}

/* NEW: carousel buttons top-right */
.airport-carousel-nav {
    display: inline-flex;
    gap: 0.5rem;
}

.airport-carousel-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    font-size: 1.1rem;
    /* line-height: 1; */
    display: inline-flex;
    /* align-items: center; */
    justify-content: center;
    cursor: pointer;
}

.airport-carousel-btn:hover {
    background-color: #f3f4f6;
}

/* top airports */

/* about hero section */
.about-hero {
    width: 100%;
    min-height: 50vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.about-hero.container {
    position: relative;
    z-index: 3;
}

.about-hero h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-hero p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 0 0;
    font-size: 24px;
}

.about-hero .btn-get-started {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
}

.about-hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about-hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    font-weight: 400;
    color: var(--default-color);
}

.about-hero .btn-watch-video i {
    color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.about-hero .btn-watch-video:hover {
    color: var(--accent-color);
}

.about-hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
    .about-hero h2 {
        font-size: 32px;
    }

    .about-hero p {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about-heading h2 {
    color: #ff4a17;
    text-align: center;
}

.about-heading p {
    text-align: center;
}

.about h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.about .fst-italic {
    color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 0 0 10px 30px;
    position: relative;
}

.about .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--accent-color);
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 20px;
}

.stats .stats-item i {
    color: var(--accent-color);
    font-size: 42px;
    line-height: 0;
    margin-right: 20px;
}

.stats .stats-item span {
    color: var(--heading-color);
    font-size: 36px;
    display: block;
    font-weight: 600;
}

.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
    border-radius: 8px;
    overflow: hidden;
}

.services .img img {
    transition: 0.6s;
    width: 100%;
}

/* .services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
} */

.services .details {
    background: #24A7DD;
    padding: 5px 30px;
    margin: -32px 30px 5px 30px;
    transition: all ease-in-out 0.3s;
    position: relative;
    text-align: center;
    border-radius: 8px;
}

.services .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 6px solid var(--contrast-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
}

.services .details h3 {
    font-weight: 700;
    color: #fff !important;
    margin: 10px 0 15px 0;
    font-size: 14px;
    transition: ease-in-out 0.3s;
}

.services .details p {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item:hover .details h3 {
    color: var(--accent-color);
}

.services .service-item:hover .details .icon {
    background: var(--surface-color);
    border: 2px solid var(--accent-color);
}

.services .service-item:hover .details .icon i {
    color: var(--accent-color);
}

.services .service-item:hover .img img {
    transform: scale(1.2);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 20px 0;
}

.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.clients .client-logo img {
    /* padding: 20px 40px; */
    padding: 20px 20px;
    max-width: 90%;
    transition: 0.3s;
    opacity: 0.7;
    filter: grayscale(100);
}

.clients .client-logo img:hover {
    filter: none;
    opacity: 1;
}

@media (max-width: 640px) {
    .clients .client-logo img {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    background-color: var(--surface-color);
    color: var(--heading-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 15px 20px;
    transition: 0.3s;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
}

.features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.features .nav-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.features .nav-link.active {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.features .nav-link.active h4 {
    color: var(--contrast-color);
}

@media (max-width: 768px) {
    .features .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .features .nav-link {
        padding: 15px;
    }

    .features .nav-link i {
        font-size: 24px;
    }
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane h3 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 26px;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    padding-bottom: 10px;
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
    background-color: #f8f9fa;
    padding: 30px;
    /*border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);*/
    transition: 0.3s;
    border-radius: 10px;
    /*box-shadow: 0px 0 25px rgb(0 0 0 / 15%);*/
}

.services-2 .service-item .icon {
    font-size: 36px;
    line-height: 0;
    margin-right: 30px;
    color: #1e73be;
}

.services-2 .service-item img {
    width: 50px;
    height: 50px;
}

.services-2 .service-item .title {
    font-family: 'TT Commons';
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 25px;
}

.services-2 .service-item .title a {
    color: var(--heading-color);
}

.services-2 .service-item .description {
    line-height: 24px;
    font-size: 14px;
    margin: 0;
}

.services-2 .service-item:hover {
    border-color: var(--accent-color);
}

.services-2 .service-item:hover .icon {
    color: #ff4a17;
}

.services-2 .service-item:hover .title a {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 50px 0;
    /* position: relative; */
}

.testimonials-service {
    padding: 50px 0;
    position: relative;
}

.testimonials:before {
    content: "";
    /* background: color-mix(in srgb, var(--background-color), transparent 30%); */
    /* background: color-mix(in srgb, #000000, #000000a3 30%); */
    position: absolute;
    inset: 0;
    z-index: 2;
}

.testimonials-service:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    background: color-mix(in srgb, #000000, #000000a3 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.testimonials .testimonials-bg {
    /* position: absolute; */
    inset: 0;
    display: block;
    width: 100%;
    /* height: 550px; */
    object-fit: cover;
    z-index: 1;
}

.testimonials-service .testimonials-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.testimonials .testimonials-flughafen {
    /* position: absolute; */
    inset: 0;
    display: block;
    width: 100%;
    /* height: 550px; */
    /* object-fit: cover; */
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 3;
}

.testimonials-service .container {
    position: relative;
    z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    margin: 0 0 15px 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 50%);
    opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--default-color);
    opacity: 1;
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

.digital-cta-section {
    position: relative;
    background: #1e73be;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    align-items: center; /* ðŸ”¥ Vertically center ALL content */
}

/* LEFT BIG SHAPE */
.digital-cta-section::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -20%;
    width: 60%;
    height: 120%;
    background: #1d1d1d45;
    border-radius: 50% 40% 60% 50%;
    transform: rotate(15deg);
    opacity: 0.6;
    filter: blur(10px);
    z-index: 1;
}

.display-6 {
    font-size: 30px;
}

/* RIGHT RING SHAPE */
/*.digital-cta-section::after {
  content: "";
  position: absolute;
  top: 0%;
  right: -15%;
  width: 55%;
  height: 140%;
  background: radial-gradient(circle, rgb(60 60 60 / 32%) 35%, rgba(0, 0, 0, 0) 37%);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 1;
}
*/

.digital-cta-section::after {
    content: "";
    position: absolute;
    top: 0%;
    right: -29%;
    width: 87%;
    height: 101%;
    background: radial-gradient(circle, rgb(60 60 60 / 32%) 35%, rgba(0, 0, 0, 0) 37%);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 1;
}

/* Content Layer */
.digital-cta-section .container {
    position: relative;
    z-index: 10;
}

.img-right {
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 145%;
    z-index: 5;
    transform: translate(20%, 50px); /* âœ” X and Y together */
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .digital-cta-section {
        padding-top: 80px;
        padding-bottom: 80px;
        text-align: center;
    }

    /*.img-right {
    position: relative;
    right: auto;
    bottom: auto;
    transform: none;
    max-width: 70%;
    margin: 20px auto 0;
  } */
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.portfolio .portfolio-content {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-content img {
    transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
    opacity: 0;
    position: absolute;
    inset: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
    font-size: 14px;
    padding: 5px 10px;
    font-weight: 400;
    color: #ffffff;
    display: inline-block;
    background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
    position: absolute;
    bottom: 10px;
    text-align: center;
    display: inline-block;
    left: 0;
    right: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
    position: absolute;
    left: calc(50% - 40px);
    font-size: 26px;
    top: calc(50% - 14px);
    color: #fff;
    transition: 0.3s;
    line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
    color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
    left: 50%;
    font-size: 34px;
    line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-content:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
    position: relative;
}

.team .member .pic {
    overflow: hidden;
    margin-bottom: 50px;
}

.team .member .member-info {
    background-color: var(--surface-color);
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -50px;
    left: 20px;
    right: 20px;
    padding: 20px 15px;
    overflow: hidden;
    transition: 0.5s;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    position: relative;
    padding-bottom: 10px;
}

.team .member h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    bottom: 0;
    left: 0;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.team .member .social {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.team .member .social a {
    transition: color 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
    color: var(--accent-color);
}

.team .member .social i {
    font-size: 16px;
    margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 24px 0 30px 0;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
    font-size: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 30px;
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

/* Partner Account Css */
.page-header.service-bg {
    position: relative;
    min-height: 350px; /* ensure section has height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header.service-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* overlay darkness */
    z-index: 1;
}

/* Bring content above overlay */
.page-header.service-bg .container {
    position: relative;
    z-index: 2;
}

/* Optional: improve readability */
.page-header.service-bg h2,
.page-header.service-bg h4 {
    color: #fff;
}

.default-btnn {
    background-color: #1a73e8;
    border-radius: 2px;
    height: 45px;
    /* width: 172px; */
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 0;
}

.default-bt {
    background-color: #ef672d;
    border-radius: 2px;
    height: 45px;
    /* width: 167px; */
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 0;
}

.default-btn {
    background-color: #EF672D;
    border-radius: 2px;
    height: 45px;
    /* width:200px; */
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 0;
}

.default-btn:after,
.default-btn:before {
    background-color: #1e73be;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    width: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.default-btn:after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
}

.default-btn:focus:before,
.default-btn:focus:after,
.default-btn:hover:before,
.default-btn:hover:after {
    width: 100%;
}

.default-btn:hover {
    color: #fff;
}

.font-14 {
    font-size: 14px;
}

.testi-item {
    background-color: #fff;
    border-radius: 2px;
    padding: 40px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
    position: relative;
}

.testi-item p {
    /*font-size: 20px;*/
    /*line-height: 36px;*/
    font-weight: 400;
    /*text-align:justify;*/
    /*margin-bottom: 0;*/
    /*letter-spacing: -0.5px;*/
}

/* Partner Account Css */

/* Client Account Css */
.page-header-info h2 {
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    margin-top: 10px;
    /*margin-bottom: 15px;*/
}

.page-header-info h2 span {
    color: #ff9900;
}

.page-header-info p {
    color: #ddd;
    font-size: 16px;
    margin: 0;
}

.my-border-1 {
    border: 1px solid #778591 !important;
    border-radius: 10px;
}

/* Farasat Booking Form CSS  */
.booking-container .nav-tabs {
    text-align: center;
    border: 0px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.booking-container .nav-link {
    margin: auto !Important;
    position: relative;
    width: 60px;
    height: 60px;
    text-decoration: none;
    border-radius: 50% !Important;
    background-color: #eaecee !important;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #778591;
    transition: all 0.3s ease;
}

.booking-container .nav-link:hover {
    background-color: #1e73be !important;
    color: #fff !important;
}

.booking-container .nav-link.active {
    background-color: #EF672D !important;
    color: #fff !important;
}

.booking-container .nav-link i {
    margin-top: 2px;
    font-size: 30px;
}

.booking-container {
    font-size: 14px !important;
    margin-top: 35px;
    margin-bottom: 50px;
}

.booking-container .nav-item p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #1e73be;
}

.ride-details, .contact-details {
    border: 1px solid #778591 !important;
    border-radius: 5px;
}

.booking-container .my-title {
    border-top: 5px solid #1e73be;
}

.booking-container .my-title, .booking-container .sub-title, .booking-container .my-title2 {
    background: #eaecee;
    font-weight: bold;
    padding: 15px 20px 15px 20px;
    border-radius: 5px;
}

.booking-container input, .booking-container select, .booking-container textarea {
    padding: 15px 20px 15px 20px;
}

.booking-container label {
    background: #edf7ff;
    color: #1e73be;
    font-weight: 500;
    display: inline-block;
    width: 100% !important;
    padding: 15px 20px 15px 20px;
    border-radius: 5px;
}

.booking-container input, .booking-container select, .booking-container textarea {
    background: #fafafa;
    border-radius: 0px;
    border: 1px 0px 1px 0px;
    border-color: #eaecee;
}

.booking-container input:focus, .booking-container select:focus, .booking-container textarea:focus {
    border-color: #eaecee;
    outline: 0 none;
    box-shadow: none;
}

.booking-container .input-group-text, .booking-container .input-group {
    border: 0px;
    background: #fafafa;
}

.booking-container .btn-outline-secondary {
    border-radius: 0px;
    padding: 0px 0px 5px 0px;
    box-shadow: 0px !important;
    background: #fafafa;
    outline: 0px !important;
    margin: 14px 5px 10px 5px !important;
    width: 30px;
    height: 30px;
    font-weight: bold;
    font-size: 18px !important;
}

.booking-container .btn-outline-secondary:focus {
    border-radius: 0px;
    box-shadow: 0px !important;
    outline: 0px !important;
}

.booking-container .btn-outline-secondary:hover {
    background: #1e73be;
    color: white;
}

.booking-container .form-select {
    background-repeat: no-repeat;
    background-position: right;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-50 -32 80 80'%3e%3cpath fill='none' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");

}

.booking-container .bar {
    height: 2px;
    background: #1e73be;
    width: 100%;
    margin: 5px 0px 15px 0px;
}

.booking-container .sidebar {
    padding: 20px;
    background: #fafafa;
    border: 1px solid #778591;
    border-radius: 5px;
}

.booking-container .sidebar p {
    font-size: 14px;
}

.booking-container .sidebar h3 {
    font-size: 15px;
    color: #3e3e3e;
    font-weight: 600;
}

.booking-container .vehicles {
    border: 1px solid #778591;
    background: #fafafa;
    padding: 20px;
    border-radius: 5px;
}

.booking-container .vehicles .vehicle-title {
    font-size: 15px;
    background: #fafafa;
    padding: 0px 0px 20px 0px;
}

.light-grey-bg {
    background: #ffffff;
}

.radio-button {
    width: 140px !important;
    height: 50px !important;
    display: inline-block !important;
    background-color: #1e73be !important;
    color: white !important;
    padding: 0px !important;
}

.radio-button:hover {
    background: #222222 !important;
}

.radio-button input[type="radio"] {
    display: none !important;
}

.radio-button span {
    width: 100% !important;
    height: 50px !important;
    text-align: center !important;
    display: inline-block !important;
    padding: 10px 10px 5px 10px !important;
    cursor: pointer !important;
    font-size: 16px;
}

.radio-button input[type="radio"]:checked + span {
    background-color: #2eb886;
    color: white;
    border: 1px solid #2eb886;
    border-radius: 5px;
}

.ride-details .type-radio-button {
    width: 100% !important;
    height: 50px !important;
    display: inline-block !important;
    background-color: white !important;
    padding: 0px !important;
}

.ride-details .type-radio-button input[type="radio"] {
    display: none !important;
}

.ride-details .type-radio-button span {
    text-align: center;
    width: 100% !important;
    height: 50px !important;
    display: inline-block !important;
    padding-top: 10px !important;
    cursor: pointer !important;
    font-size: 14px;
}

.ride-details .type-radio-button input[type="radio"]:checked + span {
    background-color: #1e73be !important;
    color: white !important;
    border: 1px solid #1e73be !important;
}

.vehicle-card {
    color: black;
    margin-bottom: 10px;
    padding: 10px 15px;
}

.vehicle-card h3 {
    font-weight: 500;
    font-size: 32px;
    line-height: 30px;
}

.vehicle-card i {
    color: #222222;
    font-size: 15px;
}

.vehicle-card .quantity {
    background: #5c636a;
    color: white;
    margin-left: 5px;
    width: 20px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    line-height: 1.7;
    height: 20px;
    border-radius: 50%;
}

.width-100 {
    width: 100%;
}

.width-80 {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.checkbox-btn {
    outline: none !important;
    box-shadow: none !important;
    margin-top: 15px;
    color: black;
    width: 100px;
    height: 50px;
    background: white !important;
    border: 1px solid #545353 !important;
    padding: 12px 5px 10px 5px !important;
}

.checkbox-btn:hover {
    background: white;
    color: black;
}

.extra-card {
    padding: 15px 25px 5px 25px;
}

.my-blue {
    color: #1e73be;
}

.my-orange {
    color: #EF672D;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
    color: #fff;
    background-color: #1e73be !important;
    border-color: #1e73be !important;
}

.number-field {
    background: white !important;
    width: 150px;
    margin-top: 20px;
}

.number-field .form-control {
    height: 40px !important;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}

.number-field .btn {
    width: 40px;
    border-radius: 0;
}

.number-field .minus-btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.number-field .plus-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.nav-link.bg-success {
    background: #2eb886 !important;
    color: white !important;
}

.bg-success {
    background: #2eb886 !important;
    color: white !important;
}

.my-btn-grey {
    border-radius: 32px;
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    background: grey;
    color: white;
}

.next-prev-btn {
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    background: #EF672D;
    color: white;
}

.next-prev-btn:hover, .my-btn-grey:hover {
    background: #1e73be !important;
    color: white;
}

.next-prev-btn-success {
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    background: #2eb886;
    color: white;
}

.next-prev-btn-success:hover, .next-prev-btn-danger:hover {
    background: #EF672D;
    color: white;
}

.next-prev-btn-danger {
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    background: #f44336;
    color: white;
}

.color-grey {
    color: #222222;
}

.font-22 {
    font-size: 22px !important;
}

.font-20 {
    font-size: 20px !important;
}

.font-16 {
    font-size: 16px !important;
}

.font-18 {
    font-size: 18px !important;
}

.font-25 {
    font-size: 25px !important;
}

.color-golden {
    color: #ff9900 !important;
}

.border-top {
    border-top: 5px solid #EF672D !important;
}

.booking-container .input-group-text i {
    color: #222222;
}

.table-my-striped td {
    verticle-align: middle !important;
}

.table-my-striped i {
    color: #1e73be;
}

.table-my-striped tr:first-child {
    background: #edf7ff !important;
    color: #1e73be;
    font-weight: 500;
}

.table-bordered {
    border: 1px solid #778591 !important;
}

.card {
    border: 1px solid #778591;
    border-radius: 5px;
}

.number-field input::-webkit-outer-spin-button,
.number-field input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.number-field input[type=number] {
    -moz-appearance: textfield;
}

.number-field input[type=number]:focus {
    border-color: #eee;
    outline: none;
    box-shadow: none;
}

.font-14 {
    font-size: 14px;
}

.my-is-invalid {
    border: 1px solid #dc3545 !important;
}

.my-tooltip {
    position: relative;
}

.my-tooltip .tooltiptext, .tooltiptext2, .tooltiptext3 {
    visibility: hidden;
    min-width: 120px;
    max-width: 350px;
    background-color: #dc3545;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    font-size: 14px;
    padding: 10px 8px 10px 8px;
    position: absolute;
    z-index: 999;
    bottom: 115%;
    left: 6.3%;
}

.my-tooltip .tooltiptext::after, .tooltiptext2::after, .tooltiptext3::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 10%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #dc3545 transparent transparent transparent;
}

.is-visible {
    visibility: visible !important;
}

.is-invalid, .is-invalid:focus {
    border: 0px !important;
    outline: 0 none !important;
    box-shadow: none !important;
}

.vehicle-error {
    margin-bottom: 10px;
    display: none;
    background: #dc3545;
    color: white;
    padding: 5px 15px 5px 15px;
}

.language-switcher {
    z-index: 100000;
    position: fixed;
    bottom: 0px;
    left: 40px;
}

.language-switcher .dropdown-toggle {
    background-color: #222222;
    color: white;
    font-size: 15px;
    text-align: left;
    padding: 10px 16px 10px 16px;
    border-radius: 8px 8px 0px 0px;
    border: 1px solid grey;
    cursor: pointer;
    width: 160px;
}

.language-switcher .dropdown-menu {
    background-color: #222222;
    color: white;
}

.language-switcher .dropdown-item {
    color: white;
}

.language-switcher .dropdown-item:hover {
    background-color: #444444;
}

.language-switcher .flag-icon {
    margin-right: 10px;
}

.whatsapp-chat-square {
    position: fixed;
    bottom: 5px;
    right: 40px;
    width: 45px;
    height: 45px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 8px 0px 0px 9.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 30px;
    z-index: 9999;
}

.whatsapp-chat-square:hover {
    background-color: #128C7E;
}

.whatsapp-icon {
    color: #fff;
}

.phone-chat-square {
    position: fixed;
    bottom: 58px;
    right: 40px;
    width: 45px;
    height: 45px;
    background-color: #007aff;
    border-radius: 50%;
    padding: 9px 2px 0px 11px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 20px;
    z-index: 9999;
}

.phone-chat-square:hover {
    background-color: #000000;
}

.phone-icon {
    color: #fff;
}

.footer-logo img {
    width: 90%;
}

.flatpickr-input:disabled, .flatpickr-input[readonly] {
    background-color: #fafafa !important;
    opacity: 1;
}

.input-group-icon {
    position: relative;
}

.input-group-icon .input-group-text {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0.375rem 0.75rem;
    z-index: 99;
}

.input-group .form-control.is-invalid, .input-group .form-select.is-invalid, .was-validated .input-group .form-control:invalid, .was-validated .input-group .form-select:invalid {
    z-index: 100;
}

.input-group-icon .form-control {
    padding-right: 2.5rem;
}

.input-group-text {
    margin-top: 1px;
}

.user-sidebar {
    font-size: 14px;
}

.user-sidebar td {
    padding: 0px;
    margin: 0px;
}

.user-sidebar a {
    width: 100%;
    display: block;
    color: black;
    padding: 10px;
}

.user-sidebar a.active {
    background: #1e73be;
    color: white;
}

.user-sidebar a:hover {
    background: #EF672D;
    color: white;
}

.time-field option {
    margin: 40px !important;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.flatpickr-mobile {
    margin-left: 1px !important;
}

.required-field[readonly] {
    cursor: not-allowed;
    background-color: #fafafa !important;
}

.timepicker {
    position: absolute;
    z-index: 1000;
    float: left;
    width: 160px;
    padding-bottom: 5px;
    margin: 2px 0 0 0;
    list-style: none;
    font-size: 14px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

.padding-r-0-tb {
    padding-right: 0 !important;
}

.padding-l-0-tb {
    padding-left: 0 !important;
}
#preloader {
    margin-top:-1px;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8); /* Light grey background with opacity */
    /*padding: 20px;*/
    /*border-radius: 10px;*/
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Optional: Add a subtle shadow */
    /*display: none; !* Initially hidden *!*/
}
#preloader img {
    max-height: 200px;
    max-width: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.car-feature-icon {
    font-size: 24px;
    color: #3498db !important;
}

.height-100 {
    height: 100% !important;
}

.height-25 {
    height: 25% !important;
}

.width-50 {
    width: 50% !important;
}

.final-map {
    height: 200px !important;
}

.font-35 {
    font-size: 35px !important;
}

.cookie-consent .bg-dark {
    margin: 0px 0px 50px 20px;
}

.cookie-consent {
    width: 50%;
}

@media only screen and (min-width: 992px) {
    .padding-0 {
        padding: 0px !important;
    }

    .padding-r-0 {
        padding-right: 0 !important;
    }

    .padding-l-0 {
        padding-left: 0 !important;
    }

    #map {
        height: 75%;
        width: 100%;
    }

    .mobile-visible-only {
        display: none !important;
    }
}

@media only screen and (max-width: 992px) {
    #map {
        height: 300px;
    }

    .mobile-visible-only {
        display: block !important;
    }
}

@media only screen and (min-width: 500px) {
    .nav-tabs::before {
        content: "";
        position: absolute;
        width: calc(100% - 160px);
        height: 2px;
        background-color: #eaecee;
        top: 29%;
        left: 80px !important;
        right: 80px !important;
        transform: translateY(-50%);
        z-index: -1;
    }
}

@media only screen and (max-width: 767px) {
    #map {
        height: 200px;
    }

    .cookie-consent {
        width: 100%;
    }

    .cookie-consent .bg-dark {
        margin: 0px 5px 25px 5px;
    }
}

@media only screen and (max-width: 500px) {
    .nav-tabs::before {
        content: "";
        position: absolute;
        width: calc(100%);
        height: 2px;
        background-color: #eaecee;
        top: 25%;
        transform: translateY(-50%);
        z-index: -1;
    }

    .default-btn {
        padding: 0 10px !important;
    }

    #map {
        height: 150px;
    }

    .booking-container .nav-item {
        max-width: 25%;
    }

    .booking-container .nav-link {
        width: 55px;
        height: 55px;
        font-size: 15px;
        border: 0 !important;
    }

    .booking-container .nav-item p {
        font-size: 9px;
        line-height: 1.4;
        font-weight: 400;
    }

    #extra_type_wrapper .type-radio-button {
        height: 60px !important;
    }

    #extra_type_wrapper .type-radio-button span {
        height: 60px !important;
        line-height: 20px;
        font-size: 14px;
    }
}

booking-container .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    outline: none;
    box-shadow: none;
}

.booking-container .accordion-button {
    background: #eaecee;
    color: #222 !important;
    font-size: 15px !important;
    line-height: 28px;
    letter-spacing: -0.5px;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid #eee;
    padding: 5px;
}

.booking-container .accordion-button:focus {
    border-color: #eee;
    outline: none;
    box-shadow: none;
}

.booking-container .accordion-button:not(.collapsed) {
    color: #fff !important;
    background-color: #1e73be;
}

.booking-container .accordion-button:not(.collapsed):after {
    background-image: inherit;
    content: "\f068";
    color: #fff;
    transform: inherit;
    font-size: 13px;
    padding: 5px;
}

.booking-container .accordion-button:after {
    background-image: inherit;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    position: absolute;
    /*right: 5px;*/
    top: 50%;
    /* color: #222; */
    font-weight: 600;
    transform: translateY(-50%) !important;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*flatpickr_material_orange.css*/
.flatpickr-calendar {
    background: transparent;
    opacity: 0;
    display: none;
    text-align: center;
    visibility: hidden;
    padding: 0;
    -webkit-animation: none;
    animation: none;
    direction: ltr;
    border: 0;
    font-size: 14px;
    line-height: 24px;
    border-radius: 5px;
    position: absolute;
    width: 307.875px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
    opacity: 1;
    max-height: 640px;
    visibility: visible;
}

.flatpickr-calendar.open {
    display: inline-block;
    z-index: 99999;
}

.flatpickr-calendar.animate.open {
    -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
    animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
    display: block;
    position: relative;
    top: 2px;
}

.flatpickr-calendar.static {
    position: absolute;
    top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
    z-index: 999;
    display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
    -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
    box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
    border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
    height: 40px;
    border-top: 1px solid rgba(72, 72, 72, 0.2);
}

.flatpickr-calendar.hasTime .flatpickr-innerContainer {
    border-bottom: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
    border: 1px solid rgba(72, 72, 72, 0.2);
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
    height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
    position: absolute;
    display: block;
    pointer-events: none;
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
    left: auto;
    right: 22px;
}

.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
    left: 50%;
    right: 50%;
}

.flatpickr-calendar:before {
    border-width: 5px;
    margin: 0 -5px;
}

.flatpickr-calendar:after {
    border-width: 4px;
    margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
    border-bottom-color: rgba(72, 72, 72, 0.2);
}

.flatpickr-calendar.arrowTop:after {
    border-bottom-color: #ef672d;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
    top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
    border-top-color: rgba(72, 72, 72, 0.2);
}

.flatpickr-calendar.arrowBottom:after {
    border-top-color: #ef672d;
}

.flatpickr-calendar:focus {
    outline: 0;
}

.flatpickr-wrapper {
    position: relative;
    display: inline-block;
}

.flatpickr-months {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flatpickr-months .flatpickr-month {
    border-radius: 5px 5px 0 0;
    background: #ef672d;
    color: #fff;
    fill: #fff;
    height: 34px;
    line-height: 1;
    text-align: center;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    height: 34px;
    padding: 10px;
    z-index: 3;
    color: #fff;
    fill: #fff;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
    display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
    position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
    /*
          /*rtl:begin:ignore*/
    /*
          */
    left: 0;
    /*
          /*rtl:end:ignore*/
    /*
          */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
    /*
          /*rtl:begin:ignore*/
    /*
          */
    right: 0;
    /*
          /*rtl:end:ignore*/
    /*
          */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    color: #bbb;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    /*fill: #f90;*/
    fill: black;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    width: 14px;
    height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
    -webkit-transition: fill 0.1s;
    transition: fill 0.1s;
    fill: inherit;
}

/*=== 5.0 Sidebar ===*/
.sidebar-widget {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px;
}

.sidebar-widget:not(:last-of-type) {
    margin-bottom: 30px;
}

/*=== 5.1 Search ===*/
.sidebar-widget .search-form {
    position: relative;
}

.sidebar-widget .search-form .form-control {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: none;
    outline: none;
    height: 50px;
    border: 1px solid #eee;
    padding-right: 40px;
}

.sidebar-widget .search-form .search-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    font-size: 15px;
    color: #666;
}

/*=== 5.6 Banner ===*/
.sidebar-widget.banner {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    border-radius: 3px;
    padding: 60px 30px;
}

.text-black {
    color: #000000;
}

.sidebar-h3 {
    font-size: 20px !important;
    color: #222;
    font-weight: 600;
}


.final-price {
    font-size: 20px !important;
    font-weight: 600;
}

.bg-blue {
    background-color: #1e73be !important;
}

.my-btn-blue {
    background-color: #1e73be !important;
    color: white;
}

.my-btn-blue:hover {
    background-color: #222 !important;
    color: white !important;
}

/*=== 5.2 Widget Title ===*/
.widget-title {
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.widget-title h3 {
    font-weight: 600;
    color: #222;
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    margin: 0;
    line-height: 1;
}

.widget-title h3:before {
    background-color: #ff9900;
    width: 50%;
    height: 4px;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
}

/*=== 5.3 Category List ===*/
.category-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.category-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.category-list li a {
    color: #666;
}

.category-list li a:hover {
    color: #222;
    text-decoration: underline;
}

.category-list li span {
    border: 1px solid #eee;
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.category-list li:hover span {
    background-color: #ff9900;
    color: #fff;
    transition: all 0.3s ease;
}

@media only screen and (max-width: 500px) {
    .nav-tabs::before {
        content: "";
        position: absolute;
        width: calc(100%);
        height: 2px;
        background-color: #eaecee;
        top: 25%;
        transform: translateY(-50%);
        z-index: -1;
    }

    .default-btn {
        padding: 0 10px !important;
    }

    #map {
        height: 150px;
    }

    .booking-container .nav-item {
        max-width: 25%;
    }

    .booking-container .nav-link {
        width: 55px;
        height: 55px;
        font-size: 15px;
        border: 0 !important;
    }

    .booking-container .nav-item p {
        font-size: 9px;
        line-height: 1.4;
        font-weight: 400;
    }

    #extra_type_wrapper .type-radio-button {
        height: 60px !important;
    }

    #extra_type_wrapper .type-radio-button span {
        height: 60px !important;
        line-height: 20px;
        font-size: 14px;
    }

    .search-area .type-radio-button span {
        padding: 0px 15px 0px 15px !important;
    }

    .search-area .type-radio-button {
        width: 49% !important;
    }
}

.search-area {
    /* margin:20px 0px 0px 0px; */
    text-align: left;
}

.search-area .type-radio-button {
    width: auto;
    height: 50px !important;
    display: inline-block !important;
    color: white;
    background-color: #1e73be;
}

.search-area .type-radio-button input[type="radio"] {
    display: none !important;
}

.search-area .type-radio-button span {
    padding: 0px 40px 0px 40px;
    text-align: center;
    width: 100% !important;
    height: 50px !important;
    display: inline-block !important;
    padding-top: 10px !important;
    cursor: pointer !important;
    font-size: 16px;
}

/* .search-area .search-content {
    border-radius: 0px 5px 5px 5px;
    margin-top: 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7);
} */
/*.search-area .search-content label {*/
/*font-size: 12px;*/
/*}*/
/* .search-area .search-content .input-group-text {
    width: auto;
    border: 0px !important;
    border-radius: 5px 0px 0px 5px;
    background-color: white;
    margin: 0px;
    color: #1e73be;
} */

/* .search-area .search-content .form-control {
    border-radius: 5px 0px 0px 5px !important;
    font-size: 13px;
    /* height: 45px;
    border:0px;
} */

.search-area .search-content .input-group {
    border: 1px solid #ced4da;
    border-radius: 6px;
    overflow: hidden;
}

.search-area .search-content .input-group-text {
    border: none !important;
    background: white;
    /* color: #1e73be; */
}

.search-area .search-content .form-control {
    border: none !important;
    box-shadow: none !important;
    font-size:13px;
}


.search-area .my-btn {
    border-radius: 5px;
    background-color: #EF672D;
    color: white !important;
    height: 45px;
    width: 100%;
}

.search-area .my-btn:hover {
    background-color: #222222;
}

.search-area .type-radio-button input[type="radio"]:checked + span::after, .search-area .type-radio-button input[type="radio"]:checked + span::before {
    position: absolute;
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    pointer-events: none;
    z-index: 1;
}

.search-area .type-radio-button input[type="radio"]:checked + span::after {
    border-color: rgba(175, 23, 34, 0);
    border-top-color: #EF672D;
    border-width: 6px;
    margin-left: -6px;
    margin-top: 1px; /* Slight adjustment to position below the link */
}

.search-area .type-radio-button input[type="radio"]:checked + span::before {
    border-color: rgba(175, 23, 34, 0);
    border-top-color: #EF672D;
    border-width: 12px;
    margin-left: -12px;
    margin-top: -6px; /* Slight adjustment to position below the link */
}

.search-area .type-radio-button input[type="radio"]:checked + span {
    position: relative !important;
    background-color: #EF672D !important;
    color: white !important;
    z-index: 1 !important;
}

#search_area .custom-padding .col-lg-6, #search_area .custom-padding .col-lg-4 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

#search_area .dropoff-input-group:not(:first-of-type),
#search_area .pickup-input-group:not(:first-of-type) {
    margin-top: 8px;
}

#search_area .input-group-text {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

#search_area .append-field, #search_area .append-field2 {
    background-color: #1e73be;
    border-color: #1e73be;
    color: white;
    width: 40px;
    z-index: 1;
    border-radius: 0 5px 5px 0 !important;
}

/*=== 11.0 Faq's Section ===*/
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    outline: none;
    box-shadow: none;
}

.accordion-item .accordion-button {
    border-radius: 5px !important;
}

.accordion-body {
    background: #f8f9fa;
}

.accordion-button {
    background: #1e73be;
    color: white;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.5px;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid #eee;
    padding: 12px 15px;
}

.accordion-button:focus {
    border-color: #eee;
    outline: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #fff !important;
    background-color: #ef672d;
}

.accordion-button:not(.collapsed):after {
    /* background-image: inherit;
    content: "\f2ea"; */
    color: #fff;
    transform: inherit;
    font-size: 16px;
    filter: invert(1) grayscale(100%) brightness(100%);
    font-weight: 600;
}

.accordion-item {
    border: 0px !important;
}

.accordion-button:after {
    /* background-image: inherit;
    content: "\f067";*/
    font-family: "bootstrap-icons";
    font-size: 12px;
    position: absolute;
    right: 20px;
    top: 50%;
    color: #ffffff;
    font-weight: 600;
    transform: translateY(-50%) !important;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: invert(1) grayscale(100%) brightness(100%);
}

.card-price {
    background: #eaecee;
    padding: 20px;
    border-radius: 5px;
}

.cursor-default {
    cursor: default !important;
}

/*=== 2.0 Services Section ===*/
.service-section {
    position: relative;
    z-index: 1;
}

.service-carousel {
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

.bg-half {
    background-image: url(../img/frankfurt-airport.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    width: 100%;
    height: 59.54%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.bg-half:before {
    background-color: rgba(2, 2, 2, 0.7);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.service-section .section-heading P {
    color: #ddd;
}

.service-item {
    /* overflow: hidden; */
    border-radius: 2px;
    /* box-shadow: 0 1px 5px rgb(0 0 0 / 15%); */
}

.service-thumb {
    position: relative;
}

.service-shape-wrap {
    transform: skew(-20deg, 0deg);
    width: 200px;
    height: 200px;
    position: absolute;
    right: 20px;
    bottom: 0;
    overflow: hidden;
}

.service-shape {
    background-color: #EF672D;
    border-radius: 2px;
    position: absolute;
    width: 80px;
    height: 180px;
    left: 80px;
    bottom: 0;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    transition-delay: .1s;
}

.service-shape:before {
    background-color: #222;
    border-radius: 2px;
    content: "";
    width: 80px;
    height: 140px;
    position: absolute;
    right: 60px;
    bottom: 0;
    opacity: 0.95;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    transition-delay: .2s;
}

.service-shape:after {
    background-color: #222;
    border-radius: 2px;
    content: "";
    width: 40px;
    height: 120px;
    position: absolute;
    right: -20px;
    bottom: 0;
    opacity: 0.95;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    transition-delay: .3s;
}

.service-item:hover .service-shape {
    height: 200px;
}

.service-item:hover .service-shape:before {
    height: 160px;
}

.service-item:hover .service-shape:after {
    height: 140px;
}

.service-car {
    position: absolute;
    right: -10px;
    bottom: -30px;
    max-width: 230px;
    transition: all .3s cubic-bezier(.165, .85, .45, 1);
}

.service-item:hover .service-car {
    bottom: -35px;
    right: 0;
}

.service-content {
    background-color: #fff;
    padding: 30px 15px 20px 15px;
}

.service-content h3 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.service-content h3 a:hover {
    color: #EF672D;
}

.service-content p {
    margin-bottom: 20px;
}

.set_size {
    font-size: 20px;
    line-height: 27px;
    text-align: center;
}

.service-content .read-more {
    background-color: #EF672D;
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    border-radius: 2px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    display: inline-block;
    height: 35px;
    padding: 0 23px 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.service-content .read-more:before {
    background-color: #222;
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    z-index: -1;
}

.service-content .read-more:hover:before {
    width: 100%;
}

@media (min-width: 1400px) {
    .bg-half {
        height: 59.2%;
    }
}

/*=== 2.1 Swiper Navigation ===*/
.swiper-outside {
    padding: 0;
    position: relative;
}

.swiper-container {
    overflow: hidden;
}

.swiper-outside .swiper-nav {
    color: #222;
    font-size: 35px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    left: -45px;
    top: calc(50% - 30px);
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.swiper-outside .swiper-nav:before {
    background-color: #ff9900;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.swiper-outside .swiper-nav.swiper-prev {
    justify-content: flex-end;
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
}

.swiper-outside .swiper-nav.swiper-next {
    clip-path: polygon(100% 50%, 0 100%, 0 0);
    left: auto;
    right: -45px;
}

.swiper-outside:hover .swiper-nav {
    visibility: visible;
    opacity: 1;
    left: -50px;
}

.swiper-outside:hover .swiper-nav.swiper-next {
    left: auto;
    right: -50px;
}

/*=== 2.2 Swiper Dots ===*/
.service-carousel .swiper-pagination {
    bottom: 0;
    line-height: 1;
}

.swiper-pagination span {
    background-color: #222;
    border-radius: 2px;
    width: 10px;
    height: 10px;
    border-radius: 0;
    opacity: 1;
}

.swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #ff9900;
    box-shadow: 0px 0px 0px 3px rgba(255, 153, 0, 0.5);
}

/*=== 2.3 Service Details ===*/
.service-details-info img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    border-radius: 5px;
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin: 30px 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.service-features li i {
    font-size: 50px;
    color: #ff9900;
}

.service-features li h3 {
    margin-bottom: 0;
}

.service-features li p {
    margin-bottom: 0;
}

.service-details-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    margin-top: 30px;
}

.service-details-list img {
    height: 220px;
    margin: 0;
}

.service-icon-list li i {
    font-size: 20px;
    color: #ff9900;
}

.service-icon-list li {
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.service-icon-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

/*=== 2.4 Service Sidebar ===*/
.service-sidebar ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f4f5f8;
    padding: 8px 15px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.service-sidebar ul li:hover {
    background-color: #ff9900;
}

.service-sidebar ul li:not(:last-of-type) {
    margin-bottom: 10px;
}

.service-sidebar ul li a {
    font-size: 17px;
    font-weight: 500;
}

.service-sidebar ul li a:hover {
    color: #222;
}

.service-sidebar ul li i {
    font-size: 20px;
    color: #ff9900;
}

.service-sidebar ul li:hover i {
    color: #fff;
}

/*=== 3.0 Booking Section ===*/
.booking-section {
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    background-color: #222;
    position: relative;
    z-index: 1;
}

.booking-section:before {
    background-color: #EF672D;
    content: "";
    width: 300px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.booking-section:after {
    background-color: #F4F5F8;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
    content: "";
    width: 400px;
    height: 80px;
    position: absolute;
    right: 0;
    top: -1px;
}

/*=== 3.1 Booking Car ===*/
.booking-car {
    background-image: url(../img/car-2.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 85%;
    width: 780px;
    height: 439px;
    position: absolute;
    left: -280px;
    top: 50px;
    z-index: -1;
}

.booking-wrap .section-heading h2 {
    font-size: 40px;
}

.section-heading h3 {
    color: #1E73BE;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    z-index: 1;
}

.booking-form .form-field {
    position: relative;
}

.booking-form .niceSelect .current,
.booking-form .form-field input {
    background-color: #333;
    color: #fff;
    border-radius: 2px;
    width: 100%;
    height: 50px;
    padding: 0 35px 0 20px;
    font-size: 17px;
    line-height: 50px;
    box-shadow: none;
    outline: none;
    border: 1px solid #333;
}

.booking-form .form-field input:focus {
    border: 1px solid #ff9900;
}

.booking-form .form-field i {
    color: #ff9900;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.booking-form .form-field button {
    width: 100%;
    height: 50px;
}

.booking-form .niceSelect {
    padding: 0;
    border: none;
    width: 100%;
    height: auto;
    font-size: 17px;
    color: #fff;
}

.booking-form .niceSelect .current {
    height: 50px;
    line-height: 50px;
    display: block;
    padding: 0 20px;
}

.booking-form .niceSelect .list {
    background-color: #333;
    width: 100%;
    border-radius: 0;
    margin-top: -2px;
    border: none;
}

.booking-form .niceSelect .list li {
    font-size: 14px;
}

.booking-form .niceSelect .list li:not(:last-of-type) {
    border-bottom: 1px solid #444;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #ff9900;
    font-weight: normal;
}

.nice-select:after {
    display: none;
}

/*=== 3.2 Date Time Picker ===*/
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current {
    background: #ff9900;
    box-shadow: #ff9900 0 1px 3px 0 inset;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover,
.xdsoft_datetimepicker .xdsoft_calendar td:hover {
    background: #222 !important;
    color: #fff;
}

/*=== 3.3 Booking Form ===*/
.booking-form-2 {
    position: relative;
    margin-top: -100px;
    margin-bottom: 80px;
    z-index: 1;
}

.booking-form-2:before {
    background-color: #222;
    clip-path: polygon(0 0, 90% 0%, 100% 20%, 100% 100%, 0 99%);
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.booking-car-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: calc(100% - 2px);
    overflow: hidden;
}

.booking-car-wrap:before {
    background-color: #ff9900;
    background-image: repeating-linear-gradient(45deg, #f7a20f 0, #f7a20f 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    content: "";
    width: 330px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.booking-form-2 .booking-car {
    background-size: 70%;
    left: -130px;
    top: 10px;
    z-index: 0;
}

.booking-form-2 .col-lg-8 {
    padding: 60px;
}

@media (max-width: 767px) {
    .booking-form-2:before {
        clip-path: polygon(0 0, 90% 0%, 100% 8%, 100% 100%, 0 99%);
    }
}

/*=== 4.0 Pricing Section ===*/
.pricing-item {
    background-color: #fff;
    padding: 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing-head-wrap {
    position: relative;
    z-index: 1;
}

.pricing-head-wrap:before {
    background-image: url(../img/pricing-bg.jpg);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 40%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    content: '';
    width: 100%;
    height: 280px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.pricing-head-wrap:after {
    background-color: rgba(34, 34, 34, 0.5);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 40%);
    content: '';
    width: 100%;
    height: 280px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.pricing-head {
    text-align: center;
}

.pricing-head h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin: 0;
}

.pricing-head h3 a:hover {
    color: #222;
}

.pricing-head .location {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-car {
    text-align: center;
    padding: 60px 25px 20px;
    position: relative;
    z-index: 1;
}

.pricing-car .price {
    background-color: #ff9900;
    clip-path: polygon(85% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
    font-size: 20px;
    font-weight: 700;
    color: #222;
    padding: 10px 15px 10px 25px;
    position: absolute;
    right: 40px;
    top: 55px;
    z-index: -1;
}

.pricing-list {
    padding: 20px 40px 30px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.pricing-list li a.default-btn {
    width: 100%;
    margin-top: 20px;
}

/*=== 4.1 Pricing Tab Menu ===*/
.pricing-tab-menu {
    justify-content: center;
    margin-bottom: 30px;
}

.pricing-tab-menu li {
    position: relative;
}

.pricing-tab-menu li .nav-link {
    font-size: 17px;
    font-weight: 500;
    color: #999;
    padding: 0;
}

.pricing-tab-menu li .nav-link:hover,
.pricing-tab-menu li .nav-link.active {
    color: #222;
}

.pricing-tab-menu li:not(:last-of-type) {
    padding-right: 80px;
}

.pricing-tab-menu li:not(:last-of-type):before {
    background-color: #ccc;
    width: 50px;
    height: 2px;
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/*=== 5.0 Taxi Details ===*/
.taxi-details-img {
    position: relative;
}

.taxi-details-img:before {
    background-color: #ff9900;
    background-image: repeating-linear-gradient(45deg, #f7a20f 0, #f7a20f 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    width: 40%;
    height: 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.taxi-details-img img {
    margin-left: -50px;
    margin-top: 100px;
}

.taxi-details-img .price {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    clip-path: polygon(85% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
    width: auto;
    padding: 15px 25px;
    position: absolute;
    right: 120px;
    top: 110px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    z-index: -1;
}

.taxi-details-img .price i {
    font-size: 25px;
    color: #ff9900;
    margin-right: 5px;
}

.taxi-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
    row-gap: 15px;
    margin-top: 30px;
}

.taxi-features li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.taxi-features li span {
    font-weight: 500;
    color: #222;
    display: flex;
    align-items: center;
}

.taxi-features li span i {
    color: #ff9900;
    font-size: 25px;
    margin-right: 5px;
}

/*=== 6.0 Download Section ===*/
.download-section {
    background-image: url(../img/bridgewater-Taxi-Limo-1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.choose-vehicle {
    background: url(../img/flughafentransfer-shuttle-service.webp), rgba(0, 0, 0, 0.8);
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.app-feature {
    margin-top: 20px;
}

.app-feature li {
    display: inline-block;
    align-items: center;
}

.app-feature li:not(:last-of-type) {
    margin-right: 20px;
}

.app-feature li .feature-icon {
    width: 40px;
    margin-bottom: 10px;
}

.app-feature li h3 {
    font-size: 17px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 0;
    color: white;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.download-btn a {
    width: 170px;
}

.download-btn a:hover {
    transform: translateY(-3px);
}

.taxi-holder {
    background-image: url(../img/taxi-background.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 100%;
    min-height: 550px;
    position: absolute;
    right: 40px;
    top: 100px;
    z-index: -1;
}

.taxi-holder .taxi {
    background-image: url(../img/taxi.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 650px;
    height: 100%;
    position: absolute;
    right: 75px;
    top: 80px;
}

.taxi-holder .mockup {
    background-image: url(../img/mockup.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 350px;
    height: 100%;
    position: absolute;
    right: 330px;
    top: -120px;
    z-index: -1;
}

.taxi-holder .charecter {
    background-image: url(../img/charecter.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 180px;
    height: 100%;
    position: absolute;
    right: 130px;
    top: 80px;
}

.location-marker {
    position: absolute;
    right: 17%;
    top: 20px;
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-20px);
    }

    60% {
        -webkit-transform: translateY(-10px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@media (min-width: 993px) and (max-width: 1300px) {
    .taxi-holder .taxi {
        width: 390px;
        right: 75px;
        top: 80px;
    }

    .taxi-holder .mockup {
        width: 230px;
        right: 190px;
        top: -55px;
    }

    .taxi-holder .charecter {
        width: 125px;
        right: 130px;
        top: 45px;
    }

    .location-marker {
        right: 15%;
        top: 50px;
    }
}

/*=== 6.1 Download Section 2 ===*/
.download-section-2 {
    background-image: url(../img/bg-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.paragraph-color {
    color: white;
}

.download-section-2 .section-heading h2 {
    color: #fff;
}

.download-section-2 .section-heading p {
    color: #ddd;
}

.download-mockup {
    background-image: url(../img/mockup-2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 380px;
    height: 100%;
    position: absolute;
    right: 250px;
    bottom: -20px;
}

.app-screen {
    width: 220px;
    position: absolute;
    right: 150px;
    bottom: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 15%);
    overflow: hidden;
}

@media ( max-width: 1200px) {
    .download-mockup {
        right: 130px;
        bottom: -60px;
    }

    .app-screen {
        right: 60px;
    }
}

@media ( min-width: 1600px) {
    .download-mockup {
        right: 320px;
    }

    .app-screen {
        right: 290px;
    }
}

.features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.features li {
    display: flex;
    font-size: 15px;
    font-weight: 500;
    align-items: center;
    gap: 6px;
}

.vehicle-class-label {
    background: #1e73be !important;
    padding: 5px 0px 0px 15px !important;
}

.vehicle-class-label p {
    font-size: 16px !important;
    margin-bottom: 5px !important;
}

.my-border-1 {
    border: 1px solid #778591 !important;
}

.btn-width-280 {
    width: 280px;
}

.highlights {
    list-style: none; /* remove default bullets */
    padding: 0;
    margin: 15px 0px 0px 0px;
}

.highlights li {
    font-size: 14px;
    position: relative;
    padding-left: 30px; /* space for the icon */
}

.highlights li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-image: url("../img/black-tick.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.flatpickr-calendar {
    background: transparent;
    opacity: 0;
    display: none;
    text-align: center;
    visibility: hidden;
    padding: 0;
    -webkit-animation: none;
    animation: none;
    direction: ltr;
    border: 0;
    font-size: 14px;
    line-height: 24px;
    border-radius: 5px;
    position: absolute;
    width: 307.875px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
    opacity: 1;
    max-height: 640px;
    visibility: visible;
}

.flatpickr-calendar.open {
    display: inline-block;
    z-index: 99999;
}

.flatpickr-calendar.animate.open {
    -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
    animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
    display: block;
    position: relative;
    top: 2px;
}

.flatpickr-calendar.static {
    position: absolute;
    top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
    z-index: 999;
    display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
    -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
    box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
    border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
    height: 40px;
    border-top: 1px solid rgba(72, 72, 72, 0.2);
}

.flatpickr-calendar.hasTime .flatpickr-innerContainer {
    border-bottom: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
    border: 1px solid rgba(72, 72, 72, 0.2);
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
    height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
    position: absolute;
    display: block;
    pointer-events: none;
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
    left: auto;
    right: 22px;
}

.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
    left: 50%;
    right: 50%;
}

.flatpickr-calendar:before {
    border-width: 5px;
    margin: 0 -5px;
}

.flatpickr-calendar:after {
    border-width: 4px;
    margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
    border-bottom-color: rgba(72, 72, 72, 0.2);
}

.flatpickr-calendar.arrowTop:after {
    border-bottom-color:#ef672d;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
    top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
    border-top-color: rgba(72, 72, 72, 0.2);
}

.flatpickr-calendar.arrowBottom:after {
    border-top-color:#ef672d;
}

.flatpickr-calendar:focus {
    outline: 0;
}

.flatpickr-wrapper {
    position: relative;
    display: inline-block;
}

.flatpickr-months {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flatpickr-months .flatpickr-month {
    border-radius: 5px 5px 0 0;
    background:#ef672d;
    color: #fff;
    fill: #fff;
    height: 34px;
    line-height: 1;
    text-align: center;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    height: 34px;
    padding: 10px;
    z-index: 3;
    color: #fff;
    fill: #fff;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
    display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
    position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
    /*
      /*rtl:begin:ignore*/
    /*
      */
    left: 0;
    /*
      /*rtl:end:ignore*/
    /*
      */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
    /*
      /*rtl:begin:ignore*/
    /*
      */
    right: 0;
    /*
      /*rtl:end:ignore*/
    /*
      */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    color: #bbb;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill:#ef672d;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    width: 14px;
    height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
    -webkit-transition: fill 0.1s;
    transition: fill 0.1s;
    fill: inherit;
}

.numInputWrapper {
    position: relative;
    height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
    display: inline-block;
}

.numInputWrapper input {
    width: 100%;
}

.numInputWrapper input::-ms-clear {
    display: none;
}

.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.numInputWrapper span {
    position: absolute;
    right: 0;
    width: 14px;
    padding: 0 4px 0 2px;
    height: 50%;
    line-height: 50%;
    opacity: 0;
    cursor: pointer;
    border: 1px solid rgba(72, 72, 72, 0.15);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.numInputWrapper span:hover {
    background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
    background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
    display: block;
    content: "";
    position: absolute;
}

.numInputWrapper span.arrowUp {
    top: 0;
    border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(72, 72, 72, 0.6);
    top: 26%;
}

.numInputWrapper span.arrowDown {
    top: 50%;
}

.numInputWrapper span.arrowDown:after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(72, 72, 72, 0.6);
    top: 40%;
}

.numInputWrapper span svg {
    width: inherit;
    height: auto;
}

.numInputWrapper span svg path {
    fill: rgba(255, 255, 255, 0.5);
}

.numInputWrapper:hover {
    background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
    opacity: 1;
}

.flatpickr-current-month {
    font-size: 135%;
    line-height: inherit;
    font-weight: 300;
    color: inherit;
    position: absolute;
    width: 75%;
    left: 12.5%;
    padding: 7.48px 0 0 0;
    line-height: 1;
    height: 34px;
    display: inline-block;
    text-align: center;
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

.flatpickr-current-month span.cur-month {
    font-family: inherit;
    font-weight: 700;
    color: inherit;
    display: inline-block;
    margin-left: 0.5ch;
    padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
    background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
    width: 6ch;
    width: 7ch \0;
    display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
    border-bottom-color: #fff;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
    border-top-color: #fff;
}

.flatpickr-current-month input.cur-year {
    background: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    cursor: text;
    padding: 0 0 0 0.5ch;
    margin: 0;
    display: inline-block;
    font-size: inherit;
    font-family: inherit;
    font-weight: 300;
    line-height: inherit;
    height: auto;
    border: 0;
    border-radius: 0;
    vertical-align: initial;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
    outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
    font-size: 100%;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    appearance: menulist;
    background:#ef672d;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    color: inherit;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    font-weight: 300;
    height: auto;
    line-height: inherit;
    margin: -1px 0 0 0;
    outline: none;
    padding: 0 0 0 0.5ch;
    position: relative;
    vertical-align: initial;
    -webkit-box-sizing: border-box;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
    outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
    background-color:#ef672d;
    outline: none;
    padding: 0;
}

.flatpickr-weekdays {
    background:#ef672d;
    text-align: center;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

span.flatpickr-weekday {
    cursor: default;
    font-size: 90%;
    background:#ef672d;
    color: rgba(0, 0, 0, 0.54);
    line-height: 1;
    margin: 0;
    text-align: center;
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-weight: bolder;
}

.dayContainer,
.flatpickr-weeks {
    padding: 1px 0 0 0;
}

.flatpickr-days {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 307.875px;
    border-left: 1px solid rgba(72, 72, 72, 0.2);
    border-right: 1px solid rgba(72, 72, 72, 0.2);
}

.flatpickr-days:focus {
    outline: 0;
}

.dayContainer {
    padding: 0;
    outline: 0;
    text-align: left;
    width: 307.875px;
    min-width: 307.875px;
    max-width: 307.875px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    opacity: 1;
}

.dayContainer + .dayContainer {
    -webkit-box-shadow: -1px 0 0 rgba(72, 72, 72, 0.2);
    box-shadow: -1px 0 0 rgba(72, 72, 72, 0.2);
}

.flatpickr-day {
    background: none;
    border: 1px solid transparent;
    border-radius: 150px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #484848;
    cursor: pointer;
    font-weight: 400;
    width: 14.2857143%;
    -webkit-flex-basis: 14.2857143%;
    -ms-flex-preferred-size: 14.2857143%;
    flex-basis: 14.2857143%;
    max-width: 39px;
    height: 39px;
    line-height: 39px;
    margin: 0;
    display: inline-block;
    position: relative;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
    cursor: pointer;
    outline: 0;
    background: #e2e2e2;
    border-color: #e2e2e2;
}

.flatpickr-day.today {
    border-color: #bbb;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
    border-color: #bbb;
    background: #bbb;
    color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background:#ef672d;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    border-color:#ef672d;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
    border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
    border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
    -webkit-box-shadow: -10px 0 0 #ef672d;
    box-shadow: -10px 0 0 #ef672d;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
    border-radius: 50px;
}

.flatpickr-day.inRange {
    border-radius: 0;
    -webkit-box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;
    box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
    color: rgba(72, 72, 72, 0.3);
    background: transparent;
    border-color: transparent;
    cursor: default;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    cursor: not-allowed;
    color: rgba(72, 72, 72, 0.1);
}

.flatpickr-day.week.selected {
    border-radius: 0;
    -webkit-box-shadow: -5px 0 0 #ef672d, 5px 0 0 #ef672d;
    box-shadow: -5px 0 0 #ef672d, 5px 0 0 #ef672d;
}

.flatpickr-day.hidden {
    visibility: hidden;
}

.rangeMode .flatpickr-day {
    margin-top: 1px;
}

.flatpickr-weekwrapper {
    float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
    padding: 0 12px;
    border-left: 1px solid rgba(72, 72, 72, 0.2);
}

.flatpickr-weekwrapper .flatpickr-weekday {
    float: none;
    width: 100%;
    line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
    display: block;
    width: 100%;
    max-width: none;
    color: rgba(72, 72, 72, 0.3);
    background: transparent;
    cursor: default;
    border: none;
}

.flatpickr-innerContainer {
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid rgba(72, 72, 72, 0.2);
}

.flatpickr-rContainer {
    display: inline-block;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.flatpickr-time {
    text-align: center;
    outline: 0;
    display: block;
    height: 0;
    line-height: 40px;
    max-height: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    border-radius: 0 0 5px 5px;
}

.flatpickr-time:after {
    content: "";
    display: table;
    clear: both;
}

.flatpickr-time .numInputWrapper {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 40%;
    height: 40px;
    float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
    border-bottom-color: #484848;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
    border-top-color: #484848;
}

.flatpickr-time.hasSeconds .numInputWrapper {
    width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
    width: 49%;
}

.flatpickr-time input {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    text-align: center;
    margin: 0;
    padding: 0;
    height: inherit;
    line-height: inherit;
    color: #484848;
    font-size: 14px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
    font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
    font-weight: 400;
}

.flatpickr-time input:focus {
    outline: 0;
    border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
    height: inherit;
    float: left;
    line-height: inherit;
    color: #484848;
    font-weight: bold;
    width: 2%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
    outline: 0;
    width: 18%;
    cursor: pointer;
    text-align: center;
    font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
    background: #eaeaea;
}

.flatpickr-input[readonly] {
    cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fpFadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/*timepicker.css*/
.timepicker {
    position: absolute;
    z-index: 1000;
    float: left;
    width: 160px;
    padding-bottom: 5px;
    margin: 2px 0 0 0;
    list-style: none;
    font-size: 14px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

.timepicker:before,
.timepicker:after {
    content: '';
    border-top: 0;
    display: inline-block;
    position: absolute;
}

.timepicker .icon-up {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAeCAYAAABuUU38AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1MjMyRjZENzU1NjIxMUU3OTkwMjhDMDYyNDEwRUNBQSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1MjMyRjZEODU1NjIxMUU3OTkwMjhDMDYyNDEwRUNBQSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjUyMzJGNkQ1NTU2MjExRTc5OTAyOEMwNjI0MTBFQ0FBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjUyMzJGNkQ2NTU2MjExRTc5OTAyOEMwNjI0MTBFQ0FBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+GdMqPQAAAZdJREFUeNrUmMlKxEAQhlsE8eQSFyTxWTx5Vhx1xn3XkydvvoMgCOJV8CUUd8UFL+rFN/AV3B39GybQBDNWdTpJpeCDQKqT+ajqJaNUulEG52Af9KuCxiKogp8a76BSNIkVQ8DkE4wXXcKUmZAusRxppzg+JFdmiSAQlRkruoTZZhVJElVLkbAyucssJJQQsTTPO5IwK1POY7P7Jv7AQ3AnUYbTTlqiGXSDB0abjUqSOAItxlhfigxnThxHJGxkdJuNuJaYY8yJkxiJMALwyKiMM5lZpkQr4ZkBozJvYDhLiVPQxni2z5Qp2UrMgC/ii86YEraVGeK+YDoDCRuZV47MFKOd9Gdsu4N56DNlBikS1EpcAM/hyhi4kuFIXDqqRDR6k8pMMiU8lV74jH3mBQyEA0uCJGzaTMv06UFPxAFXoCPDEzZHRh9O1TNRwlPZB/U4c6+TN/9JugadOX6FUmTWdGIT2ItJuAVdAv4XqCezDRrDRH2xG0m4ESJRb2ne+iuxAazXJs5GSvtE0ugBO+AArJo3fgUYAKf2/v/Eyp9gAAAAAElFTkSuQmCC);
}

.timepicker .icon-down {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAeCAYAAABuUU38AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2MzU2NEE0ODU1NjIxMUU3ODcxRUQxRjVDQkRBMzYxNSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2MzU2NEE0OTU1NjIxMUU3ODcxRUQxRjVDQkRBMzYxNSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjYzNTY0QTQ2NTU2MjExRTc4NzFFRDFGNUNCREEzNjE1IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjYzNTY0QTQ3NTU2MjExRTc4NzFFRDFGNUNCREEzNjE1Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NuD5CwAAAaNJREFUeNrUmMlKxEAQhlsE8aSOG5LxWTx5Vhx1dNz3kydvvoMgCOJV8CUUd8UFL44X38BXcBl1xr9gGjSYpCtJd2oKPphDpdPfVHV3EqX+xjo4AnugT8mLHNgCx2ATNP2XtANqvyiDfkESPeDON8d90KwT6MeuL0HzBPJCJO4D5ngAWihpIyBBikw3uI2Y4zYlPkYkZSnTCW4M5vei6gunZkDZsUyXoQTxTBcMgFdhMlSJa8M5fYGCvnCIIUNt5gmSmPYPMAzeGJWxsTXnmBIzQQNxZfIpV+IqDYm4Ml5Klbg0vOe3iYSOEYeV6QAXjErMcm9AMu+WZbgSc3H/rQJTxmNKnDPaaT5p/45aqEw7OHMpoWMMfDDOmTCZNqbEQtp7PMlUErYZSZwajlEFi7ZO3XFGZfwyJHHCkFiy/RzElekFrYyHUycSOoqMNntgSNCaWHb9rsCRyXxNRMUEo83EtFOYTCWhxIqULxwk8xlTRIyEjskYlREnoaNkKEPttKqEx5RBm62pBolSiEzDSARtzdUsDru0YhAc1l9jizZv9CPAACzc/v9R+XQaAAAAAElFTkSuQmCC);
}

.timepicker .icon-up,
.timepicker .icon-down {
    display: inline-block;
    width: 55px;
    height: 38px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 45%;
    opacity: .4;
    cursor: pointer;
}

.timepicker .icon-up:hover,
.timepicker .icon-down:hover {
    opacity: .7;
}

.timepicker {
    position: absolute;
    /* Your other existing styles */
}

.timepicker:before {
    bottom: -7px;
    left: 6px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid rgba(0, 0, 0, 0.15);
    border-bottom-color: rgba(0, 0, 0, 0.2);
}

.timepicker:after {
    bottom: -6px;
    left: 7px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ef672d;
}

.timepicker.bottom:before {
    top: -7px;
    bottom: auto !important;
    left: 6px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(239, 103, 45, 1);
    border-top: 0px !important;
    border-top-color: rgba(0, 0, 0, 0.2);
}

.timepicker.bottom:after {
    top: -6px;
    bottom: auto !important;
    left: 7px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ef672d;
    border-top: 0px !important;
}

.timepicker .title {
    padding: 5px 0 5px 0;
    /*color: #888;*/
    width: 100%;
    background: #ef672d;
    color: white;
    cursor: default;
}

.timepicker .close-btn {
    background: #ef672d;
    color: white;
    cursor: pointer;
    clear: both;
    margin-bottom: -5px !important;

}

.timepicker .cell-2 {
    float: left;
    width: 20%;
    min-height: 14px;
    cursor: default;
}

.timepicker .cell-4 {
    width: 40%;
    float: left;
}

.timepicker .handle,
.timepicker .text {
    position: relative;
}

.timepicker .chose-all {
    position: relative;
    margin: 0 10px 0 10px;
}

.timepicker .chose-all .text {
    font: bold 18px/22px arial, sans-serif;
}

.timepicker a {
    color: #aaa;
    text-decoration: none;
}

.timepicker .text {
    color: #666;
}

.timepicker .text a {
    color: #444;
}

.timepicker .text a:active,
.timepicker .text a:focus,
.timepicker .text a:hover {
    color: #222;
}

.timepicker ul {
    list-style: none;
    padding: 0;
    margin: 0 5px;
}

.timepicker li.cell-2 {
    padding: 3px 0;
    cursor: pointer;
}

.timepicker li.cell-2:hover {
    background: #ccc;
    color: #555;
}

/* --- Premium Search Modal (Bootstrap 5) --- */
.search-modal .modal-dialog {
    padding: 12px;
}

.search-modal__content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.search-modal__header {
    border: 0;
    padding: 18px 18px 10px 18px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, 0));
}

.search-modal__titlewrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-modal__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(13, 110, 253, .10); /* bootstrap primary tint */
    color: #0d6efd;
    font-size: 18px;
}

.search-modal__body {
    padding: 14px 18px 20px 18px;
}

.search-modal__form {
    display: grid;
    gap: 10px;
}

.search-modal__inputwrap {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}

.search-modal__inputwrap:focus-within {
    border-color: rgba(13, 110, 253, .45);
    box-shadow: 0 10px 30px rgba(13, 110, 253, .12);
    transform: translateY(-1px);
}

.search-modal__prefix {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .04);
    color: rgba(0, 0, 0, .65);
}

.search-modal__input {
    border: 0;
    outline: none;
    font-size: 16px;
    padding: 12px 6px;
    width: 100%;
    background: transparent;
    color: #111;
}

.search-modal__input::placeholder {
    color: rgba(0, 0, 0, .45);
}

.search-modal__btn {
    border: 0;
    border-radius: 14px;
    padding: 12px 16px;
    font-weight: 600;
    background: #0d6efd; /* bootstrap primary */
    color: #fff;
    transition: transform .15s ease, opacity .15s ease;
    white-space: nowrap;
}

.search-modal__btn:hover {
    opacity: .92;
    transform: translateY(-1px);
}

.search-modal__btn:active {
    transform: translateY(0);
}

.search-modal__hint {
    font-size: 12.5px;
    color: rgba(0, 0, 0, .55);
}

.search-modal__hint kbd {
    padding: 2px 6px;
    border-radius: 8px;
    background: rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: none;
    font-size: 12px;
    color:#000000;
}

/* Mobile */
@media (max-width: 576px) {
    .search-modal__inputwrap {
        grid-template-columns: 42px 1fr;
    }

    .search-modal__btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media only screen and (min-width: 991px) {
    .above-991 {
        display: flex;
    }

    .below-991 {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .above-991 {
        display: none;
    }

    .below-991 {
        display: flex;
        margin-bottom: 20px;
    }
}
#search_area .remove-field, #search_area .remove-field2{
    background-color:#f44336;
    border-color:#f44336;
    color:white;
    width:40px;
}

.icon-blue{
    color:#1e73be;
}

.icon-red{
    color:red;
}

/* Blur and disable content */
.blur-overlay {
    position: relative;
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

/* Message overlay */
.overlay-message {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 25px 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    text-align: center;
    max-width: 80%;
}