:root {
	--primary-color: #6200EE;
	--secondary-color: #03DAC6;
	--background-color: #f5f5f5;
	--card-color: #ffffff;
	--text-color: #333333;
	--shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	--border-radius: 12px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}

body {
	background-color: var(--background-color);
	color: var(--text-color);
	line-height: 1.6;
}

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

/* Header styling - Desktop Only */
.main-header {
	background: linear-gradient(135deg, #6200ea, #3700b3);
	color: white;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	display: none; /* Hidden by default */
}

/* Show header only on desktop screens (768px and above) */
@media (min-width: 769px) {
	.main-header {
		display: block;
	}
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.logo {
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
	color: white;
}

.nav-menu {
	display: flex;
	list-style: none;
	flex-wrap: wrap;
	gap: 24px;
}

.nav-menu a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	opacity: 0.9;
	transition: opacity 0.2s;
}

.nav-menu a:hover {
	opacity: 1;
}

.header-buttons {
	display: flex;
	gap: 16px;
}

.header-btn {
	padding: 8px 16px;
	border-radius: 4px;
	font-weight: 500;
	text-decoration: none;
	font-size: 14px;
	transition: background 0.2s;
}

.login-btn {
	background: rgba(255, 255, 255, 0.2);
	color: white;
}

.login-btn:hover {
	background: rgba(255, 255, 255, 0.3);
}

.register-btn {
	background: white;
	color: #6200ea;
}

.register-btn:hover {
	background: rgba(255, 255, 255, 0.9);
}

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, #6200ea, #3700b3);
	color: white;
	padding: 80px 0;
	text-align: center;
}

.hero-content h1 {
	font-size: 48px;
	margin-bottom: 20px;
	font-weight: 700;
}

.hero-content p {
	font-size: 20px;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

/* Section Styling */
.section {
	padding: 60px 0;
}

.section-title {
	text-align: center;
	font-size: 36px;
	color: var(--primary-color);
	margin-bottom: 50px;
	font-weight: 700;
}

.section-subtitle {
	text-align: center;
	font-size: 20px;
	color: #666;
	margin-bottom: 40px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Company Overview */
.company-overview {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-bottom: 60px;
}

.overview-card {
	background: var(--card-color);
	padding: 40px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	text-align: center;
	transition: transform 0.3s;
}

.overview-card:hover {
	transform: translateY(-5px);
}

.overview-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 32px;
	color: white;
}

.overview-card h3 {
	font-size: 24px;
	color: var(--primary-color);
	margin-bottom: 16px;
}

/* Mission Vision Values */
.mvv-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.mvv-card {
	background: var(--card-color);
	padding: 40px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}

.mvv-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.mvv-card h3 {
	font-size: 28px;
	color: var(--primary-color);
	margin-bottom: 20px;
	font-weight: 600;
}

.mvv-card p {
	font-size: 16px;
	line-height: 1.8;
}

/* Statistics */
.stats-section {
	background: linear-gradient(135deg, #6200ea, #3700b3);
	color: white;
	padding: 80px 0;
}

.stats-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	text-align: center;
}

.stat-item {
	padding: 20px;
}

.stat-number {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--secondary-color);
}

.stat-label {
	font-size: 18px;
	opacity: 0.9;
}

/* Team Section */
.team-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.team-member {
	background: var(--card-color);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.3s;
}

.team-member:hover {
	transform: translateY(-5px);
}

.member-photo {
	width: 100%;
	height: 450px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

/* Fallback for member photos */
.member-photo::before {
	content: attr(data-initials);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	color: white;
	font-weight: 700;
	z-index: 1;
}

.member-photo.has-image::before {
	display: none;
}

.member-info {
	padding: 30px;
	text-align: center;
}

.member-name {
	font-size: 24px;
	color: var(--primary-color);
	margin-bottom: 8px;
	font-weight: 600;
}

.member-position {
	font-size: 16px;
	color: #666;
	margin-bottom: 16px;
}

.member-description {
	font-size: 14px;
	line-height: 1.6;
}

/* Why Choose Us */
.features-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.feature-card {
	background: var(--card-color);
	padding: 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	text-align: center;
	transition: transform 0.3s;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 24px;
	color: white;
}

.feature-card h3 {
	font-size: 20px;
	color: var(--primary-color);
	margin-bottom: 16px;
}

/* Contact Section */
.contact-section {
	background: var(--card-color);
	padding: 60px 0;
}

.contact-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.contact-info {
	padding: 40px;
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
}

.contact-icon {
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 16px;
	color: white;
	font-size: 16px;
}

.contact-details h4 {
	font-size: 18px;
	color: var(--primary-color);
	margin-bottom: 4px;
}

.contact-details p {
	color: #666;
}

/* Footer */
footer {
	background-color: var(--primary-color);
	color: white;
	padding: 40px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 32px;
	margin-bottom: 32px;
}

.footer-section h3 {
	margin-bottom: 16px;
	position: relative;
	padding-bottom: 10px;
}

.footer-section h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background-color: var(--secondary-color);
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 8px;
}

.footer-section a {
	color: white;
	text-decoration: none;
	transition: opacity 0.2s;
}

.footer-section a:hover {
	opacity: 0.8;
}

.social-links {
	display: flex;
	gap: 16px;
	margin-top: 16px;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transition: background-color 0.2s;
}

.social-link:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 32px;
	}
	
	.hero-content p {
		font-size: 16px;
	}
	
	.section-title {
		font-size: 28px;
	}
	
	.stat-number {
		font-size: 36px;
	}
}