
/*==============================
start booking form Page
================================*/
.booking-data {
    max-width: 1200px;
    margin: auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(237, 35, 36, 0.05) 0%, rgba(39, 170, 225, 0.05) 100%);
    border-radius: 20px;
}

.input-box {
    position: relative;
}

.input-box label {
    z-index: 20;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 13px;
    background: var(--white-color);
    padding: 0 0.5rem;
}

.contact_form .button-effect {
    min-width: 200px;
}

/*==============================
End booking form Page
================================*/
/*==============================
start special offers box
================================*/
button.close-offers {
    background: var(--white-color);
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 16px;
    padding: 3px 7px;
    height: auto;
    border-radius: 5px;
    margin-left: auto;
}

.modal-backdrop.show {
    opacity: 1;
    background: #0000002a;
    backdrop-filter: blur(7px);
}

.modal-title {
    font-weight: 600;
}

/*==============================
end special offers box
================================*/
#banner_twelve {
    width: 100%;
    height: calc(100vh - 140px);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    clip-path: polygon(100% 0, 100% 95%, 50% 100%, 0 95%, 0 0);
}

/*====================================
start first destinations travel style
=======================================*/
.destination-list-wrap .destination-link {
    filter: drop-shadow(0 10px 20px rgba(243, 112, 2, 0.14));
}

.destination-list-wrap.active .destination-link {
    filter: drop-shadow(0 10px 20px rgba(243, 112, 2, 0.14));
}

.destinationsSwiper {
    padding: 0 20px;
}

.destination-item {
    border-radius: 30px;
    overflow: hidden;
    z-index: 20;
    position: relative;
    padding: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: 50px 0;
}

.destination-item .destination-img {
    overflow: hidden;
    border-radius: 20px;
}

.destination-item .destination-img img {
    min-width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
}

.destination-item:hover .destination-cta img {
    transform: rotate(45deg);
    transition: 0.5s all ease-in-out;
}

.destination-item:hover a img {
    transform: scale(1.1);
    transition: 0.5s all ease-in-out;
}

.destination-content {
    /* position: absolute; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
    width: 100%;
    background: var(--white-color);
    padding: 1rem 10px 0;
}

.destination-content p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: capitalize;
    /* background: var(--second-color); */
    width: fit-content;
    /* padding: 2px 7px; */
    border-radius: 5px;
    color: var(--black-color);
    height: calc(1.5 * 2em);
    overflow: hidden;
}

.destination-content span {
    background: var(--white-color);
    padding: 3px 5px;
    border-radius: 5px;
    font-weight: 700;
    color: var(--second-color);
    width: 30px;
}

.destination-content .destination-cta {
    border: 1px solid var(--main-color);
    border-radius: 50%;
}

.destination-content .destination-cta img {
    width: 30px;
}

.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
    display: none !important;
}

.swiper-button-next,
.swiper-button-prev {
    background: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--sharp-box-shadow);
    transition: all 0.3s ease;
    line-height: 45px;
    border: 1px solid var(--border-color);
}

.swiper-button-next {
    right: 0;
    left: auto;
}

.swiper-button-prev {
    right: auto;
    left: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-blue);
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
}

/*====================================
start first destinations travel style
=======================================*/
/*====================================
start article blog section
=======================================*/
.blog-card {
    min-height: 400px;
    max-height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* ===== Image ===== */
.blog-card .blog-img {
    display: block;
}

.blog-card .blog-img img {
    width: 100%;
    height: 300px;
    transition: height 0.5s ease;
    border-radius: 20px;
    object-fit: cover;
    object-position: center center;
    transform-origin: top;
    position: relative;
    z-index: 1;
}

/* ===== Content Wrapper ===== */
.blog-card .destination-content {
    padding: 20px 10px 0;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.5s ease;
    transform-origin: bottom;
    position: relative;
}

.blog-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: var(--bg-color);
    opacity: 0;
}

.blog-head {
    position: relative;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 16px 16px;
    backdrop-filter: blur(10px);
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 20;
}

.blog-date,
.blog-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-date p,
.blog-author p {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
}

/* ===== Title Area ===== */
.blog-card .title-area {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--black-color);
    transition: 0.5s;
}

.blog-card .title-area .subcat-heading {
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    padding-top: 1rem;
}

.blog-card .title-area:hover {
    color: var(--main-color);
}

/* Responsive font sizes */
@media (max-width: 1200px) {
    .blog-card .title-area {
        font-size: 19px;
    }
}

@media (max-width: 992px) {
    .blog-card .title-area {
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    .blog-card .title-area {
        font-size: 18px;
    }
}

.blog-content {
    padding: 0 1rem 1rem 1rem;
}

/* ===== Hidden Content on Hover ===== */
.blog-card .blog-text {
    width: 100%;
    margin: 0 auto;
    padding-top: 10px;
    opacity: 0;
    display: none;
    transform: translateY(0);
    transition: transform 0.5s ease, opacity 0.4s ease;
    transform-origin: bottom;
}

.blog-card .blog-text p {
    color: var(--para-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    height: calc(1.6 * 4em);
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-text .price span {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
}

/* ===== Hover Effects ===== */
.blog-card:hover .blog-img img {
    height: 170px;
}

.blog-card:hover {
    box-shadow: var(--sharp-box-shadow);
}

.blog-card:hover .blog-meta {
    position: relative;
}

.blog-card:hover .blog-meta p {
    color: var(--second-color);

}

.blog-card:hover .blog-meta img {
    filter: brightness(0.5) invert(1);
}

.blog-card:hover .title-area .subcat-heading {
    padding-top: 0.5rem;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card:hover .blog-content .blog-text {
    opacity: 1;
    display: block;
}

/*======================================
start second card
=======================================*/
.second-tourSwiper {
    padding-bottom: 30px;
}

.second-card {
    padding-block: 1rem;
    background: var(--white-color);
    border-radius: 1.2rem;
    position: relative;
    height: auto;
}

.second-card:hover .second-card-inner .box .imgBox img {
    transform: scale(1.1);
    transition: 0.5s all ease-in-out;
}

@media screen and (min-width: 53rem) {
    .second-card {
        border-radius: 1.8rem;
    }
}

.second-card .second-card-inner {
    position: relative;
    width: inherit;
    height: inherit;
    border-bottom-right-radius: 0;
}

.second-card .second-card-inner .box {
    width: 100%;
    height: 250px;
    background: var(--white-color);
    border-radius: 1.2rem;
    overflow: hidden;
    position: relative;
}

.second-card .second-card-inner .box .videoBox {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.second-card .second-card-inner .box .videoBox iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.second-card .second-card-inner .box .imgBox {
    position: absolute;
    inset: 0;
    height: 100%;
}

.second-card .second-card-inner .box .imgBox img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 1rem;
}

@media screen and (min-width: 53rem) {
    .second-card .second-card-inner .box .imgBox img {
        border-radius: 1.6rem;
    }
}

.second-card .second-card-inner .box .more {
    position: absolute;
    top: -0.375rem;
    right: 0;
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white-color);
    padding: 0.625rem 0 0.625rem 0.625rem;
    border-bottom-left-radius: 1rem;
}

.second-card .second-card-inner .box .more::before {
    position: absolute;
    content: "";
    top: 0.375rem;
    left: -1.188rem;
    background: transparent;
    width: 1.2rem;
    height: 1.2rem;
    border-bottom-right-radius: 2rem;
    box-shadow: 0.313rem 0.313rem 0px 0.313rem var(--white-color);
    transform: rotate(-90deg);
}

.second-card .second-card-inner .box .more::after {
    position: absolute;
    content: "";
    bottom: -1.188rem;
    right: -0.063rem;
    background: transparent;
    width: 1.2rem;
    height: 1.2rem;
    border-bottom-right-radius: 1rem;
    box-shadow: 0.313rem 0.313rem 0px 0.313rem var(--white-color);
    transform: rotate(-90deg);
}

.second-card .second-card-inner .box .more .arrow {
    width: 2.5rem;
    height: 2.5rem;
    border: 0.125rem solid #c8c8c8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in-out;
}

.second-card .second-card-inner .box .more .arrow:hover {
    background: var(--black-color);
    border: 0.125rem solid var(--black-color);
    color: var(--white-color);
}

.second-card .second-card-inner .box .more .arrow:hover svg {
    color: var(--white-color);
}

.second-card .second-card-inner .box .more svg {
    width: 1.063rem;
    color: var(--black-color);
}

.second-card .second-card-inner .box .tag {
    position: absolute;
    bottom: -0.375rem;
    left: 0;
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white-color);
    padding: 0.625rem 0.625rem 0.625rem 0;
    border-top-right-radius: 1rem;
}

.second-card .second-card-inner .box .tag::before {
    position: absolute;
    content: "";
    top: -1.188rem;
    left: 0;
    background: transparent;
    width: 1.2rem;
    height: 1.2rem;
    border-bottom-right-radius: 2rem;
    box-shadow: 0.313rem 0.313rem 0px 0.313rem var(--white-color);
    transform: rotate(90deg);
}

.second-card .second-card-inner .box .tag::after {
    position: absolute;
    content: "";
    bottom: 0.375rem;
    right: -1.188rem;
    background: transparent;
    width: 1.2rem;
    height: 1.2rem;
    border-bottom-right-radius: 1rem;
    box-shadow: 0.313rem 0.313rem 0px 0.313rem var(--white-color);
    transform: rotate(90deg);
}

.second-card .second-card-inner .box .tag a {
    font-size: 0.8rem;
    color: var(--black-color);
    font-weight: 400;
    border: 0.125rem solid #c8c8c8;
    border-radius: 3.125rem;
    padding: 0.313rem 0.625rem;
    display: inline-block;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.second-card .second-card-inner .box .tag a:hover {
    color: var(--white-color);
    background: var(--black-color);
}

.second-card-content {
    padding: 16px;
    background: var(--bg-color);
    margin-top: 15px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.second-card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
    text-decoration: none;
    height: calc(1.2 * 2em);
}

.second-card-content h3 a {
    color: var(--black-color);
}

.second-card-content p {
    margin: 15px auto;
}

.second-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.second-card-footer .price .amount {
    /* display: block; */
    font-weight: 600;
    color: var(--main-color);
    font-size: 1.2rem;
}

.second-card-footer .price .person {
    font-size: 12px;
    color: var(--paragraph-color);
}

.second-card-footer .second-card-days {
    font-weight: 600;
    color: var(--second-color)
}

/*==========================================
End second card
===========================================*/
/*======================================
start second subcat section
========================================*/

.second-sub-cat-section {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(6, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    height: 500px;
    margin-top: 1.5rem;
}

.sub-cat-item {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
    border-radius: 40px;
}

.sub-cat-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 700ms ease-in-out;
    transform: perspective(0px) rotateX(0deg) rotateY(0deg) scaleX(1) scaleY(1);
    transform-origin: center center;
}

.sub-cat-item:hover img {
    width: 100%;
    transform: perspective(600px) rotateX(0.06deg) rotateY(0deg) scaleX(1.09) scaleY(1.09);
}

.sub-cat-item:nth-child(1) {
    grid-area: 1 / 1 / 3 / 3;

}

.sub-cat-item:nth-child(2) {
    grid-area: 3 / 1 / 7 / 3;
}

.sub-cat-item:nth-child(3) {
    grid-area: 1 / 3 / 7 / 6;
}

.sub-cat-item:nth-child(4) {
    grid-area: 1 / 6 / 3 / 8;
}

.sub-cat-item:nth-child(5) {
    grid-area: 3 / 6 / 5 / 8;

}

.sub-cat-item:nth-child(6) {
    grid-area: 5 / 6 / 7 / 8;
}

.sub-cat-item .top_ratings {
    right: 50px;
}

.amazing_tour_content {
    padding-left: 45px;
}

.sub-cat-item_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0 0 0 / 0.8), transparent);
}

.sub-cat-item_text {
    border-radius: 15px;
    bottom: 30px;
    left: 35px;
    position: absolute;
    color: var(--white-color);
}

.sub-cat-item_text h3 {
    font-weight: 600;
    text-shadow: 0px 1px 5px var(--white-color);
}

/* footer */
.footer_heading_area h5 {
    position: relative;
    border: none;
    padding-bottom: 0.5rem;
}

.footer_heading_area h5::before {
    position: absolute;
    bottom: 0;
    width: 100%;
    right: 0;
    height: 2px;
    content: "";
    z-index: -1;
    background: linear-gradient(45deg,
            transparent,
            var(--second-color),
            transparent);
}

/*=====================================
      faq section
====================================== */
.faq-main-section {
    padding: 60px 0;
}

.faq-main-section .section_heading_seven {
    margin-bottom: 30px;
}

/* .faq-main-section .row {
    align-items: center;
} */

@media (max-width: 991.98px) {
    .faq-main-section {
        padding: 80px 0;
    }
}

.faq-main-section .sec-title-h2 .title {
    max-width: 534px;
    margin: 0 auto 0 0;
}

.faq-main-section .right-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991.98px) {
    .faq-main-section .right-box {
        margin-top: 30px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .faq-main-section .right-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }

    .accordion-button {
        padding-inline: 0 !important;
    }
}

.faq-main-section .right-box .info-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 575.98px) {
    .faq-main-section .right-box .info-outer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.faq-main-section .right-box .info-outer .author {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-left: -36px;
    position: relative;
    z-index: 0;
}

@media (max-width: 575.98px) {
    .faq-main-section .right-box .info-outer .author {
        margin-left: 0;
        margin-top: -36px;
    }
}

.faq-main-section .right-box .info-outer .author img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.faq-main-section .right-box .funfact-box .count-box {
    font-size: 75px;
    font-weight: 500;
    line-height: 75px;
    letter-spacing: -3px;
    color: var(--second-color);
    margin-bottom: 13px;
}

.faq-main-section .right-box .funfact-box .text {
    max-width: 233px;
}

.faq-main-section .content-column .inner-column {
    padding: 2.5rem;
    background: linear-gradient(354deg,
            var(--black-color),
            var(--second-color));
    border-radius: 10px;
    margin-top: 0;
    position: relative;
}

@media (max-width: 991.98px) {
    .faq-main-section .content-column .inner-column {
        margin-top: 50px;
    }
}

@media (max-width: 575.98px) {
    .faq-main-section .content-column .inner-column {
        padding: 20px;
    }
}

.faq-main-section .content-column .inner-column .bg-shape {
    position: absolute;
    top: 0;
    right: 0;
}

.faq-main-section .content-column .inner-column .image {
    width: 100px;
    height: 100px;
    margin-bottom: 50px;
    border-radius: 50% 50% 50% 0;
    overflow: hidden;
}

.faq-main-section .content-column .inner-column .title a {
    line-height: 40px;
    display: block;
    color: var(--white-color);
    margin-bottom: 35px;
}

.faq-main-section .faq-column .inner-column {
    border: 1px solid rgba(0, 37, 92, 0.1019607843);
    border-radius: 10px;
    padding: 19px 50px 32px;
    margin-top: 0;
}

@media (max-width: 575.98px) {
    .faq-main-section .faq-column .inner-column {
        padding: 1rem;
    }
}

.faq-main-section .faq-column .inner-column .accordion-box_four .accordion.block {
    border: none;
    padding: 0;
    margin-bottom: 0;
}

.faq-main-section .faq-column .inner-column .accordion-box_four .accordion.block:last-child .acc-btn {
    padding-bottom: 28px;
    border-bottom: none;
}

.faq-main-section .faq-column .inner-column .accordion-box_four .accordion.block .acc-btn {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 37, 92, 0.1019607843);
    color: var(--second-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.faq-main-section .faq-column .inner-column .accordion-box_four .accordion.block.active-block .acc-btn {
    padding: 28px 0 11px;
    border-bottom: none;
}

.faq-main-section .faq-column .inner-column .accordion-box_four .accordion.block .acc-content .content {
    padding-top: 10px;
    padding-bottom: 16px;
}

.faq-main-section .faq-column .inner-column .accordion-box_four .accordion.block .acc-content .content .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
    max-width: 620px;
}

.accordion-button::after {
    background-image: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: var(--main-color);
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: var(--second-color);
}

.accordion-button:not(.collapsed) {
    color: var(--main-color);
    background-color: var(--white-color);
    border: none;
    box-shadow: none;
}

.accordion-button {
    color: var(--black-color);
    background-color: var(--white-color);
    border: none;
    box-shadow: none;
    font-weight: 600;
}

.accordion-button:focus {
    border: none;
    box-shadow: none;
}

/*=====================================
      faq section
====================================== */

/*=====================================
  about section
=======================================*/
#five_about_area {
    background-image: url("../images/01_pattern.webp"),
        radial-gradient(var(--bg-color), transparent);
    /* background-size: cover; */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
}

.about-img {
    display: inline-block;
    position: relative;
    margin-right: 120px;

}

.about-img::before {
    position: absolute;
    left: 58px;
    bottom: 12px;
    width: 95%;
    height: 150px;
    z-index: 0;
    content: "";
    background: var(--second-color);
    border: 24px solid var(--second-color);
    border-bottom: 10px solid var(--second-color);
    transform: skew(-5deg, -5deg);
    border-radius: 20px;
}

.about-img::after {
    position: absolute;
    right: -27px;
    top: 14px;
    width: 95%;
    height: 150px;
    z-index: 0;
    content: "";
    background: var(--second-color);
    border: 10px solid var(--second-color);
    transform: skew(-5deg, -5deg);
    border-radius: 20px;
}

.box-img {
    position: relative;
    padding: 23px;
}

.box-img::after {
    position: absolute;
    background-image: url(../images/svg/dotted_line.svg);
    top: -14px;
    left: 21px;
    z-index: -5;
    content: "";
    height: 87px;
    width: 100px;

    visibility: hidden;
    background-color: #fff;
}

.box-img::before {
    position: absolute;
    background-image: url(../images/svg/dotted_line.svg);
    bottom: -15px;
    right: -59px;
    z-index: -5;
    content: "";
    height: 87px;
    width: 100px;
    /* border-radius: 10px; */
    background-color: #fff;
    visibility: hidden;
}

.about-img img {
    margin-left: 40px;
    padding: 10px;
    border: 10px solid #eee;
    border-radius: 20px;
    box-shadow: 0px -2px 19px 0px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
    background: var(--white-color);
    position: relative;
    z-index: 2;
}

.about-img .circle {
    display: inline-block;
    position: absolute;
    z-index: 20;
    bottom: 0;
    background: var(--white-color);
    border-radius: 50%;
    padding: 7px;
}

.about-img .circle:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 200px;
    height: 200px;
    background: url(../images/arrow.png) no-repeat;
    background-size: cover;
}

.about-img .circle svg {
    -webkit-animation: spin 20s linear infinite;
    animation: spin 20s linear infinite;
}

.about-img .circle text {
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*=====================================
  Start Discount Banner
======================================*/

.discount-banner {
    width: 100%;
    height: 350px;
    border-radius: 999px;
    align-items: center;
    display: flex;
    overflow: hidden;
    z-index: 2;
    position: relative;
}

.discount-banner::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(to right,
            #0292fd,
            rgba(3, 145, 251, 0.902),
            rgb(3 144 249 / 50%));
    /* opacity: 0.8; */
    z-index: 0;
}

.discount-banner .discount_photo {
    width: 100%;
    height: 100%;
}

.discount-banner .discount_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount_content {
    position: absolute;
    top: 50%;
    left: 50px;
    width: calc(100% - 100px);
    transform: translate(0, -50%);
    text-align: left;
    color: var(--white-color);
    z-index: 1;
    padding: 50px;
    /* max-width: 70%; */
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}



.discount_content p {
    color: var(--white-color);
    padding: 15px 0;
}

.discount-plane {
    position: absolute;
    z-index: 20;
    top: 20px;
    right: 50px;
    -webkit-animation: movedelement2 8s linear infinite;
    animation: movedelement2 s linear infinite;
    width: 250px;
}

.discount-cloud {
    position: absolute;
    width: 350px;
    height: 150px;
    top: 0;
    right: 50px;
    pointer-events: none;
    -webkit-animation: bounce-x 5s infinite linear;
    animation: bounce-x 5s infinite linear;
    z-index: 0;
}

.discount-special-offer {
    position: absolute;
    z-index: 20;
    bottom: 0;
    right: 20%;
    -webkit-animation: bouncein 8s linear infinite;
    animation: bouncein s linear infinite;
    width: 150px;
    animation-direction: alternate-reverse;
}

@keyframes movedelement2 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(-10px, -10px);
        transform: translate(-10px, -10px);
    }

    50% {
        -webkit-transform: translate(-5px, -5px);
        transform: translate(-5px, -5px);
    }

    75% {
        -webkit-transform: translate(-10px, 5px);
        transform: translate(-10px, 5px);
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bouncein {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

/* :: Pattern Box */
.pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--second-color);
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}

.pattern::after {
    content: "";
    background-color: #f9f9f9;
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    bottom: 0;
    z-index: -1;
    transform: rotate(-2deg);
    border-radius: 8px;
}

.pattern .pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right,
            #0292fd,
            rgb(3 145 251 / 90%),
            rgb(3 144 249 / 50%));
    border-radius: 8px;
}

.pattern .pattern-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Review Sections */
:root {
    --main-color: #ed2324;
    --second-color: #27aae1;
    --white-color: #ffffff;
    --deep-blue: #1149ae;
    --black-color: #2b2540;
    --black-color-opacity: #2b2540c4;
    --paragraph-color: #818090;
    --border-color: #e2e2e2;
    --bg-color: #f3f6fd;
    --transition: 0.4s all ease-in-out;
    --red-color: #d9282e;
}

.review-two-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 450px;
    max-height: 100%;
    justify-content: center;
    padding: 8px;
}

.button-play,
.button.is-play .button-outer-circle {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.review-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.review-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.review-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(237, 35, 36, 0.15) 0%,
            rgba(39, 170, 225, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.review-box:hover::before {
    opacity: 1;
}

.review-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    /* Add subtle noise texture to mask compression artifacts */
    background-image: linear-gradient(to top,
            rgba(0, 0, 0, 0.6) 0%,
            transparent 50%),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px);
}

.review-box img {
    width: 100%;
    border-radius: 16px;
    height: 215px;
    object-fit: cover;
    /* Image quality enhancement techniques */
    filter: saturate(1.3) brightness(0.88) contrast(1.2) sharpen(1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    /* Slight blur reduction */
    -webkit-filter: saturate(1.3) brightness(0.88) contrast(1.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-box:hover img {
    filter: saturate(1.45) brightness(0.92) contrast(1.25) sharpen(1.2);
    transform: scale(1.05) translateZ(0);
}

.review-box-content.full-height {
    height: 450px;
}

.button-play {
    justify-content: center;
    z-index: 2;
}

.button {
    display: inline-block;
    position: relative;
}

.button.is-play {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-box:hover .button.is-play {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    box-shadow: 0 12px 40px rgba(237, 35, 36, 0.3);
}

.button.is-play .button-outer-circle {
    background: linear-gradient(135deg,
            rgba(237, 35, 36, 0.3),
            rgba(39, 170, 225, 0.3));
    border-radius: 50%;
    right: 0;
    bottom: 0;
}

.button.is-play .button-icon {
    position: absolute;
    top: 50%;
    left: 52%;
    width: 32px;
    height: 32px;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.review-box:hover .button.is-play .button-icon {
    left: 54%;
}

.button.is-play .button-icon .triangle {
    animation: 7s fadeIn;
    fill: var(--main-color);
    transition: fill 0.3s ease;
}

.review-box:hover .button.is-play .button-icon .triangle {
    fill: var(--second-color);
}

.button.is-play .button-icon .path {
    stroke-dasharray: 90;
    stroke-dashoffset: 0;
    animation: 3s triangleStroke;
    stroke: var(--main-color);
}

.has-scale-animation {
    animation: 3s infinite smallScale;
}

.has-delay-short {
    animation-delay: 0.5s;
}

/* Add decorative corner accent */
.review-box .corner-accent {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--main-color), var(--second-color));
    border-radius: 8px;
    opacity: 0;
    transform: translate(10px, -10px) rotate(45deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.review-box:hover .corner-accent {
    opacity: 0.9;
    transform: translate(0, 0) rotate(45deg);
}

/* Improved animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes smallScale {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Responsive improvements */
@media (max-width: 768px) {

    .discount-plane,
    .discount-special-offer {
        display: none;
    }

    .review-two-box {
        gap: 16px;
        padding: 4px;
    }

    .review-box img {
        height: 180px;
    }

    .button.is-play {
        width: 65px;
        height: 65px;
    }

    .review-box:hover .button.is-play {
        width: 70px;
        height: 70px;
    }
}

/* From Uiverse.io by satyamchaudharydev */
.button-effect {
    min-width: 120px;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: var(--second-color);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
    width: fit-content;
}

.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.button-effect:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.button-effect:hover .icon {
    transform: translate(4px);
}

.button-effect:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.button-effect::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

/*======================================
   start slider range
========================================*/
.slider-range {
    position: relative;
}

/* Enhanced Slider Track */
.ui-slider-horizontal {
    height: 6px;
    background: var(--border-color);
    border: none;
    border-radius: 10px;
    margin: 25px 0 35px;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Active Range */
.ui-slider-range {
    background: linear-gradient(90deg,
            var(--second-color) 0%,
            var(--deep-blue) 100%);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(237, 35, 36, 0.25);
    transition: var(--transition);
}

/* Enhanced Handles */
.ui-slider-handle {
    width: 18px !important;
    height: 18px !important;
    background: var(--white-color);
    border: 3px solid var(--main-color);
    border-radius: 50%;
    top: 50% !important;
    transform: translateY(-50%);
    cursor: grab;
    outline: none;
    transition: var(--transition);
    box-shadow: 0 3px 12px rgba(237, 35, 36, 0.3);
    position: absolute;
}

.ui-slider-handle:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 4px 16px rgba(237, 35, 36, 0.4);
    border-width: 4px;
}

.ui-slider-handle:active {
    cursor: grabbing;
    transform: translateY(-50%) scale(1.05);
}

.ui-slider-handle:focus {
    border-color: var(--red-color);
    box-shadow: 0 4px 16px rgba(237, 35, 36, 0.5),
        0 0 0 4px rgba(237, 35, 36, 0.1);
}

/* Handle Tooltips */
.ui-slider-handle::before {
    content: attr(data-value);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--black-color);
    color: var(--white-color);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(43, 37, 64, 0.2);
}

.ui-slider-handle::after {
    content: "";
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--black-color);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.ui-slider-handle:hover::before,
.ui-slider-handle:hover::after,
.ui-slider-handle:active::before,
.ui-slider-handle:active::after {
    opacity: 1;
}

/* Price Display */
.price-display-wrapper {
    background: var(--bg-color);
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.price-display-wrapper:hover {
    border-color: var(--second-color);
    background: rgba(39, 170, 225, 0.05);
}

#amount_mobile, #amount_desktop {
    width: 100%;
    border: none;
    background: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
    text-align: center;
    padding: 0;
    outline: none;
}

.price-label {
    text-align: center;
    font-size: 13px;
    color: var(--paragraph-color);
    margin-bottom: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Min/Max Labels */
.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding: 0 2px;
}

.range-label {
    font-size: 13px;
    color: var(--paragraph-color);
    font-weight: 500;
}

.range-label span {
    color: var(--black-color);
    font-weight: 600;
}

/* Loading animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.slider-range.loading .ui-slider-range {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 600px) {
    .slider-container {
        padding: 25px 20px;
    }

    #amount {
        font-size: 16px;
    }
}

/*==============================
  end slider range
===============================*/
/*==============================
  start  sidebar range
===============================*/
.sidebar-title i {
    color: var(--main-color);
    font-size: 20px;
}

.sidebar-category1 {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.sidebar-category1 li {
    margin-bottom: 4px;
    position: relative;
    overflow: hidden;
}

.sidebar-category1 li:last-child {
    margin-bottom: 0;
}

.sidebar-category1 {
    overflow: hidden;
    margin: 15px 0 0;
}

.sidebar-category1 li a {
    display: block;
    padding: 5px;
    font-size: 16px;
}

.sidebar-category1 li a i {
    float: left;
    font-size: 10px;
    background: #ddd;
    width: 20px;
    height: 20px;
    border-radius: 25px;
    line-height: 21px;
    margin: 2px 5px 0 0;
}

.sidebar-category1 li a {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    text-decoration: none;
    color: var(--black-color);
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px 10px 0 0;
    transition: var(--transition);
    position: relative;
    background: transparent;
    border: 1px solid transparent;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-category1 li a:last-child {
    border-bottom: 1px solid transparent;
}

/* Icon Styling */
.sidebar-category1 li a i {
    font-size: 12px;
    color: var(--main-color);
    transition: var(--transition);
    min-width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

/* Hover Effects */
.sidebar-category1 li a:hover {
    background: linear-gradient(135deg,
            rgba(237, 35, 36, 0.05) 0%,
            rgba(39, 170, 225, 0.05) 100%);
    border-color: var(--border-color);
    padding-left: 20px;
    color: var(--main-color);
    border-radius: 10px;
}

.sidebar-category1 li a:hover i {
    transform: translateX(4px);
    color: var(--second-color);
}

/* Active State */
.sidebar-category1 li a.active {
    background: linear-gradient(135deg,
            var(--main-color) 0%,
            var(--red-color) 100%);
    color: var(--white-color);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(237, 35, 36, 0.25);
}

.sidebar-category1 li a.active i {
    color: var(--white-color);
    transform: translateX(4px);
}

/* Ripple Effect on Click */
.sidebar-category1 li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(237, 35, 36, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.sidebar-category1 li a:active::before {
    width: 300px;
    height: 300px;
}

/* Count Badge (Optional) */
.tour-count {
    margin-left: auto;
    background: var(--bg-color);
    color: var(--paragraph-color);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    transition: var(--transition);
}

.sidebar-category1 li a:hover .tour-count {
    background: var(--second-color);
    color: var(--white-color);
}

.sidebar-category1 li a.active .tour-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
}

/* Divider between groups (optional) */
.sidebar-category1 li.divider {
    height: 1px;
    background: var(--border-color);
    margin: 15px 0;
    pointer-events: none;
}

/* Subtle Animation on Load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-category1 li {
    animation: fadeInUp 0.4s ease-out backwards;
}

.sidebar-category1 li:nth-child(1) {
    animation-delay: 0.05s;
}

.sidebar-category1 li:nth-child(2) {
    animation-delay: 0.1s;
}

.sidebar-category1 li:nth-child(3) {
    animation-delay: 0.15s;
}

.sidebar-category1 li:nth-child(4) {
    animation-delay: 0.2s;
}

.sidebar-category1 li:nth-child(5) {
    animation-delay: 0.25s;
}

.sidebar-category1 li:nth-child(6) {
    animation-delay: 0.3s;
}

.sidebar-category1 li:nth-child(7) {
    animation-delay: 0.35s;
}

.sidebar-category1 li:nth-child(8) {
    animation-delay: 0.4s;
}

/* Focus State for Accessibility */
.sidebar-category1 li a:focus {
    outline: 2px solid var(--second-color);
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 600px) {
    .sidebar-wrapper {
        padding: 20px;
    }

    .sidebar-category1 li a {
        padding: 12px 14px;
        font-size: 14px;
    }

    .sidebar-title {
        font-size: 16px;
    }
}

/*==============================
  end  sidebar range
===============================*/
/* =============================
  start  Metting  Banner
===============================*/
.meetingBanner .modal-dialog {
    height: 100%;
    top: 10%;
    transform: scale(0) !important;
    transition: 0.7s all ease-in-out !important;
}

.meetingBanner.show .modal-dialog {
    transform: scale(1) !important;
    transition: 0.7s all ease-in-out !important;
}

.meetingBanner .modal-content {
    border-radius: 1rem;
    min-height: 60vh;
    background-size: cover;
}

.meetingBanner .modal-header {
    border: none;
}

.meetingBanner .modal-title {
    color: var(--white-color);
    font-weight: 700;
    text-shadow: 0px 1px 5px #fbfbfb;
    bottom: 100px;
    /* position: absolute; */
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
}

.meetingBanner .modal-footer {
    border: none;
    padding: 0 0 15px 0;
}

.special-offer-banner {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 30px;
    gap: 1.5rem;
}

.special-offer-content p {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
}

.special-offer-content {
    position: relative;
}

.special-offer-count {
    width: 100%;
}

.time-wepper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    padding: 1rem;
    backdrop-filter: blur(20px);
}

.time-wepper__item.text-center {
    flex: 1;
}

@keyframes flipFade {
    0% {
        transform: translateY(6px) scale(0.95);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.time-wepper h4 {
    transition: transform 0.3s ease;
    color: var(--main-color);
    text-shadow: -1px 1px 4px var(--main-color);
}

.time-wepper h4.animate {
    animation: flipFade 0.35s ease;
}

/*======================================================
  start menu box
 ======================================================*/
.menu-mobile-fixed {
    position: fixed;
    bottom: 0;
    padding: 1rem 0.5rem;
    background: var(--light-color);
    width: 100%;
    left: 0;
    z-index: 500;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.menu-mobile-fixed a {
    color: var(--black-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
}

.menu-mobile-fixed a img {
    width: 20px;
    height: 20px;
}

.menu-mobile-fixed a h5 {
    font-size: 14px;
}

/*======================================================
end menu box
======================================================*/