.hero-section {
	position: relative;
	overflow: hidden;
}

.hero-img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(0, 0, 0, 0.65),
			rgba(0, 0, 0, 0.65));
}

.hero-title span {
	display: block;
	font-size: 18px;
}

.hero-title {
	color: #fff;
	font-size: 40px;
	font-weight: 500;
	letter-spacing: 0.5px;
	line-height: 55px;
}

@media (max-width: 768px) {
	.hero-img {
		height: 280px;
	}

	.hero-title {
		font-size: 26px;
	}
}


/*XXXXXXXXXXXXXXXXXXXX*/

.cert-gallery {
	padding: 70px 20px;
}

.gallery-grid {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.gallery-item {
	position: relative;
	border: 1px solid #c7a14a;
	padding: 8px;
	overflow: hidden;
	display: block;
}

.gallery-item img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
	transition: .35s ease;
}

/* Overlay */
.gallery-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .55);
	opacity: 0;
	transition: .35s ease;
}

/* Plus Icon */
.zoom-plus {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(.6);
	font-size: 60px;
	font-weight: 300;
	color: #fff;
	opacity: 0;
	z-index: 2;
	transition: .35s ease;
	line-height: 1;
}

/* Hover */
.gallery-item:hover img {
	transform: scale(1.08);
}

.gallery-item:hover::after {
	opacity: 1;
}

.gallery-item:hover .zoom-plus {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

/* Tablet */
@media(max-width:992px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */
@media(max-width:576px) {
	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.gallery-item img {
		height: auto;
	}

	.zoom-plus {
		font-size: 44px;
	}
}


/*XXXXXXXXXXXXXXXXXXXX*/
.facility-section {
	padding-top: 50px;
	overflow: hidden
}

.facility-slider {
	width: 100%;
	overflow: hidden
}

.facility-slider .swiper-wrapper {
	align-items: stretch
}

.facility-slider .swiper-slide {
	padding: 0;
	box-sizing: border-box
}

.facility-card img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain
}

/*XXXXXXXXXXXXXXXXXXXX*/
.review-section {
	position: relative;
	padding-top: 50px;
	padding-bottom: 60px;
	margin-bottom: 30px
}

.review-section:hover .swiper-button-prev {
	opacity: 1
}

.review-section:hover .swiper-button-next {
	opacity: 1
}

.review-card {
	text-align: center
}

.review-card p {
	margin: 0;
	font-size: 15px;
	line-height: 24px
}

.review-card img {
	width: inherit !important;
	height: 190px;
	border-radius: 50%;
	border: 1px solid #d1ab6a
}

.sub-review {
	line-height: 1.2;
	font-size: 22px !important;
	text-transform: capitalize;
	letter-spacing: 0;
	font-weight: 300;
	margin-bottom: 10px !important;
	color: #d1ab6a;
	margin-top: 30px !important
}

.review-heading {
	line-height: 1.2;
	font-size: 16px !important;
	text-transform: capitalize;
	letter-spacing: 1px;
	font-weight: 300;
	margin-bottom: 10px !important;
	color: #d1ab6a
}

.review-section .swiper-slide {
	opacity: .5
}

.review-section .swiper-slide .review-text {
	opacity: 0
}

.review-section .swiper-slide-next {
	opacity: 1 !important
}

.review-section .swiper-slide-next .review-text {
	opacity: 1 !important
}

@media(max-width:991px) {
	.review-section .swiper-slide {
		opacity: 1
	}

	.review-section .swiper-slide .review-text {
		opacity: 1
	}
}

/*XXXXXXXXXXXXXXXXXXXX*/
.before-after-section {
	padding: 50px 0;
	position: relative
}

.before-after-card {
	background: #2a2a2a;
	padding: 10px
}

.swiper-button-prev,
.swiper-button-next {
	width: 45px;
	height: 45px;
	background: #d1ab6a;
	border-radius: 50%;
	color: #fff;
	opacity: 0;
	-webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
	transition: all .3s cubic-bezier(.645, .045, .355, 1)
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 20px
}

.before-after-section:hover .swiper-button-prev {
	opacity: 1
}

.before-after-section:hover .swiper-button-next {
	opacity: 1
}

.swiper-button-prev :after,
.swiper-button-next :after {
	font-size: 18px;
	font-weight: 700
}

.swiper-button-prev :hover,
.swiper-button-next :hover {
	background: #fff;
	color: #000
}

.swiper-button-prev {
	left: 100px
}

.swiper-button-next {
	right: 100px
}

@media(max-width:768px) {
	.swiper-button-prev {
		left: 0
	}

	.swiper-button-next {
		right: 0
	}
}


.swiper-pagination-bullet {
	background: #fff;
	opacity: 1;
	width: 12px;
	height: 12px
}

.swiper-pagination-bullet-active {
	background: #d1ab6a;
	opacity: 1;
	width: 12px;
	height: 12px
}

/*XXXXXXXXXXXXXXXXXXXX*/

.video-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .75);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: .25s ease;
	z-index: 99999;
}

.video-modal.active {
	opacity: 1;
	visibility: visible;
}

.video-modal-content {
	position: relative;
	max-width: 100%;
	width: 300px;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
}

.video-modal video {
	width: 100%;
	height: auto;
	display: block;
}

.video-close {
	position: absolute;
	top: 8px;
	right: 12px;
	font-size: 30px;
	color: #fff;
	cursor: pointer;
	line-height: 1;
	z-index: 10;
}


/*XXXXXXXXXXXXXXXXXXXX*/

.img-tag img {
	border: 1px solid #d1ab6a;
	padding: 10px;
}

.quote-sec p {
	font-size: 26px;
	line-height: 45px;
	font-style: italic;
}


.counter-section {
	position: relative;
	padding: 60px 0;
	border-top: 1px solid #d1ab6a;
	border-bottom: 1px solid #d1ab6a;
	background: #000;
}

.counter-box {
	text-align: center;
	color: #d1ab6a
}

.counter-number {
	font-size: 50px;
	font-weight: 300;
	letter-spacing: 2px;
	margin-bottom: 10px
}

.counter-text {
	font-size: 20px;
	letter-spacing: 2px;
	text-transform: capitalize
}

@media(max-width:991px) {
	.counter-number {
		font-size: 42px
	}
}

@media(max-width:767px) {
	.counter-box {
		margin-bottom: 30px
	}
}


.premium-cta-section {
	padding: 100px 0;
	border-top: 1px solid #d1ab6a;
	border-bottom: 1px solid #d1ab6a;
	background: #000
}

.premium-cta-box {
	padding: 0;
	text-align: center;
	max-width: 1300px;
	margin: auto
}

.premium-cta-box h2 {
	color: #fff;
	font-size: 32px;
	font-weight: 300;
	letter-spacing: 1px
}

.premium-cta-box p {
	color: #fff;
	margin-top: 15px;
	font-size: 18px;
	letter-spacing: 1px
}

.cta-btn-group {
	margin-top: 40px;
	display: flex;
	gap: 18px;
	justify-content: center;
	flex-wrap: wrap
}

.btn-outline-gold.but-one {
	border: 1px solid #d1ab6a;
	background: #fff0
}

.btn-outline-gold.but-one span {
	color: #fff
}

.btn-outline-gold:hover span {
	color: #000 !important
}

@media(max-width:768px) {
	.premium-cta-box {
		padding: 0
	}

	.premium-cta-box h2 {
		font-size: 22px
	}

	.premium-cta-box p {
		font-size: 16px
	}
}


/*XXXXXXXXXXXXXXXXXXXXXXXXX*/

.service-tabs {
	display: flex;
	margin-bottom: 0;
	justify-content: space-between;
	gap: 10px
}

.tab-btn {
	border: 1px solid #d1ab6a;
	background: #fff0;
	color: #d1ab6a;
	padding: 14px 32px;
	margin: 0;
	letter-spacing: 1px;
	font-size: 16px;
	width: 100%;
	font-family: 'Montserrat'
}

.tab-btn.active {
	background: #d1ab6a;
	color: #000
}

.tab-wrapper {
	border: 1px solid #d1ab6a;
	padding: 30px
}

.tab-content-box {
	display: none
}

.tab-content-box.active {
	display: block
}

.tab-image img {
	width: 100%
}

.tab-content-box h3 {
	color: #d1ab6a;
	font-size: 35px;
	font-weight: 300;
	margin-bottom: 30px
}

.tab-content-box p {
	color: #d6d6d6;
	font-size: 17px;
	line-height: 1.9
}

/*XXXXXXXXXXXXXXXXXX*/

.tmd-section {
	padding: 50px 0
}

.tmd-container {
	max-width: 1400px;
	margin: auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center
}

.video-wrapper {
	position: relative;
	width: 65%;
	aspect-ratio: 9 / 16;
	background: #000;
	overflow: hidden;
	margin: 0 auto;
	border: 1px solid #d1ab6a
}

.video-poster,
.lazy-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	padding: 10px
}

.lazy-video {
	opacity: 0;
	transition: opacity .5s ease
}

.tmd-step {
	display: flex;
	gap: 22px;
	margin-bottom: 35px
}

.tmd-step:last-child {
	margin: 0
}

.tmd-step span {
	font-size: 70px;
	font-weight: 300;
	line-height: 1;
	color: #d8b46a;
	min-width: 50px
}

.tmd-step h3 {
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 6px
}

.tmd-step p {
	color: #fff;
	font-size: 16px;
	line-height: 1.7;
	max-width: 520px
}

@media(max-width: 992px) {
	.tmd-container {
		grid-template-columns: 1fr
	}

	.tmd-content {
		text-align: left
	}
}