* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
	color: #2c3e50;
	overflow-x: hidden;
}

/* Vision Hero Section */
.vision-hero {
	height: 60vh;
	min-height: 500px;
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #4a6741 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	margin-top: 80px;
}

.vision-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
	animation: float 25s ease-in-out infinite;
}

.vision-content {
	text-align: center;
	color: white;
	max-width: 900px;
	padding: 0 2rem;
	z-index: 2;
	position: relative;
}

.vision-content h1 {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 2rem;
	opacity: 0;
	animation: slideUp 1s ease 0.3s forwards;
}

.vision-statement {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.8;
	opacity: 0;
	animation: slideUp 1s ease 0.6s forwards;
}

.vision-statement strong {
	font-weight: 600;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
	25% { transform: translateX(5px) translateY(-5px) rotate(1deg); }
	50% { transform: translateX(-3px) translateY(8px) rotate(-1deg); }
	75% { transform: translateX(-8px) translateY(-3px) rotate(0.5deg); }
}

/* Values Section */
.values-section {
	padding: 100px 0;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 3rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 1rem;
	position: relative;
}

.section-header h2::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	border-radius: 2px;
}

/* Values Grid */
.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 3rem;
	margin-top: 2rem;
}

.value-card {
	background: white;
	padding: 2.5rem;
	border-radius: 25px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.value-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.value-header {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.value-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
	font-size: 1.8rem;
	color: white;
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.value-card h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #2c3e50;
	margin: 0;
}

.value-card p {
	color: #64748b;
	line-height: 1.8;
	font-size: 1rem;
}

/* Special styling for first row (top 3 values) */
.value-card:nth-child(1) .value-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
.value-card:nth-child(1)::before { background: linear-gradient(135deg, #667eea, #764ba2); }
.value-card:nth-child(1) .value-icon { box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3); }

.value-card:nth-child(2) .value-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
.value-card:nth-child(2)::before { background: linear-gradient(135deg, #f093fb, #f5576c); }
.value-card:nth-child(2) .value-icon { box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3); }

.value-card:nth-child(3) .value-icon { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.value-card:nth-child(3)::before { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.value-card:nth-child(3) .value-icon { box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3); }

.value-card:nth-child(4) .value-icon { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.value-card:nth-child(4)::before { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.value-card:nth-child(4) .value-icon { box-shadow: 0 8px 25px rgba(67, 233, 123, 0.3); }

.value-card:nth-child(5) .value-icon { background: linear-gradient(135deg, #fa709a, #fee140); }
.value-card:nth-child(5)::before { background: linear-gradient(135deg, #fa709a, #fee140); }
.value-card:nth-child(5) .value-icon { box-shadow: 0 8px 25px rgba(250, 112, 154, 0.3); }

.value-card:nth-child(6) .value-icon { background: linear-gradient(135deg, #a8edea, #fed6e3); }
.value-card:nth-child(6)::before { background: linear-gradient(135deg, #a8edea, #fed6e3); }
.value-card:nth-child(6) .value-icon { box-shadow: 0 8px 25px rgba(168, 237, 234, 0.3); }

/* Footer */
.footer {
	background: #1a202c;
	color: white;
	text-align: center;
	padding: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.vision-content h1 { font-size: 2.8rem; }
	.vision-statement { font-size: 1.2rem; }
	.values-grid { grid-template-columns: 1fr; gap: 2rem; }
	.nav-links { display: none; }
	.section-header h2 { font-size: 2.2rem; }
	.value-card { padding: 2rem; }
	.vision-hero { height: 50vh; min-height: 400px; }
}

/* Scroll animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.stagger-animation .value-card {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.stagger-animation.visible .value-card:nth-child(1) { animation: slideUp 0.6s ease 0.1s forwards; }
.stagger-animation.visible .value-card:nth-child(2) { animation: slideUp 0.6s ease 0.2s forwards; }
.stagger-animation.visible .value-card:nth-child(3) { animation: slideUp 0.6s ease 0.3s forwards; }
.stagger-animation.visible .value-card:nth-child(4) { animation: slideUp 0.6s ease 0.4s forwards; }
.stagger-animation.visible .value-card:nth-child(5) { animation: slideUp 0.6s ease 0.5s forwards; }
.stagger-animation.visible .value-card:nth-child(6) { animation: slideUp 0.6s ease 0.6s forwards; }