/* Lenis Smooth Scroll Basic CSS */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

:root {
	--primary-color: #ff7a04;
	--secondary-color: #f0eae0;
	--accent-color: #00ba9a;
	--accent-secondary-color: #5804f6;
	--white-color: #ffffff;
	--text-color: #000000;
	--default-font: 'Montserrat', sans-serif;
	--accent-font: 'Montserrat', sans-serif;
}

body {
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--secondary-color);
}

::-webkit-scrollbar-track {
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

::selection {
	color: var(--primary-color);
	background-color: var(--secondary-color);
	filter: invert(1);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.2em;
	color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--accent-font);
	font-weight: 800;
	line-height: 1.2em;
	color: var(--primary-color);
	letter-spacing: -1.5px;
	transition: all 0.3s ease;
	cursor: default;
}

h1 {
	font-size: 3.5rem;
	letter-spacing: -2.5px;
}

h2 {
	font-size: 2.8rem;
	letter-spacing: -2px;
}

h3 {
	font-size: 1.8rem;
	letter-spacing: -1.2px;
}

h4 {
	font-size: 1.5rem;
	letter-spacing: -1px;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
	max-width: 100vw;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	position: relative;
	padding-right: 15px;
	padding-left: 15px;
	z-index: 1;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
	pointer-events: none;
}
.reveal *{
	pointer-events: auto;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}


.btn-default {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	background: #fff !important;
	color: black !important;
	padding: 10px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
	border: none;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 8px 15px rgba(230, 115, 0, 0.1) !important;
	cursor: pointer;
}

.btn-default:hover {
	background: #fff !important;
	transform: scale(1.05) translateY(-2px);
	box-shadow: 0 8px 15px rgba(255, 122, 4, 0.12) !important;
	color: #000000;
}

.btn-default:active {
	transform: scale(0.98);
}

.btn-default::after {
	content: '';
	position: absolute;
	inset: 0;
	background: transparent;
	transform: translateX(-100%);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: -1;
}

.btn-default:hover::after {
	transform: translateX(0);
}

.btn-default:hover::before {
	transform: rotate(45deg);
}

.btn-border {
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
}

.btn-border::after {
	background: var(--accent-secondary-color);
}

.btn-border:hover {
	color: var(--white-color);
}


.cb-cursor:before {
	background: #00ba9a;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--accent-secondary-color) transparent var(--accent-secondary-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-title {
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.section-title {
		margin-bottom: 25px;
	}
}

@media (max-width: 480px) {
	.section-title {
		margin-bottom: 20px;
	}
}

.section-title h3 {
	display: inline-block;
	position: relative;
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6em;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--accent-color);
	background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: left center;
	background-size: 18px auto;
	padding-left: 28px;
	margin-bottom: 10px;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-title h3::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
	border-radius: 2px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-item h3 {
	font-size: 22px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 5px;
	letter-spacing: -1px;
}

.blog-item h3 {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2em;
	color: var(--primary-color);
	margin-bottom: 15px;
	letter-spacing: -1.2px;
}

.section-title h1 {
	font-size: 4rem;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 0;
	cursor: none;
	letter-spacing: -3px;
	line-height: 1.1;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-title h2 {
	font-size: 3.2rem;
	font-weight: 800;
	margin-bottom: 0;
	cursor: none;
	letter-spacing: -2.2px;
	line-height: 1.15;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	color: #000000 !important;
}

.section-title h1 span,
.section-title h2 span {
	color: var(--accent-secondary-color);
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.section-title-content p {
	margin: 0;
}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	text-align: left;
	margin-top: 30px;
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

header.main-header {
	position: absolute;
	top: 0;
	width: 100%;
	border-bottom: none !important;
	z-index: 1000;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
	background: transparent;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--accent-color) !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	border-bottom: none !important;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: #f0eae0;
	padding: 30px 0;
	align-items: center;
	height: 90px;
}

.navbar-brand img {
	height: 55px;
	width: auto;
	transition: all 0.3s ease;
}

.nav-text {
	font-family: var(--accent-font);
	font-weight: 800;
	font-size: 20px;
	color: var(--white-color) !important;
	letter-spacing: -1px;
	margin-left: 12px;
}

header.main-header .header-sticky.active .nav-text {
	color: var(--white-color);
}


.header-contact-btn .header-contact-now:hover {
	color: #ff6600;
}


.header-contact-btn .header-contact-now:hover i {
	background-color: var(--accent-secondary-color);
}

.header-contact-btn .login-icon i {
	font-size: 24px;
	color: #ffffff;
	width: 40px;

}

.header-contact-btn .login-icon i:hover {
	color: #ff6600;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0;
	position: relative;
}

.main-menu ul li a,
.navbar-nav .nav-link {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.2rem;
	padding: 12px 20px !important;
	color: var(--white-color) !important;
	text-transform: capitalize;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
}

.main-menu ul li a::after,
.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 20px;
	right: 20px;
	height: 2px;
	background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-secondary-color) 100%);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border-radius: 2px;
	box-shadow: 0 0 10px rgba(255, 122, 0, 0.3);
}

.main-menu ul li a:hover::after,
.navbar-nav .nav-link:hover::after,
.main-menu ul li a:focus::after,
.navbar-nav .nav-link:focus::after {
	transform: scaleX(1);
	transform-origin: left;
}

.main-menu ul li a:hover,
.navbar-nav .nav-link:hover {
	color: var(--primary-color) !important;
	transform: translateY(-3px);
}

.navbar-nav .nav-link.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 15%;
	width: 70%;
	height: 3px;
	border-radius: 10px;
	transform: scaleX(1) !important;
	transform-origin: left;
	display: block !important;
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 235px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--accent-secondary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-contact-btn {
	display: flex;
	align-items: center;
	gap: 30px;
}

.header-contact-now {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	color: var(--white-color);
}

.header-contact-now i {
	background-color: var(--accent-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	text-align: center;
	align-content: center;
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.navbar-toggler {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	position: relative;
	z-index: 10001;
}

.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}

.navbar-toggler-icon {
	background-image: none !important;
	background-color: transparent !important;
	width: 28px;
	height: 22px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #ffffff !important;
	border-radius: 2px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-toggler-icon::before {
	top: 0;
}

.navbar-toggler-icon span {
	top: 50%;
	transform: translateY(-50%);
}

.navbar-toggler-icon::after {
	bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
	transform: rotate(90deg) translateX(-11px);
	top: 50%;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
	opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
	transform: rotate(-90deg) translateX(-11px);
	bottom: 50%;
}

.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
	transform: rotate(0deg);
}

.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon::before {
	transform: rotate(0deg) translateX(0);
	top: 0;
}

.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon span {
	opacity: 1;
}

.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon::after {
	transform: rotate(0deg) translateX(0);
	bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
	transform: rotate(90deg) translateX(-11px);
	top: 50%;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
	opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
	transform: rotate(-90deg) translateX(-11px);
	bottom: 50%;
}

#authPopup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(8px);
	justify-content: center;
	align-items: center;
	z-index: 99999;
	padding: 20px;
}

#authPopup .popup-box {
	background: #ffffff;
	padding: 50px 40px;
	border-radius: 30px;
	width: 100%;
	max-width: 450px;
	position: relative;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	animation: popupFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes popupFadeIn {
	from {
		opacity: 0;
		transform: scale(0.9) translateY(20px);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.popup-close {
	position: absolute !important;
	top: 20px !important;
	right: 20px !important;
	width: 30px !important;
	height: 30px !important;
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	color: #2d3748 !important;
	padding: 0 !important;
	z-index: 1000 !important;
	margin: 0 !important;
	opacity: 0.7;
}

.popup-close:hover {
	color: var(--primary-color) !important;
	transform: scale(1.1);
	opacity: 1;
}

.popup-close i {
	font-size: 24px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
}

#authPopup h2 {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 30px;
	text-align: center;
	letter-spacing: -1.5px;
}

#authPopup input {
	width: 100%;
	padding: 15px 20px;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	margin-bottom: 12px;
	font-size: 16px;
	transition: all 0.3s ease;
}

#authPopup input:focus {
	border-color: #6ba39b;
	box-shadow: 0 0 0 4px rgba(107, 163, 155, 0.15);
	outline: none;
}

#authPopup button[type="submit"] {
	width: 100%;
	padding: 15px;
	border-radius: 10px;
	background: linear-gradient(135deg, #FF7A00 0%, #E06A00 100%);
	color: #ffffff;
	font-weight: 700;
	border: none;
	font-size: 15px;
	margin-top: 10px;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 16px rgba(255, 122, 0, 0.25);
}

#authPopup button[type="submit"]::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.15);
	transition: left 0.4s ease;
}

#authPopup button[type="submit"]:hover::before {
	left: 100%;
}

#authPopup button[type="submit"]:hover {
	background: linear-gradient(135deg, #E06A00 0%, #CC5A00 100%);
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(255, 122, 0, 0.35),
		0 6px 12px rgba(0, 0, 0, 0.12);
}

.login-icon {
	font-size: 24px;
	color: #ff6600;
	cursor: pointer;
	display: block;
	position: relative;
	z-index: 1100;
}

.login-text {
	font-size: 16px;
	font-weight: 600;
	color: #ff6600;
	cursor: pointer;
	display: block;
	position: relative;
	z-index: 1100;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 8px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.login-text:hover {
	background-color: #ff6600;
	color: #fff;
	text-decoration: none;
}

.profile-menu {
	position: absolute;
	top: 80px;
	right: 0;
	width: fit-content;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	padding: 10px;
	display: none;
	z-index: 999;
}

.profile-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #eee;
}

.profile-avatar {
	width: 45px;
	height: 45px;
	background: #f1f1f1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #555;
}

.profile-info p {
	margin: 0;
	font-weight: 600;
	font-size: 15px;
	color: #222;
}

.profile-info span {
	font-size: 13px;
	color: #777;
}

.logout-btn {
	margin-top: 12px;
	width: 100%;
	border: none;
	padding: 10px;
	border-radius: 8px;
	background: #ff7a04 !important;
	color: white;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 4px 10px rgba(230, 115, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.logout-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.15);
	transition: left 0.4s ease;
}

.logout-btn:hover::before {
	left: 100%;
}

.logout-btn:hover {
	background: #ff7a04 !important;
	box-shadow: 0 4px 10px rgba(255, 122, 4, 0.12);
	transform: translateY(-2px);
}
.subscription-info {
	padding: 12px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	margin: 12px 0;
}

.sub-item {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	font-size: 13px;
}

.sub-item label {
	color: #777;
	font-weight: 500;
}

.sub-item span {
	color: #222;
	font-weight: 600;
}

.days-badge {
	background: var(--primary-color);
	color: white;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 12px;
}

.code-badge {
	background: var(--accent-secondary-color);
	color: white;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.referral-info {
	padding: 12px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	margin: 12px 0;
}

.profile-action-btn {
	width: 100%;
	border: none;
	padding: 10px;
	border-radius: 8px;
	background: #00ba9a;
	color: white;
	font-size: 14px;
	cursor: pointer;
	margin-top: 10px;
	margin-bottom: 8px;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 500;
	position: relative;
	overflow: hidden;
}

.profile-action-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.15);
	transition: left 0.4s ease;
	z-index: 1;
}

.profile-action-btn:hover::before {
	left: 100%;
}

.profile-action-btn:hover {
	background: #00ba9a;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(139, 111, 71, 0.2);
}

.profile-action-btn i {
	font-size: 14px;
	position: relative;
	z-index: 2;
}

.profile-action-btn.admin-btn {
	background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
	border: 2px solid #f97316;
}

.profile-action-btn.admin-btn::before {
	background: rgba(255, 255, 255, 0.2);
}

.profile-action-btn.admin-btn:hover {
	background: linear-gradient(135deg, #ea580c 0%, #dc4f0a 100%);
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(249, 115, 22, 0.35);
}

.profile-action-btn.admin-btn i {
	font-size: 15px;
	font-weight: 600;
}

#editProfileModal {
	display: none;
}

#editProfileModal .popup-box {
	padding: 45px 40px !important;
}

#editProfileModal .form-group {
	margin-bottom: 16px;
}

#editProfileModal .form-group label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	color: var(--primary-color);
	font-size: 14px;
}

#editProfileModal .form-group input {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #eee;
	border-radius: 10px;
	font-size: 14px;
	font-family: inherit;
	transition: all 0.3s ease;
}

#editProfileModal .form-group input:focus {
	outline: none;
	border-color: #6ba39b;
	box-shadow: 0 0 0 3px rgba(107, 163, 155, 0.1);
}

#editProfileModal button[type="submit"] {
	width: 100%;
	padding: 14px;
	background: #00ba9a !important;
	color: white;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	margin-top: 10px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 16px rgba(139, 111, 71, 0.2);
}

#editProfileModal button[type="submit"]::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.15);
	transition: left 0.4s ease;
	z-index: 1;
}

#editProfileModal button[type="submit"]:hover::before {
	left: 100%;
}

#editProfileModal button[type="submit"]:hover {
	background: #A0826D !important;
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(139, 111, 71, 0.25),
		0 6px 12px rgba(0, 0, 0, 0.08);
}
@media (max-width: 991px) {
	.header-sticky {
		padding: 10px 0;
	}

	.navbar-toggler {
		background: #10b981 !important;
		padding: 12px !important;
		border-radius: 12px !important;
		box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
		border: none !important;
	}

	.navbar-collapse {
		position: fixed !important;
		top: 0 !important;
		right: -100% !important;
		width: 280px !important;
		height: 100vh !important;
		background: rgb(240, 234, 224, 0.5) !important;
		backdrop-filter: blur(20px) saturate(180%) !important;
		z-index: 10000 !important;
		transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
		padding: 100px 40px 5px !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-end !important;
		visibility: hidden;
		border-left: 1px solid rgba(255, 255, 255, 0.1);
	}

	.navbar-collapse.show {
		right: 0 !important;
		visibility: visible;
		box-shadow: -15px 0 40px rgba(0, 0, 0, 0.4);
	}

	.navbar-collapse.show .nav-item {
		animation: slideInRight 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
		opacity: 0;
	}

	.navbar-collapse.show .nav-item:nth-child(1) {
		animation-delay: 0.1s;
	}

	.navbar-collapse.show .nav-item:nth-child(2) {
		animation-delay: 0.2s;
	}

	.navbar-collapse.show .nav-item:nth-child(3) {
		animation-delay: 0.3s;
	}

	.navbar-collapse.show .nav-item:nth-child(4) {
		animation-delay: 0.4s;
	}

	.navbar-toggler.fixed-toggle {
    position: fixed !important;
    top: 20px;
    right: 20px;
    z-index: 10002;
}

	@keyframes slideInRight {
		from {
			opacity: 0;
			transform: translateX(50px);
		}

		to {
			opacity: 1;
			transform: translateX(0);
		}
	}

	.menu-close {
		position: absolute;
		top: 20px;
		right: 20px;
		background: none !important;
		border: none !important;
		box-shadow: none !important;
		font-size: 28px !important;
		color: #000000 !important;
		display: flex !important;
		align-items: center;
		justify-content: center;
		z-index: 10001 !important;
		opacity: 1 !important;
		padding: 5px !important;
	}

	.menu-close i {
		color: #000000 !important;
		display: block !important;
	}

	.nav-menu-wrapper {
		width: 100% !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-end !important;
	}

	.navbar-nav {
		width: 100% !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-end !important;
		margin-bottom: 10px;
	}

	.navbar-nav .nav-item {
		width: auto !important;
		display: flex !important;
		justify-content: flex-end !important;
		margin-bottom: 20px;
	}

	.navbar-nav .nav-link {
		font-size: 22px !important;
		font-weight: 700 !important;
		letter-spacing: -0.5px;
		padding: 10px !important;
		text-align: right !important;
	}

	.header-contact-btn {
		margin-top: 30px;
		padding: 30px 0 10px;
		width: 100%;
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: wrap;
		justify-content: right !important;
		align-items: center !important;
		gap: 20px !important;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.header-contact-btn .header-contact-now {
		background: transparent !important;
		padding: 0 !important;
		height: auto !important;
		width: auto !important;
		min-width: 0 !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		display: flex !important;
		align-items: center;
		justify-content: center;
		margin: 0 !important;
		font-size: 0 !important;
		border: none !important;
	}

	.header-contact-btn .header-contact-now i {
		font-size: 22px !important;
		color: #ffffff !important;
	}

	.login-icon {
		background: transparent !important;
		padding: 0 !important;
		height: auto !important;
		width: auto !important;
		min-width: 0 !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		display: flex !important;
		align-items: center;
		justify-content: center;
		margin: 0 !important;
		border: none !important;
	}

	.login-icon i {
		font-size: 32px !important;
		color: #ff7a04 !important;
		opacity: 1 !important;
	}

	.login-icon i {
		font-size: 22px !important;
		color: #ffffff !important;
		opacity: 1 !important;
	}

	.login-icon:active {
		transform: scale(0.92);
		box-shadow: 0 5px 15px rgba(255, 122, 0, 0.5);
	}


}

.hero {
	position: relative;
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	padding: 140px 0 10px;
	min-height: 85vh;
	align-content: center;
	display: flex;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background:
		linear-gradient(269.99deg, rgba(30, 30, 30, 0) 15.73%, rgba(30, 30, 30, 0.828125) 66.76%, #1E1E1E 101.51%),
		linear-gradient(360deg, rgba(30, 30, 30, 0) 87.87%, #1E1E1E 102.84%),
		repeating-linear-gradient(90deg,
			transparent,
			transparent 2px,
			rgba(47, 182, 163, 0.03) 2px,
			rgba(47, 182, 163, 0.03) 4px);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-content .section-title p,
.hero-content .section-title h1,
.hero-content .section-title h3 {

	color: #2C2C2C;
}

.hero-content .section-title p {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.hero-content .section-title h3 {
	margin-bottom: 30px;
	font-family: var(--accent-font) !important;
}

.hero-content .section-title h1 {
	font-family: var(--accent-font);
	font-size: 3.5rem !important;
	font-weight: 800 !important;
	line-height: 1.1 !important;
	max-width: 650px;
	letter-spacing: -2px !important;
	text-transform: uppercase;
}

@media (max-width: 768px) {
	.hero-content .section-title h1 {
		font-size: 2.2rem !important;
		line-height: 1.2 !important;
	}

	.hero-content .section-title h3 {
		font-size: 0.9rem !important;
		letter-spacing: 0.2em;
	}
}

.hero-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 40px;
}

.hero-body .video-play-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.hero-body .video-play-button p {
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
	margin: 0;
}

.down-arrow-circle {
	position: absolute;
	right: 15px;
	bottom: 30px;
	text-align: center;
	z-index: 3;
}

.down-arrow-circle a {
	position: relative;
	display: inline-block;
	border-radius: 50%;
}

.down-arrow-circle a img {
	max-width: 150px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.page-book-appointment {
	padding: 0px;
	position: relative;
	background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(47, 182, 163, 0.04) 100%);
	transition: all 0.3s ease;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.down-arrow-circle a i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white-color);
	font-size: 50px;
}

.about-us {
	position: relative;
	padding: 80px 0;
	background: linear-gradient(135deg, #ffffff 0%, rgba(47, 182, 163, 0.02) 100%);
	transition: all 0.3s ease;
}

.about-us::before {
	content: '';
	position: absolute;
	bottom: -80px;
	right: -25px;
	background-image: url('../images/section-bg-img-1.svg');
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: cover;
	height: 251px;
	width: 308px;
	z-index: 0;
}

.about-us::after {
	content: '';
	position: absolute;
	padding: 0;
	background-image:
		radial-gradient(circle at 20% 50%, rgba(47, 182, 163, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 122, 0, 0.05) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.about-images {
	position: relative;
	text-align: center;
	margin: 20px 0px 20px 0;
	padding-left: 20px;
}

.about-images::before {
	content: '';
	position: absolute;
	top: 20px;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(90deg, var(--accent-color) 50%, transparent 50%);
	border-radius: 50%;
	width: 100%;
	height: 100%;
}

.about-images::after {
	content: '';
	position: absolute;
	top: -19px;
	bottom: 0;
	left: 0;
	right: 0;
	background: url('../images/about-img-bg-shape.png') no-repeat;
	background-position: left top;
	background-size: auto;
	width: 100%;
	height: 100%;
}

.about-image {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.about-image figure {
	display: block;
	overflow: hidden;
	border-radius: 20px;
}

.about-image img {
	width: 100%;
	max-width: 405px;
	margin: 0 auto;
	aspect-ratio: 1 / 1.613;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform: scale(1);
}

.about-image:hover img {
	transform: scale(1.05);
}

.about-image-title {
	position: absolute;
	top: 0;
	right: 40px;
	transform: rotate(-180deg);
	writing-mode: vertical-rl;
	height: 100%;
	align-content: center;
}

.about-image-title h2 {
	font-family: var(--default-font);
	font-size: 5.625vw;
	font-weight: 800;
	line-height: 1em;
	text-transform: uppercase;
	background: var(--accent-color);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-stroke: 4px transparent;
	color: var(--accent-color);
	cursor: none;
	transition: all 0.3s ease-in-out;
	z-index: 0;
}

.about-us-content {
	margin-left: 15px;
}

.about-content-body {
	margin-bottom: 40px;
}

.about-benefit-item {
	display: flex;
	margin-bottom: 30px;
}

.about-benefit-item:last-child {
	margin-bottom: 0;
}

.about-benefit-item .icon-box {
	position: relative;
	margin-right: 12px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-benefit-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(135deg, rgba(47, 182, 163, 0.15) 0%, rgba(47, 182, 163, 0.05) 100%);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	box-shadow: 0 4px 15px rgba(47, 182, 163, 0.15);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 0;
}

.about-benefit-item:hover .icon-box::before {
	transform: scale(1.15);
	box-shadow: 0 8px 25px rgba(47, 182, 163, 0.25);
	background: linear-gradient(135deg, rgba(47, 182, 163, 0.25) 0%, rgba(47, 182, 163, 0.15) 100%);
}

.about-benefit-item .icon-box img {
	position: relative;
	max-width: 60px;
	z-index: 1;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	filter: drop-shadow(0 2px 4px rgba(47, 182, 163, 0.2));
}

.about-benefit-item:hover .icon-box img {
	transform: scale(1.1) rotate(5deg);
}

.about-benefit-item-content {
	width: calc(100% - 72px);
}

.about-benefit-item-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.about-benefit-item-content p {
	margin: 0;
}

.our-services {
	padding: 80px 0;
}

.service-item {
	position: relative;
	border: 1px solid var(--divider-color);
	background: var(--white-color);
	border-radius: 30px;
	min-height: 280px;
	margin-bottom: 30px;
	padding: 30px 25px;
	overflow: visible;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	z-index: 2;
}

.service-item:hover {
	box-shadow: 0 15px 40px rgba(47, 182, 163, 0.15);
	transform: translateY(-8px);
	border-color: rgba(47, 182, 163, 0.3);
}

.service-item::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	border-radius: 30px;
	width: 100%;
	height: 0;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 0;
}

.service-item:hover:before {
	border-radius: 30px;
	height: 100%;
}

.service-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	margin-bottom: 20px;
	z-index: 2;
}

.service-header .icon-box img {
	max-width: 80px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	filter: drop-shadow(0 2px 8px rgba(47, 182, 163, 0.1));
}

.service-item:hover .service-header .icon-box img {
	filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
	transform: scale(1.1);
}

.service-btn a {
	display: block;
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 4px 12px rgba(47, 182, 163, 0.2);
}

.service-item:hover .service-btn a {
	background: var(--accent-secondary-color);
	box-shadow: 0 8px 20px rgba(90, 61, 204, 0.3);
	transform: scale(1.15) rotate(10deg);
}

.service-btn a img {
	max-width: 14px;
	transition: all 0.3s ease-in-out;
}

.service-btn a:hover img {
	transform: rotate(45deg);
}

.service-content {
	position: relative;
	z-index: 2;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.service-content h3 {
	font-size: 20px;
	margin-bottom: 15px;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	font-weight: 600;
}

.service-content h3 a {
	color: inherit;
}

.service-content p {
	margin: 0;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	line-height: 1.6;
}

.service-item:hover .service-content p,
.service-item:hover .service-content h3 {
	color: var(--white-color);
}

.section-footer-text {
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p {
	margin: 0;
}

.section-footer-text p span {
	font-weight: 500;
	color: var(--white-color);
	background: var(--accent-secondary-color);
	border-radius: 24px;
	padding: 2px 8px;
	margin-right: 10px;
}

.section-footer-text p a {
	color: var(--accent-secondary-color);
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--primary-color);
}

.page-book-appointment {
	padding: 80px 0;
	background:
		linear-gradient(135deg, #f6f1e8 0%, #fdfbfb 50%, #fffaf5 100%);
	background-attachment: fixed;
}

.page-book-appointment {
	position: relative;
	overflow: visible;
}

.page-book-appointment::before {

	content: "";
	position: absolute;
	inset: -40px -60px -40px -60px;
	pointer-events: none;
	z-index: 0;
	background-image:
		radial-gradient(ellipse at 50% 25%, rgba(47, 182, 163, 0.06) 0%, rgba(47, 182, 163, 0.03) 18%, rgba(255, 255, 255, 0) 45%),
		repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0 8px, transparent 8px 18px);
	background-repeat: no-repeat, repeat;
	background-size: cover, 160%;
	mix-blend-mode: normal;
	opacity: 0.9;
}

.page-book-appointment .container {
	position: relative;
	z-index: 2;
}

.page-book-appointment::after {
	content: "";
	position: absolute;
	inset: -20px -40px -20px -40px;
	pointer-events: none;
	z-index: 0;
	background-image:
		radial-gradient(circle at 12% 60%, rgba(47, 182, 163, 0.06) 0px, rgba(47, 182, 163, 0.04) 120px, transparent 220px),
		radial-gradient(circle at 88% 30%, rgba(99, 102, 241, 0.06) 0px, rgba(99, 102, 241, 0.04) 120px, transparent 220px);
	background-repeat: no-repeat;
	opacity: 1;
}

@media (max-width: 991px) {
	.page-book-appointment::before {
		inset: -20px -20px -20px -20px;
		background-image:
			radial-gradient(ellipse at 50% 30%, rgba(47, 182, 163, 0.04) 0%, rgba(47, 182, 163, 0.02) 25%, rgba(255, 255, 255, 0) 60%),
			repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.015) 0 12px, transparent 12px 24px);
		opacity: 0.9;
	}
}

.appointment-wrapper {
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06), 0 2px 0 rgba(255, 255, 255, 0.6) inset;
	border: 1px solid rgba(255, 122, 0, 0.04);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.92));
}

@media (max-width: 991px) {
	.page-book-appointment::after {
		inset: -12px -12px -12px -12px;
		background-size: auto;
	}

	.appointment-wrapper {
		box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
	}
}

@media (prefers-reduced-motion: reduce) {
	.page-book-appointment::before {
		transition: none !important;
	}
}

.appointment-wrapper {
	max-width: 700px;
	margin: 0 auto;
}

.form-header {
	text-align: center;
	margin-bottom: 40px;
}

.form-title {
	font-size: 3.2rem;
	font-weight: 800;
	color: var(--primary-color);
	margin: 0 0 15px 0;
	font-family: var(--accent-font);
	letter-spacing: -1.5px;
	text-align: center;
}

.form-subtitle {
	font-size: 1.15rem;
	color: #64748b;
	margin-bottom: 40px;
	font-weight: 400;
	font-family: var(--default-font);
	text-align: center;
	line-height: 1.6;
}

.our-appointment-box {
	background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
	border: 1px solid rgba(255, 122, 0, 0.1);
	border-radius: 35px;
	padding: 70px 60px;
	position: relative;
	overflow: hidden;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(255, 122, 0, 0.05) inset;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.our-appointment-box:hover {
	box-shadow:
		0 30px 80px rgba(0, 0, 0, 0.12),
		0 0 0 1px rgba(255, 122, 0, 0.1) inset;
	transform: translateY(-5px);
}

.our-appointment-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg,
			var(--primary-color) 0%,
			var(--accent-color) 25%,
			var(--accent-sky-color) 50%,
			var(--accent-color) 75%,
			var(--primary-color) 100%);
	background-size: 300% 100%;
	animation: gradientShift 6s ease-in-out infinite;
}

.our-appointment-box::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg,
			transparent 0%,
			rgba(255, 122, 0, 0.3) 50%,
			transparent 100%);
}

@keyframes gradientShift {

	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

.form-visual {
	position: absolute;
	top: 20px;
	right: 30px;
	opacity: 0.7;
}

.form-icon {
	width: 80px;
	height: 80px;
}

.quick-form {
	position: relative;
	z-index: 2;
}

.form-row {
	display: flex;
	gap: 20px;
	width: 100%;
	margin-bottom: 20px;
}

.form-row.full-width {
	display: flex;
	width: 100%;
}

.form-row.full-width .full-width-input {
	flex: 1 !important;
	width: 100% !important;
	margin: 0 !important;
}

.form-row:not(.full-width) .form-control {
	flex: 1;
	width: calc(50% - 10px);
}

.cta-box {
	background: linear-gradient(135deg, #2FB6A3 0%, #17A589 100%);
	padding: 50px 0;
	position: relative;
	overflow: hidden;
	border-radius: 30px;
	margin: 40px auto;
	max-width: 1240px;
	box-shadow: 0 20px 50px rgba(47, 182, 163, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-bg-icon {
	position: absolute;
	right: -50px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.08;
	pointer-events: none;
	width: 300px;
	z-index: 0;
}

.cta-floating-leaf {
	width: 100%;
	filter: brightness(0) invert(1);
	animation: floatingIcon 8s ease-in-out infinite;
}

@keyframes floatingIcon {

	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-25px) rotate(8deg);
	}
}

.cta-box .container {
	position: relative;
	z-index: 1;
}

.cta-box .section-title h2 {
	color: #fff !important;
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 12px;
	text-transform: none;
	letter-spacing: -2px;
}

.cta-box .cta-subtext {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.2rem;
	margin: 0;
	font-weight: 300;
	font-family: var(--default-font);
}

.btn-premium-cta {
	background-color: #fff !important;
	color: #2FB6A3 !important;
	padding: 18px 45px !important;
	border-radius: 50px !important;
	font-weight: 700 !important;
	font-size: 16px !important;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
	border: none !important;
	display: inline-block;
	text-decoration: none;
}

.btn-premium-cta:hover {
	transform: scale(1.08) translateY(-4px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18) !important;
	background: #fdfdfd !important;
	color: #17A589 !important;
}

@media (max-width: 991px) {
	.form-visual {
		display: none;
	}

	.form-row,
	.form-row.full-width {
		flex-direction: column !important;
		gap: 15px;
		display: block;
	}

	.form-control,
	.full-width-input {
		width: 100% !important;
		flex: none !important;
		margin-bottom: 15px !important;
	}

	.our-appointment-box {
		padding: 40px 20px;
		border-radius: 25px;
	}

	.form-title {
		font-size: 2.2rem;
	}

	.form-subtitle {
		font-size: 1rem;
	}
}

.form-control {
	padding: 22px 28px;
	border: 2px solid #e8e8e8;
	border-radius: 18px;
	font-size: 16px;
	font-weight: 500;
	color: #2c3e50;
	background: #ffffff;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow:
		0 4px 15px rgba(0, 0, 0, 0.04),
		0 0 0 0 rgba(255, 122, 0, 0);
	outline: none;
}

.form-control::placeholder {
	color: #a0aec0;
	font-weight: 400;
	transition: all 0.3s ease;
}

.form-control:hover {
	border-color: #d0d0d0;
	box-shadow:
		0 6px 20px rgba(0, 0, 0, 0.06),
		0 0 0 0 rgba(255, 122, 0, 0);
}

.form-control:focus {
	border-color: var(--primary-color);
	background: #ffffff;
	box-shadow:
		0 8px 25px rgba(255, 122, 0, 0.15),
		0 0 0 4px rgba(255, 122, 0, 0.08);
	transform: translateY(-2px) scale(1.01);
	outline: none;
}

.form-control:focus::placeholder {
	color: #cbd5e0;
	transform: translateX(5px);
}

input[type="date"].form-control {
	position: relative;
	color: #2c3e50;
	font-weight: 500;
}

input[type="date"].form-control::-webkit-calendar-picker-indicator {
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.3s ease;
	filter: invert(0.5);
}

input[type="date"].form-control:hover::-webkit-calendar-picker-indicator {
	opacity: 1;
	filter: invert(0.3);
}

input[type="date"].form-control:focus::-webkit-calendar-picker-indicator {
	opacity: 1;
	filter: invert(0.4) sepia(1) saturate(5) hue-rotate(10deg);
}

.form-label {
	font-size: 14px;
	font-weight: 600;
	color: #4a5568;
	margin-bottom: 8px;
	display: block;
	transition: color 0.3s ease;
}

.btn-submit {
	background: linear-gradient(135deg, #ff7a04 0%, #E67300 100%);
	border: none;
	padding: 24px 40px;
	font-size: 17px;
	font-weight: 700;
	border-radius: 18px;
	width: 100%;
	color: #fff;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
	box-shadow:
		0 10px 30px rgba(255, 122, 0, 0.25),
		0 0 0 0 rgba(255, 122, 0, 0);
	margin-top: 10px;
}

.btn-submit::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	transform: translate(-50%, -50%);
	transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-submit:hover::before {
	width: 300px;
	height: 300px;
}

.btn-submit:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow:
		0 20px 50px rgba(255, 122, 0, 0.35),
		0 0 0 6px rgba(255, 122, 0, 0.1);
}

.btn-submit:active {
	transform: translateY(-2px) scale(0.98);
}

.btn-submit i {
	font-size: 22px;
	margin-left: 8px;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-submit:hover i {
	transform: scale(1.2) rotate(15deg);
}

.trust-signals {
	display: flex;
	justify-content: space-around;
	margin-top: 30px;
	padding-top: 25px;
	border-top: 1px solid #eee;
}

.trust-item {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #666;
}

.trust-item i {
	color: var(--primary-color);
	margin-right: 8px;
	font-size: 16px;
}

.benefits-grid {
	display: flex;
	justify-content: space-around;
	margin: 50px 0 30px 0;
	gap: 30px;
}

.benefit-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #666;
}

.benefit-item i {
	font-size: 28px;
	color: #ff9500;
	margin-bottom: 10px;
}

@media (max-width: 768px) {
	.form-row {
		grid-template-columns: 1fr;
	}

	.benefits-grid {
		flex-direction: column;
		gap: 20px;
	}

	.trust-signals {
		flex-direction: column;
		gap: 10px;
	}

	.our-appointment-box {
		padding: 40px 30px;
		margin: 0 15px;
	}
}

.pricing-container {
	padding: 100px 0;
	background: #fff;
	overflow-x: hidden;
	width: 100%;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
	margin-top: 60px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
}

.pricing-card {
	background: #fff;
	border-radius: 24px;
	padding: 0;
	position: relative;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.pricing-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
	border: 2px solid #FF7A00;
	transform: scale(1.05);
	z-index: 2;
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-12px);
}

.popular-tag {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: #FF7A00;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	padding: 6px 18px;
	border-radius: 0 0 12px 12px;
	letter-spacing: 1px;
	box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3);
}

.pricing-header {
	padding: 45px 30px;
	text-align: center;
	color: #fff;
}

.pricing-header.emerald {
	background: linear-gradient(135deg, #2FB6A3, #17A589);
}

.pricing-header.orange {
	background: linear-gradient(135deg, #FF7A00, #E66A00);
}

.pricing-header.indigo {
	background: linear-gradient(135deg, #6366F1, #4F46E5);
}

.pricing-header h3 {
	color: #ffffff !important;
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 20px;
	letter-spacing: -1.2px;
}

.pricing-header .price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin-bottom: 10px;
}

.pricing-header .currency {
	font-size: 1.8rem;
	font-weight: 400;
	margin-right: 4px;
	color: #fff !important;
}

.pricing-header .amount {
	font-size: 3.5rem;
	font-weight: 800;
	color: #fff !important;
}

.pricing-header .period {
	font-size: 1rem;
	opacity: 0.85;
	margin-left: 8px;
	color: #fff !important;
}

.pricing-header .validity {
	font-size: 1rem;
	opacity: 1;
	margin: 8px 0 0 0;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	background: rgba(255, 255, 255, 0.15);
	padding: 8px 16px;
	border-radius: 20px;
	display: inline-block;
	backdrop-filter: blur(10px);
}

.pricing-body {
	padding: 35px 30px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.pricing-body .tagline {
	color: #64748b;
	font-size: 0.95rem;
	text-align: center;
	margin-bottom: 30px;
	font-weight: 500;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0 !important;
}

.feature-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	color: #000000;
	font-size: 0.98rem;
	font-weight: 500;
}

.feature-list li i {
	color: #2FB6A3;
	font-size: 1.1rem;
}

.pricing-card:has(.pricing-header.emerald) .feature-list li i {
	color: #2FB6A3;
}

.pricing-card.featured .feature-list li i {
	color: #FF7A00;
}

.pricing-card:has(.pricing-header.indigo) .feature-list li i {
	color: #6366F1;
}

.footer-main {
	padding: 60px 0 30px;
	background-size: cover;
	background-position: center;
}

.footer-main .footer-header {
	align-items: flex-start;
	gap: 30px;
}

.footer-logo img {
	max-width: 200px;
}

.footer-links h3 {
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.footer-links ul li {
	margin-bottom: 12px;
}

.footer-links ul li a {
	color: #ffffff;
	font-weight: 500;
	transition: all 0.3s ease;
}

.footer-links ul li a:hover {
	color: var(--primary-color);
	transform: translateX(4px);
}

.footer-social-links ul li a {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 18px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	background: var(--accent-secondary-color);
	color: white;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-social-links ul li a:hover {
	transform: scale(1.18) translateY(-3px);
	box-shadow: 0 12px 35px rgba(90, 61, 204, 0.3);
}

.newsletter-form .form-group {
	gap: 12px;
}

.newsletter-form .form-group .form-control {
	width: calc(100% - 64px);
	padding: 12px 16px;
	font-size: 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
	font-weight: 500;
	transition: all 0.3s ease;
}

.newsletter-form .form-group .form-control::placeholder {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
}

.newsletter-form .form-group .form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.newsletter-form .form-group .newsletter-btn {
	width: 56px;
	height: 56px;
	background: var(--accent-secondary-color);
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.newsletter-form .form-group .newsletter-btn:hover {
	transform: scale(1.08);
	box-shadow: 0 8px 20px #0bc7e0;
}

.newsletter-form .form-group .newsletter-btn:focus {
	outline: 2px solid white;
	outline-offset: 2px;
}

.newsletter-message {
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 15px 25px;
	border-radius: 10px;
	color: white;
	font-weight: 500;
	z-index: 9999;
	transform: translateX(400px);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	max-width: 350px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.newsletter-message.show {
	transform: translateX(0);
}

.newsletter-message.success {
	background: linear-gradient(135deg, #20c997, #28a745);
}

.newsletter-message.error {
	background: linear-gradient(45deg, #f44336, #da190b);
}

@media (max-width: 991px) {
	.footer-main {
		padding: 40px 15px;
	}

	.footer-header {
		flex-direction: column;
		align-items: center;
		gap: 20px;
		width: 100%;
	}

	.footer-about {
		width: 100%;
		margin-bottom: 12px;
	}

	.footer-social-links {
		width: 100%;
		text-align: center;
	}

	.footer-links {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}

	.footer-links ul {
		display: inline-block;
	}

	.footer-contact-links {
		margin-right: 0;
		text-align: center;
	}

	.footer-contact-links address {
		display: block;
		margin-top: 8px;
	}

	.newsletter-form .form-group {
		flex-direction: column;
		gap: 10px;
	}

	.newsletter-form .form-group .form-control {
		width: 100%;
	}

	.newsletter-form .form-group .newsletter-btn {
		width: 100%;
		height: 48px;
	}
}

@media (max-width: 768px) {
	.footer-main {
		padding: 30px 12px;
	}

	.col-lg-3,
	.col-lg-4,
	.col-lg-12 {
		width: 100%;
		margin-bottom: 20px;
	}

	.newsletter-message {
		max-width: calc(100vw - 20px);
		right: 10px;
		left: 10px;
	}
}


.footer-links a:focus,
.footer-social-links a:focus,
.newsletter-form .form-group .newsletter-btn:focus {
	outline: 3px solid rgba(47, 182, 163, 0.18);
	outline-offset: 3px;
}


.footer-main::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 6px;
	background: linear-gradient(90deg, #FF7A00 0%, #2FB6A3 50%, #19B6E6 100%);
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	opacity: 0.95;
}

.pricing-footer {
	margin-top: auto;
	padding-top: 30px;
	text-align: center;
}

.bonus-box {
	background: #f8fafc;
	padding: 15px;
	border-radius: 12px;
	margin-bottom: 25px;
	font-size: 0.88rem;
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px dashed #e2e8f0;
	font-weight: 500;
}

.bonus-box.highlight {
	background: #f8fafc;
	border-color: #e2e8f0;
	color: #000000;
	
}

.bonus-box i {
	font-size: 1.1rem;
	color: #2FB6A3;
}

.bonus-box.highlight i {
	color: #FF7A00;
}

.pricing-card:has(.pricing-header.emerald) .bonus-box i {
	color: #2FB6A3;
}

.pricing-card.featured .bonus-box i {
	color: #FF7A00;
}

.pricing-card:has(.pricing-header.indigo) .bonus-box i {
	color: #6366F1;
}

.btn-join-premium {
	display: block;
	width: 100%;
	padding: 16px;
	border-radius: 14px;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	text-decoration: none;
	background: #f1f5f9;
	color: #475569;
}

.pricing-card .btn-join-premium:hover {
	transform: scale(1.02);
}

.pricing-card.emerald .btn-join-premium {
	background: #2FB6A3;
	color: #fff;
	box-shadow: 0 8px 20px rgba(47, 182, 163, 0.25);
}

.pricing-card.featured .btn-join-premium {
	background: #FF7A00;
	color: #fff;
	box-shadow: 0 8px 20px rgba(255, 122, 0, 0.25);
}

.pricing-card.indigo .btn-join-premium {
	background: #6366F1;
	color: #fff;
	box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

@media (max-width: 1024px) {
	.pricing-container {
		overflow-x: hidden;
		width: 100%;
	}

	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
		padding: 0 15px;
		width: 100%;
		box-sizing: border-box;
	}

	.pricing-card {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.pricing-card.featured {
		transform: scale(1);
		grid-column: span 2;
		max-width: 500px;
		margin: 0 auto;
		width: 100%;
	}

	.pricing-header {
		padding: 40px 25px;
	}

	.pricing-header h3 {
		font-size: 1.5rem;
	}

	.pricing-header .amount {
		font-size: 3rem;
	}
}

@media (max-width: 768px) {
	.pricing-container {
		padding: 60px 0;
		overflow-x: hidden;
		display: block;
	}

	.pricing-grid {
		display: block !important;
		width: 90% !important;
		max-width: 400px !important;
		margin: 40px auto 0 !important;
		padding: 0 !important;
	}

	.pricing-card {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 auto 30px auto !important;
		box-sizing: border-box !important;
		display: flex !important;
	}

	.pricing-card.featured {
		transform: scale(1) !important;
		max-width: 100% !important;
		width: 100% !important;
		margin: 0 auto 30px auto !important;
	}

	.pricing-card.featured:hover {
		transform: translateY(-10px) !important;
	}

	.pricing-header {
		padding: 35px 20px;
	}

	.pricing-header h3 {
		font-size: 1.4rem;
		margin-bottom: 15px;
		color: #ffffff !important;
	}

	.pricing-header .amount {
		font-size: 2.8rem;
		color: #ffffff !important;
	}

	.pricing-header .currency {
		font-size: 1.5rem;
		color: #ffffff !important;
	}

	.pricing-header .period {
		font-size: 0.9rem;
		color: #ffffff !important;
	}

	.pricing-header .validity {
		font-size: 0.95rem;
		padding: 6px 14px;
		margin-top: 10px;
	}

	.pricing-body {
		padding: 30px 20px;
	}

	.pricing-body .tagline {
		font-size: 0.9rem;
		margin-bottom: 25px;
	}

	.feature-list li {
		font-size: 0.92rem;
		padding: 8px 0;
	}

	.bonus-box {
		padding: 12px;
		font-size: 0.85rem;
		margin-bottom: 20px;
	}

	.btn-join-premium {
		padding: 14px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.pricing-container {
		padding: 50px 0;
		overflow-x: hidden;
		display: block;
	}

	.pricing-grid {
		display: block !important;
		width: 95% !important;
		max-width: 360px !important;
		margin: 30px auto 0 !important;
		padding: 0 !important;
	}

	.pricing-card {
		border-radius: 20px;
		max-width: 100% !important;
		width: 100% !important;
		margin: 0 auto 25px auto !important;
	}

	.pricing-header {
		padding: 30px 15px;
	}

	.pricing-header h3 {
		font-size: 1.3rem;
		color: #ffffff !important;
	}

	.pricing-header .amount {
		font-size: 2.5rem;
		color: #ffffff !important;
	}

	.pricing-header .currency {
		font-size: 1.3rem;
		color: #ffffff !important;
	}

	.pricing-header .period {
		color: #ffffff !important;
	}

	.pricing-header .validity {
		font-size: 0.88rem;
		padding: 5px 12px;
	}

	.pricing-body {
		padding: 25px 15px;
	}

	.pricing-body .tagline {
		font-size: 0.88rem;
	}

	.feature-list li {
		font-size: 0.88rem;
		gap: 10px;
	}

	.feature-list li i {
		font-size: 1rem;
	}

	.popular-tag {
		font-size: 10px;
		padding: 5px 14px;
	}

	.bonus-box {
		padding: 10px;
		font-size: 0.8rem;
		flex-direction: column;
		gap: 6px;
	}

	.btn-join-premium {
		padding: 13px;
		font-size: 14px;
	}
}

.scrolling-ticker {
	padding: 50px 0;
}

.scrolling-ticker-box {
	position: relative;
	--gap: 40px;
	display: flex;
	user-select: none;
	gap: var(--gap);
	align-items: center;
	border-top: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
	padding: 80px 0;
	margin: 40px 0;
}

.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 50s linear infinite;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-ticker-box .scrolling-content span {
	font-family: var(--accent-font);
	display: flex;
	align-items: center;
	text-transform: capitalize;
	font-size: 60px;
	line-height: 1em;
	font-weight: 400;
	color: var(--accent-color);
}

.scrolling-ticker-box .scrolling-content span img {
	width: 20px;
	margin-right: 40px;
}

.scrolling-ticker-images {
	display: flex;
	min-width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	height: 100%;
}

.scrolling-ticker-image {
	position: relative;
	text-align: center;
	transform: translateY(40px);
	align-content: end;
	width: 25%;
}

.scrolling-ticker-images .scrolling-ticker-image:nth-child(even) {
	align-content: start;
	transform: translateY(-40px);
}

.scrolling-ticker-image figure {
	display: block;
	border-radius: 50%;
}

.scrolling-ticker-image img {
	border-radius: 50%;
	max-width: 80px;
}

.our-faqs {
	padding: 100px 0;
	background: #fdfdfd;
}

.faq-accordion .accordion-item {
	border: none;
	background: #ffffff;
	border-radius: 20px !important;
	margin-bottom: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	overflow: hidden;
}

.faq-accordion .accordion-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 19px;
	font-weight: 700;
	line-height: 1.4;
	background: #ffffff;
	color: #1a202c;
	padding: 25px 30px;
	border: none;
	box-shadow: none;
	letter-spacing: -0.5px;
	transition: all 0.3s ease;
}

.faq-accordion .accordion-item {
	border-left: 5px solid #5A3DCC;
}

.faq-accordion .accordion-header .accordion-button:not(.collapsed) {
	background: rgba(0, 0, 0, 0.02);
	color: var(--primary-color);
}

.faq-accordion .accordion-button::after {
	display: none;
}

.faq-accordion .accordion-button {
	position: relative;
}


.faq-accordion .accordion-button::before {
	content: '+';
	position: absolute;
	right: 25px;
	font-size: 28px;
	font-weight: 300;
	transition: transform 0.4s ease;
	color: #a0aec0;
}

.faq-accordion .accordion-button:not(.collapsed)::before {
	content: '−';
	transform: rotate(180deg);
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body {
	background: #ffffff;
	padding: 0 30px 30px 30px;
	border: none;
}

.faq-accordion .accordion-item .accordion-body p {
	color: #4a5568;
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
}

.faqs-image {
	position: relative;
	padding: 35px 35px 30px 45px;
	margin-left: 20px;
}

.faqs-image::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background: var(--accent-secondary-color);
	border-radius: 30px;
	width: 310px;
	height: 310px;
}

.faqs-image figure {
	position: relative;
	display: block;
	border-radius: 30px;
	z-index: 1;
}

.faqs-image img {
	width: 100%;
	aspect-ratio: 1 / 1.01;
	object-fit: cover;
	border-radius: 30px;
}

.faqs-contact-box {
	position: absolute;
	bottom: -20px;
	left: 0;
	background: #ffffff;
	border: none;
	border-radius: 24px;
	display: inline-flex;
	align-items: center;
	padding: 25px 30px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	z-index: 2;
	transition: all 0.3s ease;
}

.faqs-contact-box:hover {
	transform: translateY(-10px);
}

.faqs-contact-box .icon-box {
	background: linear-gradient(135deg, var(--primary-color) 0%, #ff9933 100%);
	border-radius: 18px;
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 6px 20px rgba(255, 122, 0, 0.25);
}

.faqs-contact-box:hover .icon-box {
	transform: scale(1.15) rotate(-10deg);
	box-shadow: 0 10px 30px rgba(255, 122, 0, 0.4);
}

.faqs-contact-box .icon-box i {
	font-size: 22px;
	color: #fff;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faqs-contact-box:hover .icon-box i {
	transform: scale(1.2);
}

.faqs-contact-box-content h3 {
	font-size: 18px;
	font-weight: 800;
	color: #2d3748;
	margin-bottom: 2px;
	letter-spacing: -0.5px;
}

.faqs-contact-box-content p a {
	font-size: 17px;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
}

.footer-main {
	position: relative;
	background: var(--accent-color);
	background-image:
		url('../images/footer-bg.svg'),
		radial-gradient(circle at 20% 50%, rgba(255, 122, 0, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 30%, rgba(90, 61, 204, 0.05) 0%, transparent 50%);
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-size: 100% auto, cover, cover;
	background-position: bottom center, center, center;
	padding: 40px 0 30px 0;
	transition: all 0.3s ease;
}

.footer-main::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100px;
	background-image: url('../images/section-bg-img-3.svg');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: cover;
	height: 417px;
	width: 431px;
	transform: rotateY(180deg) translateY(-85%);
	z-index: 0;
	opacity: 0.8;
}

.footer-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.footer-about {
	width: calc(78% - 10px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.footer-logo {
	border-right: 1px solid var(--dark-divider-color);
	margin-right: 40px;
	padding-right: 0px;
}

.footer-logo img {
	width: 100%;
	max-width: 181px;
}

.about-footer-content {
	width: calc(100% - 292px);
}

.about-footer-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-social-links {
	width: calc(22% - 15px);
	text-align: right;
}

.footer-social-links ul {
	display: inline-block;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li {
	display: inline-block;
	border-radius: 50%;
	margin-right: 15px;
}

.footer-social-links ul li:last-child {
	margin: 0;
}

.footer-social-links ul li a {
	width: 36px;
	height: 36px;
	background: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}


.footer-links h3 {
	font-size: 24px;
	color: var(--white-color);
	font-weight: 800;
	text-transform: capitalize;
	margin-bottom: 30px;
	letter-spacing: -1.2px;
}

.footer-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li {
	color: var(--white-color);
	line-height: 1.7em;
	margin-bottom: 15px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
	color: var(--accent-secondary-color);
}

.footer-contact-links {
	margin-right: 50px;
}

.footer-newsletter-box .section-title h2 {
	color: var(--white-color);
	font-size: 2rem;
	margin-bottom: 20px;
	max-width: 450px;
	line-height: 1.3;
}

.newsletter-form .form-group {
	display: flex;
}

.newsletter-form .form-group .form-control {
	width: calc(100% - 56px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--text-color);
	background: transparent;
	border: 1px solid #fff;
	border-radius: 100px;
	outline: none;
	box-shadow: none;
	padding: 15px 20px;
}

.newsletter-form .form-group .form-control::placeholder {
	color: #FFFFFF;
}

.newsletter-form .form-group .newsletter-btn {
	background-color: var(--accent-color);
	width: 56px;
	height: 56px;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover {
	background-color: var(--accent-color);
	transform: rotate(15deg);
	border: #fff 2px solid;
}

.newsletter-form .form-group .newsletter-btn i {
	font-size: 24px;
	color: var(--white-color);
	padding-right: 5px;
}

.page-header {
	position: relative;
	background: url('../images/page-header-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	padding: 250px 0 140px;
}

.page-header::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background:
		linear-gradient(269.99deg, rgba(30, 30, 30, 0) 43.61%, rgba(30, 30, 30, 0.828125) 78.06%, #1E1E1E 101.51%),
		linear-gradient(360deg, rgba(30, 30, 30, 0.1) 78.13%, #1E1E1E 102.84%),
		repeating-linear-gradient(0deg,
			transparent,
			transparent 50px,
			rgba(47, 182, 163, 0.02) 50px,
			rgba(47, 182, 163, 0.02) 100px);
	width: 100%;
	height: 100%;
	z-index: 0;
}

.page-header-box {
	position: relative;
	z-index: 1;
}

.page-header-box h1 {
	display: inline-block;
	color: var(--white-color);
	font-size: 4rem;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 10px;
	cursor: none;
	letter-spacing: -2px;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol li.breadcrumb-item.active {
	color: var(--white-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	content: "/";
	color: var(--white-color);
}

.our-approach {
	padding: 80px 0;
	background: linear-gradient(135deg, #f9f7f5 0%, rgba(47, 182, 163, 0.02) 100%);
	position: relative;
}

.our-approach-body {
	background: transparent;
	border: none;
	padding: 0;
	box-shadow: none;
}

.mission-vision-item {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 30px;
	margin-bottom: 20px;
	border-radius: 15px;
	background: white;
	border-left: 5px solid var(--accent-color);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mission-vision-item:hover {
	transform: translateX(8px) translateY(-4px);
	box-shadow: 0 12px 35px rgba(47, 182, 163, 0.15);
	border-left-color: rgba(47, 182, 163, 0.8);
}

.mission-vision-item:last-child {
	margin-bottom: 0;
}

.mission-vision-header {
	display: flex;
	align-items: center;
	gap: 15px;
}

.mission-vision-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	background: linear-gradient(135deg, rgba(47, 182, 163, 0.15) 0%, rgba(47, 182, 163, 0.05) 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.mission-vision-item:hover .mission-vision-icon {
	background: linear-gradient(135deg, rgba(47, 182, 163, 0.25) 0%, rgba(47, 182, 163, 0.15) 100%);
	transform: scale(1.1);
}

.mission-vision-content h3 {
	font-size: 20px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--heading-color);
	margin: 0;
	letter-spacing: -0.5px;
	white-space: nowrap;
}

.mission-vision-content p {
	margin: 0;
	color: #666;
	line-height: 1.6;
	font-size: 15px;
	text-align: justify;
}

.mission-vision-item>p {
	margin: 0;
	color: #666;
	line-height: 1.6;
	font-size: 15px;
	text-align: justify;
}

.our-approach-image {
	position: relative;
	padding-right: 222px;
	margin-left: 15px;
}

.our-approach-img-1 figure,
.our-approach-img-2 figure {
	display: block;
}

.our-approach-img-1 img,
.our-approach-img-2 img {
	width: 80%;
	object-fit: cover;
}

.our-approach-img-1 figure {
	border-radius: 999px;
}

.our-approach-img-1 img {
	aspect-ratio: 1 / 1.796;
	border-radius: 999px;

}

.our-approach-img-2 {
	max-width: 364px;
	position: absolute;
	right: 0;
	bottom: 0;
	border: 10px solid var(--secondary-color);
	border-radius: 999px;
	overflow: hidden;
	z-index: 1;
	transform: translateX(-70px);
}

.our-approach-img-2 img {
	width: 100%;
	max-width: 300px;
	aspect-ratio: 1 / 1.291;
}

.approach-explore-more-circle {
	position: absolute;
	top: 10px;
	right: 20px;
}

.approach-explore-more-circle a {
	display: block;
	border-radius: 50%;
}

.approach-explore-more-circle img {
	width: 100%;
	max-width: 180px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.page-book-appointment {
	padding: 20px 0;
	background: #fdfdfd;
}

.appointment-wrapper {
	background: #ffffff;
	border-radius: 20px;
	padding: 18px 18px;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.05);
	max-width: 820px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.form-header {
	text-align: center;
	margin-bottom: 12px;
}

.form-title {
	font-size: 32px !important;
	font-weight: 800 !important;
	color: #FF7A00 !important;
	margin-bottom: 8px !important;
	letter-spacing: -0.5px !important;
	text-transform: capitalize;
	line-height: 1.1;
}

.form-subtitle {
	font-size: 18px;
	color: #718096;
	font-weight: 500;
}

.appointment-form {
	width: 100%;
	max-width: 680px;
	margin: 0 auto;
}

.quick-form .form-row {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
}

.quick-form .form-control,
.quick-form .service-select {
	width: 100%;
	height: 48px;
	background: #f7fafc !important;
	border: 1px solid #edf2f7 !important;
	border-radius: 12px !important;
	padding: 0 16px !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	color: #2d3748 !important;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-form .form-control:focus {
	border-color: #5A3DCC !important;
	background: #ffffff !important;
	box-shadow: 0 0 0 3px rgba(90, 61, 204, 0.08) !important;
	outline: none;
}

.quick-form .service-select {
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235A3DCC' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 25px center !important;
	background-size: 18px !important;
}

.quick-form .btn-submit {
	width: 100%;
	height: 52px;
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 12px !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.quick-form .btn-submit:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 45px rgba(37, 211, 102, 0.45);
}

.quick-form .btn-submit i {
	font-size: 24px;
}

.error-msg {
	color: #e63946;
	font-size: 12px;
	margin-top: 4px;
	display: block;
}

@media (max-width: 991px) {
	.appointment-wrapper {
		padding: 40px 20px;
		margin: 0 10px;
		border-radius: 30px;
		transform: none !important;
		animation: none !important;
	}

	.form-title {
		font-size: 30px !important;
		letter-spacing: -1px !important;
	}

	.quick-form .form-row {
		flex-direction: column;
		gap: 10px;
		margin-bottom: 10px !important;
		transform: none !important;
	}

	.quick-form .form-control,
	.quick-form .service-select,
	.quick-form input[type="date"],
	.quick-form input[type="tel"] {
		height: 65px !important;
		min-height: 65px !important;
		font-size: 16px !important;
		padding: 0 25px !important;
		margin-bottom: 0 !important;
		background-color: #f7fafc !important;
		border: 1px solid #edf2f7 !important;
		border-radius: 18px !important;
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		appearance: none !important;
		-webkit-appearance: none !important;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		box-sizing: border-box !important;
	}

	.quick-form .btn-submit {
		height: 60px !important;
		font-size: 16px !important;
		white-space: nowrap;
		padding: 0 15px;
		gap: 8px;
	}


	.appointment-item {
		display: flex;
		align-items: center;
		border-bottom: 1px solid var(--divider-color);
		margin-bottom: 40px;
		padding-bottom: 40px;
		transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	}

	.appointment-item:hover {
		transform: translateX(5px);
	}

	.appointment-item:last-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.appointment-item .icon-box {
		margin-right: 20px;
		transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
		border-radius: 50%;
		width: 70px;
		height: 70px;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 6px 20px rgba(47, 182, 163, 0.2);
		flex-shrink: 0;
	}

	.appointment-item:hover .icon-box {
		transform: scale(1.15) rotate(10deg);
		box-shadow: 0 10px 30px rgba(47, 182, 163, 0.35);
	}

	.appointment-item .icon-box img {
		max-width: 60px;
		transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
	}

	.appointment-item:hover .icon-box img {
		transform: scale(1.1);
	}

	.appointment-item-content {
		width: calc(100% - 80px);
	}

	.appointment-item-content h3 {
		font-size: 20px;
		text-transform: capitalize;
		margin-bottom: 5px;
	}

	.appointment-item-content p {
		margin: 0;
	}

	.appointment-item-content p a {
		color: inherit;
		transition: all 0.3s ease-in-out;
	}

	.appointment-item-content p a:hover {
		color: var(--primary-color);
	}

	.our-faqs.about-faqs {
		padding: 20px 0 50px;
	}

	.our-faqs-content.faq-accordion {
		padding: 20px;

	}

	.why-choose {
		width: 100%;
		background: #faf7f2;
		padding: 60px 10px;
		text-align: center;
		position: relative;
	}

	.why-choose h3 {
		font-size: 16px;
		letter-spacing: 2px;
		text-transform: uppercase;
		color: var(--primary-color);
		margin-bottom: 15px;
	}

	.why-choose h2 {
		font-size: 42px;
		font-weight: 600;
		margin-bottom: 50px;
		color: #1a1a1a !important;
	}

	.why-choose .section-title h2 {
		color: #1a1a1a !important;
	}


	.why-items {
		max-width: 1200px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
	}


	.why-box,
	.why-box1 {
		background: white;
		padding: 30px 20px;
		border-radius: 20px;
		transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
		position: relative;
		overflow: hidden;
	}

	.why-box:hover,
	.why-box1:hover {
		transform: translateY(-8px);
		box-shadow: 0 15px 40px rgba(47, 182, 163, 0.15);
		border-color: rgba(47, 182, 163, 0.2);
	}

	.why-box img,
	.why-box1 img {
		width: 80px;
		margin: 0 auto 20px;
		transition: transform 0.3s ease;
		filter: drop-shadow(0 2px 8px rgba(47, 182, 163, 0.1));
	}

	.why-box:hover img,
	.why-box1:hover img {
		transform: scale(1.1);
	}

	.why-box p,
	.why-box1 p {
		font-size: 20px;
		color: var(--heading-color);
		font-weight: 600;
		line-height: 1.4;
		margin-bottom: 12px;
	}

	.why-box span,
	.why-box1 span {
		font-size: 14px;
		color: var(--text-color);
		line-height: 1.6;
		display: block;
	}
}

@media(max-width:768px) {
	.why-choose {
		padding: 60px 15px;
	}

	.why-choose h2 {
		font-size: 26px;
		margin-bottom: 35px;
	}

	.why-items {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.why-box img {
		width: 65px;
	}

	.why-box p {
		font-size: 15px;
	}

	.why-box1 img {
		width: 65px;
	}

	.why-box1 p {
		font-size: 15px;
	}
}

.about-cta-section {
	background: linear-gradient(135deg, var(--accent-color) 0%, rgba(47, 182, 163, 0.85) 100%);
	padding: 60px 40px;
	margin: 60px 0;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

.about-cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: -50px;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	z-index: 0;
}

.about-cta-section h2 {
	color: white;
	margin-bottom: 15px;
	font-size: 32px;
	position: relative;
	z-index: 1;
}

.about-cta-section p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	margin-bottom: 0;
	position: relative;
	z-index: 1;
}

.about-cta-section .btn-default {
	background: var(--brand-orange);
	color: white;
	font-weight: 600;
	border: 2px solid var(--brand-orange);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.about-cta-section .btn-default:hover {
	background: transparent;
	color: white;
	transform: translateY(-3px);
}

@media(max-width:768px) {
	.about-cta-section {
		padding: 40px 20px;
		margin: 40px 0;
		text-align: center;
	}

	.about-cta-section h2 {
		font-size: 22px;
		margin-bottom: 12px;
	}

	.about-cta-section p {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.about-cta-section .text-lg-end {
		text-align: center !important;
	}
}

.page-services {
	position: relative;
	padding: 100px 0 50px;
	background: linear-gradient(135deg, #ffffff 0%, rgba(47, 182, 163, 0.03) 50%, var(--secondary-color) 100%);
	transition: all 0.3s ease;
	overflow: visible;
}

.page-services::before {
	content: '';
	position: absolute;
	bottom: 50px;
	left: -70px;
	background-image: url('../images/section-bg-img-2.svg');
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: cover;
	height: 379px;
	width: 262px;
	z-index: 0;
	pointer-events: none;
}

.page-services::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		repeating-linear-gradient(45deg,
			transparent,
			transparent 35px,
			rgba(47, 182, 163, 0.02) 35px,
			rgba(47, 182, 163, 0.02) 70px);
	pointer-events: none;
	z-index: 0;
}

.page-services .container {
	position: relative;
	z-index: 1;
}

.page-pricing {
	position: relative;
	padding: 100px 0 20px;
}

.page-pricing::before {
	content: '';
	position: absolute;
	bottom: 20px;
	left: -100px;
	background-image: url('../images/section-bg-img-2.svg');
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: cover;
	height: 379px;
	width: 262px;
	z-index: 0;
}

.page-contact-us {
	padding: 60px 0;
	position: relative;
	background: var(--base-bg);
	transition: all 0.3s ease;
}

.page-contact-us::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(circle at 10% 20%, rgba(255, 122, 0, 0.06) 0%, transparent 40%),
		radial-gradient(circle at 90% 80%, rgba(47, 182, 163, 0.06) 0%, transparent 40%);
	pointer-events: none;
	z-index: 0;
}


.floating-container {
	position: fixed !important;
	bottom: 160px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 2147483647 !important;
}

.floating-button {
	width: 40px;
	height: 40px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 2px solid transparent;
}

.floating-button:hover {
	transform: scale(1.15) translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


.floating-button img {
	width: 30px;
	height: 30px;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-button.whatsapp {
	background-color: #25d366;
	border-color: rgba(37, 211, 102, 0.3);
}

.floating-button.whatsapp:hover {
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
	border-color: rgba(37, 211, 102, 0.8);
}

.floating-button.call {
	background-color: #34b7f1;
	border-color: rgba(52, 183, 241, 0.3);
}

.floating-button.call:hover {
	box-shadow: 0 8px 20px rgba(52, 183, 241, 0.4);
	border-color: rgba(52, 183, 241, 0.8);
}

.floating-button.call img {
	filter: brightness(0) invert(1);
}

.floating-button.instagram {
	background: linear-gradient(135deg, #f5a623 0%, #d92e7f 50%, #e4405f 100%);
	border-color: rgba(228, 64, 95, 0.3);
}

.floating-button.instagram:hover {
	box-shadow: 0 8px 20px rgba(228, 64, 95, 0.4);
	border-color: rgba(228, 64, 95, 0.8);
}

.floating-button.refer {
	background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
	border-color: rgba(108, 92, 231, 0.3);
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	position: relative;
	width: 40px !important;
	height: 40px !important;
	padding: 0 !important;
}

.floating-button.refer:hover {
	box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
	border-color: rgba(108, 92, 231, 0.8);
	transform: scale(1.15) translateY(-3px) rotate(10deg);
}

.floating-button.refer i {
	color: #fff !important;
	font-size: 18px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	height: 100% !important;
	line-height: 1 !important;
}

@keyframes float-pulse {

	0%,
	100% {
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	}

	50% {
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	}
}

@media (max-width: 768px) {
	.floating-container {
		bottom: 100px;
		right: 15px;
	}

	.floating-button {
		width: 38px;
		height: 38px;
	}

	.floating-button img {
		width: 25px;
		height: 25px;
	}
}

.contact-us-content {
	margin-right: 30px;
}

.contact-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 50px;
}

.contact-info-item {
	width: calc(50% - 15px);
	background: linear-gradient(135deg, var(--white-color) 0%, rgba(47, 182, 163, 0.02) 100%);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	display: flex;
	align-items: center;
	padding: 20px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-item:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 12px 30px rgba(47, 182, 163, 0.15);
	border-color: rgba(47, 182, 163, 0.3);
}

.contact-info-item .icon-box {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent-color) 0%, #1fa593 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 6px 20px rgba(47, 182, 163, 0.25);
}

.contact-info-item:hover .icon-box {
	transform: scale(1.2) rotateY(180deg);
	box-shadow: 0 10px 30px rgba(47, 182, 163, 0.4);
}

.contact-info-item .icon-box img {
	width: 100%;
	max-width: 25px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-item-content {
	width: calc(100% - 70px);
	overflow: hidden;
}

.contact-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-item-content p {
	margin: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	word-wrap: break-word;
	font-size: 14px;
	line-height: 1.5;
}

.contact-item-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
	word-break: break-all;
}

.contact-item-content p a:hover {
	color: var(--primary-color);
}


.contact-us-form {
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 20px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

.google-map .container-fluid {
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 450px;
}

.page-book-appointment {
	position: relative;
	padding: 100px 0 50px;
}

.page-book-appointment::before {
	content: '';
	position: absolute;
	bottom: 10px;
	left: -70px;
	background-image: url('../images/section-bg-img-2.svg');
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: cover;
	height: 379px;
	width: 262px;
	z-index: 0;
}

.our-faqs .faqs-image::before,
.about-images::before,
.faqs-image::before {
	display: none !important;
}

@media only screen and (max-width: 1300px) {
	.our-pricing::before {
		top: -25px;
		height: 197px;
		width: 240px;
	}
}

@media only screen and (max-width: 1024px) {

	.header-contact-now {
		display: none;
	}
}

@media only screen and (max-width: 991px) {



	body,
	html {
		margin: 0;
		padding: 0;
	}

	.section,
	.container {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.navbar {
		margin-bottom: 0;
	}




	.main-menu {
		display: none !important;
	}

	.responsive-menu {
		display: block !important;
	}

	.navbar-toggler {
		border: none;
	}




	.btn-default {
		padding: 15px 20px 15px 15px;
	}

	.btn-default::before {
		width: 12px;
		height: 12px;
	}

	.navbar {
		padding: 20px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 45px;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.section-title p {
		font-size: 14px;
		margin-top: 10px;
		font-weight: 400 !important;
		line-height: 1.5;

	}

	.section-title-content {
		margin-top: 15px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.section-content-btn .section-btn {
		margin-top: 15px;
	}

	.hero {
		padding: 80px 15px 20px;
		min-height: 50vh;
		background-position: top center;
		background-size: cover;
	}

	.hero.hero-slider-layout .hero-slide {
		padding: 190px 0 100px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-pagination {
		bottom: 30px;
		padding-left: 15px;
	}

	.hero-content .section-title p {
		margin-top: 20px;
		padding-top: 20px;
	}

	.hero-content .section-title h3 {
		margin-bottom: 20px;
	}

	.hero img,
	.hero .hero-bg {
		width: 100%;
		height: auto;
		object-fit: cover;
	}

	.down-arrow-circle {
		bottom: 10px;
	}

	.down-arrow-circle a img {
		max-width: 100px;
	}

	.down-arrow-circle a i {
		font-size: 30px;
	}

	.about-us {
		padding: 50px 0 25px;
	}

	.about-us::before {
		bottom: -40px;
		height: 170px;
		width: 208px;
	}

	.about-images {
		max-width: 80%;
		margin: 20px auto 50px;
	}

	.about-image-title h2 {
		font-size: 88px;
	}

	.about-us-content {
		margin-left: 0px;
	}

	.about-content-body {
		margin-bottom: 30px;
	}


	.our-services {
		padding: 25px 0;
	}

	.service-item {
		border-radius: 20px;
		padding: 20px;
	}

	.service-header {
		margin-bottom: 50px;
	}

	.service-header .icon-box img {
		max-width: 60px;
	}

	.service-btn a {
		width: 40px;
		height: 40px;
	}

	.service-btn a img {
		max-width: 12px;
	}

	.service-content h3 {
		margin-bottom: 10px;
	}

	.section-footer-text {
		margin-top: 10px;
	}

	.section-footer-text p span {
		font-size: 14px;
	}


	.what-we-item .icon-box {
		margin-right: 10px;
	}

	.what-we-item-content {
		width: calc(100% - 50px);
	}

	.what-we-item-content p {
		font-size: 14px;
	}


	.why-choose-us {
		padding: 25px 0;
	}

	.why-choose-image {
		width: 100%;
	}

	.why-choose-item {
		width: calc(50% - 15px);
		padding: 20px;
	}

	.why-choose-item .icon-box {
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box img {
		max-width: 60px;
	}

	.why-choose-counter-box {
		gap: 30px;
		margin-top: 40px;
		padding-top: 40px;
	}

	.why-choose-counter-item {
		display: block;
		width: calc(25% - 22.5px);
	}

	.why-choose-counter-item::before {
		right: -15px;
	}

	.why-choose-counter-item .icon-box {
		margin: 0 0 10px 0;
	}

	.why-choose-counter-item .icon-box img {
		max-width: 40px;
	}

	.why-choose-counter-content h3 {
		font-size: 26px;
	}

	.why-choose-counter-content p {
		font-size: 14px;
	}

	.why-choose-counter-item .icon-box {
		margin-right: 10px;
	}




	.cta-box {
		margin: 40px 15px;
		padding: 45px 20px;
		border-radius: 20px;
	}

	.cta-box .section-title,
	.cta-box .section-btn {
		text-align: center;
	}

	.cta-box .section-title h2 {
		font-size: 2rem !important;
	}

	.cta-box .cta-subtext {
		font-size: 1rem;
	}

	.cta-bg-icon {
		display: none;
	}

	.btn-premium-cta {
		margin-top: 20px;
		width: fit-content !important;
		padding: 15px 30px !important;
	}



	.our-pricing {
		padding: 25px 0 0;
	}

	.our-pricing::after {
		height: 105px;
		width: 290px;
	}

	.pricing-item {
		border-radius: 20px;
	}

	.pricing-content {
		padding: 20px;
	}

	.pricing-title {
		margin-top: -38px;
		margin-bottom: 20px;
	}

	.pricing-content h3 {
		padding: 8px 20px;
	}

	.pricing-content h2 {
		font-size: 36px;
	}

	.pricing-content p {
		font-size: 14px;
	}

	.pricing-body {
		padding: 20px;
	}

	.pricing-list {
		margin-bottom: 30px;
	}

	.pricing-list ul li {
		margin-bottom: 10px;
	}




	.our-faqs {
		padding: 25px 0;
	}

	.our-faqs-content {
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding: 15px 40px 15px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		top: 16px;
		right: 15px;
		font-size: 20px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 15px 45px 15px 15px;
	}

	.faqs-image {
		padding: 35px 35px 30px 45px;
		margin-left: 0;
	}

	.faqs-image::before {
		border-radius: 20px;
	}

	.faqs-image figure {
		border-radius: 20px;
	}

	.faqs-image img {
		aspect-ratio: 1 / 0.8;
		border-radius: 20px;
	}

	.faqs-contact-box {
		border-radius: 12px;
		padding: 15px;
	}

	.our-blog {
		padding: 25px 0 20px;
	}

	.our-blog::before {
		top: -65px;
		right: -40px;
		height: 180px;
		width: 220px;
	}

	.post-item {
		border-radius: 20px;
		padding: 20px;
	}

	.post-featured-image,
	.post-item-content {
		margin-bottom: 15px;
	}

	.post-featured-image a {
		border-radius: 20px;
	}

	.footer-main {
		padding: 40px 0 0 0;
	}

	.footer-main::before {
		left: -75px;
		height: 310px;
		width: 320px;
	}

	.footer-header {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.footer-about {
		width: calc(70% - 10px);
	}

	.footer-logo {
		margin-right: 20px;
		padding-right: 20px;
	}

	.about-footer-content {
		width: calc(100% - 222px);
	}

	.footer-social-links {
		width: calc(30% - 10px);
	}

	.footer-social-links ul li {
		margin-right: 10px;
	}

	.footer-links {
		margin-bottom: 30px;
	}

	.footer-links h3 {
		margin-bottom: 20px;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-contact-links {
		margin-right: 0;
	}

	.footer-newsletter-box {
		margin-bottom: 30px;
	}

	.footer-newsletter-box .section-title {
		margin-bottom: 20px;
	}

	.newsletter-form .form-group .form-control {
		width: calc(100% - 48px);
		padding: 11px 20px;
	}

	.newsletter-form .form-group .newsletter-btn {
		width: 48px;
		height: 48px;

	}

	.newsletter-form .form-group .newsletter-btn i {
		font-size: 20px;
	}

	.footer-copyright {
		margin-top: 0px;
		padding: 30px 0;
	}

	.footer-privacy-policy ul li {
		margin-right: 3px;
		padding-right: 12px;
	}

	.page-header {
		padding: 170px 0 80px;
	}

	.page-header-box h1 {
		font-size: 45px;
		margin-bottom: 5px;
	}

	.our-approach {
		padding: 25px 0;
	}

	.our-approach-content {
		margin-bottom: 30px;
	}

	.our-approach-body {
		padding: 30px;
	}

	.mission-vision-item {
		gap: 15px;
		padding-bottom: 25px;
		margin-bottom: 25px;
	}

	.mission-vision-icon {
		width: 50px;
		height: 50px;
		min-width: 50px;
		font-size: 20px;
	}

	.mission-vision-content h3 {
		font-size: 20px;
		margin-bottom: 8px;
	}

	.mission-vision-content p {
		font-size: 13.5px;
		line-height: 1.6;
	}

	.our-approach-image {
		max-width: 80%;
		margin: 0 auto;
		padding-right: 180px;
	}

	.our-approach-img-1 img {
		aspect-ratio: 1 / 1.65;
	}




	.our-appointment {
		padding: 25px 0;
	}

	.our-appointment-box {
		padding: 10px;
		gap: 30px;
	}

	.our-appointment p {
		font-size: 14px;
	}

	.our-appointment-content,
	.appointment-form {
		width: 100%;
	}

	.appointment-form form .form-control {
		padding: 12px 15px;
	}

	.appointment-form form .form-group select {
		padding: 10px 30px 10px 15px;
	}

	.appointment-item {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.appointment-item .icon-box {
		margin-right: 10px;
	}

	.appointment-item .icon-box img {
		max-width: 50px;
	}

	.appointment-item-content {
		width: calc(100% - 60px);
	}

	.our-appointment-content .section-title p {
		font-size: 14px;
	}

	.our-faqs.about-faqs {
		padding: 25px 0 50px;
	}

	.page-services {
		padding: 50px 0 25px;
	}

	.page-services::before {
		bottom: -15px;
		height: 260px;
		width: 180px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.page-service-single::before {
		height: 260px;
		width: 180px;
	}

	.page-service-single::after {
		bottom: -40px;
		height: 170px;
		width: 208px;
	}

	.page-single-sidebar {
		position: initial;
		margin: 0 0 30px 0;
	}

	.page-catagery-list {
		border-radius: 20px;
		margin-bottom: 30px;
	}

	.page-catagery-list h3,
	.page-catagery-list ul {
		padding: 20px;
	}

	.page-catagery-list ul li a {
		border-radius: 10px;
		padding: 13px 35px 13px 15px;
		overflow: hidden;
		transition: all 0.4s ease-in-out;
		z-index: 1;
	}

	.page-catagery-list ul li a::before {
		right: 15px;
		width: 12px;
		height: 12px;
	}

	.sidebar-cta-box {
		border-radius: 20px;
		padding: 20px;
	}

	.sidebar-cta-image figure {
		border-radius: 20px;
	}

	.sidebar-cta-image img {
		aspect-ratio: 1 / 0.5;
		border-radius: 20px;
	}

	.sidebar-cta-content h3 {
		margin-bottom: 15px;
	}

	.service-featured-image {
		margin-bottom: 30px;
	}

	.service-featured-image figure {
		border-radius: 20px;
	}

	.service-featured-image img {
		aspect-ratio: 1 / 0.51;
		border-radius: 20px;
	}

	.service-entry {
		margin-bottom: 40px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-entry h2 {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry ul {
		gap: 15px 40px;
	}

	.service-entry ul li {
		font-size: 14px;
	}


	.service-benefits-image {
		margin-top: 30px;
	}

	.service-benefits-image figure,
	.service-benefits-image img {
		border-radius: 20px;
	}

	.service-process-steps {
		margin-top: 30px;
	}

	.service-process-steps .how-work-step .how-work-step-no h2 {
		font-size: 34px;
	}

	.page-pricing {
		padding: 50px 0 0px;
	}

	.page-pricing::before {
		height: 260px;
		width: 180px;
	}



	.page-faqs {
		padding: 50px 0;
	}

	.page-faqs::before {
		height: 260px;
		width: 180px;
	}

	.page-faqs::after {
		bottom: -40px;
		height: 170px;
		width: 208px;
	}

	.page-faqs-catagery .page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0;
	}

	.contact-us-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.contact-info-list {
		margin-bottom: 30px;
	}

	.contact-info-item .icon-box {
		margin-right: 10px;
	}

	.contact-item-content {
		width: calc(100% - 60px);
	}

	.contact-us-form {
		border-radius: 20px;
		padding: 30px;
	}

	.contact-form .form-control {
		padding: 12px 15px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 450px;
	}

	.page-book-appointment {
		padding: 50px 0 25px;
	}

	.page-book-appointment::before {
		height: 260px;
		width: 180px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

	.error-page-image img {
		max-width: 80%;
	}

	.error-page-content .section-title,
	.error-page-content-body p {
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 767px) {

	body {
		font-size: 16px;
	}

	.readmore-btn {
		padding: 2px 32px 2px 0;
	}

	.readmore-btn:after {
		width: 24px;
		height: 24px;
	}

	.section-row {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 30px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.section-title-content {
		margin-top: 10px;
	}

	.hero-body {
		gap: 20px;
	}

	.hero-body .video-play-button p {
		font-size: 14px;
	}

	.down-arrow-circle {
		right: 0;
		left: 0;
	}

	.down-arrow-circle a img {
		max-width: 80px;
	}

	.down-arrow-circle a i {
		font-size: 24px;
	}

	.about-us::before {
		height: 135px;
		width: 166px;
	}

	.about-images {
		max-width: 100%;
		margin: 0 0 50px 0;
	}

	.about-images::after {
		top: 0;
		background-size: contain;
		max-width: 60%;
	}

	.about-image img {
		max-width: 90%;
		aspect-ratio: 1 / 1.3;
		object-fit: contain;
	}

	.about-image-title {
		right: 20px;
	}

	.about-image-title h2 {
		font-size: 58px;
	}

	.about-benefit-item-content h3 {
		font-size: 18px;
	}

	.service-header {
		margin-bottom: 30px;
	}

	.service-content h3 {
		font-size: 18px;
	}


	.what-we-body ul {
		gap: 10px;
	}

	.what-we-body ul li {
		width: 100%;
	}

	.what-we-image {
		background-size: 80% auto;
		max-width: 100%;
	}

	.what-we-benefits-list {
		padding: 30px 20px;
	}

	.what-we-item {
		width: 100%;
	}

	.what-we-item-content h3 {
		font-size: 18px;
	}

	.what-we-benefit-image img {
		aspect-ratio: 1 / 0.682;
	}

	.why-choose-content {
		gap: 20px;
	}

	.why-choose-item {
		width: 100%;
	}

	.why-choose-item .icon-box img {
		max-width: 50px;
	}

	.why-choose-item-content h3 {
		font-size: 18px;
	}

	.why-choose-counter-item {
		width: calc(50% - 15px);
	}

	.why-choose-counter-item .icon-box img {
		max-width: 30px;
	}

	.why-choose-counter-content h3 {
		font-size: 22px;
	}

	.intro-video-box {
		height: 350px;
	}



	.our-pricing::before {
		top: 0;
		left: -50px;
		height: 163px;
		width: 180px;
	}

	.our-pricing::after {
		right: -30px;
		height: 75px;
		width: 208px;
	}

	.pricing-content h2 {
		font-size: 26px;
	}


	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding: 12px 40px 12px 15px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 12px 15px;
	}

	.faq-accordion .accordion-item .accordion-body p {
		font-size: 14px;
	}

	.faqs-image {
		padding: 15px 15px 30px 25px;
	}

	.faqs-image::before {
		width: 210px;
		height: 210px;
	}

	.faqs-contact-box {
		padding: 5px 5px;
	}

	.faqs-contact-box .icon-box {
		width: 30px;
		height: 4 0px;
		margin-right: 10px;
	}

	.faqs-contact-box-content {
		width: calc(100% - 50px);
	}

	.faqs-contact-box-content h3 {
		font-size: 18px;
	}

	.our-blog::before {
		height: 135px;
		width: 166px;
	}

	.post-item-content h2 {
		font-size: 18px;
	}

	.footer-main::before {
		height: 210px;
		width: 219px;
	}

	.footer-header {
		gap: 15px;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.footer-about,

	.footer-logo,
	.about-footer-content {
		width: 100%;
	}

	.footer-logo {
		margin: 0 0 15px 0;
		padding-right: 0;
		border-right: none;
	}



	.page-header-box h1 {
		font-size: 30px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 14px;
	}

	.our-approach-body {
		padding: 20px;
	}

	.mission-vision-item h3 {
		font-size: 18px;
	}

	.our-approach-image {
		max-width: 100%;
		padding-right: 120px;
	}

	.our-approach-img-2 {
		max-width: 190px;
		border-width: 5px;
	}

	.approach-explore-more-circle {
		position: absolute;
		top: 15px;
		right: 10px;
	}

	.approach-explore-more-circle img {
		max-width: 100px;
	}


	.our-appointment-box {
		border-radius: 20px;
		padding: 20px;
	}

	.appointment-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.appointment-item-content h3 {
		font-size: 18px;
	}

	.page-services::before {
		left: -50px;
		height: 200px;
		width: 138px;
	}

	.page-catagery-list h3 {
		font-size: 18px;
		padding: 15px 20px;
	}

	.sidebar-cta-image img {
		aspect-ratio: 1 / 0.64;
	}

	.sidebar-cta-content h3 {
		font-size: 18px;
	}

	.service-featured-image {
		margin-bottom: 20px;
	}

	.service-featured-image img {
		aspect-ratio: 1 / 0.65;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-entry ul {
		gap: 10px;
	}

	.service-entry ul li {
		width: 100%;
	}

	.discover-peace-box,
	.service-benefits-box,
	.service-process-box {
		margin-top: 30px;
	}

	.discover-peace-item {
		width: 100%;
	}

	.discover-peace-item-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.discover-peace-item-content p {
		font-size: 14px;
	}

	.discover-peace-info-box {
		display: block;
		margin: 20px 0;
	}

	.discover-peace-info-box .icon-box {
		border-right: none;
		margin-right: 0px;
		padding-right: 0px;
		margin-bottom: 10px;
	}

	.discover-peace-info-content {
		width: 100%;
	}

	.discover-peace-info-content h3 {
		font-size: 18px;
	}

	.service-benefits-image img {
		aspect-ratio: 1 / 0.58;
	}

	.service-process-steps .how-work-step {
		margin-bottom: 20px;
	}

	.service-process-steps .how-work-step .how-work-step-no h2 {
		font-size: 28px;
	}

	.page-single-post::before {
		left: -50px;
		height: 200px;
		width: 138px;
	}

	.page-single-post::after {
		top: 50%;
		height: 135px;
		width: 166px;
	}

	.post-image img {
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote {
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry blockquote p {
		font-size: 16px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.tag-links {
		font-size: 18px;
	}

	.page-pricing::before {
		left: -50px;
		height: 200px;
		width: 138px;
	}

	.page-testimonials::before {
		left: -50px;
		height: 200px;
		width: 138px;
	}

	.page-testimonials .our-testimonial-box .testimonial-item {
		width: 100%;
	}

	.page-faqs::before {
		left: -50px;
		height: 200px;
		width: 138px;
	}

	.page-faqs::after {
		top: 50%;
		height: 135px;
		width: 166px;
	}

	.contact-info-list {
		gap: 20px;
	}

	.contact-info-item {
		width: 100%;
	}

	.contact-item-content h3 {
		font-size: 18px;
	}

	.contact-social-list {
		display: block;
	}

	.contact-social-list h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.contact-social-list ul li a i {
		font-size: 16px;
	}

	.contact-us-form {
		padding: 20px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.page-book-appointment::before {
		left: -50px;
		height: 200px;
		width: 138px;
	}

	.hero-content h1,
	.hero-title h1,
	.banner-content h1,
	.hero h1 {
		font-family: "Montserrat", sans-serif !important;
		font-weight: 600 !important;
		letter-spacing: 1.2px;
		text-transform: uppercase;
	}

	.pricing-container {
		padding: 80px 20px;
		background: #f9fafb;
		text-align: center;
	}

	.section-title {
		font-size: 36px;
		font-weight: 700;
		margin-bottom: 10px;
	}

	.subtitle {
		color: #666;
		margin-bottom: 45px;
		font-size: 15px;
	}

	.pricing {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 30px;
		max-width: 1150px;
		margin: auto;
	}

	.card {
		background: #fff;
		border-radius: 14px;
		padding: 35px 22px;
		box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
		position: relative;
		transition: transform 0.3s ease;
	}

	.card:hover {
		transform: translateY(-8px);
	}

	.card-header {
		font-size: 20px;
		font-weight: 600;
		padding: 12px;
		border-radius: 8px;
		color: #fff;
		margin-bottom: 15px;
	}

	.green {
		background: #2ecc71;
	}

	.yellow {
		background: #f1c40f;
		color: #333;
	}

	.red {
		background: #e74c3c;
	}

	.price {
		font-size: 20px;
		font-weight: 700;
		margin-top: 10px;
	}

	.price span {
		font-size: 20px;
		
	}

	.validity {
		font-size: 13px;
		color: #888;
		margin-bottom: 12px;
	}

	.package-desc {
		font-size: 14px;
		color: #555;
		margin: 15px 0;
	}

	.features {
		list-style: none;
		padding: 0;
		margin: 20px 0;
	}

	.features li {
		font-size: 14px;
		margin: 8px 0;
	}

	.extras {
		font-size: 13px;
		color: #444;
		margin-bottom: 15px;
	}

	.highlight {
		font-weight: 600;
		color: #e67e22;
	}

	.btn {
		display: inline-block;
		padding: 12px 30px;
		border-radius: 30px;
		font-weight: 600;
		text-decoration: none;
		color: #fff;
	}

	.btn-green {
		background: #2ecc71;
	}

	.btn-yellow {
		background: #f1c40f;
		color: #333;
	}

	.btn-red {
		background: #e74c3c;
	}

	.featured {
		border: 2px solid #f1c40f;
		transform: scale(1.03);
	}

	.badge {
		position: absolute;
		top: -12px;
		right: 15px;
		padding: 5px 12px;
		font-size: 12px;
		border-radius: 20px;
		color: #fff;
	}

	.badge.basic {
		background: #95a5a6;
	}

	.badge.popular {
		background: #f39c12;
	}

	.badge.value {
		background: #27ae60;
	}

	.after-join {
		max-width: 700px;
		margin: 60px auto 20px;
		text-align: left;
	}

	.after-join h4 {
		margin-bottom: 12px;
	}

	.after-join ul {
		padding-left: 18px;
	}

	.after-join li {
		font-size: 14px;
		margin: 6px 0;
	}

	.note {
		font-size: 12px;
		color: #777;
		margin-top: 20px;
	}

	.features.compact {
		padding-left: 0;
		margin-top: 10px;
	}

	.features.compact li {
		list-style: none;
		display: flex;
		align-items: flex-start;
		gap: 8px;
		margin-bottom: 6px;
		font-size: 14px;
		line-height: 1.3;
	}

	.features.compact .dot {
		font-weight: bold;
		font-size: 18px;
		line-height: 1;
	}

	.card.featured {
		transform: scale(1.04);
		box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
	}

	.card {
		transition: all 0.3s ease;
	}

	.card:hover {
		transform: translateY(-6px);
		box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
	}

	.card {
		max-width: 700px;
		width: 100%;

		padding: 16px 18px;
		min-height: auto;

		display: flex;
		flex-direction: column;
		justify-content: flex-start;

		border-radius: 16px;
		transition: all 0.3s ease;
	}

	.why-choose {
		text-align: center;
		padding: 30px 15px;
		background-color: #f9f9f9;
	}

	.why-choose h3 {
		font-size: 3rem;
		font-weight: 800;
		margin-bottom: 15px;
		color: var(--primary-color);
		letter-spacing: -2px;
	}

	.why-items {
		display: flex;
		justify-content: center;
		gap: 15px;
		flex-wrap: wrap;
	}

	.why-box,
	.why-box1 {
		background-color: #fff;
		padding: 20px 15px;
		border-radius: 12px;
		width: 100%;
		max-width: 220px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
		transition: all 0.3s ease;
	}

	.why-box:hover,
	.why-box1:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	}

	.why-box img,
	.why-box1 img {
		width: 80px;
		margin-bottom: 10px;
	}

	@media (max-width: 991.98px) {
		.header-contact-btn {
			display: flex !important;
		}

		.navbar-nav li {
			border-bottom: none !important;
		}
	}

	@media (max-width: 991px) {
		.quick-form .form-control,
		.quick-form input[type="date"],
		.quick-form input[type="tel"] {
			height: 65px !important;
			min-height: 65px !important;
			font-size: 16px !important;
			padding: 0 25px !important;
			appearance: none !important;
			-webkit-appearance: none !important;
		}

		.custom-select-container {
			position: relative !important;
			width: 100% !important;
			margin-bottom: 0 !important;
			z-index: 10;
			cursor: pointer;
		}

		.custom-select-trigger {
			width: 100% !important;
			height: 65px !important;
			font-size: 16px !important;
			font-weight: 500 !important;
			background: #f7fafc !important;
			border: 1px solid #edf2f7 !important;
			border-radius: 18px !important;
			padding: 0 50px 0 25px !important;
			display: flex !important;
			align-items: center !important;
			justify-content: space-between !important;
			color: #2c3e50 !important;
			box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
			transition: all 0.3s ease !important;
			position: relative !important;
		}

		.custom-select-trigger:after {
			content: '\f078';
			font-family: 'Font Awesome 6 Free';
			font-weight: 900;
			font-size: 14px;
			color: #a0aec0;
			transition: transform 0.3s ease;
			position: absolute;
			right: 25px;
		}

		.custom-select-container.open .custom-select-trigger {
			border-color: var(--primary-color) !important;
			box-shadow: 0 8px 25px rgba(255, 122, 0, 0.15) !important;
		}

		.custom-select-container.open .custom-select-trigger:after {
			transform: rotate(180deg);
			color: var(--primary-color);
		}

		.custom-options {
			position: absolute !important;
			top: calc(100% + 5px) !important;
			left: 0 !important;
			right: 0 !important;
			width: 100% !important;
			background: #ffffff !important;
			border: 1px solid #e2e8f0 !important;
			border-radius: 18px !important;
			box-shadow: 0 12px 30px rgba(0,0,0,0.15) !important;
			z-index: 10001 !important;
			overflow: hidden !important;
			display: none;
			padding: 5px 0 !important;
			max-height: 300px !important;
			overflow-y: auto !important;
		}

		.custom-option {
			padding: 16px 25px !important;
			font-size: 16px !important;
			font-weight: 500 !important;
			color: #2c3e50 !important;
			border-bottom: 1px solid #f1f5f9 !important;
			cursor: pointer !important;
			transition: all 0.2s !important;
			background: #fff !important;
		}

		.custom-option:hover {
			background: #fff7ed !important;
			color: var(--primary-color) !important;
			padding-left: 30px !important;
		}

		.custom-option:last-child {
			border-bottom: none !important;
		}

		.select-wrapper,
		.form-row,
		.form-row.full-width,
		.form-group,
		.appointment-wrapper,
		.appointment-form-container,
		.page-book-appointment {
			overflow: visible !important;
			transform: none !important;
			position: relative !important;
		}

		.quick-form,
		#appointmentForm {
			overflow: visible !important;
			position: relative !important;
		}

		.appointment-wrapper * {
			transform: none !important;
		}

		.hero-content h1 {
			font-size: 38px !important;
			line-height: 1.2 !important;
		}

		.hero-content h3 {
			font-size: 18px !important;
			margin-bottom: 10px !important;
		}

		.section-title h2 {
			font-size: 32px !important;
		}

		.pricing-grid {
			grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
			gap: 20px !important;
			padding: 0 15px !important;
		}

		.pricing-card.featured {
			transform: scale(1) !important;
			margin: 0 !important;
		}

		.cta-box {
			margin: 30px 10px !important;
			padding: 20px 10px !important;
			border-radius: 20px !important;
		}

		.cta-box .section-title h2 {
			font-size: 26px !important;
		}

		.cta-subtext {
			font-size: 1rem !important;
		}

		.btn-premium-cta {
			width: fit-content !important;
			margin-top: 25px !important;
			padding: 15px 30px !important;
			text-align: center !important;
		}
	}

	@media (max-width: 768px) {
		.hero {
			padding: 120px 0 60px !important;
			min-height: auto !important;
		}

		.section {
			padding: 60px 0 !important;
		}

		.our-services {
			padding: 0 !important;
		}

		.service-item {
			margin-bottom: 20px !important;
		}

		.our-appointment-box {
			gap: 30px !important;
			padding: 30px 20px !important;
		}

		.appointment-form {
			min-width: 100% !important;
		}
	}

	@media (max-width: 480px) {
		.hero-content h1 {
			font-size: 28px !important;
		}

		.section-title h2 {
			font-size: 26px !important;
		}

		.pricing-header h3 {
			font-size: 1.3rem !important;
		}

		.pricing-header .amount {
			font-size: 2.5rem !important;
		}

		.pricing-body {
			padding: 20px 15px !important;
		}

		.why-box,
		.why-box1 {
			max-width: 100% !important;
		}
	}
}

.referral-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.referral-modal.active {
	display: flex;
}

.referral-modal-content {
	background: linear-gradient(135deg, #f0eae0 0%, #e8dfd5 100%);
	border-radius: 25px;
	padding: 28px 30px;
	max-width: 520px;
	width: 90%;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6);
	animation: slideUp 0.4s ease-out;
	position: relative;
	border: 2px solid rgba(11, 199, 224, 0.2);
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.referral-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.referral-modal-header h2 {
	font-size: 28px;
	font-weight: 700;
	color: #ff7a04;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.referral-close-btn {
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #999;
	transition: color 0.3s;
	padding: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.referral-close-btn:hover {
	color: #FF7A00;
	transform: rotate(90deg);
}

.referral-code-section {
	background: linear-gradient(135deg, #FFF5E6 0%, #FFFBF0 100%);
	border-radius: 15px;
	padding: 18px 20px;
	margin-bottom: 15px;
	text-align: center;
	box-shadow: 0 6px 20px rgba(255, 122, 0, 0.1);
	border: 2px solid rgba(255, 122, 0, 0.15);
}

.referral-code-label {
	font-size: 12px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 8px;
	display: block;
	font-weight: 600;
}

.referral-code-display {
	font-size: 32px;
	font-weight: 800;
	color: #FF7A00;
	letter-spacing: 3px;
	font-family: 'Courier New', monospace;
	margin: 10px 0;
	word-break: break-all;
	padding: 8px;
}

.referral-code-actions {
	display: flex;
	gap: 10px;
	margin-top: 12px;
}

.copy-btn,
.whatsapp-btn {
	flex: 1;
	padding: 10px 12px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.copy-btn {
	background: linear-gradient(135deg, #0bc7e0, #0aa8c4);
	color: white;
}

.copy-btn:hover {
	background: linear-gradient(135deg, #0aa8c4, #088fa8);
	transform: translateY(-3px);
	box-shadow: 0 8px 16px rgba(11, 199, 224, 0.4);
}

.whatsapp-btn {
	background: linear-gradient(135deg, #25D366, #20ba58);
	color: white;
}

.whatsapp-btn:hover {
	background: linear-gradient(135deg, #20ba58, #1a9146);
	transform: translateY(-3px);
	box-shadow: 0 8px 16px rgba(37, 211, 102, 0.4);
}

.copy-feedback {
	font-size: 13px;
	color: #27ae60;
	margin-top: 10px;
	opacity: 0;
	transition: opacity 0.3s;
	font-weight: 600;
}

.copy-feedback.show {
	opacity: 1;
}

.referral-info {
	background: linear-gradient(135deg, rgba(11, 199, 224, 0.08), rgba(255, 122, 0, 0.08));
	border-left: 4px solid #0bc7e0;
	padding: 14px 15px;
	border-radius: 10px;
	margin-bottom: 18px;
	box-shadow: 0 2px 8px rgba(11, 199, 224, 0.1);
}

.referral-info h3 {
	font-size: 13px;
	font-weight: 700;
	color: #0bc7e0;
	margin: 0 0 6px 0;
}

.referral-info p {
	font-size: 13px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

.referral-url-section {
	background: linear-gradient(135deg, #FFF5E6 0%, #FFFBF0 100%);
	border-radius: 15px;
	padding: 15px 18px;
	margin-bottom: 15px;
	box-shadow: 0 4px 12px rgba(255, 122, 0, 0.08);
	border: 2px solid rgba(255, 122, 0, 0.1);
}

.referral-url-label {
	font-size: 12px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 10px;
	display: block;
	font-weight: 600;
}

.referral-url-display {
	font-size: 18px;
	color: #FF7A00;
	word-break: break-all;
	padding: 12px;
	background: rgba(255, 122, 0, 0.05);
	border-radius: 8px;
	font-family: 'Courier New', monospace;
	font-weight: 700;
	letter-spacing: 2px;
	transition: all 0.3s ease;
}

.referral-url-display:hover {
	background: rgba(255, 122, 0, 0.1);
	transform: scale(1.02);
}

.referral-modal-footer {
	text-align: center;
	padding-top: 12px;
	border-top: 2px solid rgba(11, 199, 224, 0.1);
}

.referral-modal-footer p {
	font-size: 12px;
	color: #0bc7e0;
	margin: 0;
	font-weight: 500;
}

@media (max-width: 480px) {
	.referral-modal-content {
		padding: 30px 20px;
		border-radius: 20px;
	}

	.referral-modal-header h2 {
		font-size: 24px;
	}

	.referral-code-display {
		font-size: 28px;
		letter-spacing: 2px;
	}

	.referral-code-actions {
		flex-direction: column;
	}

	.copy-btn,
	.whatsapp-btn {
		width: 100%;
	}
}

html {
	scroll-behavior: smooth;
}

:focus-visible {
	outline: 2px solid var(--accent-color);
	outline-offset: 2px;
	border-radius: 4px;
}

body {
	animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.wow {
	animation-duration: 0.6s;
	animation-fill-mode: forwards;
}

.fadeIn {
	animation: fadeInScroll 0.8s ease-out forwards;
}

@keyframes fadeInScroll {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.slideInLeft {
	animation: slideInLeftScroll 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInLeftScroll {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.slideInRight {
	animation: slideInRightScroll 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInRightScroll {
	from {
		opacity: 0;
		transform: translateX(40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.scaleUp {
	animation: scaleUpScroll 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes scaleUpScroll {
	from {
		opacity: 0;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.rotateIn {
	animation: rotateInScroll 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes rotateInScroll {
	from {
		opacity: 0;
		transform: rotate(-10deg) scale(0.9);
	}

	to {
		opacity: 1;
		transform: rotate(0) scale(1);
	}
}

.bounceIn {
	animation: bounceInScroll 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes bounceInScroll {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}

	50% {
		opacity: 1;
		transform: scale(1.05);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.flipIn {
	animation: flipInScroll 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	perspective: 1000px;
}

@keyframes flipInScroll {
	from {
		opacity: 0;
		transform: rotateY(90deg);
	}

	to {
		opacity: 1;
		transform: rotateY(0);
	}
}

.wow:nth-child(1) {
	animation-delay: 0s;
}

.wow:nth-child(2) {
	animation-delay: 0.1s;
}

.wow:nth-child(3) {
	animation-delay: 0.2s;
}

.wow:nth-child(4) {
	animation-delay: 0.3s;
}

.wow:nth-child(5) {
	animation-delay: 0.4s;
}

.wow:nth-child(n+6) {
	animation-delay: 0.5s;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fa,
.fas,
.far,
.fal {
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a {
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes ripple {
	to {
		transform: scale(4);
		opacity: 0;
	}
}

.card,
[class*="item"]:not(.testimonial-item):not(.blog-item):not(.service-item) {
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.icon-box:not(.service-header .icon-box) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	background: linear-gradient(135deg, var(--accent-color) 0%, #1fa593 100%);
	box-shadow: 0 6px 20px rgba(47, 182, 163, 0.2);
}

.icon-box:not(.service-header .icon-box) img,
.icon-box:not(.service-header .icon-box) i {
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

::selection {
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	color: white;
}
@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
	}
}

.parallaxie {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.page-services,
.about-us,
.page-contact-us,
.page-book-appointment {
	position: relative;
}

figure:hover img,
.about-image:hover img {
	transform: scale(1.05);
}

.service-item {
	position: relative;
	z-index: 2;
}

.service-item::after {
	content: '';
	position: absolute;
	top: 10px;
	left: 5px;
	right: -5px;
	bottom: -10px;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 30px;
	z-index: -1;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-item:hover::after {
	transform: translateY(5px);
	opacity: 0;
}

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

.wow {
	visibility: visible !important;
}

.pricing-grid {
	gap: 36px;
	align-items: start;
}

.pricing-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0;
	border-radius: 18px;
	overflow: hidden;
	transition: all 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-header {
	min-height: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
	text-align: center;
}

.pricing-header .amount {
	font-size: 3.8rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -1px;
}

.pricing-header .currency {
	font-size: 1.4rem;
	font-weight: 600;
	margin-right: 6px;
}

.pricing-body {
	padding: 26px 30px;
	color: #334155;
}

.feature-list li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 8px 0;
	color: #475569;
}

.feature-list li i {
	font-size: 18px;
	min-width: 26px;

}

.pricing-footer {
	padding: 22px 30px 30px 30px;
	background: transparent;
}

.btn-join-premium {
	display: block;
	width: 100%;
	padding: 18px 24px;
	border-radius: 14px;
	background: linear-gradient(135deg, #FF7A00 0%, #E66A00 100%);
	color: #fff !important;
	font-weight: 900;
	font-size: 17px;
	letter-spacing: 0.8px;
	box-shadow: 0 14px 40px rgba(230, 106, 0, 0.18) !important;
}

.pricing-card.featured {
	border: 2px solid rgba(255, 122, 0, 0.12);
	box-shadow: 0 30px 90px rgba(255, 122, 0, 0.08);
	transform: translateY(-4px);
}

.pricing-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.bonus-box {
	margin-top: 16px;
	padding: 14px 16px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(255, 250, 245, 1), rgba(255, 255, 255, 1));
	border: 1px dashed rgba(255, 122, 0, 0.12);
	font-size: 15px;
	font-weight: 700;
	text-align: left;
}

.pricing-card {
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: border-color 0.28s ease, transform 0.28s ease;
}

.pricing-card:hover {
	border-color: rgba(47, 182, 163, 0.12);
}
.pricing-card.emerald:hover {
	border-color: rgba(47, 182, 163, 0.9);
}

.pricing-card.featured:hover {
	border-color: rgba(255, 122, 0, 0.95);
}

.pricing-card.indigo:hover {
	border-color: rgba(99, 102, 241, 0.95);
}

@supports(selector(:has(*))) {
	.pricing-card:has(.pricing-header.emerald):hover {
		border-color: rgba(47, 182, 163, 0.9);
	}

	.pricing-card:has(.pricing-header.featured):hover {
		border-color: rgba(255, 122, 0, 0.95);
	}

	.pricing-card:has(.pricing-header.indigo):hover {
		border-color: rgba(99, 102, 241, 0.95);
	}

	.pricing-card:has(.pricing-header.emerald) .feature-list li i {
		color: #2FB6A3;
	}

	.pricing-card:has(.pricing-header.featured) .feature-list li i {
		color: #FF7A00;
	}

	.pricing-card:has(.pricing-header.indigo) .feature-list li i {
		color: #6366F1;
	}
}

.pricing-card.emerald .feature-list li i {
	color: #2FB6A3;
}

.pricing-card.featured .feature-list li i {
	color: #FF7A00;
}

.pricing-card.indigo .feature-list li i {
	color: #6366F1;
}

.pricing-card.emerald .btn-join-premium {
	background: linear-gradient(135deg, #2FB6A3 0%, #17A589 100%);
	box-shadow: 0 12px 36px rgba(47, 182, 163, 0.16) !important;
	color: #ffffff !important;
	white-space: nowrap;
}

.pricing-card.featured .btn-join-premium {
	background: linear-gradient(135deg, #FF7A00 0%, #E66A00 100%);
	box-shadow: 0 12px 36px rgba(255, 122, 0, 0.16) !important;
	color: #ffffff !important;
	white-space: nowrap;
}

.pricing-card.indigo .btn-join-premium {
	background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
	box-shadow: 0 12px 36px rgba(99, 102, 241, 0.16) !important;
	color: #ffffff !important;
	white-space: nowrap;
}

@supports(selector(:has(*))) {
	.pricing-card:has(.pricing-header.emerald) .btn-join-premium {
		background: linear-gradient(135deg, #2FB6A3 0%, #17A589 100%);
		box-shadow: 0 12px 36px rgba(47, 182, 163, 0.16) !important;
		color: #ffffff !important;
	}

	.pricing-card:has(.pricing-header.featured) .btn-join-premium {
		background: linear-gradient(135deg, #FF7A00 0%, #E66A00 100%);
		box-shadow: 0 12px 36px rgba(255, 122, 0, 0.16) !important;
		color: #ffffff !important;
	}

	.pricing-card:has(.pricing-header.indigo) .btn-join-premium {
		background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
		box-shadow: 0 12px 36px rgba(99, 102, 241, 0.16) !important;
		color: #ffffff !important;
	}
}

@media (max-width: 1024px) {
	.pricing-header {
		min-height: 160px;
		padding: 28px 20px;
	}

	.pricing-header .amount {
		font-size: 2.6rem;
	}

	.btn-join-premium {
		width: 100%;
		padding: 14px 18px;
	}
}

@media (max-width: 480px) {
	.pricing-header {
		min-height: 140px;
	}

	.pricing-header .amount {
		font-size: 2.2rem;
	}
}

.appointment-wrapper {
	position: relative;
	overflow: visible;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.80));
	border-radius: 22px;
	padding: 20px;
}

.appointment-wrapper::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(135deg,
			rgba(0, 0, 0, 0.02) 0 8px,
			transparent 8px 16px);
	opacity: 0.12;
	pointer-events: none;
	z-index: 0;
	border-radius: inherit;
	mix-blend-mode: overlay;
}

.appointment-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, #FF7A00 0%, #2FB6A3 50%, #19B6E6 100%);
	z-index: 1;
	border-top-left-radius: 22px;
	border-top-right-radius: 22px;
}

.appointment-wrapper>* {
	position: relative;
	z-index: 2;
}

@media (max-width: 991px) {
	.appointment-wrapper {
		padding: 14px;
	}

	.appointment-wrapper::before {
		opacity: 0.06;
		background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0 12px, transparent 12px 24px);
	}

	.appointment-wrapper::after {
		height: 4px;
	}
}

.footer-cta-section {
	background: linear-gradient(135deg, rgba(47, 182, 163, 0.12) 0%, rgba(99, 102, 241, 0.06) 100%);
	border-radius: 18px;
	padding: 28px 32px;
	margin: 20px 0;
	text-align: center;
	border: 1px solid rgba(47, 182, 163, 0.15);
}

.footer-cta-content h4 {
	font-size: 20px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 8px;
	letter-spacing: -0.5px;
}

.footer-cta-content p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 16px;
}

.btn-footer-cta {
	display: inline-block;
	background: linear-gradient(135deg, var(--accent-color) 0%, #17a589 100%);
	color: white;
	padding: 12px 28px;
	border-radius: 24px;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 8px 20px rgba(47, 182, 163, 0.15);
}

.btn-footer-cta:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 30px rgba(47, 182, 163, 0.25);
	color: white;
}

@media (max-width: 991px) {
	.footer-cta-section {
		padding: 20px 16px;
	}

	.footer-cta-content h4 {
		font-size: 18px;
	}

	.footer-cta-content p {
		font-size: 14px;
		margin-bottom: 12px;
	}
}

.page-contact-us {
	padding: 60px 0;
	background: white;
	position: relative;
}

.page-contact-us::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(circle at 20% 50%, rgba(47, 182, 163, 0.06) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(47, 182, 163, 0.04) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.page-contact-us .container {
	position: relative;
	z-index: 1;

}

.contact-info-card {
	background: white;
	padding: 30px 25px;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(47, 182, 163, 0.1);
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	border: 1px solid rgba(107, 163, 155, 0.1);
	height: 100%;
}

.contact-info-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(47, 182, 163, 0.15);
	border-color: rgba(107, 163, 155, 0.3);
}

.contact-info-card .icon-wrapper {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, rgba(217, 126, 62, 0.1) 0%, rgba(47, 182, 163, 0.08) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	transition: all 0.3s ease;
}

.contact-info-card:hover .icon-wrapper {
	background: linear-gradient(135deg, rgba(217, 126, 62, 0.15) 0%, rgba(47, 182, 163, 0.12) 100%);
	transform: scale(1.1) rotate(5deg);
}

.contact-info-card i {
	font-size: 24px;
	color: #D97E3E;
	transition: color 0.3s ease;
}

.contact-info-card:hover i {
	color: #C96B30;
}

.contact-info-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: #8B6F47;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.contact-info-card p {
	font-size: 14px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

.contact-info-card a {
	color: #6ba39b;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.contact-info-card a:hover {
	color: #D97E3E;
	text-decoration: underline;
}

.contact-form-wrapper {
	background: white;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 12px 40px rgba(47, 182, 163, 0.12);
	border: 1px solid rgba(107, 163, 155, 0.1);
}

.contact-form-wrapper .section-title1 p {
	color: #666;
	font-size: 15px;
	margin-top: 8px;
}

.contact-form-wrapper .section-title1 h2 {
	color: black;
}

.contact-form-wrapper .section-title1 h2 span {
	color: #5804f6;
}

.contact-form .form-control {
	border: 2px solid #E0D7CE;
	border-radius: 10px;
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	font-family: 'Sora', sans-serif;
	transition: all 0.3s ease;
	color: #333;
}

.contact-form .form-control::placeholder {
	color: rgba(94, 111, 106, 0.6);
}

.contact-form .form-control:focus {
	outline: none;
	border-color: #6ba39b;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(107, 163, 155, 0.1);
}

.contact-form .form-control:hover {
	border-color: #D4C5B9;
}

.contact-form textarea.form-control {
	resize: vertical;
	min-height: 120px;
	font-family: 'Sora', sans-serif;
}

.contact-form .form-group {
	margin-bottom: 20px;
}

.contact-form .error {
	color: #e74c3c;
	font-size: 12px;
	display: block;
	margin-top: 5px;
}

@media (max-width: 768px) {
	.page-contact-us {
		padding: 40px 0;
	}

	.contact-form-wrapper {
		padding: 30px 20px;
	}

	.contact-info-card {
		padding: 25px 20px;
		margin-bottom: 15px;
	}

	.contact-form .btn-default {
		padding: 12px;
		font-size: 14px;
	}
}

@media (max-width: 767px) {

	#contactForm .row {
		display: flex;
		flex-wrap: wrap;
		margin-right: -5px !important;
		margin-left: -5px !important;
	}

	#contactForm .col-md-6,
	#contactForm .col-md-12 {
		box-sizing: border-box !important;
	}

	#contactForm .col-md-6 {
		width: 50% !important;
		flex: 0 0 50% !important;
		max-width: 50% !important;
		padding-right: 5px !important;
		padding-left: 5px !important;
	}

	#contactForm .col-md-12 {
		width: 100% !important;
		flex: 0 0 100% !important;
		padding-right: 5px !important;
		padding-left: 5px !important;
	}

	#contactForm input.form-control {
		height: 50px !important;
		padding: 0 15px !important;
		border-radius: 12px !important;
		border: 1px solid rgba(0, 0, 0, 0.1) !important;
		box-shadow: none !important;
		font-size: 14px !important;
		background: #ffffff !important;
		margin-bottom: 0 !important;
	}

	#contactForm textarea.form-control {
		min-height: 120px !important;
		padding: 15px !important;
		border-radius: 12px !important;
		border: 1px solid rgba(0, 0, 0, 0.1) !important;
		box-shadow: none !important;
		font-size: 14px !important;
		background: #ffffff !important;
	}

	#contactForm .form-group {
		margin-bottom: 15px !important;
	}
}

@media (max-width: 991px) {
	.mission-vision-item {
		display: flex;
		flex-direction: column;
		gap: 12px;
		padding: 20px;
		margin-bottom: 15px;
	}

	.mission-vision-header {
		display: flex;
		align-items: center;
		gap: 12px;
	}

	.mission-vision-icon {
		width: 50px;
		height: 50px;
		min-width: 50px;
		font-size: 22px;
	}

	.mission-vision-content h3 {
		font-size: 18px;
		margin: 0;
	}

	.mission-vision-item>p {
		font-size: 14px;
		line-height: 1.5;
		text-align: justify;
	}
}

@media (max-width: 768px) {
	.mission-vision-item {
		display: flex;
		flex-direction: column;
		gap: 10px;
		padding: 18px;
		margin-bottom: 12px;
	}

	.mission-vision-header {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.mission-vision-icon {
		width: 45px;
		height: 45px;
		min-width: 45px;
		font-size: 20px;
	}

	.mission-vision-content h3 {
		font-size: 16px;
		margin: 0;
	}

	.mission-vision-item>p {
		font-size: 13px;
		line-height: 1.5;
	}
}

@media (max-width: 576px) {
	.mission-vision-item {
		display: flex;
		flex-direction: column;
		gap: 8px;
		padding: 15px;
		margin-bottom: 10px;
		border-left-width: 4px;
	}

	.mission-vision-header {
		display: flex;
		align-items: center;
		gap: 8px;
		flex-wrap: nowrap;
	}

	.mission-vision-icon {
		width: 40px;
		height: 40px;
		min-width: 40px;
		font-size: 18px;
	}

	.mission-vision-content h3 {
		font-size: 14px;
		margin: 0;
		text-transform: capitalize;
		white-space: nowrap;
	}

	.mission-vision-item>p {
		font-size: 14px;
		line-height: 1.5;
		text-align: justify;
		color: #666;
	}
}