@charset "utf-8";


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(to bottom, #f8fbff 0%, #eff3f8 100%);
	line-height: 1.6;
	color: #1a202c;
	overflow-x: hidden;
}

.text-justify {
	text-align: justify;
}
.cursor-pointer{
	cursor: pointer;
}
.main-section {
	/* background-color: rgb(255 239 165 / 15%); */
	max-width: 1200px;
	margin: auto;
}

/* Navigation */
header {
	margin-bottom: 65px;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: #FFFFFF;
	padding: 20px 20px 20px 20px;
	z-index: 1000;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(71, 85, 105, 0.1);
}

.nav-container {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 3rem;
	margin-bottom: 0px;
	padding: 0px;
}

.nav-links a {
	text-decoration: none;
	color: #1a202c;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

.nav-links a:hover {
	color: #475569;
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #475569, #64748b);
	transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
	width: 100%;
}

.nav-links li a.active {
	color: #475569;
	font-weight: 600;
}

.mobile-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.mobile-menu span {
	width: 35px;
	height: 3px;
	background: #475569;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

@media (max-width: 992px) {
	header {
		margin-bottom: 0px;
	}

	.navbar {
		position: relative;
		top: 0;
		padding: 10px 20px;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(248, 250, 252, 0.95);
		backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 2rem 5%;
		box-shadow: 0 10px 30px rgba(71, 85, 105, 0.1);
		border-radius: 0 0 20px 20px;
	}

	.nav-links.active-nav {
		display: block;
	}

	.nav-links li a {
		display: block;
		padding: 15px 0px;
		text-align: center;
	}

	.nav-links li a::after {
		height: 0;
	}

	.nav-links li a.active {
		color: #475569;
		font-weight: 600;
		background-color: #a4c7ff59;
	}

	.mobile-menu {
		display: flex;
		padding: 0px 40vw;
	}

}

/* main content */
/* main content */
/* main content */
.start-section {
	padding-top: 70px !important;
}

.my-h2 {
	font-size: 18px;
}

/* main content */
/* main content */
/* main content */

/* Footer */
/* Footer */
/* Footer */

/* Footer */
footer {
	padding: 20px 0;
}