@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400&amp;display=swap');
:root {
    --primary-color: #00BAF2;
    --secondary-color: #0F4A8A;
    --red-color: #D32F2F;
    --yellow-color: #FFC107;
    --green-color: #34c38f;
}

body 
{
    font-family: 'Poppins', sans-serif;
    font-style: normal;
}
.contents
{
    font-family: 'Ubuntu', sans-serif !important;
    font-weight: 400 !important;
}

/* DEFAULT CSS */
h1,h2,h3,h4,h5,h6{
    color: var(--primary-color);
    font-weight: 600 !important;
}
h1{font-size: 24px !important;}
h2{font-size: 20px !important;}
h3{font-size: 18px !important;}
h4{font-size: 16px !important;}
h5{font-size: 14px !important;}
h6{font-size: 12px !important;}
a{text-decoration: none}
.bg-theme-primary{background-color: var(--primary-color) !important;}
.bg-theme-secondary{background-color: var(--secondary-color) !important;}
.form-control:focus {box-shadow: none !important;}
.form-select:focus {box-shadow: none !important;}
.span-heading
{
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
}
.color-primary{color: var(--primary-color) !important;}
.color-secondary{color: var(--secondary-color) !important;}
.fs-15-px{font-size: 15px;}
.text-justify{text-align: justify}
.primary-border{border: 1px solid var(--primary-color)}
.secondary-border{border: 1px solid var(--secondary-color)}
.h1-heading{border-top: 1px solid var(--primary-color);border-bottom: 1px solid var(--primary-color);padding: 5px 20px;color: #393939;text-transform: uppercase;font-size: 20px !important;}
/* BUTTON CSS */
.btn-theme {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-theme:hover {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-theme-primary {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-theme-primary:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* NAV CSS */

.logo
{
    height: 40px;
}
.call-btn
{
    border-radius: 25px;
    background-color: var(--secondary-color);
    padding: 2px;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
}
.call-icon
{
    background-color: var(--primary-color);
    color: #fff;
}
.blog-text
{
    font-size: 13px;
    color: black;
}

/* HERO CSS */

.btn-check:checked+.btn-outline-theme
{
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-outline-theme {
    color: #3a3a3a;
    border-color: #8d8d8d;
}
.btn-check:focus+.btn, .btn:focus {
    box-shadow: none !important;
}
.hero-banner-wrapper {
    background: url('../images/others/hero-banner.jpg') no-repeat center center;
    background-size: cover;
    min-height: 40vh;
    padding-top: 30px;
    padding-bottom: 20px;
    position: relative;
}
.hero-heading {
    font-size: 1.2rem !important;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-form label
{
    font-size: 80%;
    font-weight: 600;
}
.hero-form input::-webkit-input-placeholder {
    font-size: 70%;
}
.hero-form input{
    font-size: 80%;
}
.hero-form select{
    font-size: 75%;
    padding: 2px 2.25rem 2px 0.75rem !important;
}
#from-city-list .list-group-item
{
    padding: 0.3rem 1rem !important;
    font-size: 12px !important;
}
#to-city-list .list-group-item
{
    padding: 0.3rem 1rem !important;
    font-size: 12px !important;
}
/* PACKAGE CSS */
.after-hero
{
    background-image: url('../images/others/vintage-background.png');
    background-repeat: no-repeat;
    background-position: top;
}
.package-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 2;
}

.package-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s cubic-bezier(.17,.85,.438,.99);
}

.package-card:hover img {
    transition: 1.2s cubic-bezier(.17,.85,.438,.99);
    transform: scale(1.1);
}
@media (hover: none) {
    .package-card:hover img {
        transform: none;
    }
}
.package-text {
    background: linear-gradient(180deg, transparent 0%, #000 87.02%);
    border-radius: 8px;
    padding: 10px 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
}
.package-text .head {
    font-size: 14px;
    font-weight: 600;
}
.package-text .sub-head {
    opacity: .67;
    font-size: 12px;
    line-height: 12px;
}
.cabBlock
{
    box-shadow: 0px 0px 3px rgb(0 0 0 / 15%);
    border-radius: 8px;
    border: 3px solid var(--secondary-color);
    padding: 15px;
    position: relative;
}
.head
{
    font-size: 16px;
    font-weight: 600;
}
.cabBlockIcon
{
    background: #F1F9FF;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    position: absolute;
    top: -44px;
    padding: 15px;
    z-index: 999;
    width: 80px;
    height: 80px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
/* GRADIENT CSS */
.gradient-blue
{
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}
.service-card
{
    border-radius: 10px;
    overflow: hidden;
}
.circle-icon {
    width: 60px;
    height: 60px;
    border-radius: 40px;
    right: 40%;
    top: 38%;
    padding: 10px;
}
.circle-icon img
{
    width: 40px;
}
.h-200
{
    height: 200px;
}
.user-icon
{
    width: 80px;
    height: auto;
    border: 2px solid var(--secondary-color);
}
.testimonial-card
{
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}
.footer ul li a, .footer ul li, .footer .copyright-text{
    font-size: 13px;
    color: #fff;
    line-height: 1.6rem;
}
.footer .slink
{
    color: #fff;
    font-size: 25px;
}
.footer ul li a:hover{
    text-decoration: underline;
}

/* SEARCH PAGE */
.car-card label
{
    font-size: 12px !important;
}
.car-card .tab-content table th
{
    font-weight: 600 !important;
}
.car-card .tab-content .table>:not(caption)>*>* {
    padding: 0.3rem .3rem;
}
.car-card {
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.car-card .f-list {
    font-size: 13px;
}

.car-card .btn-link {
    font-size: 12px !important;
}

.check-icon {
    font-size: 17px !important;
}

/* Benifits Card */
.benifits-card
{
    border-radius: 10px !important;
    border: 1px solid #e8e8e8 !important;
    box-shadow: 0 0 10px rgb(208 208 208 / 42%) !important;
    cursor: default;
}
.benifits-card p
{
    margin: 0 !important;
    font-size: 12px !important;
}
.breadcrumb-item+.breadcrumb-item::before
{
    margin-top: 2px !important;
}
/* PACKAGE DETAILS */
.car-lists .btn-group-sm >.btn, .btn-sm {
    padding: 0 6px;
    font-size: 12px !important;
}
.car-lists {
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
}
.car-lists::-webkit-scrollbar {
    display: none;
}
.car-lists:active {
    cursor: grabbing;
}
.package-details-card
{
    border-radius: 15px 15px 0 0;
    box-shadow: 0 0 10px rgb(208 208 208 / 42%) !important;
    overflow: hidden;
}
.package-details-car-card
{
    border-radius: 4px;
    box-shadow: 0 2px 24px 0 rgba(0, 0, 0, .11);
    border: solid 1px #e7e7e7;
    position: sticky;
    position: -webkit-sticky;
    top: 70px;
}
.package-price-card
{
    background: #00baf224;
    color: var(--secondary-color);
    border-radius: 8px;
    padding: 5px;
}
.package-price-card span
{
    font-size: 24px;
    font-weight: 500;
}
.package-nav .nav-link
{
    color: #3a3a3a;
    border-color: #8d8d8d;
}
.package-nav .nav-pills .nav-link.active
{
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.divider:after, .divider:before {
    content: "";
    flex: 1;
    height: 2px;
    background: var(--primary-color);
}
.google-btn {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 10px 16px;
    text-decoration: none;
}

.google-btn:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.64);
    color: #000;
    text-decoration: none;
}

.user-profile:hover .dropdown-menu-custom {
    display: block !important;
    z-index: 1000;
    min-width: 160px;
    font-size: 13px !important;
}

.user-profile:hover .fa-chevron-down
{
    transform: rotate(-180deg) !important;
    transition: transform 0.3s ease !important;
}

.dropdown-menu-custom a:hover {
    background-color: #f8f9fa;
}

.profile-card
{
    border-radius: 1.5rem;
    overflow: hidden;
}
.profile-card .nav-link {
    color: #333;
    padding: 0.5rem 0;
    font-weight: 500;
    padding-left: 10px;
    font-size: 15px;
    margin-bottom: 10px;
}

.profile-card .nav-link:hover {
    color: var(--secondary-color);
    background-color: #f8f9fa;
    border-radius: 0.375rem;
}

.profile-card .nav-link.active {
    color: var(--secondary-color);
    font-weight: 500;
    background-color: #e9ecef;
    border-radius: 0.375rem;
}

.profile-card .fa {
    width: 16px;
    text-align: center;
}

#avatarModal .avatar-label {
    cursor: pointer;
    display: inline-block;
    position: relative;
}

#avatarModal .avatar-img {
    object-fit: cover;
    transition: 0.2s;
}

#avatarModal .btn-check:checked + .avatar-label .avatar-img {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

#avatarModal .check-icon {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px !important;
}

#avatarModal .btn-check:checked + .avatar-label .check-icon {
    display: flex;
}

.nav-tabs-custom .nav-item {
    position: relative;
}

.nav-tabs-custom .nav-item .nav-link {
    border: none;
    color: #9b9b9b;
}

.nav-tabs-custom .nav-item .nav-link::after {
    content: "";
    background: var(--primary-color);
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -1px;
    transition: all 250ms ease 0s;
    transform: scale(0);
}

.nav-tabs-custom .nav-item .nav-link.active {
    color: var(--primary-color);
}
.nav-tabs-custom .nav-item .nav-link.active::after {
    transform: scale(1);
}

.nav-tabs-custom .nav-item .nav-link.active[data-tab-type="cancelled"] {
    color: var(--red-color);
}
.nav-tabs-custom .nav-item .nav-link.active[data-tab-type="cancelled"]::after {
    background: var(--red-color);
}

.nav-tabs-custom .nav-item .nav-link.active[data-tab-type="completed"] {
    color: var(--green-color);
}
.nav-tabs-custom .nav-item .nav-link.active[data-tab-type="completed"]::after {
    background: var(--green-color);
}
.scrollable-links {
    max-height: 180px;
    overflow-y: auto;
    scrollbar-width: thin;
}
.scrollable-links a {
    display: block;
    font-size: 0.8rem;
    color: #333;
    text-decoration: none;
    margin-bottom: 4px;
}
.scrollable-links a::before {
    content: "•";
    color: #333;
    font-weight: bold;
    line-height: 1.2;
    margin-right: 5px;
    text-decoration: none;
}
.scrollable-links a:hover {
    color: var(--secondary-color);
}

.fleet-card {
    transition: all 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.fleet-card img {
    transition: transform 0.3s ease;
}

.fleet-card:hover img {
    transform: scale(1.05);
}
