.custom_header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.custom_header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

/* Add these styles when header becomes sticky */
.custom_header.sticky {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

/* Optional: Add animation */
.custom_header.sticky {
    animation: slideDown 0.3s ease;
}

.property_heading {
    padding: 10px 20px 0px !important;
    font-size: 18px;
    font-weight: 700;
    color: #c19d68;
    pointer-events: none;
    /* hover/click disabled */
}

.property_heading span {
    cursor: default;
}

#bookyourstay {
    background-color: #1a0f5e;
    color: #fff;
    padding: 10px 15px;
    border-radius: 7px;
    font-size: 16px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.whatsapp_float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.whatsapp_float:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
}

.otp-card {
    /* width: 380px; */
    /* margin: 80px auto; */
    padding: 30px 10px;
    background: #fff;
    border-radius: 14px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
    text-align: center;
}

.resend-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.otp-header h2 {
    margin-bottom: 8px;
    font-size: 26px;
    color: #222;
}

.otp-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.otp-header span {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

.otp-container {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    gap: 10px;
}

.otp-box {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border: 1px solid grey;
    border-radius: 8px;
    outline: none;
    transition: 0.2s;
    background: #fafafa;
}

.otp-box:focus {
    border-color: #6c5ce7;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

.otp-timer {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
}

#timer {
    font-weight: bold;
    color: #6c5ce7;
}

.otp-btn {
    width: 100%;
    padding: 12px;
    background: #0b0b4f;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.otp-btn:hover {
    background: #5947d6;
}

.otp-footer {
    margin-top: 15px;
    font-size: 13px;
    color: #666;
}

.resend-btn {
    border: none;
    background: none;
    color: #6c5ce7;
    cursor: pointer;
    font-weight: bold;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 1rem;
}

body.no-scroll {
    overflow: hidden;
    height: 100%;
}

#newloginform {
    display: flex;
    max-width: 900px;
    /* margin: 40px auto; */
    /* background: #fff; */
    /* border-radius: 20px; */
    /* overflow: hidden; */
    /* box-shadow: 0 10px 35px rgba(0, 0, 0, .08); */
    width: 100%;
    max-height: 90vh;
    background: #fff;
    border-radius: 12px;
    box-sizing: border-box;
    position: relative;
    margin: auto;
    overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

#newloginformimgpart {
    width: 48%;
    overflow: hidden;
}

#newloginformimgpart img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#newloginformcontentpart {
    width: 52%;
    padding: 40px;
}

.stayroyallogo {
    width: 110px;
    margin-bottom: 15px;
}

.newloginformheading {
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    font-family: auto;
}

.newloginformdesc {
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

.newloginformnumberbox {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.newloginformcountrycode {
    width: 90px;
    height: 52px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 10px;
}

.newloginformmobileinput {
    flex: 1;
    height: 52px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 15px;
    width: 100%;
}

.newloginformmobileinput:focus,
.newloginformcountrycode:focus {
    outline: none;
    border-color: #0d6efd;
}

.newloginformsubmitbtn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 10px;
    background: #0b0b4f;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 1rem;
}

.newloginformsubmitbtn:hover {
    background: #101047;
}

.newloginformterms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.newloginformtermsicon {
    color: #0b0b4f;
    font-size: 18px;
    margin-top: 2px;
    background-color: #2584d32b;
    width: 45px;
    border-radius: 25px;
    align-content: center;
    height: 40px;
    text-align: center;
}

.newloginformtermstext {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

.newloginformtermstext a {
    color: #0d6efd;
}

.newregisterformtermstext a {
    color: #0d6efd;
}

.newregisterformtermstext p {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.newloginformdivider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.newloginformdivider span {
    background: #fff;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    color: #6c757d;
}

.newloginformdivider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
}

.newloginformotpinfo {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}

.newloginformotpicon {
    color: #0b0b4f;
    font-size: 20px;
    margin-top: 2px;
    background-color: #2584d32b;
    width: 45px;
    border-radius: 25px;
    align-content: center;
    height: 40px;
    text-align: center;
}

.newloginformotptext {
    margin: 0;
    font-size: 14px;
    color: #555;
}

#newregisterformcontentpart {
    width: 100%;
    padding: 0px;
}

.newregisterbackbtn {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 20px;
    font-weight: 600;
    justify-content: space-between;
}

.newregisterrow {
    display: flex;
    gap: 15px;
}

.newregisterfield {
    width: 100%;
    /* margin-bottom: 18px; */
}

.newregisterlabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.newregisterinput,
.newregisterselect {
    width: 100%;
    height: 52px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 15px;
}

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

.newregistercountrycode {
    width: 90px;
    height: 52px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 10px;
}

.newregistermobileinput {
    flex: 1;
    height: 52px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 15px;
}

.newregisterinput:focus,
.newregisterselect:focus,
.newregistercountrycode:focus,
.newregistermobileinput:focus {
    outline: none;
    border-color: #0d6efd;
}

.newregistersubmitbtn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 10px;
    background: #0b0b4f;
    color: #fff;
    font-weight: 600;
}

.newregisterfloatinggroup {
    position: relative;
    margin-bottom: 18px;
}

.newregisterinput {
    width: 100%;
    height: 52px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 15px;
}

.newregisterinput:focus+.newregisterfloatinglabel,
.newregisterinput:not(:placeholder-shown)+.newregisterfloatinglabel {
    top: -10px;
    font-size: 12px;
    color: #0d6efd;
    font-weight: 600;
}

.floating-select:focus-visible+.newregisterfloatinglabel,
.floating-select.has-value+.newregisterfloatinglabel {
    top: -10px;
    font-size: 12px;
    color: #0d6efd;
    font-weight: 600;
}

.newregisterfloatinglabel {
    position: absolute;
    left: 15px;
    top: 16px;
    background: #fff;
    padding: 0 5px;
    color: #777;
    pointer-events: none;
    transition: all 0.25s ease;
    margin: 0;
}

/* Full Screen Overlay */
#loginCommonModel {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
}

/* Show hone par */
#loginCommonModel.active {
    display: flex;
}

/* Login Form */
#newloginform {
    width: 100%;
    background: #fff;
    border-radius: 12px;

    box-sizing: border-box;
    position: relative;
    margin: auto;

    overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.loginModelClose {
    position: absolute;
    right: 25px;
    top: 20px;
    padding: 4px 10px;
    border: 1px solid #c29d68;
    color: #c29d68;
    border-radius: 20px;
}

:root {
    --theme_blue_dark_1: #1e2a8a;
    --theme_blue_dark_2: #1a0f5e;
    --theme_blue_dark_3: #101260;
    --theme_blue_dark_4: #1d217b;
    --theme_btn_color: #1e2a8a;
    --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, #1e2a8a, #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, #1e2a8a, #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: inherit;
    /* #list-style-type: none; */
    margin-bottom: 0;
    justify-content: space-between;
}

.flex_icons ul li {
    font-size: 13px;
    margin: 0px 5px;
}

.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 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wtsr_card {
    margin-bottom: 0.5rem;
    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;
    left: -160px;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #1e2a8a, #1e2a8a, #1a0f5e);
    color: #fff;
    padding: 12px 25px;
}

.wtsr_card:hover .view_details_span {
    left: 0px;
}

.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;
    height: 100%;
    /* object-fit: cover; */
}

.wtsr_card_top .package_span {
    background: linear-gradient(135deg, #1e2a8a, #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 {
    padding: 0rem 0 0;
}

.ettr_section h2 {
    text-align: center;
    margin-bottom: 1.2rem;
    margin-top: 1.2rem;
    font-size: 35px;
    font-weight: 700;
}

.ettr_section p {
    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: linear-gradient(135deg, #1e2a8a, #1e2a8a, #1a0f5e);
    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_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, #1e2a8a, #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%;
    max-height: 550px;
}

.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: -webkit-inline-box;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    overflow: auto;
    width: 100%;
}

.locations_tabs {
    border: 1px solid lightgrey;
    border-radius: 10px;
    padding: 10px 15px;
    background-color: #fff;
    width: 19%;
    text-align: center;
}

.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;
}

/* header */
/* logo left right line */
.section_heading_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section_heading_logo::before,
.section_heading_logo::after {
    content: "";
    width: 100px;
    height: 1px;
    background: #ccc;
}

.section_heading_logo::before {
    margin-right: 15px;
}

.section_heading_logo::after {
    margin-left: 15px;
}

.section_heading_logo img {
    border-radius: 50%;
    display: block;
}

/* logo left right line */

/* header */
.nav-item .nav-link {
    font-size: 21px;
    font-weight: 400;
    font-family: system-ui;
}

.booking_online_link {
    border: 1px solid;
    text-decoration: none;
    color: var(--theme_blk_custom);
    font-family: lora;
    padding: 17px 10px;
    font-size: 18px;
    border-radius: 7px;
}

.sign_in_link {
    font-size: 17px;
    padding-left: 1rem;
    text-decoration: none;
    color: var(--theme_blk_custom);
    font-family: system-ui;
}

header nav {
    padding: 10px 0 !important;
}

.submenu {
    display: none;
    position: absolute;
    background: #192987;
    padding: 0;
    list-style: none;
    border-radius: 10px;
    min-width: 300px;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.submenu .nav-link {
    font-size: 16px !important;
    color: #fff;
    text-align: left;
}

.has-sub:hover>.submenu {
    display: block;
}

.sec-menu .nav-link {
    border-bottom: 1px solid #7a7a7a66;
    padding: 13px;
}

.submenu .has-sub {
    position: relative;
    border-bottom: 1px solid #7a7a7a66;
    padding: 10px;
}

.submenu .has-sub:last-child {
    border-bottom: none;
}

.submenu.sec-menu {
    top: 58px;
    left: 70%;
}

.nav-item.has-sub {
    position: relative;
}

.submenu {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.has-sub:hover>.submenu {
    opacity: 1;
    visibility: visible;
}


.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding: 10px;
}

.header_logo img {
    width: 80px;
}

.desktop_menu ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop_menu ul li {
    position: relative;
    /* background-color: #fff; */
    padding: 10px;
    border-radius: 3px;
}

.desktop_menu ul li a {
    /* color: #fff; */
}

.submenu_parent {
    padding: 11px 22px 11px !important;
}

.desktop_menu ul li .dm_a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 20px;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sign_btn {
    text-decoration: none;
    font-size: 20px;
    color: #111;
    font-weight: 500;
}

.menu_toggle {
    display: none;
    border: none;
    background: none;
    font-size: 26px;
}

.mega_menu {
    position: absolute;
    top: 100%;
    left: 0;
    gap: 0px !important;
    min-width: 300px;
    /* background: #192987; */
    background: #fff;
    align-items: normal !important;
    padding: 10px 5px !important;
    display: none !important;
    flex-direction: column !important;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); */
    box-shadow: 0 9px 12px rgba(0, 0, 0, 0.5);
    border-radius: 3px;
}

.submenu_parent:hover {
    background: #192987;
    color: #fff;
    border-radius: 0;
}

.submenu_parent>a {
    color: black;
}

.submenu_parent:hover>a {
    color: #fff;
}

.mega_parent:hover .mega_menu {
    display: flex !important;
}

.submenu_parent {
    position: relative;
}

.submenu_inner {
    display: none !important;
    position: absolute;
    top: 0;
    left: 100%;
    gap: 0px !important;
    min-width: 230px;
    background: #fff;
    /* background: #192987; */
    /* padding: 15px !important; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 99;
    border-radius: 3px;
    border-bottom: 1px solid #d3d3d326;
}

.submenu_inner li {
    position: relative;
    /* background-color: #fff; */
    padding: 15px 22px 13px !important;
    /* border-radius: 3px; */
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #d3d3d326;
}

.submenu_inner .active_link {
    background-color: #192987;
}

.submenu_inner .active_link a {
    color: #fff;
}

.submenu_inner li:hover {
    background-color: #192987;
}

.submenu_inner li:hover>a {
    color: #fff;
}

/* hover pe show */
.submenu_parent:hover .submenu_inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
}

.desktop_menu ul li .dm_a.active_link {
    color: #1e2a8a;
    font-weight: 600;
}

/* mobile */

.mobile_sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 25px;
    transition: 0.4s;
}

.mobile_sidebar.active {
    left: 0;
}

.mobile_sidebar ul {
    list-style: none;
    padding: 7px 0;
    /* margin-top: 40px; */
}

.mobile_sidebar ul li {
    margin-bottom: 12px;
}

.mobile_sidebar ul li .dm_a {
    text-decoration: none;
    color: #111;
    font-size: 18px;
}

.close_menu {
    border: none;
    background: none;
    font-size: 26px;
}

.menu_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 9998;
}

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

.mobile_dropdown_btn,
.mobile_submenu_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    /* padding: 10px 0; */
}

.mobile_submenu,
.mobile_inner_submenu {
    display: none;
    padding-left: 15px;
}

.mobile_submenu.active,
.mobile_inner_submenu.active {
    display: block;
    /* color: #fff; */
    /* background: #0d6efd; */
    padding: 8px 10px;
    font-weight: 600;
}

.mobile_inner_submenu li {
    margin-bottom: 10px;
}

.mobile_inner_submenu li a {
    color: #111;
    text-decoration: none;
    font-size: 15px;
}

/* active menu */
.mobile_sidebar ul li a.active_link,
.mobile_sidebar ul li.active_link>.mobile_dropdown_btn,
.mobile_sidebar ul li.active_link>.mobile_submenu_btn {
    color: #0d6efd;
    background: #f1f7ff;
    padding: 8px 10px;
    font-weight: 600;
}

.mobile_sidebar ul li a.active_link {
    background: #f1f7ff;
    padding: 8px 10px;
    border-radius: 0px;
    display: inline-block;
    width: 100%;
}

.mobile_sidebar {
    padding: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.mobile_sidebar ul li {
    margin-bottom: 8px;
}

.mobile_dropdown_btn,
.mobile_submenu_btn {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.mobile_dropdown_btn:hover,
.mobile_submenu_btn:hover {
    background: #ececec;
}

.mobile_property_heading {
    margin: 18px 0 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #777;
    letter-spacing: 1px;
}

.mobile_property_heading i {
    width: 22px;
    color: #0d6efd;
}

.mobile_inner_submenu {
    margin-top: 8px;
    padding-left: 10px;
}

.mobile_inner_submenu li a {
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    transition: 0.3s;
    font-size: 15px;
}

.mobile_inner_submenu li a:hover {
    background: #f5f7fb;
    color: #0d6efd;
}

.mobile_sidebar .active_link {
    background: #eef5ff !important;
    color: #0d6efd !important;
    border-radius: 8px;
}

/* header */
/* header */

/* ype_section start */
.ype_section {
    /* border: 1px solid; */
    padding: 4rem 0 4rem;
}

.ype_content {
    padding: 0 30px;
}

.ype_content h2 {
    margin-bottom: 1.2rem;
}

.ype_content p {
    font-size: 19px;
    text-align: justify;
}

/* .ype_content button {
    background: linear-gradient(135deg, #1E2A8A, #1E2A8A, #1A0F5E);
    border: 1px solid var(--theme-gold);
    padding: 15px 28px;
    font-size: 19px;
    color: #fff;
    margin-top: 1.2rem;
} */

.ype_video {
    padding: 20px 20px 0 0;
    width: 100%;
    /* border: 2px solid red; */
}

.ype_video video {
    width: 500px;
}

/* ype_section end */

/* esd_section start */
.esd_section {
    background: linear-gradient(135deg,
            var(--theme_blue_dark_1),
            var(--theme_blue_avg_1),
            var(--theme_blue_dark_2));
    /*padding: 3rem 0 3.5rem;*/
    padding: 20px 0;
}

.esd_heading_div {
    font-size: 25px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(90deg, #f3d98b, #c9a24d, #9f7725);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.esd_card_white {
    /* background-color: var(--white_color); */
    padding: 20px;
    border: 1px solid lightgrey;
    text-align: center;
    border-radius: 15px;
    transition: transform 0.4s ease;
    /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; */
    display: flex;
    align-items: center;
    width: 49%;
    margin-bottom: 5px;
    justify-content: center;
    height: 140px;
}

.esd_card_white>div>i {
    font-size: 30px;
    margin-right: 1rem;
    color: #fff;
}

.esd_card_gold {
    padding: 20px;
    border: 1px solid var(--theme-gold);
    text-align: center;
    border-radius: 15px;
    /* background: linear-gradient(180deg, #e9c56a, #b98a2e); */
    /* color: #ffffff; */
    transition: transform 0.4s ease;
    /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; */
}

.esd_card_gold h3,
.esd_card_white h3 {
    font-size: 21px;
    /* margin-top: 1.1rem; */
    color: #fff;
}

.esd_card_gold p,
.esd_card_white p {
    color: #fff;
    margin-bottom: 10px;
}

.esd_card_white .esdc_num,
.esd_card_gold .esdc_num {
    width: 45px;
    height: 45px;
    /* background: linear-gradient(180deg, #f3d98b, #c9a24d); */
    color: #3a2a12;
    border: 1px solid var(--theme-gold);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.esd_card_white button {
    background: linear-gradient(135deg, #1e2a8a, #1e2a8a, #1a0f5e);
    border: 1px solid var(--theme-gold);
    padding: 9px 16px;
    font-size: 16px;
    border-radius: 8px;
    color: #fff;
}

.esd_card_gold button {
    background: linear-gradient(135deg, #1e2a8a, #1e2a8a, #1a0f5e);
    border: 1px solid var(--theme-gold);
    padding: 9px 16px;
    /* background-color: #fff; */
    font-size: 16px;
    border-radius: 8px;
    color: #fff;
}

.esd_card_gold:hover,
.esd_card_white:hover {
    transform: translateY(-5px);
}

/* esd_section end */

/* our gallery section start */

.our_gallery_section {
    padding: 4rem 0 0;
}

.ogs_heading_div h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.ogs_one {
    /* border: 2px solid red; */
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.ogs_one img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.ogs_one:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.ogs_one:hover .overlay {
    opacity: 1;
}

.zoom_icon {
    color: #fff;
    font-size: 40px;
    /* border: 2px solid #fff; */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.ogs_one:hover .zoom_icon {
    transform: scale(1.1);
}

/* our gallery section end */

/* alies section start */
.custom_slider {
    position: relative;
    overflow: hidden;
}

.slider_view {
    overflow: hidden;
    width: 100%;
}

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

.card_box {
    min-width: calc(100% / 6);
    padding: 10px;
    box-sizing: border-box;
    text-align: -webkit-center;
}

.card_box>div {
    /* background: #eee; */
    /* padding: 40px; */
    height: 70px;
    width: 170px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid grey;
    align-content: center;
}

.card_box>div>img {
    /* width: 100%; */
    /* height: 100%; */
}

/* Buttons */
.prev_btn,
.next_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 2;
}

.prev_btn {
    left: 10px;
}

.next_btn {
    right: 10px;
}

.my_alies_section {
    background-color: #f9f9f9;
    padding: 3rem 0;
}

/* alies section end */

/* index banner section */
.banner_section {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.banner_slider {
    overflow: hidden;
}

.banner_track {
    display: flex;
    transition: transform 0.8s ease;
    height: 600px;
}

.banner_slide {
    min-width: 100%;
    position: relative;
}

/* Image */
.banner_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.banner_slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Content */
.banner_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    text-align: center;
    width: 90%;
    /* border: 2px solid red; */
}

.banner_content .heading01 {
    font-size: 65px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    margin: 1rem 0;
}

.banner_content p {
    margin-bottom: 15px;
    font-size: 23px;
    margin-top: 1rem;
}

.banner_content button {
    padding: 17px 25px;
    background: linear-gradient(135deg, #1e2a8a, #1e2a8a, #1a0f5e);
    border: 1px solid var(--theme-gold);
    cursor: pointer;
    font-family: lora;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

.banner_prev,
.banner_next {
    position: absolute;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 1px solid;
    padding: 10px 20px;
    cursor: pointer;
    bottom: 6rem;
    z-index: 3;
    font-size: 18px;
    border-radius: 7px;
}

.banner_prev,
.banner_next {
    position: static;
}

.banner_buttons {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.banner_stars i {
    color: var(--theme-gold);
    margin: 0 5px;
}

/* index banner section */

/* sfbb_section */
.sfbb_section {
    min-height: 23.5vh;
    padding: 0 2rem;
}

.sfbb_section .container {
    position: relative;
    width: 100%;
}

.sfbb_container_in {
    border-top: 3px solid var(--theme-gold);
    padding: 50px 25px;
    background: linear-gradient(135deg, #1e2a8a, #1e2a8a, #1a0f5e);
    border-radius: 20px;
    margin-top: -1rem;
    left: 0;
    width: 100%;
    position: absolute;
}

.sfbb_form label {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.sfbb_form input,
.sfbb_form select {
    padding: 13px 15px;
}

.sfbb_form button {
    background-color: var(--theme-gold);
    color: #fff;
    text-transform: uppercase;
    padding: 13px 15px;
    border: 1px solid var(--theme-gold);
    width: 100%;
    margin-top: 1rem;
    border-radius: 7px;
}

.align_self_end {
    align-self: end;
}

/* sfbb_section */

/* Wrapper */
.guest-toggle {
    border: 1px solid #ddd;
    padding: 13px 12px 12px;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Dropdown box */
.guest-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 5px;
    padding: 12px;
    display: none;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Show dropdown */
.guest-dropdown.show {
    display: block;
}

/* Row layout */
.guest-row-index {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Buttons */
.guest-control-style button {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #fff;
    color: grey;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1;
}

.guest-control-style button:hover {
    background: #c19d68;
    color: #fff;
    border-color: #c19d68;
}

/* Count number */
.guest-control-style span {
    min-width: 20px;
    text-align: center;
    font-weight: 500;
}

.guest-row-index {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e8e7e7;
    padding-bottom: 12px;
}

.guest-row-index:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.guest-row-index button {
    width: 40px;
    height: 40px;
    border: 1px solid lightgray;
    background: #fff;
    margin: 0 10px;
}

footer {
    /* border: 1px solid green; */
    padding: 3rem 0 3rem 0;
    /* height: 118vh; */
    background-color: #c29d6836;
}

footer .fs_h3 {
    font-size: 18px;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}

footer .fs_h3::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--theme-gold3);
    margin-top: 5px;
}

.use_links {
    padding: 0;
}

.use_links li {
    list-style-type: none;
    margin: 15px 0;
}

.use_links li a {
    font-family: Lora;
    font-size: 18px;
    text-decoration: none;
    color: #000;
}

.fc_details ul {
    list-style-type: none;
    padding: 0;
}

.fc_details ul li {
    font-size: 18px;
    margin: 20px 0;
}

.fc_details ul li i {
    color: var(--theme_blue_dark_3);
}

.fc_rel_div {
    position: relative;
    /*padding: 2rem 1.5rem 2rem;*/
}

.fc_abs_div {
    /* position: static; */
    /*position: absolute;*/
    padding: 20px 0px 0px;
    /* margin-top: -13.5rem; */
    top: -13.5rem;
    left: 0;
    z-index: 3;
    border-radius: 10px;
    /* border: 1px solid gray; */
    /*background-color: #fff;*/
}

.fc_abstop {
    display: flex;
    align-items: center;
}

.fc_abstop h2 {
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 0rem;
}

.fs_gallery {
    display: flex;
    flex-wrap: wrap;
}

.fs_gallery .fsg1 {
    /* border: 1px solid; */
    width: 100%;
    padding: 10px;
}

.fs_gallery .fsg1 img {
    width: 100%;
    border-radius: 10px;
    height: 100px;
}

.fs_form .fc_h4 {
    font-size: 19px;
    font-weight: normal;
    color: var(--grey_color2);
}

.fc_form input {
    padding: 20px;
    width: 100%;
    margin-top: 14px;
    border-radius: 10px;
}

.fc_form input::placeholder {
    text-align: center;
    font-size: 18px;
}

.fc_form button {
    padding: 20px;
    width: 100%;
    background-color: var(--theme_blue_dark_3);
    font-family: "Cormorant Garamond";
    border: transparent;
    margin-top: 16px;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
}

.fc_social_icons i {
    background-color: var(--theme_blue_dark_3);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    text-align: center;
    align-content: center;
    font-size: 18px;
    margin-right: 0.5rem;
}

.fbs {
    background: linear-gradient(135deg, #1e2a8a, #1e2a8a, #1a0f5e);
    padding: 22px 0;
}

.fbs p {
    text-align: center;
    font-family: lora;
    color: #fff;
    margin-bottom: 0;
    font-size: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    max-height: 350px;
}

.gallery-item img {
    width: 100%;
    display: block;
}

/* Overlay hidden by default */
.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.3s ease;
}

/* Icon style */
.gallery-item .overlay i {
    color: #fff;
    font-size: 30px;
}

/* Show overlay on hover */
.gallery-item:hover .overlay {
    opacity: 1;
}

.align-items-center {
    align-items: center;
}

.section_heading_div h2 {
    font-size: 35px;
    font-weight: 700;
}

.ype_content h2 {
    font-size: 35px;
    font-weight: 700;
}

.ogs_heading_div h2 {
    font-size: 35px;
    font-weight: 700;
}

.tsi_strip_card h6 {
    font-size: 18px;
}

.flxstarimgL i {
    font-size: 13px;
}

.swiper_cart_top h5 {
    font-size: 17px;
    margin-bottom: 0px;
}

.swiper_cart_top {
    align-items: center;
}

.swiper_card_in {
    display: flex;
    flex-direction: column;
    min-height: 450px;
    height: 100%;
}

.review-text {
    flex-grow: 1;
    line-height: 1.8;
    overflow: hidden;
}

.read-more {
    color: #c8a76a;
    font-weight: 600;
    cursor: pointer;
}

.index_card_track.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    /* border: 1px solid; */
}

.custom-loader-wrapper {
    width: 100%;
    /* border: 1px solid; */
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-loader {
    width: 175px;
    height: 175px;
    border: 4px solid #ddd;
    border-top: 4px solid #4f46e5;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Circle banane ke liye */
    object-fit: cover;
    border: 2px solid #fff;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.swiper_cart_top {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.swiper_cart_top img {
    /* border: 1px solid; */
    max-height: 30px;
}

.room_price_span {
    /* font-size: 23px; */
    color: #219653;
    font-weight: 600;
    font-family: system-ui;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

@media (max-width: 1199px) {
    .nav-item .nav-link {
        font-size: 18px;
    }

    .ettr_card {
        margin-bottom: 1rem;
    }

    .ettr_section p {
        margin-bottom: 0;
        font-size: 14px;
    }

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

    .ettr_ctop::after {
        bottom: 0px;
        height: 25px;
    }

    .ettr_section {
        padding: 4rem 0 2rem;
    }

    .testimonials_section_in {
        padding: 40px 10px;
    }
}

@media (max-width: 991.9px) {
    .desktop_menu {
        display: none;
    }

    .menu_toggle {
        display: block;
    }

    .banner_section {
        position: relative;
        overflow: hidden;
        height: 398px;
    }

    .banner_track {
        display: flex;
        transition: transform 0.8s ease;
        height: 350px;
    }

    .index_card_item {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

    #navMenuUnique {
        margin-top: 2rem;
    }

    .navbar-nav .nav-item {
        text-align: left;
    }

    .sfbb_section {
        height: 50vh;
    }

    .banner_content .heading01 {
        font-size: clamp(28px, 5vw, 65px);
    }

    .banner_content p {
        font-size: clamp(14px, 2vw, 23px);
    }

    .ettr_section p {
        margin-bottom: 0;
    }

    .ettr_card {
        margin-bottom: 1rem;
    }

    .card_box {
        min-width: calc(100% / 5);
    }

    .ettr_section {
        padding: 4rem 0 2rem;
    }

    .testimonials_section_in {
        padding: 40px 10px;
    }

    .cwu_section .cwu_section_in {
        background-color: var(--grey_color3);
        padding: 3rem 2rem;
    }

    .get_in_touch_form {
        padding: 30px 25px 20px;
    }

    /* ================== RESPONSIVE ================== */

    .tsi_strip_card {
        width: 50%;
    }

    .tsi_strip_card:nth-child(2n) {
        border-right: none;
        /* every 2nd remove border */
    }

    .tsi_strip_card:nth-child(-n + 2) {
        border-bottom: 1px solid #eee;
    }
}

@media (max-width: 767.9px) {
    .ype_video video {
        width: 100%;
    }

    .center_mob_view {
        text-align: center;
    }

    .locations_tabs {
        width: unset;
    }

    .tab_menu_vdp.fixed_tab {
        overflow-x: scroll;
        flex-wrap: unset;
    }

    .gold_heading {
        margin-top: 1rem;
    }

    .our_gallery_section {
        padding: 3rem 0 1rem;
    }

    .mobile_inner_submenu li {
        font-weight: 100;
    }

    .mobile_inner_submenu.active {
        padding-left: 0px !important;
    }

    #Overview,
    #Highlights,
    #Refund,
    #Spaces,
    #Reviews,
    #Amenities,
    #Meals_section,
    #Location,
    #Experiences,
    #FAQ {
        scroll-margin-top: 90px;
    }

    .esdw_section {
        padding: 1rem 0 0rem;
    }

    .esdw_section h2 {
        margin-bottom: 2rem;
    }

    #blog_cards_section {
        /* border: 1px solid; */
        padding: 3rem 0 3rem;
    }

    .royal_blog_detail {
        padding: 3rem 0;
    }

    .contact_location_iframe_section {
        margin-top: 0;
    }

    #faq_section {
        padding: 2rem 0;
    }

    .submenu.sec-menu {
        left: 12%;
    }

    .cwu_p2 {
        font-size: 20px;
    }

    .cwu_icon {
        width: 75px;
    }

    .cwu_icon2 {
        width: 140px;
    }

    .cwu_icon2 i {
        padding: 15px 18px;
    }

    .cwu_p3 {
        font-size: 20px;
    }

    .cwu_section .cwu_section_in {
        margin-top: 3rem;
    }

    .cwu_icon i {
        padding: 15px;
    }

    .about_ype_content {
        padding: 0 10px;
    }

    #faq_section {
        padding-bottom: 2rem;
    }

    .section_heading_div {
        margin-bottom: 1rem;
    }

    .index_card_item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .ype_content {
        padding: 0;
    }

    .sfbb_section {
        height: 540px;
    }

    .esd_card_white {
        margin: 5px 0;
    }

    .ype_section {
        padding: 1rem 0 1rem;
    }

    .gallery-item img {
        max-height: 300px;
    }

    .ogs_one {
        margin-bottom: 1rem;
    }

    .faq_img_div {
        margin-bottom: 2rem;
    }

    .card_box {
        min-width: calc(100% / 4);
    }

    .ettr_section {
        padding: 1rem 0 2rem;
    }

    .fs_form {
        margin-bottom: 1.5rem;
    }

    .fc_h4 {
        margin-bottom: 1rem;
    }

    .footer .fs_h3 {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .ype_video video {
        height: 400px;
        margin-bottom: 2rem;
    }

    .about_ype_section {
        padding: 4rem 0 2rem;
    }

    .pscc_content {
        padding: 3rem 0 1rem;
    }

    #pscc_section {
        padding: 2rem 0 1rem;
    }

    .sfbb_container_in {
        padding: 30px;
    }

    .banner_prev,
    .banner_next {
        bottom: 3.5rem;
        padding: 4px 13px;
    }

    .testimonials_section_in {
        padding: 40px 10px;
    }

    .cwu_section .cwu_section_in {
        padding: 1rem;
    }

    .ud_content {
        padding: 40px 10px;
    }

    .sfbb_container_in {
        width: 100%;
    }

    .tsi_strip_card {
        width: 100%;
        border-right: none !important;
        border-bottom: 1px solid #eee;
    }

    .tsi_strip_card:last-child {
        border-bottom: none;
    }

    #newregisterformcontentpart {
        width: 100%;
        padding: 0px;
    }

    .newregisterrow {
        flex-direction: column;
        gap: 0;
    }

    #newloginform {
        flex-direction: column;
        margin: 15px;
    }

    #newloginformimgpart {
        width: 100%;
        height: 220px;
    }

    #newloginformcontentpart {
        width: 100%;
        padding: 25px;
    }

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

@media (max-width: 575.9px) {
    .card_box {
        min-width: calc(100% / 2);
    }

    #loginCommonModel {
        padding: 15px;
        align-items: flex-start;
    }

    #newloginform {
        margin: 20px auto;
        max-height: calc(100vh - 40px);
    }
}

@media (max-width: 480px) {
    .index_card_item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}