/* 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);
}

.section-subtitle 
{
	text-align: center;
	font-size: 18px;
	color: #666;
	max-width: 800px;
	margin: 0 auto 50px;
	line-height: 1.8;
}

		/* Program Areas Section */
.program-areas 
{
	padding: 100px 20px;
	background: var(--white);
}

.programs-grid 
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.program-card 
{
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.4s;
}

.program-card:hover 
{
	transform: translateY(-15px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.program-header 
{
	height: 200px;
	background: linear-gradient(135deg, var(--deep-purple), var(--light-blue));
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.program-header::before 
{
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s;
}

.program-card:hover .program-header::before 
{
	left: 100%;
}

.program-icon 
{
	font-size: 80px;
	/*color: var(--white);*/
	color: var(--green);
}

.program-content 
{
	padding: 35px 30px;
}

.program-content h3 
{
	color: var(--deep-purple);
	font-size: 26px;
	margin-bottom: 20px;
	font-weight: 700;
}

.program-content p 
{
	color: #555;
	line-height: 1.8;
	margin-bottom: 25px;
	font-size: 16px;
}

.program-features 
{
	list-style: none;
	margin-bottom: 25px;
}

.program-features li 
{
	padding: 10px 0;
	border-bottom: 1px solid var(--light-gray);
	color: #666;
	display: flex;
	align-items: center;
	gap: 12px;
}

.program-features li:last-child 
{
	border-bottom: none;
}

.program-features i 
{
	color: var(--gold);
	font-size: 16px;
}

.learn-more-btn 
{
	display: inline-block;
	padding: 12px 30px;
	background: var(--deep-purple);
	color: var(--white);
	text-decoration: none;
	border-radius: 25px;
	transition: all 0.3s;
	font-weight: 600;
}

.learn-more-btn:hover 
{
	background: var(--gold);
	color: var(--deep-purple);
	transform: translateX(5px);
}

/* Impact Stories Section */
.impact-stories 
{
	padding: 100px 20px;
	background: var(--light-gray);
}

.stories-grid 
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.story-card 
{
	background: var(--white);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	transition: all 0.3s;
}

.story-card:hover 
{
	box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.story-image 
{
	height: 250px;
	background: linear-gradient(135deg, var(--light-blue), var(--deep-purple));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 64px;
}

.story-content 
{
	padding: 30px;
}

.story-content h4 
{
	color: var(--deep-purple);
	font-size: 22px;
	margin-bottom: 15px;
}

.story-content p 
{
	color: #666;
	line-height: 1.8;
	font-size: 15px;
}

.story-tag 
{
	display: inline-block;
	padding: 6px 15px;
	background: var(--gold);
	color: var(--white);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	margin-top: 15px;
}

/* Approach Section */
.our-approach 
{
	padding: 100px 20px;
	background: linear-gradient(135deg, var(--deep-purple), #6A1B9A);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.our-approach::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%;
}

.approach-grid 
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-top: 50px;
	position: relative;
	z-index: 1;
}

.approach-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);
}

.approach-item:hover 
{
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-10px);
	border-color: var(--gold);
}

.approach-number 
{
	width: 60px;
	height: 60px;
	background: var(--gold);
	color: var(--deep-purple);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: bold;
	margin: 0 auto 25px;
}

.approach-item h4 
{
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--white);
}

.approach-item p 
{
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 968px) 
{
	.page-header h1

	.page-header p 
	{
		font-size: 16px;
	}

	.programs-grid,
	.stories-grid 
	{
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) 
{
	.page-header h1 
	{
		font-size: 28px;
	}

	.page-header 
	{
		height: 350px;
	}

	.btn-secondary 
	{
		margin-left: 0;
		margin-top: 15px;
	}

	.program-content h3 
	{
		font-size: 22px;
	}

	.program-icon 
	{
		font-size: 60px;
	}
}

