/* ========================================
   ABOUT US PAGE - SPECIFIC STYLES
   ======================================== */

/* Page Header */
.page-header 
{
	height: 450px;
	background: linear-gradient(rgba(74, 20, 140, 0.85), rgba(74, 20, 140, 0.7)),
				url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 450"><defs><pattern id="dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="%23D4AF37" opacity="0.3"/></pattern></defs><rect fill="%234A148C" width="1200" height="450"/><rect fill="url(%23dots)" width="1200" height="450"/></svg>');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--white);
	position: relative;
}

.page-header::before 
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1));
}

.page-header-content 
{
	position: relative;
	z-index: 1;
	padding: 0 20px;
	max-width: 800px;
}

.page-header h1 
{
	font-size: 52px;
	margin-bottom: 20px;
	text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
	font-weight: 700;
}

.page-header p 
{
	font-size: 20px;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
	line-height: 1.8;
}

.breadcrumb 
{
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	margin-top: 25px;
	font-size: 14px;
}

.breadcrumb a 
{
	color: var(--gold);
	text-decoration: none;
	transition: color 0.3s;
}

.breadcrumb a:hover 
{
	color: var(--white);
}

.breadcrumb span 
{
	color: rgba(255,255,255,0.7);
}

/* Our Story Section */
.our-story 
{
	padding: 100px 20px;
	background: var(--white);
}

.story-content 
{
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.story-content p 
{
	font-size: 18px;
	line-height: 2;
	margin-bottom: 25px;
	color: #555;
}

.story-highlight 
{
	background: var(--light-gray);
	padding: 40px;
	border-radius: 15px;
	border-left: 5px solid var(--gold);
	margin: 40px 0;
	text-align: left;
}

.story-highlight h3 
{
	color: var(--deep-purple);
	margin-bottom: 15px;
	font-size: 24px;
}

/* Vision & Mission Section */
.vision-mission 
{
	padding: 100px 20px;
	background: var(--light-gray);
}

.vm-grid 
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 50px;
	margin-top: 50px;
}

.vm-card 
{
	background: var(--white);
	padding: 50px 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.4s;
	position: relative;
	overflow: hidden;
}

.vm-card::before 
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--gold), var(--light-blue));
}

.vm-card:hover 
{
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vm-icon 
{
	font-size: 64px;
	/*color: var(--light-blue);*/
	color: var(--green);
	margin-bottom: 25px;
	display: inline-block;
}

.vm-card h3 
{
	color: var(--deep-purple);
	font-size: 32px;
	margin-bottom: 25px;
	font-weight: 700;
}

.vm-card p 
{
	font-size: 17px;
	line-height: 1.9;
	color: #555;
}

/* Core Values Section */
.core-values 
{
	padding: 100px 20px;
	background: linear-gradient(135deg, var(--deep-purple), #6A1B9A);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.core-values::before 
{
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
	border-radius: 50%;
}

.values-grid 
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-top: 50px;
	position: relative;
	z-index: 1;
}

.value-item 
{
	text-align: center;
	padding: 40px 30px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	transition: all 0.3s;
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.value-item:hover 
{
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-10px);
	border-color: var(--gold);
}

.value-icon 
{
	font-size: 48px;
	color: var(--gold);
	margin-bottom: 20px;
	display: block;
}

.value-item h4 
{
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--white);
}

.value-item p 
{
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
}

/* Leadership Team Section */
.leadership 
{
	padding: 100px 20px;
	background: var(--white);
}

.team-grid 
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.team-member 
{
	text-align: center;
	transition: all 0.3s;
}

.team-photo 
{
	width: 200px;
	height: 200px;
	border-radius: 50%;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, var(--deep-purple), var(--light-blue));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 64px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.3s;
}

.team-photo img 
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.team-member:hover .team-photo 
{
	transform: scale(1.05);
	box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.team-member h4 
{
	font-size: 22px;
	color: var(--deep-purple);
	margin-bottom: 8px;
}

.team-position 
{
	color: var(--gold);
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 16px;
}

.team-member p 
{
	font-size: 15px;
	color: #666;
	line-height: 1.7;
}

/* Impact Stats Section */
.impact-stats-section 
{
	padding: 100px 20px;
	background: var(--light-gray);
}

.stats-grid 
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.stat-box 
{
	background: var(--white);
	padding: 40px 30px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	transition: all 0.3s;
	border-top: 4px solid var(--gold);
}

.stat-box:hover 
{
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stat-number 
{
	font-size: 48px;
	font-weight: bold;
	color: var(--deep-purple);
	margin-bottom: 10px;
}

.stat-label 
{
	font-size: 16px;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

/* Button spacing for About page */
.btn-secondary 
{
	margin-left: 15px;
}

/* Responsive - About Us Specific */
@media (max-width: 968px) 
{
	.page-header h1 
	{
		font-size: 36px;
	}

	.page-header p 
	{
		font-size: 16px;
	}

	.vm-grid 
	{
		grid-template-columns: 1fr;
	}

	.vm-card 
	{
		padding: 40px 30px;
	}
}

@media (max-width: 480px) 
{
	.page-header h1 
	{
		font-size: 28px;
	}

	.page-header 
	{
		height: 350px;
	}

	.btn-secondary 
	{
		margin-left: 0;
		margin-top: 15px;
	}

	.stat-number 
	{
		font-size: 36px;
	}

	.vm-card h3 
	{
		font-size: 26px;
	}

	.story-content p 
	{
		font-size: 16px;
	}
}