/* Card styling */
.home_mini_tour_card {
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    background: #fff;
    border: 1px solid rgb(219, 218, 218);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
}

.home_mini_tour_card:hover {
    border: 1px solid #07cc98;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.home_mini_tour_card_left {
    flex: 0 0 130px;
    min-height: 120px;
}

.home_mini_tour_card_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home_mini_tour_card_right {
    padding: 10px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home_mini_tour_title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 6px;
    color: #07cc98;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home_mini_tour_sub_title {
    font-size: 17px;
    color: #636e72;
    line-height: 1.5;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home_mini_tour_meta_row {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.home_mini_tour_btn {
    color: #fff;
    background: linear-gradient(135deg, #07cc98 0%, #edae3ab0 100%);
    padding: 1px 10px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
}

.home_blog_wrapper {
    background-color: #ffffff;
    font-family: "Urbanist", sans-serif;
    color: #1a1a1a;
    padding: 40px 0px;
}

/* Featured Card Styles */
.home_blog_featured_card {
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    height: 600px;
}

.home_blog_hero_img_wrapper {
    width: 100%;
    height: 100%;
}

.home_blog_hero_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.home_blog_hero_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 10%,
        transparent 60%
    );
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home_blog_hero_tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #000;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(15, 234, 37, 0.3);
}

.home_blog_hero_content {
    color: #fff;
}

.home_blog_hero_date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.8;
}

.home_blog_hero_title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.home_blog_hero_desc {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 90%;
}

.home_blog_hero_btn {
    background: linear-gradient(135deg, #07cc98 0%, #edae3ab0 100%);
    color: white;
    border: 1px solid transparent;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.home_blog_hero_btn:hover {
    background: #ffffffd1;
    color: #07cc98;
    border: 1px solid #07cc98;
    transform: translateY(-3px);
}

/* Sidebar List Styles */
.home_blog_side_card {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    background: linear-gradient(
        145deg,
        rgba(1, 204, 148, 0.08) 0%,
        rgba(1, 204, 148, 0.18) 45%,
        #ffffff 100%
    );
    padding: 12px;
    border-radius: 20px;
    transition: 0.3s;
}

.home_blog_side_card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.home_blog_side_img {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
}

.home_blog_side_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_blog_side_info h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 6px 0;
    color: #1a1a1a;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home_blog_side_meta {
    font-size: 11px;
    font-weight: 700;
    color: #07cc98;
    text-transform: uppercase;
}

.home_blog_side_link {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-decoration: none;
    transition: 0.2s;
}

.home_blog_side_link:hover {
    color: #07cc98;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .home_blog_featured_card {
        height: 450px;
    }

    .home_blog_hero_title {
        font-size: 24px;
    }
}

.mountain_special_section {
    padding: 40px 0;
    background-color: #e5f8f169;
    background-image: url("images/forex-bg.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.mountain_special_card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.4s ease;

    /* IMAGE ZOOM */
    &:hover .mountain_special_image img {
        transform: scale(1.08);
    }
}

.mountain_special_image {
    position: relative;
    height: 400px;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transform: scale(1);
        transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform;
        backface-visibility: hidden;
    }

    /* bottom fade effect */
    &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 45%;
        background: linear-gradient(
            to top,
            #ffffff 10%,
            rgba(255, 255, 255, 0.8) 40%,
            transparent
        );
    }
}

.mountain_special_content {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.mountain_special_title {
    font-size: 30px;
    font-weight: 800;
    color: #2b6cb0;
    margin-bottom: 5px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.mountain_special_tours {
    font-size: 20px;
    font-weight: 600;
    color: #2b6cb0;
}

.honeymoon_card {
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.honeymoon_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Image Section */
.honeymoon_img_box {
    position: relative;
    height: 300px;
    padding: 12px;
}

.honeymoon_img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.honeymoon_duration {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #000;
}

.honeymoon_wishlist {
    position: absolute;
    top: 25px;
    right: 25px;
    background: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ff4d6d;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Content Section */
.honeymoon_content {
    padding: 0 15px 15px 15px;
}

.honeymoon_category {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #07cc98;
    font-weight: 600;
    margin-bottom: 5px;

    /* single line fix */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.honeymoon_title {
    font-size: 20px;
    color: #2d3436;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.honeymoon_description {
    font-size: 17px;
    color: #636e72;
    line-height: 1.5;
    margin-bottom: 5px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.honeymoon_divider {
    border: 0;
    border-top: 1px solid #eee;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-bottom: 5px;
}

/* Footer Section */
.honeymoon_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.honeymoon_price_wrapper {
    display: flex;
    flex-direction: column;
}

.honeymoon_old_price {
    font-size: 12px;
    color: #b2bec3;
    text-decoration: line-through;
}

.honeymoon_new_price {
    font-size: 22px;
    font-weight: 600;
    color: #2d3436;
}

/*Animated Offer Section Start*/
.offer-bar {
    margin: 0;
    background: #022c4a;
    font-family: sans-serif;
}

.animated-text-bar {
    width: 100%;
    overflow: hidden;
    padding: 7px 0;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.text-slider {
    display: flex;
    gap: 40px;
    animation: slideLeft 40s linear infinite;
    white-space: nowrap;
}

.text-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 5px 18px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@keyframes slideLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pause on hover */
.animated-text-bar:hover .text-slider {
    animation-play-state: paused;
}

.new_home_cat_card_img_wrapper {
    background: linear-gradient(to bottom, #ffffff, #01cc9433);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    width: 70px;
    height: 70px;
    margin: auto;
}

/* .new_home_cat_card_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
} */

.new_home_cat_card_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.new_home_cat_card_content {
    text-align: center;
    margin-top: 5px;
}

.new_home_cat_card_content h5 {
    font-size: 13px;
    margin-bottom: 2px;
    overflow: hidden;
    text-align: center;
    color: #000;
}

.new_home_cat_card_content p {
    font-size: 11px;
    color: #898383;
    font-weight: 500;
    margin-bottom: 0px;
}

/* Upcomg Section */

.home_tourcard_upcoming_sec {
    background: #f5f5f5;
    padding: 40px 0;
}

.date_filter_upcoming {
    overflow-x: auto;
    padding: 10px 0;
}

/* scrollbar height */
.date_filter_upcoming::-webkit-scrollbar {
    height: 4px;
}

/* scrollbar track */
.date_filter_upcoming::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 10px;
}

/* scrollbar thumb */
.date_filter_upcoming::-webkit-scrollbar-thumb {
    background: #07cc98;
    border-radius: 10px;
}

/* hover */
.date_filter_upcoming::-webkit-scrollbar-thumb:hover {
    background: green;
}

.date_filter_upcoming_wrapper {
    display: flex;
    gap: 12px;
    min-width: max-content;
}

/* Button */
.date_filter_upcoming_item {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #ccc;
    background: transparent;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.date_filter_upcoming_item .month_icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    background: #edf4ff;
    color: #1c5eaa;
}

/* Hover */
.date_filter_upcoming_item:hover {
    border-color: #07cc98;
    color: #07cc98;
}

/* Active */
.date_filter_upcoming_item.active {
    border-color: #0077b6;
    color: #0077b6;
    background: rgba(0, 119, 182, 0.08);
}

.date_filter_upcoming_item.season-winter .month_icon {
    background: #eaf6ff;
    color: #0077b6;
}

.date_filter_upcoming_item.season-spring .month_icon {
    background: #eafbea;
    color: #2e7d32;
}

.date_filter_upcoming_item.season-holi .month_icon {
    background: #fff0f7;
    color: #ad1457;
}

.date_filter_upcoming_item.season-summer .month_icon {
    background: #fff6df;
    color: #d97706;
}

.date_filter_upcoming_item.season-monsoon .month_icon {
    background: #e8f4ff;
    color: #0f5fb3;
}

.date_filter_upcoming_item.season-festival .month_icon {
    background: #fff3e3;
    color: #b45309;
}

.date_filter_upcoming_item.season-diwali .month_icon {
    background: #fff1de;
    color: #c2410c;
}

.home_upcoming_tourcard {
    border-radius: 12px;
    width: 100%;
    margin-bottom: 15px;
}

.tour_card_link {
    text-decoration: none;
    display: block;
}

.tour_card_img_wrapper {
    position: relative;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
}

.tour_card_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Price badge */
.tour_price_badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffd600;
    color: #000;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 3;
    border: 1px solid #fff;
}

.old_price {
    text-decoration: line-through;
    color: red;
    font-size: 11px;
    margin-right: 5px;
}

/* Gradient overlay */
.tour_gradient_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95),
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0)
    );
    z-index: 1;
}

.tour_card_content {
    position: absolute;
    bottom: 0;
    padding: 15px;
    color: #fff;
    z-index: 2;
}

.tour_card_content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Meta info */
.tour_card_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta_item {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.meta_item i {
    color: #07cc98;
}

/* eBrochure_home_section Start */
.eBrochure_home_section {
    background: linear-gradient(
        145deg,
        rgba(1, 204, 148, 0.08) 0%,
        rgba(1, 204, 148, 0.18) 45%,
        #ffffff 100%
    );
    padding: 40px 0;
}

.eBrochure_card {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.eBrochure_card_link {
    display: block;
    text-decoration: none;
}

.eBrochure_card_imgWrapper {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
}

.eBrochure_card_imgWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.eBrochure_card:hover img {
    transform: scale(1.08);
}

.eBrochure_card_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0)
    );
}

.eBrochure_card_content {
    position: absolute;
    bottom: 15px;
    padding: 0px 15px;
}

.eBrochure_card_title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* eBrochure_home_section End */

/* Golden Card Start form here */
a:hover {
    text-decoration: none !important;
}

.golden_section {
    padding: 40px 0px;
}

/* Tour Crads */
.golden_card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.golden_card:hover {
    border-color: #09ce95;
}

.golden_card_image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.golden_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.golden_card:hover .golden_card_image img {
    transform: scale(1.08);
}

.golden_badge_group {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.golden_badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.golden_badge_popular {
    background: linear-gradient(90deg, rgb(0, 123, 255), rgb(224, 59, 121));
    color: white;
    font-size: 10px;
    padding: 5px 10px;
}

.golden_duration_badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgb(0 0 0 / 53%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.golden_card_body {
    padding: 15px;
}

.golden_card_title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.golden_location_text {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: flex;
    gap: 6px;
    height: 36px;
    overflow: hidden;
}

.golden_location_text i {
    color: #09ce95;
    margin-top: 2px;
    font-size: 15px;
}

.golden_amenities_row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 5px;
}

.golden_amenity_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.golden_amenity_icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(to top right, #02d77b 0%, #0fbcc3 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.golden_amenity_name {
    font-size: 9px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
}

.golden_price_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    padding: 6px 6px;
    background: linear-gradient(
        145deg,
        rgba(1, 204, 148, 0.08) 0%,
        rgba(1, 204, 148, 0.18) 45%,
        #ffffff 100%
    );
    border-radius: 10px;
}

.golden_price_info {
    display: flex;
    flex-direction: column;
}

.golden_price_label {
    font-size: 10px;
    color: #92400e;
    font-weight: 600;
    margin-bottom: 2px;
}

.golden_price_value {
    font-size: 18px;
    font-weight: 800;
    color: #1e40af;
}

.golden_btn_group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.golden_btn {
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 11px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.golden_btn_whatsapp {
    background: #25d366;
    color: white;
}

.golden_btn_whatsapp:hover {
    background: #20ba5a;
    color: white;
}

.golden_btn_expert {
    background: white;
    color: #4f46e5;
    border: 2px solid #4f46e5;
}

.golden_btn_expert:hover {
    background: #4f46e5;
    color: white;
}

.golden_btn_inquire {
    background: linear-gradient(135deg, #07cc98 0%, #edae3ab0 100%);
    color: white;
    border: 1px solid transparent;
}

.golden_btn_inquire:hover {
    background: #fff;
    color: #07cc98;
    border: 1px solid #07cc98;
}

.golden_btn_details {
    background: #4a4a4a;
    color: white;
    border: 1px solid #000;
}

.golden_btn_details:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 991px) {
    .golden_heading h1 {
        font-size: 28px;
    }

    .golden_card_image {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .golden_amenity_name {
        font-size: 8px;
    }

    .golden_amenity_icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* Golden Card End */

/* Diamond Card Section Starts Here*/
.golden_card_section {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, #fffaf3 0%, #fff 40%, #f8fffc 100%);
    overflow: hidden;
}

.golden_card_section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(255, 193, 7, 0.25),
        transparent 70%
    );
    filter: blur(60px);
    z-index: 0;
}

/* BOTTOM PREMIUM SHAPE */
.golden_card_section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(1, 204, 148, 0.25),
        transparent 70%
    );
    filter: blur(70px);
    z-index: 0;
}

/* CONTENT ABOVE EFFECT */
.golden_card_section > * {
    position: relative;
    z-index: 2;
}

.dimond_card {
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.45s ease;
    font-family: "Poppins", sans-serif;
}

.dimond_media {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.dimond_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.dimond_card:hover img {
    transform: scale(1.12);
}

/* TOP TAGS */
.dimond_top {
    position: absolute;
    top: 15px;
    left: 15px;
}

.dimond_days {
    backdrop-filter: blur(10px);
    background: rgb(0 0 0 / 53%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
}

.dimond_days .fa-sun {
    color: #ffc107;
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.6);
}

.dimond_days .fa-moon {
    color: #60a5fa;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
}

.dimond_gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
}

.dimond_titleBox {
    position: absolute;
    bottom: 18px;
    left: 18px;
    color: #fff;
}

.dimond_titleBox h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.dimond_titleBox p {
    margin: 3px 0 0;
    opacity: 0.85;
    font-size: 14px;
}

.dimond_bottom {
    padding: 6px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dimond_cut {
    margin: 0;
    text-decoration: line-through;
    color: #aaa;
    font-size: 14px;
}

.dimond_bottom h2 {
    margin: 2px 0 0;
    font-size: 24px;
}

/* BUTTON */
.dimond_btn {
    border: none;
    padding: 6px 18px;
    border-radius: 5px;
    background: linear-gradient(135deg, #07cc98 0%, #edae3ab0 100%);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.35s;
    font-size: 15px;
}

.dimond_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 204, 148, 0.4);
}

/* Diamond card Section End Here */

/* Group Tour */

.GropTourCard {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    font-family: "Poppins", sans-serif;
}

.GropTourCardImage img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.GropTourCardOverlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 40px 15px 20px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.4),
        transparent
    );
    text-align: center;
}

.GropTourCardTitle {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0px;
}

.GropTourCardText {
    color: #ddd;
    font-size: 18px;
    margin-bottom: 5px;
}

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

.GropTourCardButton {
    display: inline-block;
    padding: 1px 15px;
    border-radius: 5px;
    background: #4a4a4a;
    border: 1px solid #000;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
    flex: 1;
}

.GropTourCardButton:hover {
    background: #fff;
    color: #000;
}

/* Book Now button special style */
.GropTourCardButtonPrimary {
    background: linear-gradient(to top right, #02d77b 0%, #0fbcc3 100%);
    border: 1px solid transparent;
    color: #fff;
}

.GropTourCardButtonPrimary:hover {
    background: #fff;
    color: #07cc98;
    border: 1px solid #07cc98;
}

/* Ribbon */
.GropTourCardRibbon {
    position: absolute;
    top: 20px;
    left: 8px;
    background: #07cc97c0;
    color: #fff;
    padding: 4px 12px;
    font-weight: 600;
    font-size: 13px;
    z-index: 2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Old Price */
.gt_old_price {
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 12px;
    color: red;
}

/* Actual Price */
.gt_new_price {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* Why Choose US */
.why-choose-us {
    padding: 40px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: #e31e24;
    font-weight: 700;
}

.section-title h2 {
    color: #0b4a8f;
    font-weight: 700;
    display: inline-block;
}

/* Icon Styling */
.feature-item {
    text-align: center;
    position: relative;
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.img-container img {
    max-width: 60px;
    width: 100%;
    object-fit: contain;
}

/* Typography */
.feature-item h4 {
    color: #0b4a8f;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Dashed Line Decoration (Optional) */
@media (min-width: 992px) {
    .feature-item::after {
        content: "";
        position: absolute;
        top: 30%;
        right: -30%;
        width: 50%;
        height: 50px;
        border-top: 2px dashed #ccc;
        border-radius: 50%;
        z-index: -1;
    }

    .feature-item.last-item::after {
        display: none;
    }
}

/* ===============================
   HOME SEARCH REDESIGNED
================================ */

.search_home_redesigned {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Main Container */
.search_home_redesigned_box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 780px;
    background: #ececec;
    border-radius: 60px;
    padding: 0px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Input Field */
.search_home_redesigned_input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 18px;
    padding: 16px 20px 16px 55px;
    border-radius: 60px;
    color: #333;
}

.search_home_redesigned_input::placeholder {
    color: #888;
}

/* Search Icon */
.search_home_redesigned_icon {
    position: absolute;
    left: 22px;
    font-size: 18px;
    color: #7a7a7a;
}

/* Button */
.search_home_redesigned_btn {
    border: none;
    background: #f26419;
    color: #fff;
    padding: 17px 20px;
    border-radius: 60px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search_home_redesigned_btn:hover {
    background: #db5400;
    transform: translateY(-1px);
}

/* home category icon */
/* Container ko scrollable banane ke liye */
.hm_hero_category_wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 0;
    scrollbar-width: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
}

/* Chrome, Safari aur Opera ke liye scrollbar hide karega */
.hm_hero_category_wrapper::-webkit-scrollbar {
    display: none;
}

.hm_hero_category_icons {
    display: flex;
    justify-content: flex-start; /* Icons start se shuru honge */
    gap: 15px;
    flex-wrap: nowrap; /* Icons ko ek hi line mein rakhega */
    padding: 0 15px; /* Side spacing ke liye */
}

.hm_hero_category_icon {
    flex: 0 0 75px;
    height: 75px;
    border-radius: 50%;
    background-color: rgb(0 23 31);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hm_hero_category_icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.hm_hero_category_icon i {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #00e0b8;
}

.hm_hero_category_icon span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
}

/* Testimonial Home */
.testi_wrapper {
    background-color: #f8fafc;
    padding: 40px 0;
    position: relative;
}

.testi_card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testi_card:hover {
    border-color: #10b981;
    transform: translateY(-5px);
}

.testi_wrapper .star_rating {
    color: #fbbf24;
    font-size: 12px;
    margin-bottom: 15px;
}

.testi_wrapper .feedback_text {
    position: relative;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;

    max-height: calc(1.6em * 5); /* 3 lines */
    overflow: hidden;
    padding-right: 80px; /* space for Read More */
}

/* Read More always visible */
.feedback_text span {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 10px;
}

.testi_wrapper .user_profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi_wrapper .user_profile img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.testi_wrapper .user_name {
    font-weight: 700;
    color: #001f3f;
    margin: 0;
    font-size: 0.95rem;
}

.testi_wrapper .user_tag {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
    margin: 0;
}

/* Targeting Swiper Elements safely via parent class */
.testi_wrapper .swiper-pagination-bullet-active {
    background: #10b981 !important;
}

.testi_wrapper .swiper-button-next,
.testi_wrapper .swiper-button-prev {
    color: #001f3f !important;
    transform: scale(0.7);
    /* Chote arrows for clean look */
}

/* Stylish Video Home  */
.video_card_section_wrapper {
    padding: 40px 0;
    background-color: #e7f0fa;
    overflow: hidden;
}

.video_card_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.video_card_swiper {
    padding: 40px 0 60px 0 !important;
}

.video_card_item {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
    /* Screenshot wala tilted effect */
    transform: rotate(-3deg);
}

/* Har alternate card ko opposite rotate karenge for dynamic look */
.swiper-slide-even .video_card_item {
    transform: rotate(3deg);
}

.video_card_item:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.15);
    z-index: 10;
}

.video_card_video_wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    /* Square cards like screenshot */
    overflow: hidden;
    background: #001f3f;
}

.video_card_video_wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video_card_content {
    padding: 20px 10px;
}

.video_card_title {
    color: #001f3f;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.video_card_link {
    color: #475569;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.video_card_link:hover {
    color: #10b981;
}

/* Custom Swiper Dots */
.video_card_section_wrapper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}

.video_card_section_wrapper .swiper-pagination-bullet-active {
    background: #10b981 !important;
    width: 25px;
    border-radius: 5px;
}

/* abouts us page */

.new_about_us_section {
    padding: 70px 0;
    background-color: #ffffff;
}

/* Image styling with direct colors */
.new_about_us_img_container {
    position: relative;
    padding-right: 20px;
}

.new_about_us_image {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.new_about_us_backdrop {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 70%;
    height: 80%;
    background-color: #15803d;
    /* Green */
    opacity: 0.1;
    border-radius: 12px;
    z-index: 1;
}

.new_about_us_exp_box {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: linear-gradient(to top right, #02d77b 0%, #0fbcc3 100%);
    box-shadow: 0 0 12px rgb(7 190 194);
    /* Royal Blue */
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.new_about_us_exp_num {
    font-size: 2rem;
    font-weight: 800;
}

.new_about_us_exp_txt {
    font-size: 0.8rem;
    line-height: 1.2;
    font-weight: 500;
}

/* Typography with direct colors */
.new_about_us_tagline {
    color: #1d4ed8;
    /* Blue */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
}

.new_about_us_heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    /* Dark Navy */
    margin-bottom: 15px;
}

.new_about_us_highlight {
    font-size: 1.1rem;
    color: #10c0b9;
    /* Green */
    font-weight: 600;
    margin-bottom: 15px;
}

.new_about_us_para {
    color: #475569;
    /* Slate Gray */
    line-height: 1.6;
}

/* Stats Cards */
.new_about_us_card {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #10c0b9;
    transition: 0.3s;
}

.new_about_us_card:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.new_about_us_card_val {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0ad486;
    margin-bottom: 0;
}

.new_about_us_card_lab {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0;
}
/* Timeline */
.timeline {
    background: #f7f8f5a3;
    padding: 40px 0;
    position: relative;
}

.time_line_heading {
    margin-bottom: 60px;
}

/* Heading styling */

.timeline h2 {
    font-family: "Cinzel Decorative", serif;
    color: #0b3b91;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* Vertical line centered exactly */
.timeline::before {
    content: "";
    position: absolute;
    top: 200px;
    left: 50%;
    width: 4px;
    height: calc(100% - 300px);
    background: linear-gradient(
        135deg,
        rgb(7, 204, 152) 0%,
        rgba(237, 174, 58, 0.69) 100%
    );
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 1;
}

/* Timeline items */
.timeline-item {
    position: relative;
    margin-bottom: 80px;
}

/* ✅ Dot perfectly on the line */
.timeline-item .timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 3px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgb(7 190 194);
    z-index: 3;
    background: linear-gradient(to top right, #02d77b 0%, #0fbcc3 100%);
}

/* Card styling */
.timeline-card {
    background: linear-gradient(
        145deg,
        rgba(1, 204, 148, 0.08) 0%,
        rgba(1, 204, 148, 0.18) 45%,
        #ffffff 100%
    );
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 24px;
    position: relative;
    z-index: 2;
}

.timeline-card h4 {
    color: #00c6ab;
    margin-bottom: 8px;
    font-weight: 700;
}

.about_us_info_img_wapper {
    position: sticky;
    top: 0;
}

.about_us_info_content_wapper h4 {
    color: #0b3b91;
    font-weight: 700;
    margin-top: 20px;
}

/* services */
.about_us_service_section {
    padding: 40px 0;
    background: #f8f9fb;
}

.about_us_service_title {
    text-align: center;
    margin-bottom: 40px;
}

.about_us_service_title h2 {
    font-size: 32px;
    font-weight: 700;
}

.about_us_service_card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.about_us_service_card i {
    font-size: 32px;
    color: #00c6ab;
    margin-bottom: 15px;
}

.about_us_service_card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.about_us_service_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ✅ Responsive fix */
@media (max-width: 767px) {
    .timeline::before {
        left: 12px;
    }

    .timeline-item .timeline-dot {
        left: 12px;
        transform: translateY(-50%);
    }

    .timeline-card {
        margin-left: 40px;
    }
}

/* about us page ended */

/* blog page */
.blog_hero_sec_nw {
    position: relative;
    padding: 120px 0;
    /* background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470"); */
    background-size: cover;
    background-position: center;
}

.blog_hero_sec_nw_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(4, 71, 120, 0.85),
        rgba(230, 15, 20, 0.65)
    );
}

.blog_hero_sec_nw_content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.blog_hero_sec_nw_title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.blog_hero_sec_nw_text {
    font-size: 18px;
    color: #f1f1f1;
    line-height: 1.6;
}

/* responsive */

@media (max-width: 768px) {
    .blog_hero_sec_nw {
        padding: 80px 0;
    }

    .blog_hero_sec_nw_title {
        font-size: 32px;
    }

    .blog_hero_sec_nw_text {
        font-size: 15px;
    }
}

/* righ side */

.blog-category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: linear-gradient(
        145deg,
        rgba(1, 204, 148, 0.08) 0%,
        rgba(1, 204, 148, 0.18) 45%,
        #ffffff 100%
    );
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.blog-category-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.blog-category-item:hover::before {
    transform: scaleY(1);
}

.blog-category-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(1, 175, 209, 0.15);
}

/* Category Post Image */
.category-post-image {
    width: 100px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    height: 70px;
}

.category-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-category-item:hover .category-post-image img {
    transform: scale(1.1);
}

.category-post-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(198, 255, 105, 0.3) 0%,
        rgba(69, 222, 236, 0.3) 100%
    );

    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-category-item:hover .category-post-image::after {
    opacity: 1;
}

/* Category Post Info */
.category-post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-post-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-category-item:hover .category-post-info h4,
.blog-category-item:hover .category-post-info {
    color: #07cc98;
}

.category-post-info {
    font-size: 15px;
    margin-top: 10px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Post Date */
.post-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #6c757d;
}

.post-date i {
    color: #07cc98;
    font-size: 0.75rem;
}

.post-date span {
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .blog-categories-grid {
        padding: 10px;
        gap: 10px;
    }

    .blog-category-item {
        padding: 8px;
    }

    .category-post-image {
        width: 60px;
        height: 60px;
    }

    .category-post-info h4 {
        font-size: 0.9rem;
    }

    .post-date {
        font-size: 0.75rem;
    }
}

.blogs_page_cta_features {
    background: linear-gradient(
        145deg,
        rgba(1, 204, 148, 0.08) 0%,
        rgba(1, 204, 148, 0.18) 45%,
        #ffffff 100%
    );
    border-radius: 12px;
    padding: 10px;
}

.blogs_page_feature_item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.blogs_page_feature_item:last-child {
    margin-bottom: 0;
}

.blogs_page_feature_icon {
    width: 20px;
    height: 20px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #07cc98 0%, #edae3ab0 100%);
}

.blogs_page_feature_text {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

/* blogs hero */

.tour_details_hero_section {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: flex-end;
    color: #fff;
    font-family: sans-serif;
}

.tour_details_hero_section_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 97%), rgb(0 0 0 / 0%));
}

.tour_details_hero_section_content {
    position: relative;
    z-index: 2;
    bottom: -20px;
}

.tour_details_hero_section_tag {
    background: #f5f5f552;
    color: #fff;
    font-weight: 700;
    padding: 6px 20px;
    font-size: 14px;
    position: relative;
    bottom: 260px;
    border-radius: 25px;
    border: 1px solid #ffffffb3;
}

.tour_details_hero_section_meta {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    font-size: 18px;
    justify-content: space-between;
    display: flex;
    gap: 30px;
    margin-top: 25px;
    font-size: 18px;
}

.tour_details_hero_section_meta i {
    margin-right: 5px;
}

.tour_details_hero_section_title {
    font-size: 40px;
    font-weight: 700;
    margin: 8px 0 5px;
}

.tour_details_hero_sectio_btn_bottom {
    display: inline-block;
    padding: 6px 25px;
    background-color: #03c1b9;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 36px;
}

@media (max-width: 768px) {
    .tour_details_hero_section_title {
        font-size: 21px;
        font-weight: 500;
    }

    .tour_details_hero_section_meta {
        font-size: 14px;
    }

    .tour_details_hero_section {
        height: 420px;
    }

    .tour_details_hero_section_tag {
        bottom: 75px;
    }
}

/* ------------------------------------------------------------------- */
/* Swiper Nav */
.eBrochure_home_section .container {
    position: relative !important;
}

.eBrochure_home_section .swiper-button-next,
.eBrochure_home_section .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    top: 55%;
}

.eBrochure_home_section .swiper-button-next:after,
.eBrochure_home_section .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.eBrochure_home_section .swiper-button-next {
    right: -6px;
}

.eBrochure_home_section .swiper-button-prev {
    left: -6px;
}
/* upcoming swapeer buttons */
.swapper_container {
    position: relative !important;
}

.swapper_container .swiper-button-next,
.swapper_container .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    top: 65%;
}

.swapper_container .swiper-button-next:after,
.swapper_container .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.swapper_container .swiper-button-next {
    right: -6px;
}

.swapper_container .swiper-button-prev {
    left: -6px;
}

/* goldencard swapper warpper */
.goldencard_container {
    position: relative !important;
}

.goldencard_container .swiper-button-next,
.goldencard_container .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    top: 61%;
}

.goldencard_container .swiper-button-next:after,
.goldencard_container .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.goldencard_container .swiper-button-next {
    right: -6px;
}

.goldencard_container .swiper-button-prev {
    left: -6px;
}

/* Mountain Special Swapper */

.mountain_special_container {
    position: relative !important;
}

.mountain_special_container .swiper-button-next,
.mountain_special_container .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    top: 61%;
}

.mountain_special_container .swiper-button-next:after,
.mountain_special_container .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.mountain_special_container .swiper-button-next {
    right: -6px;
}

.mountain_special_container .swiper-button-prev {
    left: -6px;
}

.new_home_cat_sec .container {
    position: relative !important;
}

.new_home_cat_sec .swiper-button-next,
.new_home_cat_sec .swiper-button-prev {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    top: 42%;
}

.new_home_cat_sec .swiper-button-next:after,
.new_home_cat_sec .swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.new_home_cat_sec .swiper-button-next {
    right: 10px;
}

.new_home_cat_sec .swiper-button-prev {
    left: 10px;
}

@media (max-width: 768px) {
    .eBrochure_home_section .swiper-button-next {
        right: 8px;
    }

    .eBrochure_home_section .swiper-button-prev {
        left: 8px;
    }

    .swapper_container .swiper-button-next {
        right: 6px;
    }

    .swapper_container .swiper-button-prev {
        left: 6px;
    }

    .goldencard_container .swiper-button-next {
        right: 6px;
    }

    .goldencard_container .swiper-button-prev {
        left: 6px;
    }

    .mountain_special_container .swiper-button-next {
        right: 6px;
    }

    .mountain_special_container .swiper-button-prev {
        left: 6px;
    }

    .new_home_cat_sec .swiper-button-next {
        right: 6px;
        top: 38%;
    }

    .new_home_cat_sec .swiper-button-prev {
        left: 6px;
        top: 38%;
    }
}

/* ----------------------------------------------------------------- */

/* Common Card For All Category Tours */
.cat_all_card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
    margin-bottom: 15px;
}

.cat_all_card_img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cat_all_card:hover .cat_all_card_img {
    transform: scale(1.08);
}

.cat_all_card_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.2),
        transparent
    );

    color: #fff;
}

.cat_all_card_title {
    font-size: 25px;
    font-weight: 700;
    margin: 0;
}

.cat_all_card_price {
    font-size: 16px;
    margin-top: 5px;
    opacity: 0.9;
    margin-bottom: 0px;
}

/* card for home */
.hm_advisor_section {
    padding: 40px 0;
    background: #f8fafc;
}

.hm_advisor_card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 15px;
    text-align: left;
    height: 100%;
    transition: all 0.3s ease;
}

.hm_advisor_card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.hm_advisor_icon {
    font-size: 38px;
    color: #04cb9b;
    margin-bottom: 15px;
}

.hm_advisor_title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

.hm_advisor_text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Home bottom lef offer cards */

.offer_window_wrapper {
    z-index: 11;
    bottom: 30px;
    left: 15px;
}

.offer_window_card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 250px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

    animation: vibrateCard 1.2s infinite;
}

.offer_window_image {
    width: 100%;
}

.offer_window_close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    font-size: 20px;
    cursor: pointer;
}

/* vibration */

@keyframes vibrateCard {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    50% {
        transform: translateX(3px);
    }

    75% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}

/* dp filter  */
.dp_fliter_new_wrapper {
    position: relative;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

.dp_fliter_new_scroll {
    display: flex;
    align-items: center;
    overflow-x: auto;
    flex: 1;
    gap: 8px;
    padding-right: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.dp_fliter_new_scroll::-webkit-scrollbar {
    display: none;
}

.dp_fliter_new_item {
    flex-shrink: 0;
}

.dp_fliter_new_btn {
    white-space: nowrap;
    border: 1.5px solid #dde1e7;
    border-radius: 50px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition:
        border-color 0.2s,
        background 0.2s;
    user-select: none;
    outline: none;
}

.dp_fliter_new_btn:hover {
    border-color: #888;
}

.dp_fliter_new_btn.dp_fliter_new_active {
    border-color: #222;
    background: #f0f0f0;
}

.dp_fliter_new_chevron {
    font-size: 10px;
    transition: transform 0.2s;
    display: inline-block;
}

.dp_fliter_new_btn.dp_fliter_new_open .dp_fliter_new_chevron {
    transform: rotate(180deg);
}

.dp_fliter_new_reset {
    white-space: nowrap;
    color: #e53935;
    font-weight: 600;
    font-size: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px 6px 14px;
    flex-shrink: 0;
    outline: none;
}

.dp_fliter_new_reset:hover {
    opacity: 0.7;
}

.dp_fliter_new_arrow_btn {
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 20px;
    color: #555;
    padding: 0 4px;
    flex-shrink: 0;
    height: 36px;
    display: flex;
    align-items: center;
    background: none;
}

.dp_fliter_new_arrow_btn:hover {
    color: #111;
}

/* KEY FIX: Dropdown is position:fixed, appended to body — not clipped by overflow */
.dp_fliter_new_dropdown {
    position: fixed;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
    min-width: 215px;
    z-index: 99999;
    padding: 8px 0;
    display: none;
}

.dp_fliter_new_dropdown.dp_fliter_new_show {
    display: block;
    animation: dp_fadeIn 0.15s ease;
}

@keyframes dp_fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dp_fliter_new_dropdown_item {
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.12s;
}

.dp_fliter_new_dropdown_item:hover {
    background: #f5f5f5;
}

.dp_fliter_new_dropdown_item.dp_fliter_new_selected {
    font-weight: 600;
    color: #111;
}

.dp_check {
    color: #222;
    font-size: 13px;
    visibility: hidden;
    flex-shrink: 0;
    width: 14px;
}

.dp_fliter_new_selected .dp_check {
    visibility: visible;
}

.dp_fliter_new_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.dp_fliter_new_tag {
    background: #222;
    color: #fff;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dp_fliter_new_tag_remove {
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
}

.dp_fliter_new_tag_remove:hover {
    opacity: 0.7;
}

@media (max-width: 576px) {
    .dp_fliter_new_wrapper {
        padding: 8px 10px;
    }

    .dp_fliter_new_btn {
        font-size: 13px;
        padding: 5px 12px;
    }

    .dp_fliter_new_reset {
        font-size: 13px;
    }
}

/* Mobile scroll for Internatianl and Domestic */
@media (max-width: 767px) {
    .mobile-scroll-wrapper {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 0px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .mobile-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

    .scroll-card {
        flex: 0 0 70%;
        max-width: 70%;
        scroll-snap-align: start;
    }
}

@media (max-width: 767px) {
    .offer_window_card {
        max-width: 150px;
    }

    .offer_window_wrapper {
        bottom: 60px;
    }
    .tour_card_img_wrapper {
        height: 315px;
    }
    .hm_hero_category_icon{
        flex: 0 0 50px;
        height: 50px;
    }
    .hm_hero_category_icon i {
        font-size: 1.0rem;
    }
    .hm_hero_category_icon span {
        font-size: 0.5rem;
    }
    .hm_hero_category_wrapper {
        bottom: 30px;
    }
}
