/* Universal CSS =====================================================================*/

:root {
    --white-color: #fff;
    --black-color: #000;

    /* Side Line */
    --color-primary: #CBA967;
    --color-font-white: #FFFFFF;
    /* hader, footer, sidebar and btn-hover */
    --color-accent: #9c6644;
    /* btn-bg */
    --btn-accent-gold: #9A6B4D;
    /* bg color */
    --color-background: #F8F5F0;
    /* header-bh-specific */
    --header-bg: #ffffff;
    /* Font Dark */
    --header-text: #1a1a1a;

    /* Extra */
    --nav-bg: #f1f4f8;
    --nav-text: #1a1a1a;
    --nav-hover: var(--color-primary);
    --color-text-primary: #2E2E2E;
    --color-primary-hover: #b89450;
    --color-secondary: #5C3A21;
    --color-accent1: #D6A8A8;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
}

p,
span,
li {
    font-family: var(--font-body);
}

@media screen and (max-width:720px) {

    h1,
    h2,
    h3,
    h4,
    h5 {
        font-size: 38px;
    }
}

@media screen and (max-width:568px) {

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 34px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 26px;
    }

    h5 {
        font-size: 22px;
    }
}

html, body {
    width: 100% !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.my-bg {
    background-color: var(--color-accent);
}

.my-bg-1 {
    background-color: var(--color-background);
}


.btn {
    border: 0.1px solid var(--color-primary);
    font-weight: 700;
}

.btn-round {
    font-weight: 700;
    border-radius: 100px;
    border: 0.1px solid white;
    width: 200px;
    padding: 20px;
}

.btn-round:hover {
    background-color: #fff;
    color: var(--color-text-primary);
}

.my-btn-dark {
    border: 0.1px solid white;
    font-weight: 700;
    background-color: var(--color-secondary);
}


.p-10 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pt-10 {
    padding-top: 100px;
}

.pb-10 {
    padding-bottom: 100px;
}

/* Scroll to top */

#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 999;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-font-white);
}

#scrollTopBtn:focus, #scrollTopBtn:active {
    box-shadow: 0 0 0 0.2rem rgba(var(--color-primary-rgb), .5);
}

@media (max-width: 768px) {
    .side_bar {
        width: 40px;
        height: 150px;
    }
    .side_bar:hover {
        width: 150px;
    }
    .icon-link::after {
        width: 100px;
        font-size: 12px;
    }
    #scrollTopBtn {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }
    #scrollTopBtn i {
        font-size: 1.5rem;
    }
}
 

/* Navbar  =========================================================================*/

.header>i,
span,
.bi {
    color: #fff;
}

.header>div>span:hover {
    cursor: pointer;
    color: var(--color-primary);
    transition: ease all 0.5s;
}

.header>div>a {
    text-decoration: none;
}

.header>div>a>i.bi-twitter:hover {
    color: var(--color-primary);
}

.header>div>a>i.bi-facebook:hover {
    color: var(--color-primary);
}

.header>div>a>i.bi-instagram:hover {
    color: var(--color-primary);
}

.header>div>a>i.bi-whatsapp:hover {
    color: var(--color-primary);
}


/* Header Tooltip */

.tooltip-content {
    display: none;
    position: fixed;
    top: 50px;
    left: 10px;
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 100;
    width: 300px;
}

.tooltip-content i {
    margin-right: 5px;
}


/* Navbar Start ===================================================================== */

header {
    width: 100vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--color-background);
    top: 0;
    min-height: max-content;
    overflow-x: hidden;
    box-shadow: 0 1px 15px rgba(90, 90, 90, 0.2);
}

.links-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.links-li a {
    position: relative;
    color: inherit;
    padding-bottom: 10px;
    /* space for underline */
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.links-li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.links-li a:hover::after,
.links-li a.active::after {
    width: 60%;
    /* Adjust underline width */
}

.logo {
    max-height: 120px;
    cursor: pointer;
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

.logo>h3 {
    padding: 0;
    margin: 0;
    font-size: 42px;
    color: rgb(36, 44, 86);
}

.logo>p {
    font-size: 12px;
}

.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.links ul .links-li a {
    color: rgb(36, 44, 86);
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    cursor: pointer;
    padding: 1px 0;
}

.links ul .links-li:hover {
    transform: scale(1);
}

.links ul .links-li::after {
    content: " ";
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 100%);
    background-color: rgb(36, 44, 86);
    border-radius: 40%;
}

.signup {
    width: 130px;
    display: flex;
    justify-content: end;
}

.nav-button {
    background: var(--btn-accent-gold);
    color: #fff;
    padding: 6px 25px;
    border-radius: 8px;
    border: 0;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    font-family: "Quicksand", sans-serif;
    box-shadow: 10px 10px 5px rgba(51, 51, 51, 0.2);
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
}

.nav-button:hover {
    color: #fff;
    background: var(--color-accent);
    box-shadow: 5px 5px 5px rgba(51, 51, 51, 0.2);
    transform: translate(5px, 5px);
}

svg,
.navbar-sm {
    display: none;
    transition: transform 0.5s ease-in-out;
}

@media (max-width: 768px) {

    .signup,
    .links {
        display: none;
    }

    .logo>h3 {
        font-size: 32px;
    }

    .logo>p {
        font-size: 8px;
    }

    svg {
        display: block;
        cursor: pointer;
    }

    .navbar-sm.show {
        display: block;
        transition: transform 0.5s ease-in-out;
    }

    .navbar-sm {
        padding: 20px 0 20px 0;
        background: #f3f7fb;
        box-shadow: 0 15px 8px rgba(208, 207, 207, 0.2);
        transition: transform 0.5s ease-in-out;
    }

    .navbar-sm>ul {
        color: rgb(36, 44, 86);
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .navbar-sm>ul>.navbar-sm-li>a {
        color: rgb(36, 44, 86);
        font-family: "Quicksand", sans-serif;
        font-optical-sizing: auto;
        font-weight: bold;
        cursor: pointer;
        padding: 1px 0;
    }

    .navbar-sm ul .navbar-sm-li:hover {
        transform: scale(1);
    }

    .navbar-sm ul .navbar-sm-li::after {
        content: " ";
        width: 60%;
        height: 2px;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 100%);
        background-color: rgb(36, 44, 86);
        border-radius: 40%;
    }

    .svg2 {
        display: none;
    }

    .svg2.show {
        display: block;
    }

    .svg1 {
        display: block;
    }

    .svg1.show {
        display: none;
    }
}


/* Navbar End ===================================================================== */

.custom-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    border-radius: 50px;
    color: var(--black-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-btn:hover,
.custom-btn:focus {
    background-color: var(--black-color);
    color: var(--white-color);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.custom-btn:active {
    background-color: var(--black-color);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
}

.custom-btn:disabled {
    background-color: var(--gray-color);
    color: var(--light-gray-color);
    cursor: not-allowed;
    box-shadow: none;
}

.text-color {
    color: #fff
}

.slider-container {
    height: 50px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #ffd100;
    font-size: 22px;
}

.slider-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    width: max-content;
    /* Ensures the slider content expands to full width */
    transform: translateX(0);
    /* Start from the left */
}


/* Slider ====================================================================== */

.carousel-item img {
    height: 300px
}

.section {
    width: 100%;
    height: 80vh;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    overflow: hidden;
}

.slide-image {
    position: absolute;
    top: -200px;
    left: -200px;
    width: calc(100% + 400px);
    height: calc(100% + 400px);
    background-position: 50% 50%;
    background-size: cover;
}

.slide-title {
    font-size: 4rem;
    line-height: 1;
    max-width: 50%;
    white-space: normal;
    word-break: break-word;
    color: #FFF;
    z-index: 100;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
}

@media (min-width: 45em) {
    .slide-title {
        font-size: 7vw;
        max-width: none;
    }
}

@media screen and (max-width: 720px) {
    .slide-title {
        font-size: 26px;
    }
}

.slide-title span {
    white-space: pre;
    display: inline-block;
    opacity: 0;
}

.slideshow {
    position: relative;
}

.slideshow-pagination {
    position: absolute;
    bottom: 5rem;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: .3s opacity;
    z-index: 10;
}

.slideshow-pagination-item {
    display: flex;
    align-items: center;
}

.slideshow-pagination-item .pagination-number {
    opacity: 0.5;
}

.slideshow-pagination-item:hover,
.slideshow-pagination-item:focus {
    cursor: pointer;
}

.slideshow-pagination-item:last-of-type .pagination-separator {
    width: 0;
}

.slideshow-pagination-item.active .pagination-number {
    opacity: 1;
}

.slideshow-pagination-item.active .pagination-separator {
    width: 10vw;
}

.slideshow-navigation-button {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 5rem;
    z-index: 1000;
    transition: all .3s ease;
    color: #FFF;
}

.slideshow-navigation-button:hover,
.slideshow-navigation-button:focus {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
}

.slideshow-navigation-button.prev {
    left: 0;
}

.slideshow-navigation-button.next {
    right: 0;
}

.pagination-number {
    font-size: 1.8rem;
    color: #FFF;
    font-family: 'Oswald', sans-serif;
    padding: 0 0.5rem;
}

.pagination-separator {
    display: none;
    position: relative;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    transition: all .3s ease;
}

@media (min-width: 45em) {
    .pagination-separator {
        display: block;
    }
}

.pagination-separator-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    transform-origin: 0 0;
}


/* Why Choose Us ======================================================== */

.form-control,
#class {
    width: 250px !important;
}

.paragraph {
    line-height: 2.5rem;
    text-align: justify;
}

.choose {
    border-right: 10px solid var(--color-primary);
}

.choose-right {
    border-left: 10px solid var(--color-primary);
}

@media screen and (max-width:720px) {
    .choose {
        border: none;
    }

    .choose-right {
        border: none;
    }
}

.about-bg {
    background-image: url('../img/hotel/g3.jpg');
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}


/* Rooms =================================================== */

.room-img-wrapper {
    height: 250px;
    overflow: hidden;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

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

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

.room-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.custom-btn1 {
    background-color: var(--btn-accent-gold);
    color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    width: auto;
}

.custom-btn1:hover {
    background-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.custom-btn1:active {
    background-color: var(--color-accent);
    transform: translateY(1px);
}

.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    gap: 20px;
}

.tab-label {
    color: White;
    background: LightGray;
    margin-right: 5px;
    padding: 3px 12px;
    order: -1;
    border-radius: 50px;
    background: #F7FAFF;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--ff01);
    color: var(--black-color);
    border: 1px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tab-label:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.tab-content {
    width: 100%;
    display: none;
}

.tab-switch:checked+.tab-label {
    /* background: var(--white-color); */
    background: var(--color-accent);
    color: #fff;
}

.tab-switch:checked+.tab-label+.tab-content {
    display: block;
}

.tab-switch {
    display: none;
}

.gallery-item {
    cursor: pointer;
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.hover-img a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.hover-img img {
    transition: transform 0.4s ease, box-shadow 0.3s;
    width: 100%;
    height: auto;
    display: block;
}

.hover-img a:hover img {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* TagLine Details =================================================== */

.bg-image {
    position: relative;
    height: 60vh;
    background-image: url('../img/hotel/g5.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tagline p {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    margin: 0;
}


/* Amenities =================================================== */

.amenities-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.amenity-icon {
    background-color:var(--btn-accent-gold);
    border-radius: 50%;
    padding: 20px;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.amenity-icon:hover {
    transform: translateY(-10px);
    background-color: var(--color-primary);
}

.amenities-section p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .amenities-section h2 {
        font-size: 2rem;
    }

    .amenity-icon {
        width: 70px;
        height: 70px;
        padding: 15px;
    }

    .amenities-section p {
        font-size: 1rem;
    }
}


/* Card Place======================================================================= */

.box1,
.box2,
.box3,
.box4 {
    height: 300px;
    width: 300px;
    margin: 50px auto;
    border-radius: 50px;
    filter: drop-shadow(1px 5px 5px black);
    display: block;
}

.box1 {
    background-color: #C13584;
}

.box2 {
    background-color: #1DA1F2;
}

.box3 {
    background-color: #ffd100;
}

.box4 {
    background-color: var()green;
}

.item {
    font-weight: 700;
    color: #fff;
}

.box-item .item {
    position: relative;
    display: inline-block;
}

.box-item .item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--black-color);
    transition: width 0.3s ease;
}

.box-item .item:hover::after {
    width: 100%;
}

.list {
    list-style: none;
    text-align: center;
    margin: 0 auto;
}

.box1:hover,
.box2:hover,
.box3:hover,
.box4:hover {
    border: 2px solid white;
    color: black;
    transform: scale(1.1);
    transition: ease-in-out 0.2s;
}


/* Divider */

.gallery-section {
    position: relative;
    background-color: whitesmoke;
}

.custom-shape-divider-top-1748017367 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1748017367 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 107px;
}

.custom-shape-divider-top-1748017367 .shape-fill {
    fill: #FFFFFF;
}


/* Near By Attraction============================================================================= */

.parallax-card-container {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.parallax-card-front,
.parallax-card-back {
    background-size: cover;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background-position: center;
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    backface-visibility: hidden;
    text-align: center;
    min-height: 280px;
    height: 400px;
    color: #fff;
    font-size: 1.5rem;
}

.parallax-card-column {
    height: 100%;
    width: 100%;
}

.parallax-card-back {
    background: linear-gradient(45deg, #cedce7 0%, #596a72 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.parallax-card-front::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .6;
    background-color: #000;
    backface-visibility: hidden;
    border-radius: 10px;
}

.parallax-card-container:hover .parallax-card-front,
.parallax-card-container:hover .parallax-card-back {
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.parallax-card-inner {
    transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    outline: 1px solid transparent;
    perspective: inherit;
    z-index: 2;
}

.parallax-card-container .parallax-card-back {
    transform: rotateY(180deg);
    transform-style: preserve-3d;
}

.parallax-card-container .parallax-card-front {
    transform: rotateY(0deg);
    transform-style: preserve-3d;
}

.parallax-card-container:hover .parallax-card-back {
    transform: rotateY(0deg);
    transform-style: preserve-3d;
}

.parallax-card-container:hover .parallax-card-front {
    transform: rotateY(-180deg);
    transform-style: preserve-3d;
}

.parallax-card-front .parallax-card-inner p {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.parallax-card-front .parallax-card-inner p::after {
    content: '';
    width: 4rem;
    height: 2px;
    position: absolute;
    background: #C6D4DF;
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -.75rem;
}

.parallax-card-front .parallax-card-inner span {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat';
    font-weight: 300;
}

.z-n1 {
    z-index: -1 !important;
}

.main-img {
    transition: transform 0.4s ease-in-out;
    cursor: pointer;
}

.zoom-container:hover .main-img {
    transform: scale(1.05);
}


/* Gallery =================================================== */

.mansory-gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5rem;
    position: relative;
}

.mansory-gallery .column {
    flex: 25%;
}

.mansory-gallery .column img {
    border: 0.5rem solid #fff;
    border-radius: 1.5rem;
    box-sizing: border-box;
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .mansory-gallery .column {
        flex: 50%;
    }
}

@media (max-width: 500px) {
    .mansory-gallery .column {
        flex: 100%;
    }
}


/* Side Icon============================================================================= */

.side_bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 200px;
    background-color: var(--color-accent);
    color: #fff;
    overflow: hidden;
    transition: width .3s ease;
    box-shadow: 4px 7px 10px rgba(0, 0, 0, .4);
    z-index: 1000;
}

.side_bar:hover {
    width: 200px;
}

.bar {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: block;
}

.nav__item {
    position: relative;
}

.icon-link {
    display: block;
    color: #fff;
    text-align: center;
    padding: 20px;
    transition: color .3s ease;
    text-decoration: none;
}

.icon-link i {
    font-size: 24px;
    display: block;
}

.icon-link::after {
    content: attr(data-text);
    position: absolute;
    left: 60px;
    white-space: nowrap;
    background-color: var(--color-accent);
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    width: 120px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    z-index: 1;
}

.side_bar:hover .icon-link::after {
    opacity: 1;
    visibility: visible;
    left: 70px;
}

.icon-link:hover {
    color: #54a4ff;
}


/* About Us============================================================================================ */

.about-container {
    height: 300px;
    background-color: #be9797;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.about-container h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 2px #ce5252;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-container h3::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 4px;
    background: #ffffff;
    left: 0;
    bottom: -10px;
    border-radius: 2px;
}

@media screen and (max-width: 720px) {
    .about-container h3::after {
        width: 50%;  
        left: 50%;
        transform: translateX(-50%);
        bottom: -5px; 
    }
    .about-container h3{
        font-size: 2rem;
    }
}

.img-hover {
    transition: transform 0.4s ease-in-out;
    width: 100%;
    height: auto;
    display: block;
}

.image-wrapper:hover .img-hover {
    transform: scale(1.05);
}


/* shape divider logo */

.logo-container {
    background-color: var(--color-background);
    position: relative;
}

.custom-shape-divider-top-1724841854 .shape-fill {
    fill: var(--white-color);
}

.custom-shape-divider-top-1724841854 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1724841854 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 86px;
}


/* bottom */

.custom-shape-divider-bottom-1724841998 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1724841998 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 86px;
}

.custom-shape-divider-bottom-1724841998 .shape-fill {
    fill: var(--white-color);
}


/* Testimonial */

/* Testimonial */
.review-section{
    height: 370px !important;
}

@media screen and (max-width:568px) {
    .review-section{
        height: 450px !important;
    }   
}

.testimonial-card {
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-height: auto; /* Adjust as needed */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Star styling */
.rating i {
  font-size: 1.2rem;
  color: yellow;
}

/* Custom carousel control buttons */
/* Carousel Control Styling - Close to the card */
.custom-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.75);
    border: none;
    border-radius: 50%;
    color: #fff;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
  
  .custom-carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .custom-carousel-control i {
    font-size: 1.25rem;
  }
  
  /* Default: closer for all screen sizes */

@media (min-width: 1200px) {
    .carousel-control-prev {
      left: calc(50% - 340px); /* Closer to center/card */
    }
  
    .carousel-control-next {
      right: calc(50% - 340px);
    }
  }



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

.footer-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-icon {
    color: #ffffff;
    font-size: 1.25rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-icon:hover {
    color: #ffffff;
    transform: scale(1.2);
}


/* Place Details */

.productImage-wrapper {
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

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

#largeImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

@media screen and (max-width:720px) {
    .productImage-wrapper{
        margin-top: 40px;
        height: 300px;
    }
}

.hover-scale:hover {
    transform: scale(1.08);
}


/* Description Styling */

#description {
    padding: 8px;
    margin-top: 10px;
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
}


/* Thumbnails */

#thumbs img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

#thumbs img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


/* Optional: Responsive Shrink */

@media (max-width: 768px) {
    #largeImage {
        height: 300px;
    }

    #thumbs img {
        height: 60px;
        width: 60px;
    }
}




/* MY CSS  */


.about-bg-container {
    background-image: url('../img/hotel/mg1.png');
}

.clock-container {
    background-image: url('../img/places/Clock-Tower/clock_towe-bg.jpg');
}

.rao-jodha-container {
    background-image: url('../img/places/rao-jodha-desert-rock\(2\).jpg');
}

.Umaid-Bhawan-img {
    background-image: url('../img/places/umaid_bhawan/umaid_bhawan3.jpg');
}

.near-place-container {
    background-image: url('../img/places/rao-jodha-desert-rock\(2\).jpg');
}

.Jaswant-Thada-container {
    background-image: url('../img/places/Jaswant-Thada/jaswant-thada.jpg');
}

.Mandore-Garden-container {
    background-image: url('../img/places/Mandore-Garden/mandore-gardens7.jpg');


}

.Bishnoi-Village-container {
    background-image: url('../img/places/Bishnoi-Village/Bishnoi-Village.jpg');

}

.Mehrangarh-container {
    background-image: url('../img/places/mehrangarh-forte/mehrangarh-forte3.jpg');
}

.Kaylana-Lake-container {
    background-image: url('../img/places/Kaylana-Lake/kaylana-lake4.jpg');
}

.Toorji-Ka-Jhalra-container {
    background-image: url('../img/places/Toorji-Ka-Jhalra/Toorji-Ka-Jhalra2.jpg');
}

.Machia-Safari-Park-container {
    background-image: url('../img/places/Machia-Safari-Park/Machia-Safari-Park1.webp');
}

.room-container {
    background-image: url('../img/pictures/r14.jpg');
}

.room-g-container {
    background-image: url('../img/hotel/room-g.jpg');
}

.contact-img-container {
    background-image: url('../img/hotel/full_img.jpg');
}


/* Room Gallery section */


/* ================================== Our Booking section ========================= */

#ourclients {
    padding: 30px 0;
    overflow: hidden;
  }
  
  .clients-wrap {
    overflow: hidden;
    width: 100%;
  }
  
  #clientlogo {
    margin-top: 20px;
    display: flex;
    flex-wrap: nowrap;
    animation: scroll-logos 20s linear infinite;
  }
  
  @media screen and (max-width:568px) {
    #clientlogo {
        animation: scroll-logos 10s linear infinite;
      }
      #clientlogo li img {
        width: auto;
        height: 30px !important;
      }
  }

  #ourclients:hover #clientlogo {
    animation-play-state: paused;
  }
  
  #clientlogo li {
    height: 120px;
    flex: 0 0 25%; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  
  #clientlogo li:hover {
    filter: grayscale(0%);
  }
  
  #clientlogo li img {
    width: auto;
    height: 80px;
    vertical-align: middle;
  }
  
  /* Mobile - show 2 logos */
  @media (max-width: 768px) {
    #clientlogo li {
      flex: 0 0 50%;
    }
  }
  
  @keyframes scroll-logos {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
