* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: white;
}
/*----------------------------------------- Navbar Css  ---------------------------------------------------------*/

.navbar-custom {
	background-color: white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.login-btn {
	background-color: green;
	color: white;
	padding: 6px 12px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.offcanvas-start {
	width: 250px;
}

.nav-links {
	font-size: 10px;
	text-transform: uppercase;
}

.navbar.fixed-top {
	z-index: 1030;
}

@media (min-width: 992px) {
	.navbar-nav {
		margin-left: auto;
		margin-right: auto;
	}
}

/* marquee scroller */
.marquee-section {
	background-color: black;
}

.marquee-section p {
	font-family: "poppins";
	color: white;
}
.marquee-wrapper {
	overflow: hidden;
	white-space: nowrap;
	position: relative;
}

.marquee-text {
	display: inline-block;
	padding-left: 100%;
	animation: marquee 25s linear infinite;
	font-size: 1rem;
	color: rgb(224, 35, 35);
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

/* container custom size */
.custom-container {
	max-width: 95%; /* You can change to 960px, 1200px, etc. */
	margin: 0 auto; /* Center align */
	padding: 0 15px; /* Optional: add some horizontal padding */
}
/* about us styleing */

.sub_heading {
	font-family: "EB Garamond";
	color: black;
	text-transform: capitalize;
	font-size: 38px;
}

.description {
	font-family: "poppins";
	font-weight: 400;
	text-align: center;
	font-size: 17px;
	color: rgb(88, 85, 85);
	text-align: center;
}
.image-container img {
	/* display: flex; */
	/* gap: 10px; */
	width: 100%;
	height: 300px;
}

/* about us media querry */
@media (max-width: 576px) {
	.sub_heading {
		font-weight: bold;
		font-size: 28px;
		text-align: center;
	}
	.description {
		text-align: justify;
		font-size: 16px;
	}
}

/* our services */

.event-section {
	background-color: #231f202e;
}
.event-title {
	font-family: "EB Garamond";
	font-size: 38px;
	font-weight: 500;
	font-style: normal;
	line-height: 35px;
}

.event-icon {
	height: 120px;
	filter: brightness(0) saturate(100%) invert(21%) sepia(96%) saturate(6244%)
		hue-rotate(346deg) brightness(94%) contrast(110%);
}
.servicebutton {
	display: flex;
	justify-content: center;
	align-items: center;
}
.service-btn {
	background-color: #850303;
	color: white;
	border: none;
	padding: 15px 25px;
	display: flex;
	justify-content: center;
	text-align: center;
	font-family: "EB Garamond";
	font-weight: bold;
	margin-top: 20px;
}
.event-right {
	background-image: url("https://i.pinimg.com/originals/62/de/1b/62de1bc45a81286d1e09dbd7adb8404a.jpg");
	background-size: cover;
	background-position: center;
	position: relative;
	height: 100%;
	min-height: 600px;
	color: white;
	overflow: hidden;
}

/* Add a dark overlay */
.event-right::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(2, 2, 2, 0.63); /* semi-transparent black */
	z-index: 1;
}

.overlay-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-family: "Georgia", serif;
	font-size: 48px;
	font-weight: bold;
	line-height: 1.4;
	color: white;
	z-index: 2; /* place text above overlay */
}

.overlay-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	text-align: center;
	font-family: "Georgia", serif;
	font-size: 38px;
	font-weight: bold;
	line-height: 1.4;
}

/* Services us media querry */

@media (max-width: 576px) {
	.event-title {
		font-size: 28px;
		text-align: center;
	}
	.description {
		color: black;
	}
	.service-btn {
		padding: 15px;
	}
}

/* rooms css styleing */
.room-text {
	text-transform: uppercase;
	font-family: "poppins";
	font-weight: bold;
	font-family: 35px;
}

/* Customer Reviews Section */
.testimonial-section {
	background-color: #231f202e;
	padding: 30px 0;
}

.testimonial-card {
	background: white;
	padding: 40px;
	border-radius: 2px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	margin: 20px 40px;
	position: relative;
	transition: transform 0.3s ease;
}

.quote-icon {
	position: absolute;
	top: -20px;
	left: 40px;
	width: 40px;
	height: 40px;
	background: black;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quote-icon i {
	color: white;
	font-size: 1.5rem;
}

.client-info {
	display: flex;
	align-items: center;
	gap: 15px;
}

.client-img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
}

.client-name {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 700;
	color: #333;
	font-family: "Montserrat";
}

.client-profession {
	margin: 0;
	color: #ff9800;
	font-size: 0.9rem;
}

.carousel-indicators button.active {
	opacity: 1;
}

/* Animation */
.carousel-item {
	transition: transform 0.6s ease-in-out;
}

.carousel-item.active .testimonial-card {
	animation: slideIn 0.6s ease forwards;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.testimonial-card {
		margin: 20px 10px;
		padding: 30px;
	}
}

/* images scroll auto */
/* Hide scrollbar for cleaner look */
.no-scrollbar::-webkit-scrollbar {
	display: none;
}
.no-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

/* service section */
.service-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
	font-size: 40px;
	color: #dba765;
	margin-bottom: 15px;
}

.service-title {
	font-family: Cormorant Garamond;
	color: #dba765;
	text-transform: capitalize;
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 10px;
}

.service-text {
	font-size: 15px;
	color: #555;
}

.services-section {
	background-color: #f9f9f9;
	padding: 60px 0;
}

/* features section */
.feature-section {
	/* padding: 80px 0; */
	background-color: #111;
	position: relative;
}

.feature-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feature-content h6 {
	color: #d6a354;
	letter-spacing: 1px;
	font-weight: 600;
}

.feature-content h2 {
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
}

.feature-content p {
	color: #bbb;
	font-size: 14px;
}

.play-button {
	background: #fff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d6a354;
	font-size: 20px;
	margin-top: 30px;
	transition: all 0.3s ease;
}

.play-button:hover {
	background: #d6a354;
	color: #fff;
}

@media (max-width: 767px) {
	.feature-content {
		text-align: center;
		margin-top: 30px;
	}
}

/* footer css */
footer a {
	transition: color 0.3s ease, transform 0.3s ease;
	display: inline-block;
}

footer a:hover {
	color: white;
	transform: translateX(5px);
}

footer .social-icon:hover {
	transform: translateY(-5px);
}

/* Review Css */
#starRating .star {
	font-size: 24px;
	cursor: pointer;
	color: #ccc; /* Default gray */
	transition: color 0.2s;
}

#starRating .star.fas {
	color: #ffc107; /* Yellow for selected stars */
}

#starRating .star:hover,
#starRating .star:hover ~ .star {
	color: #ccc; /* Prevent hover from affecting others */
}

#starRating .star:hover:nth-child(1),
#starRating .star:hover:nth-child(1) ~ .star,
#starRating .star:hover:nth-child(2),
#starRating .star:hover:nth-child(2) ~ .star,
#starRating .star:hover:nth-child(3),
#starRating .star:hover:nth-child(3) ~ .star,
#starRating .star:hover:nth-child(4),
#starRating .star:hover:nth-child(4) ~ .star,
#starRating .star:hover:nth-child(5),
#starRating .star:hover:nth-child(5) ~ .star {
	color: #ffc107;
}

/*----------------------------------------- CONTACT US CSS -----------------------------------------------*/
.contact-form {
	background: white;
}

.contact-form label {
	font-weight: 500;
}

.contact-form .form-control,
.contact-form .form-select {
	border-radius: 4px;
	padding: 10px;
}

.contact-form button {
	padding: 12px;
	font-weight: 500;
	background-color: #850303;
	border: none;
}

.contact-form button:hover {
	background-color: #850303;
}

.text-loction {
	font-family: 'nunito', sans-serif;
	color: #850303;
}

.contact-info {
	text-align: center;
}

@media screen and (max-width: 767px) {
	.contact-info {
		text-align: justify;
		padding: 0 20px;
	}
}

/*---------------------------------- MAP CSS ----------------------------------------*/
.map-responsive {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
}

.map-responsive iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/*---------------------------------- berdcumb Css ----------------------------------------*/
.bedroom-banner {
	background: url("images/1.png") center center/cover no-repeat;
	height: 50vh;
	position: relative;
	color: white;
	margin-top: 37px;
}

@media (max-width: 768px) {
	.bedroom-banner {
		height: 35vh;
		position: relative;
		color: white;
		margin-top: 37px;
	}
}

/* Play button css */
.video-thumbnail {
	position: relative;
	display: inline-block;
	max-width: 100%;
	cursor: pointer;
}

.video-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(0, 0, 0, 0.7);
	border-radius: 50%;
}

.play-button i {
	color: white;
	font-size: 30px;
}

.play-button:hover {
	background-color: rgba(0, 0, 0, 0.9);
}

/* Carsoul Indicators Css*/
/* Custom styles for carousel indicators */
#interiorCarousel .carousel-indicators,
#servicesCarousel .carousel-indicators {
	position: relative;
	margin-top: 20px;
}

#interiorCarousel .carousel-indicators button,
#servicesCarousel .carousel-indicators button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ccc;
	border: none;
	margin: 0 5px;
}

#interiorCarousel .carousel-indicators button.active,
#servicesCarousel .carousel-indicators button.active {
	background-color:#850303;
	/* Red color for active indicator */
}
