
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
html, body{
overflow-x:hidden;
width:100%;
}

.navbar .container{
max-width:100%;
overflow:hidden;
}

.navbar-collapse{
background:#fff;
padding:15px;
}
.navbar .container{
max-width:100%;
overflow:hidden;
}

.navbar-collapse{
background:#fff;
padding:15px;
}
.hero-swiper,
.swiper,
.swiper-wrapper,
.swiper-slide{
width:100%;
max-width:100%;
overflow:hidden;
}
img{
max-width:100%;
height:auto;
display:block;
}
        :root {
            --warm-gold: #c5a065;
            --deep-river: #2c3e50;
            --cream-stone: #fcfaf5;
            --text-dark: #1a1a1a;
            --font-heading: 'Cormorant Garamond', serif;
            --font-body: 'Montserrat', sans-serif;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--cream-stone);
            color: var(--text-dark);
            
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        .navbar-brand {
            font-family: var(--font-heading);
            font-weight: 600;
        }

        /* buttons */
        .btn-gold {
            background-color: var(--warm-gold);
            color: #fff;
            border: 1px solid var(--warm-gold);
            padding: 12px 35px;
            border-radius: 0;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 2px;
            transition: 0.3s;
        }

        .btn-gold:hover {
            background-color: transparent;
            color: var(--warm-gold);
        }

        .btn-outline-gold {
            background: transparent;
            color: var(--warm-gold);
            border: 1px solid var(--warm-gold);
            padding: 10px 30px;
            border-radius: 0;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 2px;
            transition: 0.3s;
        }

        .btn-outline-gold:hover {
            background: var(--warm-gold);
            color: #fff;
        }

        /* section headings */
        .sect-title-area {
            text-align: center;
            margin-bottom: 60px;
        }

        .sect-subtitle {
            color: #eb9600;
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 0;
            font-family: var(--font-heading);
        }


.navbar-toggler {
  
    color: #663710;
    background-color: #663710;
}
        .sect-title {
            font-size: 3rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color:#663710
        }

        /* navbar */
        .navbar {
            transition: 0.4s ease;
            padding: 5px 0;
            background: #fff;
        }

        .navbar-brand {
            font-size: 1.8rem;
            letter-spacing: 2px;
            color: #fff !important;
            padding-top: 0;
            padding-bottom: 0;
        }

        .nav-link {
            color: #000000 !important;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 2px;
            margin: 0 10px;
            font-weight: 600
        }

        .nav-link:hover {
            opacity: 1;
            color: var(--warm-gold) !important;
        }

        .navbar.sticky {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            padding: 0px 0;
        }

        .navbar.sticky .navbar-brand {
            color: var(--deep-river) !important;
        }

        .navbar.sticky .nav-link {
            color: var(--text-dark) !important;
        }

        /* hero swiper + ken burns */
        .hero-swiper {
            height: 100vh;
            width: 100%;
        }

        .swiper-slide {
            overflow: hidden;
            position: relative;
        }

        .hero-placeholder {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 10s ease;
        }

        .swiper-slide-active .hero-placeholder {
            transform: scale(1.1);
        }

        .hero-overlay-content {
            position: absolute;
            bottom: 15%;
            left: 10%;
            color: #fff;
            max-width: 600px;
            text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
            z-index: 5;
        }

        /* high‑res unsplash / pexels replacements for missing local images */
        .slide-1 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url('../../images/slider-1.jpg');
        }

        .slide-2 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url('../../images/slider-2.jpg');
        }

        .slide-3 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url('../../images/slider-3.jpg');
        }

        .slide-4 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url('../../images/slider-4.jpg');
        }

        .slide-5 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url('../../images/slider-5.jpg');
        }

        /* booking bar */
        .booking-bar-wrapper {
            margin-top: -60px;
            position: relative;
            z-index: 10;
        }

        .booking-bar {
            background: #fff;
            padding: 20px 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            border-bottom: 3px solid var(--warm-gold);
        }

        .booking-bar .form-control,
        .booking-bar .form-select {
            border: none;
            border-bottom: 1px solid #ddd;
            border-radius: 0;
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .booking-bar .form-control:focus {
            box-shadow: none;
            border-color: var(--warm-gold);
        }

        .booking-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #888;
            margin-bottom: 0;
        }

        /* about image stack */
        .about-image-stack {
            position: relative;
        }

        .about-img-1 {
            width: 80%;
            border: 10px solid #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-img-2 {
            width: 60%;
            position: absolute;
            bottom: -10%;
            right: 0;
            border: 10px solid #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* facility items */
        .facility-item {
            text-align: center;
            padding: 30px 10px;
            background: #fff;
            height: 100%;
            border: 1px solid #f2f2f2;
        }

        .facility-item i {
            font-size: 2.5rem;
            color: var(--warm-gold);
            display: block;
            margin-bottom: 20px;
        }

        .facility-item h6 {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            color: var(--deep-river);
        }

        /* room cards */
        .room-card {
            background: transparent;
            border: none;
        }

        .room-img-container {
            overflow: hidden;
            position: relative;
        }

        .room-img-container img {
            transition: transform 0.6s ease;
            width: 100%;
        }

        .room-card:hover .room-img-container img {
            transform: scale(1.05);
        }

        .room-price {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.9);
            padding: 5px 15px;
            font-size: 0.8rem;
            letter-spacing: 1px;
            color: var(--deep-river);
        }

        /* parallax */
        .parallax-section {
            background-image: linear-gradient(rgba(44, 62, 80, 0.5), rgba(44, 62, 80, 0.5)), url('../../images/ganga-aarti.jpg');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            color: #fff;
            text-align: center;
        }

        /* attractions */
        .attraction-card {
            position: relative;
            overflow: hidden;
            height: 350px;
            border: none;
            border-radius: 0;
        }

        .attraction-img {
            object-fit: cover;
            height: 100%;
            width: 100%;
            transition: transform 0.6s ease;
        }

        .attraction-card:hover .attraction-img {
            transform: scale(1.1);
        }

        .attraction-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: #fff;
        }

        /* contact */
        .contact-info-box {
            background: var(--deep-river);
            color: #fff;
            padding: 50px;
            height: 100%;
        }

        iframe {
            width: 100%;
            height: 450px;
            border: 0;
            display: block;
        }

        .gallery-img {
            border-radius: 10px;
            transition: 0.4s;
        }

        .gallery-img:hover {
            transform: scale(1.05);
        }

        /* gallery grid (css masonry) */
        .gallery-container {
            padding: 100px 0;
            background: var(--cream-stone);
        }

	.calender {
		  background: #fff url(https://www.eglobe-solutions.com/extras/Content/WebsiteTemplate/L6deluxe/libs/images/calendar-icon.png) 94% no-repeat;
		  cursor: pointer;
		  border-radius:0px;
		  border: solid 1px #ddd;
		  color: #000;
		  text-align: left;
		  padding-left: 5px;
		}

        .gallery-item {
            overflow: hidden;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gi-1 {
            grid-column: 1/span 2;
            grid-row: 1/span 4;
        }

        .gi-2 {
            grid-column: 3/span 3;
            grid-row: 1/span 3;
        }

        .gi-3 {
            grid-column: 6/span 3;
            grid-row: 1/span 4;
        }

        .gi-4 {
            grid-column: 1/span 2;
            grid-row: 5/span 4;
        }

        .gi-5 {
            grid-column: 3/span 3;
            grid-row: 4/span 5;
        }

        .gi-6 {
            grid-column: 6/span 3;
            grid-row: 5/span 4;
        }

        @media (max-width:768px) {
            .gallery-grid {
                display: none;
            }

            .gallery-swiper-wrap {
                display: block;
            }
        }

        @media (min-width:769px) {
            .gallery-swiper-wrap {
                display: none;
            }
        }

        footer {
            background: #1a1a1a;
            color: rgba(255, 255, 255, 0.6);
            padding: 80px 0 30px;
            font-size: 0.9rem;
        }

        footer h5 {
            color: #fff;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        footer a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
        }

        footer a:hover {
            color: var(--warm-gold);
        }


        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            transition: 0.4s;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

        @media(max-width:768px) {

            .gallery-grid {
                display: none;
            }

            .gallery-swiper-wrap {
                display: block;
            }

        }

        @media(min-width:769px) {

            .gallery-swiper-wrap {
                display: none;
            }

        }
    