/* ================= ROOT VARIABLES START ================= */
:root {
	--color-primary: #D15379;
	--color-secondary: #EB91AC;
	--color-black: #000000;
	--color-white: #E5E5E5;
	--gradient-main: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	--gradient-text: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
	--border-radius: 9999px;
	--font-family: 'K2D', sans-serif;
}

/* ================= ROOT VARIABLES END ================= */

/* ================= GLOBAL SETTINGS START ================= */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'K2D', sans-serif;
	background-color: #E5E5E5;
}

/* ================= GLOBAL SETTINGS END ================= */

/* ================= IMAGE EFFECTS START ================= */
.glitter {
  position: relative;
  overflow: hidden;
  z-index: 0;
  /* No display, no width, no height — inherits whatever the element already has */
}

.glitter::after {
  content: "";
  position: absolute;
  inset: 0;                /* covers the full element exactly */
  width: 0%;
  height: 200%;
  top: 50%;
  left: 50%;
  background-color: rgba(255, 255, 255, 0.45);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  filter: blur(5px);
}

.glitter:hover::after {
  animation: glitter-anim 0.8s ease-out forwards;
}

@keyframes glitter-anim {
  0%   { width: 0%;    opacity: 1;   left: 50%; }
  50%  { width: 200%;  opacity: 0.8; left: 50%; }
  100% { width: 200%;  opacity: 0;   left: 50%; }
}


/* ================= IMAGE EFFECTS END ================= */

/* ================= BUTTON COMPONENT START ================= */
.button {
	position: relative;
	transition: all 0.3s ease-in-out;
	padding-block: 0.6rem;
	padding-inline: 1.5rem;
	background-color: #000000;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	gap: 8px;
	font-weight: bold;
	border: none;
	outline: none;
	overflow: hidden;
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	font-family: var(--font-family);
}

.button .icon {
	width: 18px;
	height: 18px;
	fill: currentColor;
	transition: transform 0.3s ease;
}

.button::before {
	content: "";
	position: absolute;
	width: 100px;
	height: 100%;
	background-image: linear-gradient(120deg,
			rgba(255, 255, 255, 0) 30%,
			rgba(255, 255, 255, 0.6),
			rgba(255, 255, 255, 0) 70%);
	top: 0;
	left: -100px;
	opacity: 0.6;
	z-index: 1;
}

.button:hover {
	background: linear-gradient(135deg, #D15379, #EB91AC);
	color: #FFFFFF;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(209, 83, 121, 0.4);
}

.button:hover .icon {
	transform: translateX(3px);
}

.button:hover::before {
	animation: splash 1.5s ease-out infinite;
}

@keyframes splash {
	0% {
		left: -100px;
	}

	60% {
		left: 100%;
	}

	to {
		left: 100%;
	}
}

/* ================= BUTTON COMPONENT END ================= */

/* ================= LANGUAGE DROPDOWN START ================= */
.lang-dropdown-wrapper {
	position: relative;
}

.lang-btn {
	background-color: #F8F9FA;
	border: 1px solid #E5E5E5;
	border-radius: 30px;
	padding: 8px 16px;
	color: #000000;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.lang-btn:hover {
	border-color: #D15379;
	color: #D15379;
	background-color: #FFF0F5;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(209, 83, 121, 0.2);
}

.lang-menu {
	position: absolute;
	top: 120%;
	right: 0;
	width: 220px;
	background: #FFFFFF;
	border-radius: 12px;
	padding: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid #f0f0f0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

.lang-dropdown-wrapper:hover .lang-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lang-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 15px;
	border-radius: 8px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.2s;
	cursor: pointer;
}

.lang-item span:first-child {
	display: flex;
	align-items: center;
	gap: 10px;
}

.lang-item i {
	font-size: 16px;
	opacity: 0;
	transition: opacity 0.2s;
}

.lang-item.active {
	background-color: #FFF0F5;
	color: #D15379;
}

.lang-item.active i {
	opacity: 1;
}

.lang-item:hover {
	background: linear-gradient(135deg, #D15379, #EB91AC);
	color: #FFFFFF;
}

.lang-item.active:hover {
	background: linear-gradient(135deg, #D15379, #EB91AC) !important;
	color: #FFFFFF !important;
}

/* ================= LANGUAGE DROPDOWN END ================= */

/* ================= HEADER START ================= */
.main-header {
	position: sticky;
	top: 0;
	z-index: 1050;
	background: #FFFFFF;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	padding: 0;
	border-bottom: 1px solid #eee;
}

.main-header .container {
	padding-top: 0;
	padding-bottom: 0;
	height: 80px;
	display: flex;
	align-items: center;
}

.navbar-brand {
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0;
	margin-right: 20px;
}

.navbar-brand img {
	max-height: 115px;
	width: auto;
	object-fit: contain;
}

.nav-link {
	color: #000000 !important;
	font-weight: 600;
	margin: 0 10px;
	font-size: 15px;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 28px 0 !important;
	display: flex;
	align-items: center;
	gap: 5px;
}

.nav-link:hover {
	color: #D15379 !important;
}

.dropdown-menu {
	border: none;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 10px;
	margin-top: 0;
	border-top: 3px solid #D15379;
}

.dropdown-item {
	color: #000000;
	font-size: 14px;
	padding: 10px 20px;
	border-radius: 5px;
	transition: all 0.2s;
}

.dropdown-item:hover {
	background-color: #FFF0F5;
	color: #D15379;
	padding-left: 25px;
}

.offcanvas {
	background-color: #FFFFFF;
}

.offcanvas-header {
	padding: 13px;
	border-bottom: 1px solid #eee;
	height: auto;
	min-height: 70px;
	display: flex;
	align-items: center;
}

.offcanvas-title img {
	max-height: 50px !important;
	width: auto;
}

.offcanvas-body {
	padding: 0;
	display: flex;
	flex-direction: column;
}

.mobile-nav-link {
	font-size: 16px;
	color: #000000;
	text-decoration: none;
	padding: 15px 20px;
	border-bottom: 1px solid #f8f8f8;
	font-weight: 600;
	display: block;
	width: 100%;
}

.mobile-nav-link:hover {
	color: #D15379;
	background-color: #FFF0F5;
	padding-left: 25px;
}

.mobile-actions {
	margin-top: 20px;
	padding: 20px;
	background-color: #F9F9F9;
	border-top: 1px solid #eee;
}

.desktop-only {
	display: block;
}

@media (max-width: 991px) {
	.main-header {
		position: relative;
		height: auto;
	}

	.main-header .container {
		height: auto;
	}

	.navbar-brand img {
		max-height: 70px;
	}

	body {
		padding-top: 0;
	}

	.desktop-only {
		display: none !important;
	}
}

/* ================= HEADER END ================= */

/* ================= FOOTER Start ================= */

footer {
	font-family: 'K2D', sans-serif;
	background-color: #FFFFFF;
	padding-top: 50px;
	padding-bottom: 20px;
	border-top: 1px solid #eee;
}

.footer-logo img {
	max-height: 165px;
	width: auto;
	object-fit: contain;
}

.footer-menu a {
	text-decoration: none;
	color: #000000;
	font-weight: 500;
	margin: 0 15px;
	transition: color 0.3s;
	text-transform: uppercase;
	font-size: 14px;
}

.footer-menu a:hover {
	color: #D15379;
}

.contact-info-wrapper {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 20px 0;
}

.contact-btn {
	background-color: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 30px;
	padding: 8px 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
}

.contact-btn:hover {
	border-color: #D15379;
	color: #D15379;
	background-color: #FFF0F5;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin: 20px 0;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #000000;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s;
	font-size: 18px;
}

.social-icon:hover {
	background: linear-gradient(135deg, #D15379, #EB91AC);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(209, 83, 121, 0.3);
}

.copyright {
	text-align: center;
	border-top: 1px solid #f0f0f0;
	padding-top: 20px;
	margin-top: 30px;
	font-size: 13px;
	color: #666;
}

.glass-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.glass-popup.show {
	display: flex;
	opacity: 1;
}

.glass-card {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	padding: 30px;
	width: 90%;
	max-width: 400px;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
	position: relative;
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.glass-popup.show .glass-card {
	transform: scale(1);
}

.close-popup {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #D15379;
}

.popup-action-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 12px 15px;
	margin-bottom: 10px;
	background: #FFFFFF;
	border: 1px solid #eee;
	border-radius: 10px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	transition: all 0.2s;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.popup-action-btn:hover {
	border-color: #D15379;
	color: #D15379;
	transform: translateX(5px);
}

.popup-action-btn i {
	font-size: 18px;
	color: #D15379;
}

@media (max-width: 768px) {
	.footer-menu {
		flex-direction: column;
		gap: 10px;
	}

	.footer-menu a {
		margin: 0;
	}

	.contact-info-wrapper {
		flex-direction: row;
		align-items: center;
	}

	.contact-btn {
		width: 100%;
		justify-content: center;
	}
}

/* ================= FOOTER Ends ================= */

/* ================= loader start ================= */

#hb-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #D15379, #EB91AC);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: opacity 0.8s ease, visibility 0.8s ease;
}

#hb-loader.hb-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

#hb-loader .heart-svg-container {
	width: 400px;
	height: auto;
	margin-bottom: 15px;
	filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.4));
}

#hb-loader .brand-name {
	color: #FFFFFF;
	font-family: 'K2D', sans-serif;
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 15px 0;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	opacity: 0;
	animation: text-fade-up 1s ease-out 0.5s forwards;
}

#hb-loader .brand-logo {
	max-height: 100px;
	width: auto;
	opacity: 0;
	animation: text-fade-up 1s ease-out 0.8s forwards;
	filter: brightness(0) invert(1);
}

#hb-loader .heart #line {
	fill: none;
	stroke: #FFFFFF;
	stroke-width: 1.5;
	stroke-linecap: butt;
	stroke-linejoin: round;
	stroke-miterlimit: 4;
	stroke-opacity: 1;
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	animation: dash 3s linear infinite;
}

#hb-loader .heart #point {
	fill: none;
	stroke: #EB91AC;
	stroke-width: 5;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-miterlimit: 0.1;
	stroke-opacity: 1;
	stroke-dasharray: 0.0001, 0.9999;
	stroke-dashoffset: 1;
	animation: dash 3s linear infinite;
}

@keyframes dash {
	0% {
		stroke-dashoffset: 1;
	}

	80% {
		stroke-dashoffset: 0;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes text-fade-up {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ================= loader ends ================= */

/* ================= scroll to top start ================= */

#stt-prog-btn {
	position: fixed;
	bottom: 30px;
	left: 30px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: transparent;
	border: none;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

#stt-prog-btn.show-scroll {
	opacity: 1;
	visibility: visible;
}

#stt-prog-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 0%;
	background: conic-gradient(#D15379 0deg, #D15379 0deg, transparent 0deg 360deg);
	transition: background 0.1s ease;
}

#stt-center-bg {
	position: absolute;
	top: 4px;
	left: 4px;
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	border-radius: 0%;
	background: white;
	z-index: 1;
}

#stt-prog-btn i {
	position: relative;
	z-index: 2;
	font-size: 24px;
	color: #D15379;
}

#stt-prog-btn:hover {
	transform: scale(1.1);
}

/* ================= scroll to top ends ================= */

/* ================= floating elemnts start ================= */

.contact-float-sidebar {
	position: fixed;
	right: 30px;
	bottom: 110px;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	gap: 15px;
	z-index: 999;
}

.float-btn {
	width: 50px;
	height: 50px;
	border-radius: 0%;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
}

.float-btn:hover {
	transform: scale(1.15) translateY(-3px);
	box-shadow: 0 8px 25px rgba(209, 83, 121, 0.3);
	border-color: #FFFFFF;
}

.float-tooltip {
	position: absolute;
	right: 65px;
	top: 50%;
	transform: translateY(-50%) translateX(20px);
	background: linear-gradient(135deg, #D15379, #EB91AC);
	color: #FFFFFF;
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 12px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.float-btn:hover .float-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0);
}

.btn-whatsapp i {
	color: #25D366;
	font-size: 20px;
}

.btn-whatsapp:hover {
	background: #25D366;
}

.btn-whatsapp:hover i {
	color: #FFFFFF;
}

.btn-telegram i {
	color: #24A1DE;
	font-size: 20px;
}

.btn-telegram:hover {
	background: #24A1DE;
}

.btn-telegram:hover i {
	color: #FFFFFF;
}

.btn-email i {
	color: #0056b3;
	font-size: 20px;
}

.btn-email:hover {
	background: #0056b3;
}

.btn-email:hover i {
	color: #FFFFFF;
}

#chat-widget {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 350px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 00px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	font-family: 'K2D', sans-serif;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px) scale(0.95);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#chat-widget.chat-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.chat-header {
	background: linear-gradient(135deg, #D15379, #EB91AC);
	color: #fff;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chat-header h4 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
}

#form-screen {
	padding: 25px;
	text-align: center;
	background-color: #fff;
}

#form-screen h3 {
	color: #333;
	font-size: 18px;
	margin-bottom: 5px;
}

#form-screen p {
	color: #666;
	font-size: 13px;
	margin-bottom: 20px;
}

#form-screen input {
	width: 100%;
	padding: 12px 15px;
	margin-bottom: 12px;
	border-radius: 8px;
	border: 1px solid #ddd;
	font-family: 'K2D', sans-serif;
	font-size: 14px;
	transition: border-color 0.3s;
}

#form-screen input:focus {
	border-color: #D15379;
	outline: none;
}

#start-chat {
	margin-top: 10px;
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 8px;
	background: linear-gradient(135deg, #D15379, #EB91AC);
	color: #fff;
	font-weight: 600;
	font-family: 'K2D', sans-serif;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(209, 83, 121, 0.3);
	transition: transform 0.2s;
}

#start-chat:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(209, 83, 121, 0.4);
}

#chat-screen {
	display: none;
	flex-direction: column;
	height: 400px;
}

.chat-messages {
	flex: 1;
	padding: 15px;
	background-color: #f9f9f9;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.message {
	margin-bottom: 5px;
	padding: 10px 15px;
	border-radius: 12px;
	max-width: 75%;
	font-size: 14px;
	line-height: 1.4;
	word-wrap: break-word;
	animation: popIn 0.3s ease;
}

@keyframes popIn {
	from {
		transform: scale(0.9);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.user {
	background: linear-gradient(135deg, #D15379, #EB91AC);
	color: #fff;
	align-self: flex-end;
	border-bottom-right-radius: 2px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.admin {
	background: #fff;
	color: #333;
	align-self: flex-start;
	border: 1px solid #eee;
	border-bottom-left-radius: 2px;
}

.chat-input {
	padding: 12px;
	background: #fff;
	border-top: 1px solid #eee;
	display: flex;
	gap: 10px;
}

.chat-input input {
	flex: 1;
	padding: 10px 15px;
	border-radius: 20px;
	border: 1px solid #ddd;
	font-family: 'K2D', sans-serif;
	font-size: 14px;
}

.chat-input input:focus {
	outline: none;
	border-color: #D15379;
}

#send-btn {
	width: 40px;
	height: 40px;
	border: none;
	background: #D15379;
	color: #fff;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
}

#send-btn:hover {
	background: #000;
}

.chat-messages::-webkit-scrollbar {
	width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 3px;
}

#toggle-chat-widget {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	border-radius: 00%;
	background: linear-gradient(135deg, #D15379, #EB91AC);
	box-shadow: 0 5px 20px rgba(209, 83, 121, 0.5);
	border: 2px solid #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 999;
	animation: pulse-ring 2s infinite;
	display: none;
}

@keyframes pulse-ring {
	0% {
		box-shadow: 0 0 0 0 rgba(235, 145, 172, 0.7);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(235, 145, 172, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(235, 145, 172, 0);
	}
}

#toggle-chat-widget i {
	color: #fff;
	font-size: 28px;
}

@media (max-width: 480px) {
	#chat-widget {
		width: 90%;
		right: 5%;
		bottom: 30px;
	}

	.contact-float-sidebar {
		right: 15px;
		bottom: 100px;
	}

	#toggle-chat-widget {
		right: 5%;
		bottom: 30px;
	}
}

.close-chat-btn {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: #FFFFFF;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 20px;
	line-height: 1;
}

.close-chat-btn:hover {
	background: rgba(0, 0, 0, 0.2);
	transform: rotate(90deg);
}

/* ================= floating elemnts ends ================= */