.logo-div img {
    max-width: 275px;
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 15px;
}
.menu-list li.nav-item {
    padding-bottom: 5px;
}

.menu-list li.nav-item.active {
    border-bottom: 2px solid var(--third-color);
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: 0.3s;
    padding: 0;
}

.nav-link:hover {
    color: #6a11cb !important;
}

.toggle-menu {
    font-size: 26px;
    cursor: pointer;
    display: none;
}

.right-side-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer {
    position: fixed;
    width: 380px;
    left: -380px;
    top: 0;
    height: 100%;
    background: #eaf3fb;
    z-index: 99999;
    transition: 0.4s;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.drawer.active {
    left: 0;
}

.drawer.blur {
    filter: blur(5px);
}

.drawer-top {
    display: flex;
    justify-content: space-between;
    padding: 15px;
}

.profile {
    display: flex;
    gap: 10px;
}

.profile i {
    font-size: 40px;
}

.drawer-body {
    padding: 10px;
}

.menu-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.menu-card i {
    font-size: 20px;
}

.menu-card i:last-child {
    margin-left: auto;
}

.menu-card.highlight {
    background: linear-gradient(45deg, #0d47a1, #1976d2);
    color: #fff;
}

.menu-card.small {
    justify-content: space-between;
}

.menu-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-screen.active {
    transform: translateX(0);
}

.menu-screen.prev {
    transform: translateX(-100%);
}

.drawer-header {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    border-radius: 0 0 15px 15px;
    background: linear-gradient(45deg, #0d47a1, #1976d2);
    color: #fff;
    font-weight: 600;
}

.drawer-header h5 {
    margin: 0;
    font-size: 16px;
}

.back-btn {
    font-size: 20px;
    opacity: 0.9;
    cursor: pointer;
    margin-right: 10px;
}

.menu-listing {
    margin-top: 15px;
    padding: 15px;
    padding-top: 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: 0.25s ease;
    cursor: pointer;
}

.menu-item i {
    font-size: 14px;
    opacity: 0.6;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.menu-item:active {
    transform: scale(0.98);
}

.menu-item.highlight {
    background: linear-gradient(45deg, #0d47a1, #1976d2);
    color: #fff;
}

.login-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: #fff;
    border-radius: 20px 20px 0 0;
    z-index: 99999;
    transition: 0.4s;
}

.login-sheet.active {
    bottom: 0;
}

.sheet-close {
    text-align: center;
    margin-top: -15px;
}

.sheet-banner img {
    border-radius: 20px 20px 0 0;
}

.sheet-content {
    padding: 15px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.trip-tabs {
    display: flex;
    position: relative;
    gap: 20px;
    padding-bottom: 10px;
}

.underline {
    position: absolute;
    bottom: 0;
    height: 3px;
    width: 80px;
    background: #ff5a5f;
    transition: 0.3s;
}

.tab {
    cursor: pointer;
    padding: 8px 12px;
    font-weight: 500;
    color: #555;
    position: relative;
}

.tab input {
    display: none;
}

.tab.active {
    color: #000;
    font-weight: 600;
}

.tab.active::after {
    content: "";
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff5a5f;
    border-radius: 10px;
}

.why-us-div {
    text-align: center;
    margin-bottom: 20px;
    background: #f8f9fb;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid #eee;
}
.why-us-div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why-us-div .icon-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(180deg, #01d4f612 0%, #00b9e240 100%), #ffffff;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.why-us-div .icon-box img {
    width: 69px;
}

.why-us-div i {
    font-size: 40px;
    color: #ff5a5f;
    margin-bottom: 10px;
}

.why-us-div h5 {
    font-size: 18px;
    color: var(--first-color);
    margin-bottom: 7px;
}

.why-us-div p {
    margin-bottom: 0px;
    font-size: 14px;
    color: #413c3c;
}

.SpecialOffer-section {
    background: #e8fbfe;
}

.offer-div {
    padding: 20px 40px;
    border-radius: 20px;
}
.best-offer {
    background: #fff;
    box-shadow: 0 3px 30px 0 rgb(0 0 0 / 10%);
}
.offer-slider {
}

.offer-slider .slider-item {
    margin: 0 10px;
}

.offer-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px;
    transition: 0.3s;
    margin-bottom: 10px;
    margin-top: 10px;
}

.offer-box img {
    border-radius: 0px;
    margin-bottom: 10px;
}

.offer-box h6 {
    font-size: 15px;
    margin-bottom: 6px;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    color: var(--second-color);
}

.offer-box p {
    margin-bottom: 0px;
    color: #333131;
    font-size: 12px;
}

.offer-box:hover {
    box-shadow: 0 0 20px 0 rgba(13, 38, 60, 0.18);
    border-color: #0241b44f;
}

.offer-slider .slick-arrow {
    position: absolute;
    top: -59px;
    right: 0px;
    left: unset;
}

.offer-slider .PrevArrow.slick-arrow {
    right: 47px;
}

.offer-slider .slick-arrow i,
.testimonial-slider .slick-arrow i {
    font-size: 41px;
}

.offer-slider .slick-arrow:hover i,
.testimonial-slider .slick-arrow i:hover {
    color: var(--third-color);
}

.booking-tab ul.list-style {
    list-style: none;
    margin: 0px;
    background: rgba(14, 119, 243, 0.1);
    gap: 30px;
    padding: 7px 20px;
    display: flex;
    width: max-content;
    border-radius: 5px;
}

.booking-tab ul li {
    padding: 0.5rem 1rem;
    color: rgba(10, 37, 64, 0.7);
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    display: block;
    position: relative;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}

.booking-tab ul li.active {
    background: #ffffff;
    box-shadow: 0px 2px 3px 0px rgba(10, 37, 64, 0.2);
    color: rgba(10, 37, 64, 0.7);
}

.heading-with-tab {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 30px;
}

.heading-with-tab .section-heading h4 {
    margin-bottom: 0px;
}

.testimonial-box {
    padding: 16px 17px;
    box-shadow: none;
    border: 1px solid #cfe3ea;
    text-align: left;
}
.testimonial-slider .slick-arrow {
    top: -35px;
}

.customer-details {
    justify-content: flex-start;
}

.customer-details p.customer-name {
    font-size: 16px;
}

.customer-details p.designation {
    font-size: 14px;
    margin-top: 4px;
}

.testimonial-box p.review {
    font-size: 14px;
    text-align: left;
    margin-bottom: 9px;
}

.testimonial-box .rating {
    text-align: left;
}
.testimonial-slider ul.slick-dots {
    margin: 0px;
    bottom: -15px;
}
.testimonial-section {
    background: #e8fbfe;
    padding-bottom: 180px;
}
.default-padding.deal-section {
    padding-top: 0px;
}
.deal-box {
    margin-top: -135px;
    background: linear-gradient(229deg, var(--first-color) 22%, var(--third-color) 76%) !important;
    padding: 30px 30px;
    border-radius: 30px;
}

.deal-box img {
    border-radius: 20px;
}

.deal-box h4 {
    margin-bottom: 20px;
    font-size: 51px;
    color: #fff;
    font-weight: 700;
}

.deal-box p {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.deal-box .flex-div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.deal-box .flex-div .qr-img {
    border-radius: 6px;
    width: 85px;
}

.deal-box .flex-div .play-img {
    border-radius: 6px;
    width: 175px;
}

.deal-text {
    margin-left: 44px;
}
.footer-top-sec ul {
    padding: 0;
    list-style: none;
    margin-bottom: 15px;
}

.footer-top-sec ul li {
    display: inline-block;
    position: relative;
    font-size: 14px;
    color: #000;
    margin-bottom: 6px;
    width: 100%;
}

.footer-top-sec {
    background: #e8fbfe;
}

.footer-top-sec h4 {
    color: var(--first-color);
    font-size: 23px;
    margin-bottom: 12px;
}

.footer-top-sec ul li a {
    color: #555353;
    display: block;
    width: 100%;
    font-weight: 500;
    transition: 0.3s;
}

.footer-top-sec ul li a:hover {
    color: var(--third-color);
}
.blog-box {
    box-shadow:
        0 0 0 0.05rem rgba(8, 60, 130, 0.06),
        0 0 1.25rem rgba(30, 34, 40, 0.04);
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    transition: 0.3s;
    background: #fff;
    padding: 12px;
}

.blog-box .blog-img {
    position: relative;
    margin-bottom: 12px;
    transition: 0.3s;
    overflow: hidden;
    border-radius: 10px;
}

.blog-box .blog-img img {
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.blog-box .blog-img .blog-tag {
    position: absolute;
    bottom: 0px;
    right: 9px;
    background: var(--second-color);
    padding: 8px 18px;
    display: flex;
    color: #fff;
    align-items: center;
    font-size: 13px;
    border-radius: 30px;
}

.blog-box .blog-detail {
    padding: 0px;
}

.blog-box .blog-detail ul {
    display: flex;
    justify-content: space-between;
    padding: 0px;
    margin-bottom: 9px;
}

.blog-box .blog-detail ul li {
    display: flex;
    font-size: 14px;
    align-items: center;
    font-weight: 500;
    color: #403c3c;
}

.blog-box .blog-detail h4 {
    font-size: 18px;
    color: var(--second-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-box .blog-detail p {
    color: #44525e;
    font-size: 13px;
    line-height: 23px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    height: 50px;
}

.blog-box:hover .blog-img img {
    transform: scale(1.1);
}
.banner-section {
    background: linear-gradient(135deg, rgb(106, 17, 203), rgb(37, 117, 252));
    padding: 70px 0;
}

.banner-section h3 {
    font-size: 35px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.search-div {
    background: #ffff;
    padding: 30px 30px;
    border: 1px solid #dae1e3;
    border-radius: 34px;
    position: relative;
    margin-bottom: 30px;
    font-size: 14px;
}

.tab_checktype {
}
.tab_checktype .form-group {
    display: inline-block;
    width: auto;
}
.tab_checktype .form-group label {
    color: #263838;
    border-radius: 16px;
    cursor: pointer;
    margin: 4px 8px 4px 0px;
    padding: 7px 14px;
    border: 1px solid rgba(0, 0, 0, 0.23);
    background-color: transparent;
    text-align: left;
    line-height: 17px;
    text-transform: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    display: inline-block;
    width: auto;
}
.tab_checktype .form-group .form-check-input {
    display: none;
}
.tab_checktype .form-group .form-check-input:checked[type="radio"] + label {
    border: var(--second-color) !important;
    background: var(--second-color) !important;
    color: #fff;
}

.search-flex {
    display: flex;
    margin-bottom: 30px;
    border: 1px solid #cfe3ea;
    border-radius: 30px;
    padding: 0 7px;
    position: relative;
}

.search-flex .form-group {
    position: relative;
    margin-bottom: 0px;
    padding: 15px 19px;
    border-right: 1px solid #cfe3ea;
}

.search-flex .form-group label {
    margin-bottom: 0px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.search-flex .form-group .form-control {
    border: none;
    padding: 7px 0 0 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--first-color);
}

.search-flex .swap-icon {
    width: 40px;
    height: 40px;
    display: flex;
    background: #e5f9fd;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    border-radius: 50%;
    position: absolute;
    top: 27%;
    border-right: 1px solid #cfe3ea;
    right: -17px;
}

.search-flex .swap-icon i {
    line-height: 0px;
    font-size: 14px;
    color: var(--first-color);
}

.search-flex .form-group:nth-child(2) {
    padding-left: 28px;
}

.search-flex .form-group:last-child {
    border-right: none;
}

.special-fares {
    display: flex;
    align-items: center;
}

.special-fares h4 {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--first-color);
}

.selectsp-fares {
    margin-left: 30px;
}

.selectsp-fares .form-group {
    display: inline-block;
    width: auto;
}

.selectsp-fares .form-group input {
    display: none;
}

.selectsp-fares .form-group label {
    color: #263838;
    border-radius: 20px;
    cursor: pointer;
    margin: 4px 8px 4px 0px;
    padding: 6px 12px;
    border: 1px solid #dde4e6;
    background-color: #f1f1f1;
    text-align: left;
    line-height: 17px;
    text-transform: none;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
    display: inline-block;
    width: auto;
    transition: 0.3s;
}

.selectsp-fares .form-group label span {
    display: block;
    font-size: 12px;
    margin-top: 3px;
    font-weight: 500;
    color: #6b6363;
}

.selectsp-fares .form-group input:checked[type="radio"] + label {
    background: #ffe5e5;
    color: #ff5a5f;
    font-weight: 700;
}
.footer-desc {
}

.footer-desc h4 {
    color: var(--first-color);
    font-size: 23px;
    margin-bottom: 12px;
}

.footer-desc p {
    font-size: 14px;
    color: #555353;
    display: block;
    width: 100%;
    font-weight: 500;
    transition: 0.3s;
    margin-bottom: 8px;
}
.feature-section {
    background: linear-gradient(229deg, var(--first-color) 22%, var(--third-color) 76%);
}

.feature-section .feature-div {
    text-align: center;
}

.feature-section .feature-div i {
    font-size: 40px;
    color: #fff;
    line-height: 0px;
}

.feature-section .feature-div h5 {
    color: #fff;
    font-size: 22px;
    margin-top: 10px;
}

.feature-section .feature-div p {
    color: #eee;
    margin-bottom: 0px;
    font-size: 14px;
}
.blog-breadcrumb {
    padding: 30px 0;
}

.breadcrumb-box {
    position: relative;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.breadcrumb-box .blog-img {
    border-radius: 30px;
    position: absolute;
    top: 0px;
    height: 400px;
    object-fit: cover;
    left: 0px;
}

.breadcrumb-box .breadcrumb-content {
    padding: 50px 0;
    position: relative;
    text-align: center;
    z-index: 2;
}

.breadcrumb-box .breadcrumb-content h3 {
    color: #fff;
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb-box .breadcrumb-content ul {
    padding: 0px;
    list-style: none;
    margin: 0px;
}

.breadcrumb-box .breadcrumb-content ul li {
    display: inline-block;
    position: relative;
    font-size: 18px;
    padding: 0px 20px;
    color: #fff;
}

.breadcrumb-box:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #00000052;
    z-index: 1;
    border-radius: 30px;
}

.breadcrumb-box .breadcrumb-content ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--third-color);
    position: absolute;
    right: -6px;
    top: 12px;
    border-radius: 50%;
}

.breadcrumb-box .breadcrumb-content ul li:last-child {
}

.breadcrumb-box .breadcrumb-content ul li:last-child::before {
    content: none;
}

.blog-info-ul {
    background: #fff;
    margin: -45px auto 0 auto;
    padding: 30px 50px;
    border: 1px solid #eee;
    border-radius: 21px;
    z-index: 1;
    position: relative;
    list-style: none;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 57px;
    box-shadow:
        0 0 0 0.05rem rgba(8, 60, 130, 0.06),
        0 0 1.25rem rgba(30, 34, 40, 0.04);
}

.blog-info-ul li {
    display: inline-flex;
    position: relative;
    cursor: pointer;
}

.blog-info-ul li i {
    line-height: 0px;
    font-size: 26px;
    padding-right: 8px;
    color: var(--third-color);
}

.blog-info-ul li span {
}

.blog-info-ul li .share-div {
    position: absolute;
    background: #fff;
    width: 200px;
    padding: 10px;
    box-shadow:
        0 0 0 0.05rem rgba(8, 60, 130, 0.06),
        0 0 1.25rem rgba(30, 34, 40, 0.04);
    margin-top: 0px;
    top: 33px;
    border: 1px solid #eee;
    opacity: 0;
    display: none;
    transition: 0.3s;
}

.blog-info-ul li span {
    color: #4f5664;
    font-size: 17px;
}

.blog-info-ul li .share-div li {
    align-items: center;
    justify-content: center;
    margin-right: 0px;
}

.blog-info-ul li .share-div li i {
    color: #fff;
    font-size: 18px;
    padding: 0px;
}

.blog-info-ul li .share-div ul {
    margin-bottom: 0px;
}

.blog-info-ul li .share-div:before {
    left: -1px;
    content: "";
    position: absolute;
    top: -6px;
}

.blog-info-ul li .share-div li a {
    width: 40px;
    height: 40px;
}

.blog-info-ul li .share-div li a i {
    font-size: 18px;
}

.blog-info-ul li:hover {
}

.blog-info-ul li:hover .share-div {
    opacity: 1;
    display: block;
}

@media only screen and (max-width: 767px) {
    .heading-with-tab {
        display: block;
        margin-bottom: 12px;
    }
    .section-heading h4 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .why-us-div h5 {
        font-size: 16px;
    }
    .why-us-div p {
        margin-bottom: 0px;
        font-size: 13px;
    }
    .offer-div {
        padding: 20px 17px;
    }
    .offer-slider .slick-arrow i,
    .testimonial-slider .slick-arrow i {
        font-size: 30px;
    }
    .offer-slider .PrevArrow.slick-arrow {
        right: 36px;
    }
    .heading-with-tab .section-heading h4 {
        margin-bottom: 10px;
    }
    .booking-tab ul li {
        padding: 5px 13px;
        font-size: 13px;
    }
    .booking-tab ul.list-style {
        gap: 5px;
        padding: 6px 7px;
    }
    .btn.with-icon.btn-lg {
        font-size: 16px !important;
        width: 140px;
        padding-right: 50px !important;
    }
    .testimonial-section .col-lg-3 {
        text-align: center;
    }
    .deal-box {
        padding: 23px 23px;
    }
    .deal-text {
        margin-left: 0px;
        margin-top: 30px;
    }
    .deal-box h4 {
        margin-bottom: 13px;
        font-size: 36px;
    }
    .deal-box p {
        font-size: 19px;
    }
    .deal-box .flex-div {
        margin-bottom: 10px;
    }
    .blog-info-ul {
        width: max-content;
        flex-wrap: wrap;
        padding: 16px 20px;
        gap: 15px;
        margin: -37px auto 0 auto;
        border-radius: 10px;
    }
    .blog-info-ul li span {
        font-size: 13px;
        margin-top: -2px;
    }
    .blog-info-ul li i {
        line-height: 0px;
        font-size: 18px;
        padding-right: 7px;
    }
    .blog-info-ul li .share-div {
        right: -16px;
        left: unset;
        width: max-content;
    }
    .blog-info-ul li .share-div li a {
        width: 30px;
        height: 30px;
    }
    .blog-info-ul li .share-div li a i {
        font-size: 14px;
    }
    .breadcrumb-box .blog-img {
        height: 250px;
        border-radius: 20px;
    }

    .breadcrumb-box {
        height: 250px;
        border-radius: 20px;
    }

    .breadcrumb-box .breadcrumb-content h3 {
        font-size: 37px;
        margin-bottom: 9px;
    }

    .breadcrumb-box .breadcrumb-content ul li {
        font-size: 16px;
        padding: 0px 12px;
    }

    .breadcrumb-box .breadcrumb-content ul li:before {
        width: 6px;
        height: 6px;
        top: 9px;
    }
    .blog-breadcrumb {
        padding: 15px 0;
    }
}

@media (max-width: 992px) {
    .menu-list,
    .right-side-menu,
    .login-btn {
        display: none;
    }

    .toggle-menu {
        display: block;
    }

    .navbar .container {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .drawer {
        width: 85%;
        left: -100%;
    }

    .drawer.active {
        left: 0;
    }

    .menu-card {
        padding: 14px;
        border-radius: 10px;
    }

    .menu-card strong {
        font-size: 14px;
    }

    .menu-card p {
        font-size: 12px;
        margin: 2px 0 0;
    }

    .profile i {
        font-size: 32px;
    }

    .social-login button {
        flex: 1;
    }

    .navbar .nav-link {
        font-size: 0;
    }

    .navbar .nav-link iconify-icon {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .sheet-content h5 {
        font-size: 16px;
    }

    .menu-card {
        gap: 10px;
    }
}
