img.dark-logo {
	width: 60px !important;
}

img.light-logo {
	width: 30px !important;
}

.f12 {
	font-size: 12px!important;
}

.f14 {
	font-size: 14px!important;
}

.f36 {
	font-size: 36px;
}

.purple-btn {
	border: none;
	background: linear-gradient(135deg, #6f42c1 0%, #8e44ad 100%);
	transition: all 0.3s ease;
	color: #fff;
}
.purple-btn:hover {
	border: none;
	background: linear-gradient(135deg, #8e44ad 0%, #6f42c1 100%);
	transition: all 0.3s ease;
	color: #fff;
}

.simplebar-content ul {
	list-style: none;
	padding: 0
}

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

header {
	background: linear-gradient(135deg, #6f42c1 0%, #520c76 100%);
}

.navbar,
.header-fp.header-sticky .navbar {
	border-top: 1px solid #520C76;
	padding: 8px 0 !important;
	z-index: 1000;
	box-shadow: 0 .5rem 1rem #00000026, inset 0 -1px #ffffff26;
}

.cursor-pointer {
	cursor: pointer;
}

.bg-purple,
.btn-purple,
.border-purple {
	background-color: #520c76 !important;
	border-color: #520c76 !important;
	color: #fff !important;
}

.text-purple {
	color: #520c76 !important;
}

.btn-outline-purple {
	color: #520c76 !important;
	border-color: #520c76 !important;
}

.bg-purple-subtle {
	background-color: #f5f5f5 !important;
}

#wa-chat-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #25d366;
	color: white;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	font-size: 30px;
	text-align: center;
	line-height: 60px;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	z-index: 1000;
}

#wa-chat-box {
	display: none;
	position: fixed;
	bottom: 90px;
	right: 20px;
	width: 300px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	overflow: hidden;
}

.wa-chat-body {
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wa-chat-body input,
.wa-chat-body textarea {
	width: 100%;
	padding: 8px;
	border-radius: 5px;
	border: 1px solid #ccc;
}

.wa-chat-body button {
	background-color: #25d366;
	color: white;
	border: none;
	padding: 10px;
	border-radius: 5px;
	cursor: pointer;
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 8px
}

.owl-dot button.active {
	display: block;
	background: red !important;
	height: 20px !important;
	width: 20px !important;
}

.bg-purple-img {
	background: linear-gradient(135deg, rgb(246, 241, 255) 0%, #f7e5ff 100%);
}


.wa-chat-btn {
	width: 60px;
	height: 60px;
	border: none;
	background: linear-gradient(135deg, #30c252 0%, #0ab33c 100%);
	transition: all 0.3s ease;
	line-height: 60px;
}

.wa-chat-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 25px rgba(81, 2, 107, 0.4) !important;
}

.wa-chat-btn:active {
	transform: scale(0.95);
}

.wa-chat-container {
	position: fixed;
	bottom: 100px;
	right: 20px;
	width: 350px;
	max-width: calc(100vw - 40px);
	background: white;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	z-index: 1040;
	animation: slideInUp 0.3s ease-out;
	border: 1px solid #e9ecef;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

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

.wa-chat-header {
	background: linear-gradient(135deg, #6f42c1 0%, #8e44ad 100%);
	color: white;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.wa-avatar {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wa-header-info h6 {
	font-size: 16px;
	margin-bottom: 2px;
}

.wa-header-info small {
	font-size: 12px;
	opacity: 0.8;
}

.wa-close-btn {
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	padding: 4px;
	border-radius: 50%;
	transition: background-color 0.2s;
}

.wa-close-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}


.wa-welcome-message {
	background: #f8f9fa;
	padding: 16px;
	border-radius: 12px;
	margin-bottom: 0;
	border-left: 4px solid #6f42c1;
}

.wa-welcome-message p {
	margin: 0;
	color: #6c757d;
	font-size: 14px;
	line-height: 1.5;
}

.wa-form-label {
	display: block;
	font-weight: 600;
	color: #495057;
	margin-bottom: 8px;
	font-size: 14px;
}

.wa-form-input,
.wa-form-textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.2s;
	background: #fff;
}

.wa-form-input:focus,
.wa-form-textarea:focus {
	outline: none;
	border-color: #25d366;
	box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

/* Validation Styles */
.wa-form-input.is-invalid,
.wa-form-textarea.is-invalid {
	border-color: #dc3545;
	box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.wa-form-input.is-invalid:focus,
.wa-form-textarea.is-invalid:focus {
	border-color: #dc3545;
	box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}

.wa-form-input::placeholder,
.wa-form-textarea::placeholder {
	color: #adb5bd;
}

.wa-send-btn {
	width: 100%;
	background: linear-gradient(135deg, #6f42c1 0%, #8e44ad 100%);
	color: white;
	border: none;
	padding: 14px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wa-send-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.wa-send-btn:active {
	transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 480px) {
	.wa-chat-container {
		width: calc(100vw - 40px);
		right: 20px;
		bottom: 100px;
	}

	.wa-chat-body {
		padding: 20px;
	}
}


/* Contact Info */
.contact-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-right: 20px;
	font-size: 14px;
}

.contact-info .f12 {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 5px;
}

/* Adjusting positioning for the left and right logos to make sure they are always visible */
.navbar-brand,
.d-flex.align-items-center {
	z-index: 1;
	position: relative;
}


.header-fp {
	transform: translateY(0);
	transition: all 0.3s ease;
}

.header-fp.header-sticky {
	transform: translateY(0);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	background-color: #ffffff !important;
}


.arrow-icon {
	transition: transform 0.2s ease;
	font-size: 10px;
}

.collapsed .arrow-icon {
	transform: rotate(0deg);
}

[aria-expanded="true"] .arrow-icon {
	transform: rotate(180deg);
}

.navbar-nav .nav-link {
	transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
	color: var(--bs-primary);
}

.dropdown-menu {
	min-width: 200px;
	font-size: 0.95rem;
}

.dropdown-item:hover {
	background-color: var(--bs-light);
	color: var(--bs-primary);
}