:root {
	--primary-color: #2563eb;
	--secondary-color: #1e40af;
	--text-color: #1f2937;
	--light-bg: #f3f4f6;
	--white: #ffffff;
}

body {
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
	color: var(--text-color);
	line-height: 1.5;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Sticky Header */
.sticky-header {
	position: sticky;
	top: 0;
	background: var(--white);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.nav-menu {
	display: flex;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Hero Section */
.hero {
	padding: 4rem 0;
	background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.hero-content {
	max-width: 600px;
	margin-bottom: 2rem;
}

h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.subheadline {
	font-size: 1.25rem;
	margin-bottom: 2rem;
}

/* Buttons */
.btn-primary {
	background: var(--primary-color);
	color: var(--white);
	padding: 0.75rem 1.5rem;
	border-radius: 0.375rem;
	text-decoration: none;
	display: inline-block;
	font-weight: 500;
	transition: background-color 0.3s ease;
}

.btn-primary:hover {
	background: var(--secondary-color);
}

/* Features Section */
.features {
	padding: 4rem 0;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.feature-card {
	padding: 2rem;
	background: var(--white);
	border-radius: 0.5rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		padding: 1rem;
		flex-direction: column;
		align-items: center;
	}

	.nav-menu.active {
		display: flex;
	}

	.mobile-menu-toggle {
		display: block;
	}

	h1 {
		font-size: 2.5rem;
	}
}

/* Hide checkbox but keep it accessible */
.visuallyHidden {
	position: absolute !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	height: 1px !important;
	width: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	border: 0 !important;
}

/* Hamburger Menu Styles */
.hamburger {
	margin: 0 auto;
	width: 30px;
	height: 30px;
	position: relative;
	cursor: pointer;
	display: block;
}

.hamburger .bar {
	padding: 0;
	width: 30px;
	height: 3px;
	background-color: #1f2937;
	display: block;
	border-radius: 4px;
	transition: all 0.4s ease-in-out;
	position: absolute;
}

.hamburger3 .bar1 {
	top: 0;
	transform-origin: 5%;
}

.hamburger3 .bar2,
.hamburger3 .bar3 {
	top: 13.5px;
}

.hamburger3 .bar4 {
	bottom: 0;
	transform-origin: 5%;
}

/* Animation for hamburger3 */
#mobile-menu-checkbox:checked + label > .hamburger3 > .bar1 {
	transform: rotate(45deg);
	height: 3px;
	width: 42px;
}

#mobile-menu-checkbox:checked + label > .hamburger3 > .bar2 {
	transform: rotate(-45deg);
	height: 3px;
	background-color: transparent;
}

#mobile-menu-checkbox:checked + label > .hamburger3 > .bar3 {
	transform: rotate(45deg);
	height: 3px;
	background-color: transparent;
}

#mobile-menu-checkbox:checked + label > .hamburger3 > .bar4 {
	transform: rotate(-45deg);
	height: 3px;
	width: 42px;
}

/* Active menu item styles */
.nav-link {
	position: relative;
	transition: color 0.3s ease;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: width 0.3s ease-in-out;
}

.nav-link.active {
	color: var(--primary-color);
}

.nav-link.active::after {
	width: 100%;
}

/* Team member image shadow effect */
.shadow-lg {
	filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.3));
}
