@import url('https://fonts.cdnfonts.com/css/creato-display');
/* @font-face {
      font-family: 'Creato Display';
      src: url('../fonts/CreatoDisplay-Thin.otf') format('otf');
      font-weight: 100;
      font-style: normal;
      font-display: swap;
  }

  @font-face {
      font-family: 'Creato Display';
      src: url('../fonts/CreatoDisplay-Light.otf') format('otf');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
  }

  @font-face {
      font-family: 'Creato Display';
      src: url('../fonts/CreatoDisplay-Regular.otf') format('otf');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
  }

  @font-face {
      font-family: 'Creato Display';
      src: url('../fonts/CreatoDisplay-Medium.otf') format('otf');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
  }

  @font-face {
      font-family: 'Creato Display';
      src: url('../fonts/CreatoDisplay-Bold.otf') format('otf');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
  }

  @font-face {
      font-family: 'Creato Display';
      src: url('../fonts/CreatoDisplay-Black.otf') format('otf');
      font-weight: 800;
      font-style: normal;
      font-display: swap;
  } */

:root {
    --primary-color: #AF9556;
    --secondary-color: #AF9556;
    --bg-light: #F6F4EF;
    --white: #fff;
    --white-80: rgba(255, 255, 255, 0.8);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-40: rgba(255, 255, 255, 0.4);
    --primary-font: 'Creato Display', sans-serif;
    --secondary-font: 'Creato Display', sans-serif;
    --dark-text: #000000;
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06);
    /* --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
          0 2px 4px -1px rgba(0, 0, 0, 0.06); */
    --shadow-medium: 0px 4px 15px 1px #0000001c;
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    margin: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    font-family: var(--primary-font) !important;
    background: var(--bg-light) !important;
}

html {
    scroll-behavior: smooth;
    font-family: var(--primary-font) !important;
    overflow-x: hidden !important;
    scroll-padding-top: 100px !important;
}

a {
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    pointer-events: none;
}

#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(0deg, rgba(80, 185, 85, 1) 0%, rgba(4, 133, 80, 1) 100%); */
    background: #fff;
    color: #000;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    z-index: 9999;
    text-align: center;

}

#splash video {
    width: 600px;
    margin-bottom: 20px;
}

#splash h3 {
    font-family: var(--primary-font);
    font-size: 30px;
    font-weight: 600;
}

#splash h3 span {
    font-family: var(--secondary-font);
}

#splash.hidden {
    display: none;
}

#main-content {
    display: none;
}

#main-content.visible {
    display: block;
}

/* ------------------------ */
/* ========================== */
.header_nav {
    height: 120px;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 999999;
    background: #00000000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.header_nav .row {
    display: flex;
    align-items: center;
}

.header_nav.affix {
    height: 80px;
    background: var(--bg-light);
    box-shadow: 0px 4px 15px 1px #0000000a;
    transition: all 0.3s ease-in-out;
}

.nav_items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

/* .navs {
      display: flex;
      justify-content: space-between;
      align-items: center !important;
  } */

.navbar1 {
    display: flex;
    justify-content: start !important;
    align-items: center !important;
}

.navbar2 {
    display: flex;
    justify-content: end;
    align-items: center !important;
}

.navbar2 ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 0px;
}

.navbar1 ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 0px;
}

.nav_links {
    margin-right: 32px;
}

.navbar1 ul li a {
    color: #fff !important;
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.navbar1 ul li a span {
    font-family: var(--primary-font);
}

.navbar2 ul li a {
    color: #fff !important;
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.navbar2 ul li a span {
    font-family: var(--primary-font);
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 60px;
}

.logo-dark {
    display: none;
}


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

.phone-white {
    margin-right: 5px;
}

.phone-dark {
    display: none;
    margin-right: 5px;
}

.affix .phone-dark {
    display: block;
}

.affix .phone-white {
    display: none;
}

/* --------------- */
.affix .navbar2 ul li a {
    color: #000000 !important;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.affix .navbar1 ul li a {
    color: #000000 !important;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.affix .logo .logo-dark {
    display: block;
}

.affix .logo .logo-white {
    display: none;
}

.nav-side {
    display: none;
    align-items: center;
    /* gap: 4rem; */
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    height: 50px;
}

.affix .toggle_icon span {
    background: var(--dark-text);
}

.toggle_icon span {
    display: block;
    background-color: #ffffff;
    height: 2px;
    width: 25px;
    margin-bottom: 5px;
    cursor: pointer;
}

.toggle_icon span:nth-child(2) {
    width: 18px;
    margin: 0 0px 5px auto;
}

.toggle_icon span:last-child {
    margin-bottom: 0;
    /* width: 20px; */
    margin: 0 0 0 auto;
}


.side_menu_bg {
    background: linear-gradient(0deg, #928055 0%, #AF9556 100%);
    background: #928055 url(../images/resortname-white.svg);
    background-repeat: no-repeat;
    background-size: 750px;
    background-position: bottom center;
    color: #fff;
    width: 33%;
    position: fixed;
    right: 0;
    top: 0px;
    height: 100vh;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    transition: all ease 0.4s;
    opacity: 0;
}

.side_menu_active {
    transform: translateX(0%);
    opacity: 1;
}


.side_menu ul {
    list-style: none;
    font-size: 25px;
    line-height: 1.5;
    padding-left: 0;
}

.side_menu ul li a {
    font-weight: 400;
    color: #fff;
    font-family: var(--secondary-font);
}

.side_menu ul li a span {
    font-family: var(--primary-font);
}

.side_menu_adrs ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 11px;
}

.side_menu_adrs p {
    color: #fff;
}

.side_menu_adrs p span {
    color: #fff;
    font-family: var(--secondary-font);
}


.close {
    position: absolute;
    right: 10%;
    top: 8%;
    cursor: pointer;
}

.close span {
    display: block;
    height: 2px;
    width: 35px;
    background-color: #ffffff;
    margin-bottom: 0.5rem;
}

.close span:first-child {
    transform: rotate(45deg);
    margin: -1px;
}

.close span:last-child {
    transform: rotate(-45deg);
}

.side_menu_adrs .social_links {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 25px;
}

.side_menu_adrs .social_links li i {
    font-size: 25px;
    color: #ffffff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.side_menu_adrs .social_links li i:hover {
    color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

/* ------Dropdown-------- */


.menu-item-has-children {
    position: relative;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1000;
}

.sub-menu .menu-item {
    padding: 0;
}

.sub-menu .menu-link {
    padding: 8px 20px;
    display: block;
    text-transform: none;
    font-size: 16px;
    color: #333 !important;
    white-space: nowrap;
}

.affix .sub-menu .menu-link {
    padding: 8px 20px;
    display: block;
    text-transform: none;
    font-size: 16px;
    color: var(--primary-color) !important;
    white-space: nowrap;
}

.sub-menu .menu-link:hover {
    color: var(--secondary-color-dark) !important;
}

.dropdown-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 11px;
    margin-left: 3px;
    color: #fff;
}

.home-nav .dropdown-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 11px;
    margin-left: 3px;
    color: var(--primary-color);
}

.affix .dropdown-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 11px;
    margin-left: 3px;
    color: #fff !important;
}


@media only screen and (min-width: 768px) {

    .navbar {
        align-items: start !important;
        padding-top: 10px !important;
    }

    .menu {
        position: relative;
        top: 10px;
        width: auto;
        height: auto;
        padding: 0rem;
        margin-left: auto;
        background: none;
        box-shadow: none;
        height: 200px;
    }

    .menu-item-has-children {
        position: relative;
    }

    .menu-item-has-children .sub-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        min-width: 200px;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 7px;
        padding: 10px 0;
        z-index: 1000;
    }

    .menu-item-has-children.active .sub-menu {
        display: block;
    }

    .menu-item-has-children.active .dropdown-arrow {
        transform: rotate(-90deg);
    }

    @media (hover: hover) {
        .menu-item-has-children:hover .sub-menu {
            display: block;
        }

        .menu-item-has-children:hover .dropdown-arrow {
            transform: rotate(-90deg);
        }
    }

    .menu-inner {
        display: flex;
        flex-direction: row;
        column-gap: 2rem;
        margin: 0 auto;
    }

    .menu-link {
        text-transform: capitalize;
    }

    .menu-block {
        margin-left: 2rem;
    }

}

@media only screen and (max-width: 991px) {
    .header_nav {
        background: #ffffff00;
    }

    .it_nav {
        background: #ffffff;
    }

}

/* ============================ */


.main_banner {
    height: 98vh;
    border-radius: 20px;
    margin: 10px;
    margin-bottom: 0px;
    overflow: hidden;

}


.banner_img_col {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.banner_img_col::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(50deg, rgba(0, 0, 0, 0.555) 0%, rgba(0, 0, 0, 0) 100%);
}

.primary_btn {
    background: #000;
    border-radius: 15px;
    padding: 12px 30px;
    color: #fff;
    border: none;
    transition: all ease 0.3s;
}
.primary_btn:hover{
    background: var(--primary-color);
    color: #fff;
    transition: all ease 0.3s;
}

.banner_text_col {
    position: relative;
}

.banner_text {
    position: absolute;
    bottom: 200px;
    left: 0%;
    z-index: 3;
}

.banner_text h1 {
    font-size: 90px;
    font-weight: 700;
    margin: 0;
    font-family: var(--primary-font);
    line-height: 1.2;
    color: #fff;
}

.banner_text p {
    width: 70%;
    font-size: 15px;
    color: #fff;
}


.check-availability {
    position: relative;
    z-index: 1;
}

.available_box {
    background: var(--bg-light);
    padding: 25px;
    margin: 0 auto;
    border-radius: 30px;
    border: 1px solid #ffffffab;
    box-shadow: 0px 4px 15px 1px #0000000a;
    margin-top: -55px;
}

.available_box input {
    width: 100%;
    padding: 18px 25px;
    border-radius: 18px;
    border: none;
    background: #FAFAFA;
    transition: all ease 0.3s;
    border: 1px solid transparent;
        border: 1px solid var(--primary-color);
    border-radius: 15px;
}

.available_box input:focus {
    outline: none;
    border: 1px solid var(--primary-color);
    transition: all ease 0.3s;
}

.available_box .date-wrapper {
    position: relative;
}

.available_box .date-wrapper input[type="date"] {
    position: relative;
    z-index: 2;
    background: #fafafa;
    padding: 18px 25px;
}

.available_box .date-wrapper::after {
    content: "\f133";
    font-family: 'FontAwesome';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
    font-size: 20px;
    padding: 10px;
    background: #fafafa;
    z-index: 4;
}

.available_box .avail_guest {
    position: relative;
}

.available_box .avail_guest::after {
    content: "\f007";
    font-family: 'FontAwesome';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
    font-size: 20px;
    padding: 10px;
    background: #fafafa;
    z-index: 4;
}


.available_box .date-wrapper .placeholder {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #686868;
    pointer-events: none;
    z-index: 4;
    background-color: #fafafa;
    padding-bottom: 0px;
}

.available_box .date-wrapper input[type="date"]:valid+.placeholder {
    display: none;
}

.avail_btn {
    padding: 17px;
    width: 100%;
    font-size: 18px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    border-radius: 18px;
    transition: all ease 0.3s;
}
.avail_btn:hover{
    background: #000;
    color: #fff;
    transition: all ease 0.3s;
}


/* ===================== */

.about_section {
    padding: 100px 0;
}

.about_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about_img {
    margin-left: 200px;
    margin-right: 100px;
    position: relative;
}

.about_img img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about_img::before {
    content: "";
    position: absolute;
    left: -20px;
    bottom: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid #AF9556;
    padding: 30px;
    border-radius: 20px;

    z-index: -1;
}

.para {
    font-size: 16px;
}

.about_text h2 {
    font-size: 45px;
    margin-bottom: 15px;
}

.sub_heading {
    font-size: 35px;
    font-weight: 500;
}

.dhabab_special {
    padding: 80px 0px;
    background: #fafafa;
}

/* ========================== */

.special_expand {
    overflow: hidden;
    border-radius: 25px;
}

.cards {
    display: flex;
    gap: 0px;
    justify-content: center;
}

.card {
    position: relative;
    flex: 1;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

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

.card:hover {
    flex: 4;
}


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

.card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    color: #fff;
    text-align: left;

}

.card .overlay p {
    width: 80%;
    opacity: 0.8;
    font-size: 15px;
    font-weight: 300;

}



.card .number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 70px;
    color: rgba(255, 255, 255, 0.774);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.411);
}

.cards {
    display: flex;
    gap: 0px;
    height: 400px;
}

/* Default: first card expanded */
.card {
    position: relative;
    flex: .6;
    border-radius: 0px !important;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: flex-end;
    border: none !important;
}

/* First card open by default */
.card:first-child {
    flex: 3;
}


/* On hover: shrink all */
.cards:hover .card {
    flex: 0.5;
}

/* But the hovered card expands */
.cards .card:hover {
    flex: 3;
}



/* Default: first card active */
.card:first-child .number {
    color: #fff;
}

/* On hover: reset all */
.cards:hover .card .number {
    color: rgba(255, 255, 255, 0.7);
}

/* Active hovered card */
.cards .card:hover .number {
    color: #fff;
}


.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    padding-left: 30px !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show overlay for first card by default */
.card:first-child .overlay {
    opacity: 1;
}

/* Hide all overlays when hovering inside */
.cards:hover .card .overlay {
    opacity: 0;
}

/* Show overlay only on the hovered card */
.cards .card:hover .overlay {
    opacity: 1;
}

/* ================ Aminities================== */

.aminities {
    padding: 100px 0;
}

.aminities_text {
    padding-right: 50px;
    position: relative;
}

.aminities_text .sub_heading {
    width: 80%;
}

.aminities_text::after {
    content: "";
    width: 1px;
    height: 100%;
    background: var(--primary-color);
    margin-left: 30px;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    opacity: .3;
}

.amenities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    color: #a58b4c;
    align-items: center;
    height: 100%;
}

.amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.amenity i {
    font-size: 40px;
    color: #a58b4c;
}

.amenity p {
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    color: #5f5f5f;
}

/* ================ Aminities================== */

.home_rooms {
    padding: 80px 0;
    background: #1c1c1c;
}

.home_rooms .sub_heading {
    position: relative;
}

.home_rooms .sub_heading::before {
    content: 'Accommodation';
    font-size: 140px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff09;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.room_card {
    padding: 10px;
    background: #fff;
    border-radius: 25px;
}

.room_card:hover .room_image img {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.room_image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 15px;
}

.room_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

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

.room_text p {
    font-size: 14px;
    margin: 0;
    color: #818181;
}

.room_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 10px;
}

.room_info img {
    height: 25px;
    margin-right: 5px;
}

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

.adventure {
    padding: 80px 0;
}

.adven {
    padding: 30px;
    background: #fff;
    border-radius: 25px;
}

.adv_para {
    width: 70%;
    margin-bottom: 30px;
}

.box_flex {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.box_flex a {
    color: inherit;
    height: calc(100% - 10px);
}

.box_flex a:hover {
    color: inherit;
}

.adventure_box {
    padding: 30px 20px;
    background: #FBF9F5;
    border-radius: 20px;
}

.adventure_box img {
    margin-bottom: 15px;
}

.adventure_box h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.adventure_box p {
    font-size: 15px;
    margin: 0;
    color: #818181;
}

.testimonial_col {
    padding: 30px 40px;
    background: #fff;
    border-radius: 25px;
}

.testi_slider .slick-slide {
    margin: 10px;
}

.testi_slider .slick-prev,
.testi_slider .slick-next {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 3;
    transition: 0.3s ease;
}


.testi_slider .slick-prev::before,
.testi_slider .slick-next::before {
    font-family: "FontAwesome";
    font-weight: 900;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1;
}

.testi_slider .slick-prev::before {
    content: "\f104";
}

.testi_slider .slick-next::before {
    content: "\f105";
}

/* Position */
.testi_slider .slick-prev {
    left: -40px;
}

.testi_slider .slick-next {
    right: -40px !important;
}

.testi_card {
    background: #FBF9F5;
    padding: 30px;
    border-radius: 20px;
    margin: 0px 0px 30px 30px;
    position: relative;
}

.testi_card::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    bottom: -20px;
    left: -20px;
    z-index: -1;
}

.testi_user {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    margin-top: 40px;
}

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

.testi_user h6 {
    font-size: 16px;
    margin: 0;
}

.testi_user p {
    font-size: 13px;
    margin: 0;
    color: #818181;
}

.start_group {
    padding: 10px 30px;
    border-radius: 30px 0px 0px 30px;
    background: var(--primary-color);
    color: #fff;
    position: absolute;
    bottom: 30px;
    right: 0;
}

.cta-section {
    padding: 80px 0;
}

.cta_box {
    text-align: left;
    padding: 80px 50px;
    background: url(../images/cta.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 25px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta_box .sub_heading {
    font-size: 40px;
}

.white_btn {
    background: #fff;
    border-radius: 15px;
    padding: 12px 30px;
    color: #000;
    border: 1px solid #fff;
    transition: all ease 0.3s;
}
.white_btn:hover{
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    transition: all ease 0.3s;
}

.white_btn_line {
    background: #ffffff0b;
    border-radius: 15px;
    padding: 12px 30px;
    color: #fff;
    border: 1px solid #fff;
    backdrop-filter: blur(2px);
    transition: all ease 0.3s;
}
.white_btn_line:hover{
    background: var(--primary-color);
    color: #fff;
    transition: all ease 0.3s;
    border: 1px solid var(--primary-color);
}

/* ==================== Footer ==================== */


footer {
    padding-top: 50px;
    position: relative;
    text-align: center;
    background-color: #1c1c1cee;
    background-image:
        url("../images/resortname.svg"),
        url("../images/footer_bg.png");
    background-repeat: no-repeat, no-repeat;
    background-size: contain, cover;
    background-position: center bottom, center center;
}

.footer_design {
    position: absolute;
    top: -160px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.footer_design_mob {
    display: none;
}

.footer_logo {
    margin: 15px 0px 20px 0px;
    text-align: start;
}

.footer_logo .para {
    font-size: 14px;
    margin-top: 15px;
    color: var(--white);
    width: 80%;
    font-family: var(--secondary-font);
}

.footer_box {
    margin-top: 40px;
}


.footer_box {
    margin-top: 20px;
}

.footer_box h5 {
    font-size: 19px;
    color: var(--white);
    font-family: var(--secondary-font);
    text-align: start;
    margin-bottom: 10px;
}


.footer_menu {
    padding: 0px;
}

.footer_menu li {
    text-align: start;
    padding: 5px 0px;
}

.footer_menu li a {
    text-align: start;
    color: var(--white-40);
    font-family: var(--secondary-font);
    transition: all ease 0.3s;
    font-size: 15px;

}

.footer_menu li a:hover {
    color: var(--white);
    transition: all ease 0.3s;
}

.footer_menu li img {
    filter: brightness(0) invert(1);
    height: 18px;
    width: 18px;
    margin-right: 10px;
}

.footer_menu.address_footer {
    margin-left: 30px;
}

.footer_menu.address_footer li {
    position: relative;
}

.footer_menu.address_footer li:first-child::before {
    content: url("../images/icons/address.svg");
    position: absolute;
    top: 7px;
    left: -30px;
}

.footer_menu.address_footer li:nth-child(2)::before {
    content: url("../images/icons/call.svg");
    position: absolute;
    top: 6px;
    left: -30px;
}

.footer_menu.address_footer li:last-child::before {
    content: url("../images/icons/mail.svg");
    position: absolute;
    top: 7px;
    left: -30px;
}


.footer_menu .para {
    color: var(--white);
}


.email_flex {
    display: flex;
    gap: 5px;
    width: 95%;
}

.email_flex input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #fff;
    background: transparent;
    color: var(--white);
}

.email_flex input::placeholder {
    color: rgba(255, 255, 255, 0.877);
}

.footer_bottom {
    margin-top: 8rem;
    padding: 3rem 0px 2rem 0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--secondary-font);
    color: var(--white-80);
    position: relative;
}



.footer_bottom a {
    color: var(--white-80);
}

.multi-lang-footer {
    filter: brightness(0) invert(1);
    margin-right: 5px;
}

.copy {
    display: flex;
    gap: 3px;
}

.footer_bottom p {
    margin-bottom: 0px;
    color: var(--white-80);
    font-size: 12px;
    font-family: var(--secondary-font);
}

.footer_bottom .para {
    margin-bottom: 0px;
    color: var(--white-80);
    font-size: 13px;
    font-family: var(--primary-font);
}

.social_links {
    margin-top: 25px;
}

footer .social_links ul {
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
    padding-left: 0;
}

footer .social_links ul li i {
    cursor: pointer;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    color: var(--white);
    text-align: start;
    font-size: 20px;
}

footer .social_links ul li:hover {
    transform: translateY(-5px);
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
}

/* ==================== Footer ==================== */


/* ==================== About ==================== */
.inner_banner {
    height: 40vh;
    background: url(../images/inner-banner_img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    margin: 10px;
    margin-bottom: 0px;

}

.inner_banner_text {
    display: flex;
    align-items: center;
    height: 35vh;
    color: #fff;
    padding-top: 200px;
    justify-content: center;
}

.inner_banner_text h1 {
    font-size: 55px;
    font-weight: 700;
    margin: 0;
    font-family: var(--primary-font);
    line-height: 1.2;
    text-align: center;
}

.sub_head {
    font-size: 16px;
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: 0px 4px 4px 0px #0000000c;
    color: var(--primary-color);

}

.about_page h2 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.vision_section {
    padding: 80px 0;
    background: #fff;
}

.vision_section .sub_heading {
    margin: 15px 0px 10px 0px;
}

.vision_section .adven {
    padding: 0px;
}


.sustainability_section {
    padding: 80px 0;
}

.sustainability_section .sub_heading {
    margin: 15px 0px 10px 0px;
    text-align: center;
}

.sustainability_section .adv_para {
    text-align: center !important;
    margin: 0 auto 30px auto;
}

.sustainability_section .box_flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.sustainability_section .adventure_box h5 {
    margin-bottom: 7px;
}

.adventure_box ul {
    padding-left: 20px;
    margin-bottom: 0px;
}

.adventure_box ul li {
    font-size: 15px;
    margin: 0;
    color: #818181;
    padding-bottom: 5px;
}

.adventure_box ul li::before {
    content: "\f054";
    font-family: 'FontAwesome';
    color: var(--primary-color);
    display: inline-block;
    margin-left: -1em;
    margin-right: 7px;
}

.our_rooms {
    padding: 80px 0;
}

.our_rooms .room_card {
    margin-bottom: 20px;
}

.our_rooms {
    padding: 60px 20px 0;
}

.our-teams {
    padding: 80px 0;
    background: #1c1c1c;
}

.team-flex {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.team_card {
    border-radius: 25px;
    position: relative;
    /* box-shadow: 0px 4px 15px 1px #ffffff1a; */
    height: 270px;
    background: transparent;
    overflow: hidden;
    border-radius: 18px;
}

.team_card:hover img {
    transform: scale(1.1);
    transition: all ease 0.3s;
}

.team_text {
    position: absolute;
    bottom: 0px;
    padding: 30px 15px 20px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    width: 100%;
    /* height: 110px; */
}

.team_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    transition: all ease 0.3s;
}

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

.team_text p {
    font-size: 13px;
    margin: 0;
    color: #ffffff8a;
    font-weight: 400;
}

/* =========================== */

/* Style for the gallery section */
.gallery-section {
    padding: 80px 0;
    text-align: center;
}

.tabs {
    margin-bottom: 30px;
    display: inline-grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.tabs button {
    padding: 10px 20px;
    /* margin-right: 10px; */
    cursor: pointer;
    background-color: #fff;
    border: none;
    border-radius: 15px;
    transition: background-color 0.3s;
}

.tabs button.active {
    background-color: var(--primary-color);
    color: white;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.category {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.gallery div {
    display: none;
    /* margin: 10px; */
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

.fslightbox-full-dimension img {
    height: 400px !important;
    width: auto !important;
}

.amenity:hover img {
    animation: 1s kd-jello;
    cursor: pointer;
}

.adventure_box:hover img {
    animation: 1s kd-jello;
    cursor: pointer;
}

@keyframes kd-jello {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

/* ================================= */
.contact_section {
    padding: 80px 0;
}

.contact_box {
    padding: 20px 20px 20px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    background: #FBF9F5;
    height: calc(100% - 20px);
}

/* .contact_info .sub_heading{
    margin: 15px 0px;
} */
.contact_form {
    padding: 50px 30px 50px 30px;
    background: #fff;
    border-radius: 25px;
    margin-left: 30px;
}

.contact_form input,
.contact_form textarea {
    border: none;
    border: 1px solid transparent;
    border-bottom: 1px solid #0000001a;
    padding: 10px 10px 10px 10px;
    resize: none;
    width: 100%;
    margin-bottom: 20px;
    transition: all ease 0.3s;
        border: 1px solid var(--primary-color) !important;
    border-radius: 15px;
}

.contact_form input:focus,
.contact_form textarea:focus {
    outline: none;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    transition: all ease 0.3s;
}

.contact_flex {
    display: flex;
    align-items: center;
    height: 100%;
}

.contact_form button {
    width: 100%;
}

.contact_box .para {
    color: #818181;
    font-size: 15px;
    margin-bottom: 3px;
}

.contact_box .para a {
    color: #818181;
    font-size: 15px;
    margin-bottom: 3px;
}

.contact_box .para a:hover {
    color: var(--primary-color);
}

.contact_box .para b {
    color: #424242;
    font-weight: 500;
}

.map {
    position: relative;
}

.map .map_img {
    width: 100%;
    height: 600px;
    object-fit: cover;

}

.adv_main {
    padding: 0;
    padding-top: 80px !important;
}

.adv_main .box_flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-content: center;
}

.our_rooms_details {
    padding: 80px 0px 20px 0px;
}

.our_rooms_details .room_card {
    padding: 10px;
    background: #fff;
    border-radius: 25px;
    margin-bottom: 30px !important;
    height: calc(100% - 20px);
    position: relative;
}

.our_rooms_details .room_card:hover .room_details_image img {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.room_details_image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 15px;
}

.room_details_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}


.room_details_text h5 {
    font-size: 24px;

}

.room_details_text p {
    font-size: 16px;
    margin: 0;
    color: #818181;
    margin-bottom: 10px;
}

.room_details_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0px;
    margin-bottom: 30px;
    gap: 30px;
}

.room_details_info img {
    height: 30px;
    margin-right: 10px;
}

.room_details_info span {
    font-size: 16px;
}

.details_text_line {
    padding-right: 50px;
    position: relative;
    height: 100%;
    padding: 20px;
}

.details_text_line .sub_heading {
    width: 80%;
}

.details_text_line::after {
    content: "";
    width: 90%;
    height: 1px;
    background: var(--primary-color);
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    opacity: .3;
}

.amini_head {
    text-align: center;
    padding: 20px 0px;
    font-size: 22px;
}

.our_rooms_details .amenities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    color: #a58b4c;
    align-items: center;
    height: 100%;
    padding: 0px 30px 75px 30px;
}

.our_rooms a {
    color: #000;
}

.our_rooms a:hover {
    color: #000;
}

.home_rooms a {
    color: #000;
}

.home_rooms a:hover {
    color: #000;
}

.book_btn {
    padding: 0px 30px !important;
    position: absolute;
    bottom: 25px;
}

.book_btn .primary_btn {
    width: 100%;
}


/* ============= POPUP FORM=============== */

.form-popup-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.form-popup-bg {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0 0 0 / 70%);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
    overflow-y: auto;
    z-index: 999999;
}

.form-popup-bg.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}

.form-container {
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 3%), 0 0px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 40px;
    color: #fff;
}

.close-button {
    background: none;
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    height: 20px;
    width: 20px;
}

.close-button:before {
    content: '\f00d';
    font-family: 'FontAwesome';
    font-size: 22px;
    color: var(--primary-color);
    line-height: 1;
}

.form-popup-bg:before {
    content: '';
    background-color: #fff;
    opacity: 0.25;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.form-popup-bg input {
    border: none;
    border: 1px solid transparent;
    border-bottom: 1px solid #0000001a;
    padding: 10px 10px 10px 10px;
    resize: none;
    width: 100%;
    margin-bottom: 20px;
    transition: all ease 0.3s;
        border: 1px solid var(--primary-color);
    border-radius: 15px;
}


.form-popup-bg input:focus {
    outline: none;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    transition: all ease 0.3s;
}

.form-popup-bg select {
    border: none;
    border: 1px solid transparent;
    border-bottom: 1px solid #0000001a;
    padding: 10px 10px 10px 10px;
    resize: none;
    width: 100%;
    margin-bottom: 20px;
    transition: all ease 0.3s;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="gray" stroke-width="2"><polyline points="6,9 12,15 18,9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    color: #686868;
    background: none;
        border: 1px solid var(--primary-color);
    border-radius: 15px;
}

.form-popup-bg select:focus {
    outline: none;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    transition: all ease 0.3s;
}

.form-popup-bg .sub_heading {
    color: #000;
    text-align: center;
}

.form-popup-bg .para {
    color: #000;
    text-align: center;
    margin-bottom: 30px;
}

.form-popup-bg .primary_btn {
    width: 100%;
    margin-top: 10px;
}

.form-popup-bg .date-wrapper {
    position: relative;
    /* display: inline-block; */
}

.form-popup-bg .date-wrapper input[type="date"] {
    position: relative;
    z-index: 2;
    background: transparent;
}

.form-popup-bg .date-wrapper .placeholder {
    position: absolute;
    left: 10px;
    bottom: 30px;
    color: #686868;
    pointer-events: none;
    z-index: 4;
    background-color: #fff;
    padding-bottom: 0px;
}

.form-popup-bg .date-wrapper input[type="date"]:valid+.placeholder {
    display: none;
}

.form-popup-bg .date-wrapper::after {
    content: "\f133";
    font-family: 'FontAwesome';
    position: absolute;
    right: 10px;
    bottom: 30px;
    color: var(--primary-color);
    pointer-events: none;
    font-size: 18px;
    padding: 2px;
    background: #ffff;
    z-index: 4;
}


/* ============================= */

/* =========== Attraction =========== */
.attractions_section {
    padding: 80px 0;
}

.attraction_box {
    padding: 15px 15px;
    background: #fff;
    border-radius: 20px;
    height: calc(100% - 20px);
    margin-bottom: 20px;
    cursor: pointer;
}

.attraction_box:hover img {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.attraction_img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
}

.attraction_box img {
    transition: all 0.3s ease-in-out;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.attraction_box h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.attraction_box p {
    font-size: 15px;
    margin: 0;
    color: #818181;
}

.attraction_box a {
    color: var(--primary-color);
    text-decoration: none;
}

.attraction_box a:hover {
    text-decoration: underline;
}

.attract_para {
    text-align: center;
    width: 80%;
    margin: 0 auto 30px auto;
}

/* ================================== */
.select-available-rooms {
    padding-top: 80px;
}

.header {
    background: linear-gradient(180deg, #f8f9fa 0%, #F6F4EF 100%);
    color: white;
    padding: 25px;
    text-align: center;
    border-radius: 30px 30px 0px 0px;
}

.header h1 {
    font-size: 28px;
    margin-bottom: 5px;
    color: #333
}

.header p {
    font-size: 14px;
    opacity: 0.9;
    color: #333;
}

.rooms-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.room-card {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.room-card:hover {
    border-color: #AF9556;
    box-shadow: 0 4px 12px rgba(242, 244, 255, 0.15);
    transform: translateY(-2px);
}

.room-card.selected {
    border-color: #AF9556;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.check_col {
    position: absolute;
    top: 12px;
    right: 12px;
}
.room-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #dddddd;
  border-radius: 30px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* When checked */
.room-checkbox:checked {
    background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Add a checkmark */
.room-checkbox:checked::after {
  content: "\f00c";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 10px;
  color: #fff;
  padding: 3px;
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* margin-bottom: 8px; */
    padding-right: 25px;
}

.room-number {
    font-size: 14px;
    font-weight: bold;
    color: #636363;
}

.room-name {
    font-weight: bold;
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.room-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    font-size: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-label {
    color: #888;
    font-weight: 500;
}

.detail-value {
    color: #333;
    font-weight: 600;
}

.category-badge {
    display: inline-block;
    padding: 3px 8px 1px 8px;
    background: #afafaf;
    color: white;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.rent-amount {
    font-size: 20px;
    font-weight: bold;
    color: #AF9556;
    margin-top: 10px;
    text-align: right;
}

.summary-section {
    /* background: #f8f9fa; */
    background: linear-gradient(180deg, #F6F4EF 0%, #f8f9fa 100%);
    /* border-top: 1px solid #e0e0e0; */
    border-radius: 0px 0px 30px 30px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.summary-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.summary-item {
    text-align: center;
}

.summary-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 5px;
}

.total-amount {
    color: #AF9556;
}

.proceed-btn {
    background: linear-gradient(135deg, #AF9556 0%, #AF9556 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px #af945628;
}

.proceed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(172, 172, 172, 0.5);
}

.proceed-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.no-selection {
    text-align: center;
    color: #999;
    font-size: 14px;
    padding: 10px;
}

/* ========================== */


