body {
	margin: 0;
	font-family: "Urbanist", sans-serif;
}

/* Navbar */
.navbar {
	transition: all 0.3s ease;
	padding: 1rem 0;
	background: transparent;
}
.navbar.scrolled {
	background: black;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
	font-weight: 700;
	font-size: 1.5rem;
	color: #fff;
}
.navbar.scrolled .navbar-brand {
	color: white;
}
.navbar-nav .nav-link {
	color: white;
	font-weight: 500;
	margin: 0 8px;
	transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
	color: #f9ba23;
}
.navbar.scrolled .nav-link {
	color: white;
}

.navbar.scrolled .nav-link:hover {
	color: #f9ba23;
}

.booking-btn {
	background: #f9ba23;
	border: none;
	color: #fff !important;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	transition: background 0.3s;
}

.booking-btn:hover {
	background: #f9ba23;
}

/* Navbar toggle */
.navbar-toggler {
	border: none;
	outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='%23f9ba23' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

.navbar.scrolled .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='%23f9ba23' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

/* Banner Section */
.banner-section {
	position: relative;
	overflow: hidden;margin-top: 90px;
}

.banner-imges {
	height: 100vh;
	object-fit: cover;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.custom-indicators {
	position: absolute;
	left: 35%;
	transform: translateX(-50%);
	display: flex;
}

.custom-indicators button {
	width: 14px;
	height: 16px;
	background-color: #000;
	border: 2px solid #000;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.custom-indicators button.active,
.custom-indicators button:hover {
	background-color: #f9ba23;
	opacity: 1;
}

@media (max-width: 768px) {
	.banner-imges {
		height: 55vh;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
}

@media (max-width: 768px) {
	.taj-award {
		padding: 10px;
	}
}

/* About Section Css */
.main-heading {
	font-family: "Roboto", sans-serif;
	text-align: center;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 600;
}

.sub_heading {
	text-align: center;
	font-family: "Nunito", sans-serif;
	text-align: justify;
}

/* Room section */
.section-title {
	font-family: "Gilda Display", sans-serif;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: white;
}
.room-card {
	background: #1c1c1c;
	/* border-radius: 12px; */
	overflow: hidden;
	transition: transform 0.3s ease;
}
.room-card:hover {
	transform: translateY(-5px);
}
.room-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}
.room-head {
	color: #f9ba23;
	font-family: 'Nunito', sans-serif;
}
.room-content {
	padding: 20px;
}

.room-icons {
	display: flex;
	justify-content: flex-start;
	gap: 26px;
	font-size: 0.9rem;
	margin-top: 10px;
	color: #c1c1c1;
}
.room-icons i {
	margin-right: 5px;
	color: #f9ba23;
}
.price-tag {
	position: absolute;
	top: 15px;
	left: 15px;
	background: #f9ba23;
	color: #fff;
	padding: 5px 12px;
	font-size: 0.9rem;
	border-radius: 6px;
	font-weight: 600;
}
.swiper-button-next,
.swiper-button-prev {
	width: 45px;
	height: 45px;
	background: #fff; /* white background */
	border-radius: 50%; /* circle */
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	color: #f9ba23; /* arrow color */
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 12px; /* arrow size */
	font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: #f9ba23; /* hover effect */
	color: white;
}

.testimonial-section {
	height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.star-color {
	color: #f9ba23;
}

.testimonial-section {
	position: relative;
	z-index: 1;
}

.testimonial-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5); /* light black overlay */
	z-index: -1;
}

/* each pages banner */
.page-banner {
	position: relative;
	background-size: cover;
	background-position: center;
	height: 100vh;
	color: #fff;
}

.page-banner::before {
	content: "";
	position: absolute;
	inset: 0;
}

.banner-info {
	position: relative;
	z-index: 1; /* keep text above overlay */
	text-align: center;
	top: 90%;
	transform: translateY(-50%);
	text-transform: uppercase;
	font-family: "Gilda Display", sans-serif;
}

@media (max-width: 768px) {
	.page-banner {
		height: 40vh;
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
	}
	.section-title {
		font-size: 1.7rem;
	}
}

/* Contact Scetion Css */
/* Contact us Pages css */
.tab-btn {
	background-color: #ded1ad;
	border: none;
	font-family: "Playfair Display", serif;
	font-weight: 500;
	padding: 10px 25px;
	color: #333;
	border-radius: 0;
}

.tab-btn.active {
	background-color: #f9ba23;
	color: white;
}

.form-input {
	border: none;
	border-bottom: 1px solid #ccc;
	border-radius: 0;
	box-shadow: none;
	padding-left: 35px;
	background: transparent;
}

.form-input:focus {
	border-color: #f9ba23;
	outline: none;
	box-shadow: none;
}

.form-label {
	position: absolute;
	top: -12px;
	left: 35px;
	font-size: 14px;
	color: #999;
	background: white;
	padding: 0 4px;
}

.form-icon {
	position: absolute;
	top: 10px;
	left: 10px;
	color: #f9ba23;
}
.golden-btn {
	background-color: #f9ba23; /* Rich gold */
	color: #fff;
	padding: 12px 40px;
	font-family: "Playfair Display", serif;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	border: none;
	border-radius: 2px;
	letter-spacing: 1px;
	transition: all 0.3s ease-in-out;
}

.golden-btn:hover {
	background-color: #f9ba23;
	color: #fff;
	box-shadow: 0 2px 10px rgba(188, 161, 100, 0.3);
}

.text-brown {
	color: #f9ba23;
	font-size: 20px;
}

@media (max-width: 576px) {
	.golden-btn {
		width: 80%;
	}
}
.contact-coordinates-section iframe {
	width: 100%;
	height: 400px;
}
.contact-coordinates-section p {
	font-size: 16px;
	margin-bottom: 15px;
	font-family: "Questrial", sans-serif;
}
.coordinates-wrapper {
	padding: 35px;
}
@media (max-width: 768px) {
	.coordinates-wrapper {
		padding: 15px;
	}
}

/* Exclusive Section Css */
.offer-card {
	cursor: pointer;
	transition: transform 0.3s ease;
}
.offer-card:hover {
	transform: scale(1.05);
}
.offer-card img {
	transition: transform 0.5s ease;
}
.offer-card:hover img {
	transform: scale(1.1);
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.offer-card:hover .overlay {
	opacity: 1;
}
.arrow-btn {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 50px;
	height: 50px;
	background-color: #f9ba23; /* circle color */
	border-radius: 50%;
	color: white;
	font-size: 1.5rem;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.offer-card:hover .arrow-btn {
	opacity: 1;
	transform: translateX(0);
}
.arrow-btn:hover {
	background-color: #947550; /* darker on hover */
}

/* About Us CSS */
.about-dngrand {
	background: #f9f9f9;
}
.btn-custom {
	background: #f9ba23;
	color: white;
	border-radius: 6px;
	transition: 0.3s;
}
.btn-custom:hover {
	background: #f9ba23;
}
.icon-circle {
	background: #f9ba23;
	border-radius: 50%;
	padding: 8px 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* FAQ Section Css */
.faq-section {
	background-color: #141414;
}

/* Blog Section  Css */
.blog-section .card {
	transition: transform 0.3s, box-shadow 0.3s;
	border-radius: 12px;
}

.blog-section .card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.blog-section .card-title {
	font-family: "Playfair Display", serif; /* Example font like screenshot */
	font-size: 1.1rem;
}

.blog-section .btn-brown {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f9ba23;
	color: white;
}

/* 360 View Css */
.viewer-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.viewer {
	width: 100%;
	height: 400px;
}
@media (max-width: 768px) {
	.viewer-grid {
		grid-template-columns: 1fr;
	}
}


/* Service section Css */
   .services-section {
  background-color: #f9f9f9;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card .service-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.1) translateY(-10px);
}

.service-card:hover .service-name {
  background: rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
  .service-card img {
    height: 200px;
  }
}

/* 360 view css */
.map-col {
        height: 400px;
        /* set iframe height */
        padding: 0;
    }

    .map-col:first-child {
        padding-right: 10px;
        /* gap on right of first column */
    }

    .map-col:last-child {
        padding-left: 10px;
        /* gap on left of second column */
    }

    .map-col iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    @media (max-width: 768px) {
    .map-col:first-child,
    .map-col:last-child {
        padding: 0; /* remove horizontal gap on small screens */
    }
}
