/* Floating Chatbot Widget */
#chatbot-widget {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 10000;
	width: 340px;
	max-width: 90vw;
	background: rgba(17,24,39,0.98);
	border-radius: 1.25rem;
	box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
	border: 2px solid #67e8f9;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	font-family: inherit;
}
#chatbot-header {
	background: linear-gradient(90deg, #67e8f9 0%, #a21caf 100%);
	color: #fff;
	padding: 1rem;
	font-weight: bold;
	font-size: 1.1rem;
	letter-spacing: 0.04em;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#chatbot-messages {
	flex: 1;
	padding: 1rem;
	overflow-y: auto;
	background: transparent;
	color: #e0eaff;
	font-size: 0.98rem;
}
#chatbot-input {
	display: flex;
	border-top: 1px solid #334155;
	background: #1e293b;
}
#chatbot-input input {
	flex: 1;
	border: none;
	background: transparent;
	color: #fff;
	padding: 0.8rem 1rem;
	font-size: 1rem;
	outline: none;
}
#chatbot-input button {
	background: #67e8f9;
	color: #18181b;
	border: none;
	padding: 0 1.2rem;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	border-radius: 0 1.25rem 1.25rem 0;
	transition: background 0.2s;
}
#chatbot-input button:hover {
	background: #a21caf;
	color: #fff;
}
/* Futuristic spark particles for hero section */
.futuristic-spark {
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(120deg, #67e8f9 0%, #a21caf 100%);
	box-shadow: 0 0 16px 4px #67e8f9, 0 0 32px 8px #a21caf44;
	pointer-events: none;
	z-index: 2;
	opacity: 0.7;
}

/* Floating glowing orbs */
.floating-orb {
	position: fixed;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: radial-gradient(circle, #a21caf44 0%, #67e8f922 80%, transparent 100%);
	filter: blur(2px);
	pointer-events: none;
	z-index: 1;
	opacity: 0.18;
	mix-blend-mode: lighten;
	transition: opacity 0.5s;
}
/* Futuristic glowing border for glass cards */
.glass {
	background: rgba(17, 24, 39, 0.55);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
	border-radius: 1.5rem;
	border: 2px solid rgba(103, 232, 249, 0.18);
	backdrop-filter: blur(12px);
	position: relative;
	overflow: hidden;
}
.glass::before {
	content: '';
	position: absolute;
	inset: -2px;
	z-index: 0;
	border-radius: inherit;
	background: linear-gradient(120deg, #67e8f9 0%, #a21caf 100%);
	opacity: 0.18;
	filter: blur(8px);
	pointer-events: none;
}
.glass > * {
	position: relative;
	z-index: 1;
}

/* Neon text effect for .neon */
.neon {
	color: #67e8f9;
	text-shadow: 0 0 8px #67e8f9, 0 0 24px #a21caf;
}

/* Animated gradient background for hero sections */
.hero-gradient {
	background: linear-gradient(120deg, #0f1938 0%, #1e293b 50%, #a21caf 100%);
	background-size: 200% 200%;
	animation: gradientMove 8s ease-in-out infinite;
}
@keyframes gradientMove {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* Glassmorphic nav and footer */
.sticky-nav, footer {
	background: rgba(17, 24, 39, 0.7) !important;
	box-shadow: 0 2px 24px 0 rgba(103, 232, 249, 0.08);
	border-color: rgba(103, 232, 249, 0.12) !important;
	backdrop-filter: blur(8px);
}
/* Animation and reveal helpers for SwanaTechno */
.obs-reveal {
	opacity: 0;
	transform: translateY(2rem);
	transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.obs-reveal.opacity-100 {
	opacity: 1 !important;
}
.obs-reveal.translate-y-0 {
	transform: translateY(0) !important;
}

.section-title {
	opacity: 0;
	transform: translateY(2.5rem);
}

#scrollToTopBtn {
	box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
	transition: opacity 0.3s, transform 0.3s;
}
#scrollToTopBtn:active {
	background: #164e63;
}
