/********** Template CSS **********/
:root {
	--primary: #deb777;
	--secondary: #8D9297;
	--light: #F8F9FA;
	--dark: #deb777;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 30px;
	bottom: 30px;
	z-index: 99;
}

/*** Button ***/
.btn {
	font-weight: 500;
	transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
	color: #FFFFFF;
	font-family: 'Tenor Sans';
}

.btn.btn-primary::before,
.btn.btn-outline-primary::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background: #977a54;
	/* your theme color */
	z-index: -1;
	transition: width 0.4s ease;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
	top: -100px;
	transition: .5s;
}

.navbar .navbar-nav .nav-link {
	margin-left: 30px;
	padding: 25px 0;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	color: #deb777;
}

.navbar .dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
}

@media (max-width: 991.98px) {
	.navbar .navbar-nav .nav-link {
		margin-left: 0;
		padding: 10px 0;
	}

	.navbar .navbar-nav {
		margin-top: 25px;
		border-top: 1px solid #EEEEEE;
	}
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		border: none;
		margin-top: 0;
		top: 150%;
		right: 0;
		opacity: 0;
		visibility: hidden;
		transition: .5s;
	}

	.navbar .nav-item:hover .dropdown-menu {
		top: 100%;
		visibility: visible;
		transition: .5s;
		opacity: 1;
	}
}


/*** Header ***/
.carousel-caption {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	text-align: start;
	background: rgba(0, 0, 0, .65);
	z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
	width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 4rem;
	height: 4rem;
	/*background-color: var(--dark);
    border: 15px solid var(--dark);*/
	border-radius: 50px;
}

.carousel-caption .breadcrumb-item+.breadcrumb-item::before {
	content: "\f111";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: var(--primary);
}

@media (max-width: 768px) {
	#header-carousel .carousel-item {
		position: relative;
		min-height: 450px;
	}

	#header-carousel .carousel-item img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.carousel-control-prev-icon,
	.carousel-control-next-icon {
		width: 3rem;
		height: 3rem;
		border-width: 12px;
	}
}

.page-header {
	background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-1.jpg) center center no-repeat;
	background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
	color: #999999;
}

/*** Img Border ***/
.img-border {
	position: relative;
	height: 100%;
	min-height: 400px;
}

.img-border::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 3rem;
	bottom: 3rem;
	border: 5px solid var(--primary);
}

.img-border img {
	position: absolute;
	top: 3rem;
	left: 3rem;
	width: calc(100% - 3rem);
	height: calc(100% - 3rem);
	object-fit: cover;
}


/*** Icon ***/
.icon {
	padding: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f8efe6 !important;
	border-radius: 50%;
	border: 1px solid #977a54;
}

/* Expanding Gallery */
.expanding-gallery {
	display: flex;
	gap: 15px;
	overflow: hidden;
}

/* Card */
.expanding-card {
	flex: 1;
	height: 420px;
	position: relative;
	overflow: hidden;
	transition: flex 0.8s ease;
	cursor: pointer;
}

.expanding-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
	transition: filter 0.8s ease;
}

/* Title */
.expanding-card .card-head {
	position: absolute;
	font-family: 'Trajan', serif;
	bottom: 20px;
	left: 20px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 10px 18px;
	font-size: 10px;
	font-weight: 500;
	transition: all 0.5s ease;
}

/* Hover Effect */
.expanding-card:hover {
	flex: 4;
}

.expanding-card:hover img {
	filter: grayscale(0);
}

.expanding-card:hover .card-head {
	font-size: 18px;
	background: rgba(0, 0, 0, 0.75);
}

/* Mobile */
@media (max-width: 768px) {
	.expanding-gallery {
		flex-direction: column;
	}

	.expanding-card {
		height: 260px;
	}

	.expanding-card .card-head {
		font-size: 10px;
	}
}

/* Artistic Image Label */
.artistic-label {
	position: absolute;
	top: 12px;
	right: 12px;
	font-size: 6px;
	color: #fff;
	padding: 4px 10px;
	border-radius: 3px;
	letter-spacing: 0.5px;
	z-index: 2;
	pointer-events: none;
}

/*expanding gallery end*/

/*** Animal ***/
.gallery-item {
	position: relative;
	display: block;
}

.gallery-item .gallery-text {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .7);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 100px !important;
	opacity: 0;
	transition: .5s;
}

.gallery-item:hover .gallery-text {
	opacity: 1;
	padding-bottom: 20px !important;
}


.gallery-item {
	position: relative;
	display: block;
	overflow: hidden;
}

/* Image zoom */
.gallery-item img {
	transition: transform 0.5s ease;
}

/* SVG outline */
.gallery-item svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	pointer-events: none;
}

.gallery-item rect {
	fill: none;
	stroke: #c9a76c;
	stroke-width: 0.5;
	stroke-dasharray: 400;
	stroke-dashoffset: 400;
	transition: stroke-dashoffset 0.9s ease;
}

/* Hover animation */
.gallery-item:hover rect {
	stroke-dashoffset: 0;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

/*** Appointment ***/
.appointment {
	background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .5)), url(../img/ctaimg.jpg) center center no-repeat;
	background-size: cover;
}

.appointment2 {
	background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .5)), url(../img/am1.jpg) center center no-repeat;
	background-size: cover;
}

/*** CTA ***/
.cta {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.65)), url(../img/configurationbg2.jpg) center center no-repeat;
	background-size: cover;
}

/*** CTA ***/
.cta2 {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.65)), url(../img/am1.jpg) center center no-repeat;
	background-size: cover;
}


/*** Floor ***/
.floor-carousel .owl-nav {
	margin-top: 20px;
	display: flex;
	justify-content: center;
}

.floor-carousel .owl-nav .owl-prev,
.floor-carousel .owl-nav .owl-next {
	margin-right: 15px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark);
	border: 2px solid var(--primary);
	border-radius: 50px;
	font-size: 18px;
	transition: .5s;
}

.floor-carousel .owl-nav .owl-prev:hover,
.floor-carousel .owl-nav .owl-next:hover {
	color: #FFFFFF;
	background: var(--primary);
}

.floor-item .floor-overlay {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 4px;
	background: rgba(34, 36, 41, 0.4);
	/* semi-transparent dark */
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: .5s;
	opacity: 1;
}

/*** Amenities ***/
.floor-carousel2 .owl-nav {
	position: absolute;
	width: 100%;
	height: 60px;
	top: calc(50% - 30px);
	left: 0;
	display: flex;
	justify-content: space-between;
	z-index: 1;
}

.floor-carousel2 .owl-nav .owl-prev,
.floor-carousel2 .owl-nav .owl-next {
	margin-left: -15px;
	margin-right: -15px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: #005d6800;
	border: 2px solid #005d68;
	border-radius: 50px;
	font-size: 18px;
	transition: .5s;
}

.floor-carousel2 .owl-nav .owl-prev:hover,
.floor-carousel2 .owl-nav .owl-next:hover {
	color: #FFFFFF;
	background: #005d68;
}

.floor-item2 .floor-overlay2 {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 4px;
	background: rgba(34, 36, 41, 0.4);
	border: 1px solid var(--primary);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: .5s;
	opacity: 1;
}

/*amenities extra css*/
.floor-item2 {
	position: relative;
	background: #e4b461;
}

.amenity-label {
	text-align: center;
	padding: 14px 10px;
	color: #fff;
	background: linear-gradient(to top, rgba(0, 93, 104, 0.9), rgba(0, 93, 104, 0.7));
}

.amenity-label::before {
	content: "";
	display: block;
	width: 40px;
	height: 1px;
	background: #c9a76c;
	margin: 0 auto 8px;
}

/*amenities extra css end*/


/*** Connectivity ***/
.connectivity-carousel .owl-item img {
	width: 64px;
	height: 64px;
}

.connectivity-carousel .owl-nav {
	margin-top: 30px;
	display: flex;
	justify-content: start;
}

.connectivity-carousel .owl-nav .owl-prev,
.connectivity-carousel .owl-nav .owl-next {
	margin-right: 15px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark);
	border: 2px solid var(--primary);
	border-radius: 50px;
	font-size: 18px;
	transition: .5s;
}

.connectivity-carousel .owl-nav .owl-prev:hover,
.connectivity-carousel .owl-nav .owl-next:hover {
	color: #FFFFFF;
	background: var(--primary);
}


/*** Footer ***/
.footer {
	color: #999999;
}

.footer .copyright {
	padding: 5px 0;
	font-size: 15px;
	border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
	color: var(--light);
}

.footer .copyright a:hover {
	color: var(--primary);
}

.fadeclass {
	display: inline-block;
	animation: fadeZoom 3s ease-in-out infinite;
}

@keyframes fadeZoom {

	0%,
	100% {
		opacity: 0.4;
		transform: scale(1);
	}

	50% {
		opacity: 1;
		transform: scale(1.05);
	}
}

/*new css */

/*fixed form*/


.fixed-enquiry-form {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #005d68;
	padding: 14px 20px;
	z-index: 9999;
	box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
}

.fixed-enquiry-form .form-control {
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 0;
	color: #fff;
	padding: 10px 5px;
	font-size: 14px;
}

.fixed-enquiry-form .form-control::placeholder {
	color: rgba(255, 255, 255, 0.8);
}

.fixed-enquiry-form .form-control:focus {
	box-shadow: none;
	border-color: #fff;
	background: transparent;
}


/* Mobile */
@media (max-width: 768px) {
	.fixed-enquiry-form {
		padding: 12px;
		display: none !important;
	}

	.fixed-enquiry-form .row {
		gap: 8px;
	}
}


/*modal form start*/
/* MODAL BACKDROP */
.modal.custom-enquiry-modal .modal-content {
	background: #005d68;
	border: none;
}

.modal-backdrop.show {
	background: rgba(0, 0, 0, 0.9);
}

/* BOX */
.enquiry-box {
	background: rgba(0, 0, 0, 0.88);
	backdrop-filter: blur(12px);
	border-radius: 20px;
	padding: 40px;
	position: relative;
}

/* CLOSE */
.custom-close {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	font-size: 28px;
	color: #fff;
	cursor: pointer;
}

/* TEXT */
.enquiry-box h2 {
	font-family: 'Tenor Sans';
	font-weight: 400;
	color: #fff;
}

.enquiry-box p {
	color: #ddd;
}

/* INPUTS */
.enquiry-box input,
.enquiry-box select {
	width: 100%;
	padding: 14px 16px;
	border-radius: 10px;
	border: none;
	background: #f1f1f1;
	font-size: 15px;
}

.enquiry-box input:focus,
.enquiry-box select:focus {
	outline: none;
}

/* CHECKBOX */
.form-check-input {
	background-color: #0d6efd;
}

/*modal form end*/

.logoclass {
	width: 120px;
}

/*style for table start*/
/* Semi-opaque background for tbody cells */
.table tbody td {
	background-color: rgba(255, 255, 255, 0.85);
	/* White with opacity for image visibility */
	color: #333;
	/* Dark text for readability */
	border: 1px solid #dee2e6;
}

.table thead tr {
	animation: Gradient 3s ease infinite;
	background-size: 400% 400% !important;
	color: #fff;
	background: linear-gradient(to right, #314755 0%, #2a9ebe 51%, #266a7c 100%);

}

/* Make th background transparent so it inherits */
.table thead th {
	background: transparent;
	color: #fff;
	border: 1px solid #dee2e6;
}

/* Ensure table cells always collapse nicely */
.table {
	border-collapse: collapse;
}

/* Optional: Make sure borders look sharp */
.table th,
.table td {
	border: 1px solid #dee2e6;
}

/* Optional: Zebra striping with semi-opacity */
.table tbody tr:nth-of-type(odd) td {
	background-color: rgba(255, 255, 255, 0.9);
}

/*end*/

/*sticky button start*/
.container-box1 {
	display: inline-block;
	position: fixed;
	top: 80%;
	right: -178px;
	z-index: 30;
}

.rotated1 {
	-webkit-transform: rotate(-90deg);
	transform-origin: top left;
}

.bgimg {
    background: url("../img/abtbg.png") center center / cover no-repeat;
    background-attachment: fixed;
}

@media (max-width: 991.98px) {
    .bgimg {
        background-attachment: scroll;
    }
}

.pulseanimation {
	animation: pulse-cust 2s infinite;
}

@-webkit-keyframes pulse-cust {
	0% {
		-webkit-box-shadow: 0 0 0 0 #a99a85;
	}

	70% {
		-webkit-box-shadow: 0 0 0 25px #a99a85;
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 #a99a85;
	}
}

@keyframes pulse-cust {
	0% {
		-webkit-box-shadow: 0 0 0 0 #a99a85;
	}

	70% {
		-webkit-box-shadow: 0 0 0 25px rgba(227, 56, 56, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(227, 56, 56, 0);
	}
}

@media (max-width: 767px) {
	h5.eameh5 {
		font-size: 12px;
	}

	.project-item .project-title {
		height: 5px;
	}

	.project-item:hover .project-title,
	.project-carousel .owl-item.center .project-title {
		bottom: -20px;
	}

	.project-carousel .owl-nav .owl-prev,
	.project-carousel .owl-nav .owl-next {
		width: 35px;
		height: 35px;
		font-size: 10px;
	}

	.project-item .project-title::before {
		display: none;
	}

	p.footercontactp {
		font-size: 20px;
	}

	.project-item:hover img,
	.project-carousel .owl-item.center img {
		margin-top: -30px;
	}
}

/*abt arrow*/
.animate-up-down {
	position: relative;
	animation: animateUpDown 1s ease infinite;
}

@keyframes animateUpDown {
	0% {
		top: 0px;
	}

	50% {
		top: 10px;
	}

	100% {
		top: 0px;
	}
}

.animate-rotate {
	position: absolute;
	animation: animateRotate 8s linear infinite;
}

@keyframes animateRotate {
	100% {
		transform: rotate(360deg);
	}
}


/* ================================
   FLOAT ICONS – DESKTOP ONLY
   ================================ */

.enquiebtn {
	position: fixed;
	top: 200px;
	right: 10px;
	z-index: 999;
}

.enquiebtn ul {
	position: relative;
	padding-left: 0;
	margin-bottom: 0;
}

.enquiebtn ul li {
	background-color: #005d68;
	list-style-type: none;
	border: 1px solid #deb777;
	border-radius: 50px;
	margin: 10px 0;
	padding: 0;
	position: relative;
	overflow: hidden;
	/* keeps text inside pill */
	transition: all 0.6s ease;
}

/* hover slide (KEY BEHAVIOR) */
.enquiebtn ul li:hover {
	margin-left: -130px;
	cursor: pointer;
}

/* link */
.enquiebtn ul li a {
	display: flex;
	align-items: center;
	text-decoration: none;
	padding: 10px;
	position: relative;
}

/* icon wrapper */
.enquiebtn ul li a .img {
	position: relative;
	z-index: 1;
	transition: all 0.6s ease;
}

/* gold circle behind icon */
.enquiebtn ul li a .img::before {
	position: absolute;
	content: "";
	height: 150%;
	width: 150%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: -1;
	display: none;
	transition: all 0.6s ease;
}

/* text INSIDE pill */
.enquiebtn ul li a p {
	position: absolute;
	left: 55px;
	/* inside pill after icon */
	color: #fff;
	opacity: 0;
	white-space: nowrap;
	transition: all 0.2s ease;
}

/* hover text reveal */
.enquiebtn ul li:hover a p {
	opacity: 1;
	left: 55px;
	/* stays inside */
	transition-delay: 0.2s;
}

/* hover icon rotation */
.enquiebtn ul li:hover a .img {
	transform: rotate(-360deg);
}

/* show gold circle on hover */
.enquiebtn ul li:hover a .img::before {
	display: block;
}

/* ===== ABOUT SECTION ===== */

.iconwrap {
	width: 50px;
}

/* ===== LAYOUT ===== */

.feature-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.feature-col {
	display: flex;
	flex-direction: column;
	gap: 60px;
	flex: 1;
	/* equal width columns */
}

/* ===== ITEMS ===== */

.feature-item {
	display: flex;
	align-items: center;
	/*max-width: 280px;*/
	gap: 12px;
}

.feature-item p {
	margin: 0;
	line-height: 1.6;
}

/* LEFT COLUMN – FINAL CORRECT */
.feature-left {
	align-items: flex-end;
}

.feature-left .feature-item {
	display: flex;
	justify-content: flex-end;
	/* push toward image */
	align-items: center;
	width: 100%;
	max-width: 320px;
}

/* text */
.feature-left .feature-item p {
	/*text-align: right;*/
	margin: 0;
	margin-right: 15px;
}

/* ===== RIGHT COLUMN ===== */

.feature-col:last-child .feature-item {
	justify-content: flex-start;
}

/* ===== IMAGE GRID REVEAL ===== */

.image {
	position: relative;
	width: 320px;
	margin: auto;
}

.image img {
	width: 100%;
	display: block;
	opacity: 0;
	/* hide original */
}

/* grid wrapper */
.main-box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	display: flex;
	flex-wrap: wrap;
}

/* each tile */
.a_box {
	width: 25%;
	height: 25%;
	overflow: hidden;
	position: relative;
}

/* inner tile */
.a_box div {
	width: 400%;
	height: 400%;
	position: absolute;
	background-size: cover;
	background-position: center;
}

/* ===== GRID POSITIONING ===== */

.a_box:nth-child(1) div {
	top: 0;
	left: 0;
}

.a_box:nth-child(2) div {
	top: 0;
	left: -100%;
}

.a_box:nth-child(3) div {
	top: 0;
	left: -200%;
}

.a_box:nth-child(4) div {
	top: 0;
	left: -300%;
}

.a_box:nth-child(5) div {
	top: -100%;
	left: 0;
}

.a_box:nth-child(6) div {
	top: -100%;
	left: -100%;
}

.a_box:nth-child(7) div {
	top: -100%;
	left: -200%;
}

.a_box:nth-child(8) div {
	top: -100%;
	left: -300%;
}

.a_box:nth-child(9) div {
	top: -200%;
	left: 0;
}

.a_box:nth-child(10) div {
	top: -200%;
	left: -100%;
}

.a_box:nth-child(11) div {
	top: -200%;
	left: -200%;
}

.a_box:nth-child(12) div {
	top: -200%;
	left: -300%;
}

.a_box:nth-child(13) div {
	top: -300%;
	left: 0;
}

.a_box:nth-child(14) div {
	top: -300%;
	left: -100%;
}

.a_box:nth-child(15) div {
	top: -300%;
	left: -200%;
}

.a_box:nth-child(16) div {
	top: -300%;
	left: -300%;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {

	.feature-row {
		flex-direction: column;
		gap: 40px;
	}

	.feature-col {
		gap: 30px;
		align-items: center;
		text-align: center;
	}

	.feature-left {
		align-items: center;
	}

	.feature-left .feature-item {
		flex-direction: row;
		justify-content: center;
	}

	.feature-left .feature-item p {
		text-align: center;
	}

	.image {
		width: 220px;
	}
}

/* CARD */
.config-card {
	background: #ffffff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.config-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

/* IMAGE */
.config-img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	filter: blur(8px);
	transform: scale(1.05);
}

/* CONTENT */
.config-content {
	padding: 25px;
}

.config-content h5 {
	font-weight: 600;
	margin-bottom: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
	.config-img {
		height: 180px;
	}
}


/**/

/* CARD LIST */
.simana-cards {
	list-style: none;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

/* EACH CARD = FULL SCREEN */
.simana-card {
	position: sticky;
	top: 0;
	/* stick to top */
	height: 100vh;
	/* FULL SCREEN */
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* CARD INNER */
.simana-card-inner {
	background: #ffffff;
	width: 100%;
	height: 100%;
	border-radius: 0;
	/* fullscreen look */
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	box-shadow: none;
}

/* TEXT SIDE */
.simana-card-text {
	padding: 80px;
	display: flex;
	flex-direction: column;
	/*background: #faebd7;*/
	justify-content: center;
}

/* IMAGE SIDE */
.simana-card-image {
	height: 100%;
}

.simana-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* HEADING LINE */
.heading-line {
	display: block;
	width: 0;
	height: 4px;
	background: #deb777;
	margin: 15px 0 20px;
	animation: lineGrow 1.2s ease forwards;
}

/* ANIMATION */
@keyframes lineGrow {
	to {
		width: 80px;
	}
}

/* MOBILE SAFETY (still hidden via d-none d-lg-block) */
@media (max-width: 991px) {
	.simana-card {
		height: auto;
		position: relative;
	}

	.simana-card-inner {
		grid-template-columns: 1fr;
	}

	.simana-card-text {
		padding: 40px 25px;
	}
}


/* IMAGE CONTAINER */
.simana-card-image {
	position: relative;
	height: 100%;
	overflow: hidden;
}

/*card stack end*/
@media (max-width: 991px) {

	.feature-item {
		display: grid !important;
		grid-template-columns: 1fr 50px;
		align-items: center !important;
		width: 100%;
		gap: 10px;
	}

	/* TEXT */
	.feature-item p {
		margin: 0 !important;
		text-align: center !important;
		font-size: 14px;
		order: 1;
	}

	/* ICON */
	.feature-item .iconwrap {
		width: 40px;
		height: 40px;
		justify-self: end;
		order: 2;
		margin: 0 !important;
	}

	/* FORCE REMOVE flex impact (bootstrap d-flex) */
	.feature-item.d-flex {
		display: grid !important;
	}

	.title-line {
		width: 70px;
	}
}


/**/

.testimonial-img {
	overflow: hidden;
}

.overlay-text {
	background: rgba(0, 0, 0, 0.8);
	/* black background */
	color: #fff;
	/* white text */
	font-size: 15px;
	font-weight: 600;
	border-radius: 4px 0 0 0;
	/* optional: rounds only top-left corner */
	right: 5px;
}

.section-title {
	display: flex;
	align-items: center;
	justify-content: center;
	/* CENTER EVERYTHING */
	gap: 20px;
	text-align: center;
}

.title-line {
	width: 190px;
	height: 1px;
	background: #deb777;
}

.container-fluid.bg-dark.footer.pt-5.wow.fadeIn {
	margin-bottom: 65px;
}

@media (max-width: 767px) {
	.container-fluid.bg-dark.footer.pt-5.wow.fadeIn {
		margin-bottom: 0px;
	}
}

.fixed-enquiry-form select.form-select {
	background-color: rgba(255, 255, 255, 0.8);
	color: #000;
	backdrop-filter: blur(5px);
	line-height: normal;
	height: 45px;
	border: none;
	border-radius: 4px;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	padding-right: 35px;
}

.form-select:focus {
	outline: none;
	box-shadow: none;
	border-bottom: 1px solid #fff;
}


/**/

.partner-logo {
    height: auto;
}

p.partner-text {
    text-align: justify;
}
