body {
	font-family: 'Inter', sans-serif;
	scroll-behavior: smooth;
}
.hero-bg {
	position: relative;
	background-color: #111827;
	overflow: hidden;
}
#hero-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.hero-content {
	position: relative;
	z-index: 3;
	padding-top: 10rem; 
	padding-bottom: 5rem;
}
/* --- New Header Styles --- */
.header-nav {
	transition: all 0.3s ease-in-out;
}
.header-nav.scrolled {
	background-color: rgba(17, 24, 39, 0.8); /* bg-gray-900 with opacity */
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.nav-link {
	position: relative;
	transition: color 0.3s ease;
}
.nav-link::after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: #3b82f6;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}
.nav-link:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}
.cta-button {
	background: linear-gradient(90deg, #3b82f6, #60a5fa);
	transition: all 0.3s ease;
}
.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px -10px #3b82f6;
}
/* Dropdown menu styles */
.dropdown {
	display: none;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.group:hover .dropdown {
	display: block;
	opacity: 1;
	transform: translateY(0);
}


/* Typing animation styles */
.typing-cursor {
	display: inline-block;
	width: 3px;
	height: 1em;
	background-color: #3b82f6;
	animation: blink 0.7s infinite;
	margin-left: 4px;
}
@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

.flywheel-container {
	position: relative;
	width: 600px;
	height: 600px;
	margin: 4rem auto;
	scroll-margin-top: 100px;
}
.flywheel-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 200px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	z-index: 10;
	border: 8px solid #f0f0f0;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
	cursor: pointer;
}
.flywheel-center:hover {
	transform: translate(-50%, -50%) scale(1.05);
}
.pillar {
	position: absolute;
	width: 150px; 
	height: 150px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
	color: white;
	font-weight: 600;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.pillar-content {
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.3s ease, transform 0.3s ease;
	max-height: 0;
	overflow: hidden;
}
.pillar-content.active {
	opacity: 1;
	transform: scale(1);
	max-height: 2000px;
}

/* --- Animations --- */
@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes click-pulse-center {
	0% { transform: translate(-50%, -50%) scale(1); }
	50% { transform: translate(-50%, -50%) scale(1.15); box-shadow: 0 0 35px 15px rgba(59, 130, 246, 0.6); }
	100% { transform: translate(-50%, -50%) scale(1); }
}
.flywheel-center.clicked {
	animation: click-pulse-center 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes click-pulse-pillar {
	0% { transform: scale(1); }
	50% { transform: scale(1.08); }
	100% { transform: scale(1); }
}
.pillar.clicked {
	animation: click-pulse-pillar 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.flywheel-arrow-container {
	/* position: absolute; */
	width: 100%;
	height: 100%;
	border-radius: 50%;
	animation: rotate 40s linear infinite;
	z-index: 1;
}
.flywheel-arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #94a3b8;
	font-size: 2.5rem;
	transform-origin: center;
	font-weight: 100;
}

/* General scroll animation */
.scroll-animate {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.scroll-animate.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Advantages Section Specific Styles */
.advantage-card {
	background: white;
	border-radius: 1.5rem;
	padding: 2rem;
	box-shadow: 0 10px 40px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	border-top: 4px solid;
}
.advantage-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.advantage-card-teacher { border-color: #3b82f6; }
.advantage-card-student { border-color: #16a34a; }
.advantage-card-principal { border-color: #9333ea; }

.advantage-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}
.advantage-list li {
	transition: opacity 0.5s ease, transform 0.5s ease;
	opacity: 0;
	transform: translateX(-10px);
}
.scroll-animate.is-visible .advantage-list li {
	opacity: 1;
	transform: translateX(0);
}

/* --- Timeline Animation --- */
.timeline-wrapper.is-visible .timeline-line {
	transform: scaleY(1);
}
.timeline-item {
	opacity: 0;
}
.timeline-wrapper.is-visible .timeline-item {
	animation: fadeInFromBottom 0.5s ease forwards;
}
.timeline-wrapper.is-visible .timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-wrapper.is-visible .timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-wrapper.is-visible .timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-wrapper.is-visible .timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-wrapper.is-visible .timeline-item:nth-child(5) { animation-delay: 1.0s; }
.timeline-wrapper.is-visible .timeline-item:nth-child(6) { animation-delay: 1.2s; }


@keyframes fadeInFromBottom {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* --- Liquid Text Reveal --- */
.liquid-text {
	background: linear-gradient(90deg, #93c5fd, #ffffff, #60a5fa, #ffffff, #93c5fd);
	background-size: 200% auto;
	color: #fff;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: liquid-shine 4s linear infinite;
}
 .liquid-text .highlight {
	 -webkit-text-fill-color: #60a5fa; /* A solid blue to stand out */
 }

@keyframes liquid-shine {
	to {
		background-position: 200% center;
	}
}

/* Journey Summary Effect */
.journey-summary {
	background: linear-gradient(90deg, #dbeafe, #a5b4fc, #dbeafe);
	background-size: 200% 200%;
	border-radius: 9999px;
	padding: 1rem 2rem;
	display: inline-block;
	color: #1e3a8a;
	animation: gradient-flow 5s ease infinite;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3);
}
.journey-summary:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 25px rgba(96, 165, 250, 0.4);
}
@keyframes gradient-flow {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* my CSS */
.flyBox {padding: 0px 3%;}



@media only screen and (max-width: 767px) {
	.products {display: none !important;}	
}

