:root {
    --theme_blue_dark_1: #0B0B4F;
    --theme_blue_dark_2: #1A0F5E;
    --theme_blue_dark_3: #101260;
    --theme_blue_dark_4: #1d217b;

    --theme_btn_color: #0d6efd;

    --theme_blk_custom: #272727;

    --theme_blue_avg_1: #1E2A8A;
    --theme_blue_avg_2: #0c63e4;
    --white_color: #fff;

    --grey_color: #555555;
    --grey_color2: #616161;
    --grey_color3: #f8f6f3;

    --theme_blk_dark_1: #353535;
    --theme-gold: #c19d68;
    --theme-gold2: #b79a65;
    --theme-gold3: #c29d68;

    --theme_light_wt: #ffffff8a;
}


.align_items_center {
    align-items: center;
}

* {
    font-family: "Open Sans", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.gold_heading {
    color: var(--theme-gold) !important;
    font-size: 18px;
    text-transform: uppercase;
}

.family_system_ui {
    font-family: system-ui !important;
}



.ibanner_btn {
    position: relative;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;

    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    border: 1px solid var(--theme-gold) !important;

    padding: 15px 28px;
    font-size: 19px;
    color: #fff;
    margin-top: 1.2rem;
    font-family: lora;
    border-radius: 8px;
}

.ibanner_btn2 {
    position: relative;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;

    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    border: 1px solid var(--theme-gold) !important;

    padding: 8px 28px;
    font-size: 19px;
    color: #fff;
    margin-top: 0.5rem;
    font-family: lora;
    border-radius: 8px;
}

/* background layer */
.ibanner_btn2 ::before,
.ibanner_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    /* border: 1px solid var(--theme-gold); */
    color: var(--theme-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    z-index: -1;
}

/* hover */
.ibanner_btn2:hover::before,
.ibanner_btn:hover::before {
    transform: scaleX(1);
}

/* text color change */
.ibanner_btn2:hover,
.ibanner_btn:hover {
    color: var(--theme-gold);
    border: 1px solid var(--theme-gold) !important;
}

.gold_span {
    color: var(--theme-gold);
}

a {
    text-decoration: none;
    color: #000;
}



/* welcome to stay royal section start  */
.greypara {
    font-size: 19px;
    color: var(--grey_color);
    margin-bottom: 3rem;
}

.flex_icons {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
    gap: 15px;
    min-height: 102px;
}

.flex_icons ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 12px;
    /* #gap: 15px; */
    /* #list-style-type: none; */
    margin-bottom: 0;
}

.flex_icons ul li {
    font-size: 13px;
    margin-right: 27px;
}

.flex_icons ul li img {
    width: 20px;
}

.room_review_span {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    background-color: #fff;
    padding: 7px 15px;
    border-radius: 10px;
    font-size: 14px;
}

.room_rating_span {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background-color: #fff;
    padding: 7px 15px;
    border-radius: 10px;
    font-size: 14px;
}

.room_price_span {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 3px;
}

.roompricespanlink {
    padding: 10px;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.room_rating_span i,
.best_rated_span i {
    color: #f7b00a;
}

.best_rated_span {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 1;
    background-color: #fff;
    padding: 7px 15px;
    border-radius: 10px;
    font-size: 14px;
}

#vmh_btn_div {
    /* #border: 1px solid; */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.wtsr_card {
    margin-bottom: 0.5rem;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.view_details_span {
    position: absolute;
    bottom: 0px;
    /* adjust */
    left: -160px;
    /* hidden */
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    color: #fff;
    padding: 12px 25px;
}

.wtsr_card:hover .view_details_span {
    left: 0px;
    /* visible position */
}


.wtsr_card_mid span {
    color: var(--grey_color);
    font-size: 14px;
}

.wtsr_card_mid span i {
    margin-right: 5px;
}

.flex_icons span {
    font-size: 15px;
}

.flex_icons span img {
    width: 20px;
}

.wtsr_card_mid {
    background-color: #fff;
    padding: 20px 9px 0px 10px;
}

.wtsr_card_mid h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    color: var(--theme-gold);
}

.wtsr_card_mid p {
    font-family: "Cormorant Garamond";
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.wtsr_card_mid p span {
    font-size: 13px;
}


.wtsr_section {
    /* #background-color: var(--grey_color3); */
    padding: 3rem 0 1rem;
}

.wtsr_card_top {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.wtsr_card_top img {
    width: 100%;
    border-radius: 15px 15px 0 0;
}

.wtsr_card_top .package_span {
    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    color: #fff;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: Lora;
    padding: 7px 25px 6px;
    border-radius: 7px;
}

.wtsr_card_bot {
    padding: 5px 10px;
    /* border-top: 1px solid rgba(30, 30, 30, .1);*/
    background-color: #c29d6836;
    border-radius: 0 0 15px 15px;
}

.wtsr_card_bot_in {
    border: 1px solid #00000057;
    padding: 5px 15px;
    border-radius: 10px;
}

.flex_wtsr_bot {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    /* gap: 15px; */
    margin: 6px 0;
    align-items: center;
}

.flex_wtsr_bot span img {
    width: 23px;
}

.flex_wtsr_bot p:nth-last-child(1) {
    font-size: 12px;
    margin-bottom: 5px;
}

.wcb_flex {
    display: flex;
    justify-content: space-between;
}

.justify_flex_end {
    justify-content: flex-end;
}

.wcb_flex_left ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.wcb_flex_left i {
    font-size: 12px;
    color: #f7b00a;
}

.wcb_flex_right p {
    margin-bottom: 5px;
    font-size: 19px;
    color: var(--grey_color);
}

.status_available {
    color: green !important;
}

.wtsr_status {
    margin-bottom: 1rem;
    font-family: lora;
    color: var(--grey_color2);
}

/* welcome to stay royal section end  */


/* ettr_section start */

.ettr_section {
    /* # background: linear-gradient(135deg, var(--theme_blue_dark_1), var(--theme_blue_avg_1), var(--theme_blue_dark_2)); */
    /* border: 2px solid red; */
    /* height: 100vh; */
    padding: 0rem 0 0;
}

.ettr_section h2 {
    /* # color: var(--white_color); */
    text-align: center;
    margin-bottom: 1.2rem;
    margin-top: 1.2rem;
    font-size: 35px;
    font-weight: 700;
}

.ettr_section p {
    /* #color: var(--white_color); */
    text-align: center;
    font-size: 14px;
}

.ettr_section .shd_p1 {
    font-size: 19px;
}

.ettr_card {
    /* border: 1px solid #fff; */
    padding: 20px 5px;
    height: 155px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 1rem;
    border-radius: 20px;
    justify-items: center;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.ettr_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--theme_blue_avg_2);
    z-index: -1;
    transition: width 0.4s ease;
}

.ettr_card:hover::before {
    width: 100%;
    color: #fff;
}

.ettr_card:hover p {
    color: #fff;
}

.esd_flex_card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px 0;

}

.ettr_ctop {
    text-align: center;
    /* border: 1px solid; */
    /* height: 16vh; */
    position: relative;
    margin-bottom: 15px;
    height: auto;
    width: fit-content;
    padding: 15px;
    background-color: bisque;
    border-radius: 100%;
}

.ettr_card::after {
    content: "";
    width: 20%;
    height: 3px;
    background: var(--theme-gold);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
}

.ettr_ctop img {
    filter: brightness(0);
    max-width: 35px
}

.section_heading_div {
    margin-bottom: 3rem;
}

/* ettr_section end */



/* testimonials section start */
.mySlider {
    padding: 30px 0 10px;
}

.swiper-slide {
    /* background: #fff; */
    /* text-align: center; */
    /* border-radius: 10px; */
    /* border: 2px solid red; */
}

.swiper_card_in {
    background: transparent;
    cursor: pointer;
    /* overflow: hidden; */
    z-index: 1;

    padding: 20px;
    border-radius: 13px;
    position: relative;
    background-color: #fff;
}


/* background layer */
.swiper_card_in::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: #fff; */
    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    border: none;
    color: #fff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

/* hover */
.swiper_card_in:hover::before {
    transform: scaleX(1);
}

/* text */
.swiper_card_in:hover p {
    color: #fff;
}

.swiper_card_in:hover h5 {
    color: #fff;
}

/* stars icon */
.swiper_card_in:hover .flxstarimgL i {
    color: #fff;
}

.swiper_card_in:hover .flxstarimgR {
    color: #fff;
}

.swiper_card_in:hover .diamond_div {
    background-color: var(--theme-gold3);
}





.swiper_card_bt {
    /* border: 2px solid red; */
    padding: 40px 0 0;
}

.swiper_card_bt .white_p_ts {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0px;
}

.swiper_card_bt .gold_p_ts {
    color: var(--theme-gold);
    font-size: 18px;
}

.swiper_card_in p {
    font-style: italic;
    font-size: 17px;
    color: var(--grey_color);
}

.swiper_card_in .diamond_div {
    width: 30px;
    height: 30px;
    background-color: #fff;
    transform: rotate(45deg);
    position: absolute;
    bottom: -15px;
    border-radius: 5px 0;
}


.tsms_btns {
    position: relative;
    display: flex;
    gap: 15px;
    height: stretch;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 50px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    /* background: #fff; */
    width: 57px;
    height: 57px;
    position: unset;
    border-radius: 10px;
    border: 1px solid var(--theme_light_wt);
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); */
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
}

.testimonials_section_in {
    /* height: 100vh; */
    padding: 90px 0 90px;
    background-image: url(../images/index/2-slider.webp);
    position: relative;
    z-index: 1;
}

.testimonials_section_in::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.tsms_content {
    padding: 10px 10px 10px 0;
}



.tsms_content h2 {
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.tsms_content .tsms_wp {
    color: #fff;
    font-size: 19px;
}

.border_bottom_testimonils {
    border-bottom: 1px solid var(--theme_light_wt);
    ;
}

.flxstarimg {
    display: flex;
    justify-content: flex-end;
}

.flxstarimgL i {
    color: var(--theme-gold);
}

.flxstarimgR {}

/* testimonials section end */



/* faq_section start */
#faq_section {
    /* border: 1px solid; */
    padding: 4rem 0;
}

.faq_img_div {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 11px;
    height: 100%;
}

.faq_img_div img {
    width: 100%;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    height: 100%;
    object-fit: cover;
}

.accordion-button::after {
    display: none;
}

/* Default (closed) → + */
.accordion-button .faq_icon::before {
    content: "";
}

.accordion-button:not(.collapsed) {
    /* background-color: var(--white_color); */
    color: var(--theme_blue_avg_2);
}

/* Open state → - */
.accordion-button:not(.collapsed) .faq_icon::before {
    content: "";
    display: block;
    width: 15px;
    height: 3px;
    background-color: var(--theme-gold);
}

.faq_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 19px;
    font-weight: 600;
    padding: 18px 20px;
}

.faq_icon {
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.accordion-body {
    border-left: 3px solid var(--theme-gold);
    font-size: 19px;
    color: var(--grey_color);
}

.accordion-item {
    border: none;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.faq_section_heading h2 {
    color: var(--theme-gold2);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    font-size: 35px;
}

/* faq_section end */


.index_card_slider {
    position: relative;
    overflow: hidden;
    min-height: 530px
}

.index_card_track {
    display: flex;
    transition: transform 0.5s ease;
}


.index_card_item {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 10px;
    box-sizing: border-box;
}

/* buttons */
.slider_btn {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    background: #00000091;
    color: #fff;
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    z-index: 2;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.slider_prev {
    left: 10px;
}

.slider_next {
    right: 10px;
}

.location_flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.locations_tabs {
    border: 1px solid lightgrey;
    border-radius: 10px;
    padding: 10px 15px;
    background-color: #fff;
}

.locations_tabs.active {
    color: #fff;
    background-color: var(--theme-gold);

}

.index_card_track {
    position: relative;
}

/* overlay */
.index_card_track.loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 605px;
    height: 100%;
    background: rgb(217 217 217 / 10%);
    /* overlay color */
    z-index: 5;
}

/* loader text */
.index_card_track.loading::before {
    content: "Loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    z-index: 6;
}

.tsi_strip_flex {
    display: flex;
    background-color: #fff;

    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 15px;
    flex-wrap: wrap;
    /* 🔥 important */
}

.tsi_strip_card {
    width: 25%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    position: relative;
}

/* border */
.tsi_strip_card:not(:last-child) {
    border-right: 1px solid #eee;
}

.tsi_icons {
    width: 50px;
    height: 50px;
    background-color: #c8a96a;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tsi_icons i {
    font-size: 18px;
    color: #fff;
}

.tsi_strip_card h5 {
    margin: 0;
}

.tsi_strip_card p {
    margin: 2px 0 0;
    color: #777;
    text-align: left;
}

.swiper_cart_top {
    display: flex;
    gap: 20px;
}