* RESET*/ *,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


html {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

/* SCROLL ANIMATIONS */

.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-stagger {
	opacity: 0;
	transition: all 1s cubic-bezier(.2, .8, .2, 1);
}

.reveal-fade {
	transform: translateY(20px);
}

.reveal-up {
	transform: translateY(60px);
}

.reveal-left {
	transform: translateX(-80px);
}

.reveal-right {
	transform: translateX(80px);
}

.reveal-stagger {
	transform: translateY(60px);
}

.reveal-visible {
	opacity: 1;
	transform: translate(0, 0);
}

/* Stagger delay */
.reveal-stagger:nth-child(1) {
	transition-delay: .1s;
}

.reveal-stagger:nth-child(2) {
	transition-delay: .2s;
}

.reveal-stagger:nth-child(3) {
	transition-delay: .3s;
}

.reveal-stagger:nth-child(4) {
	transition-delay: .4s;
}

/* Hero Section */
.stories-hero {
	background: white;
	color: white;
	padding: 60px 0 90px;
	position: relative;
	overflow: hidden;
}

.stories-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="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}


.hero-section-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.stories-hero .hero-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	display: block;
	/* grid-template-columns: none; */
}

.stories-hero .hero-content::after {
	content: '';
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: #2563eb;
	border-radius: 2px;
}

.stories-hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	color: #1e3a8a;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


.stories-hero p {
	font-size: 1.3rem;
	margin-bottom: 0;
	line-height: 1.7;
	color: #2563eb;
	font-weight: 400;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
	.stories-hero {
		padding: 60px 0 80px;
	}

	.stories-hero .hero-content h1 {
		font-size: 2.5rem;
	}

	.stories-hero .hero-content p {
		font-size: 1.1rem;
	}
}

/* Story Intro */

.story-intro {
	font-size: 1.3rem;
	font-weight: 600;
	color: white;
	margin-bottom: 2rem;
	line-height: 1.6;
	padding: 80px 0;
	background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
	border-bottom: 1px solid rgba(74, 124, 89, 0.1);
}

.story-intro-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;

}

.intro-content {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;

}

.intro-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: white;
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.intro-content p {
	font-size: 1.2rem;
	color: white;
	line-height: 1.8;
	font-weight: 400;

}

@media (max-width: 768px) {
	.story-intro {
		padding: 60px 0;
	}

	.story-intro h2 {
		font-size: 2rem;
	}

	.story-intro p {
		font-size: 1.1rem;
	}
}

/* STORIES / TESTIMONIAL SECTION */

.stories-section {
	padding: 100px 0;
	background: #f4f7ff;
}

.stories-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* HEADER */

.stories-header {
	text-align: center;
	margin-bottom: 4rem;
}

.stories-header h2 {
	font-size: 2.7rem;
	color: #1e3a8a;
	margin-bottom: 1rem;
	font-weight: 700;
}

.stories-header p {
	max-width: 700px;
	margin: auto;
	color: #555;
	font-size: 1.1rem;
	line-height: 1.6;
}

/* GRID */

.stories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

/* CARD */

.story-card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 8px 22px rgba(30, 58, 138, 0.08);
	transition: all 0.3s ease;
	position: relative;
}

.story-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 35px rgba(30, 58, 138, 0.15);
}

/* TITLE */

.story-card h3 {
	color: #1e3a8a;
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

/* TEXT */

.story-card p {
	color: #555;
	line-height: 1.7;
	font-size: 0.98rem;
	margin-bottom: 1rem;
}

/* QUOTE SYMBOL */

.quote {
	font-size: 1.6rem;
	color: #3b82f6;
	font-weight: bold;
}

/* MOBILE */

@media (max-width: 768px) {

	.stories-section {
		padding: 80px 0;
	}

	.stories-header h2 {
		font-size: 2rem;
	}

	.stories-header p {
		font-size: 1rem;
	}

	.story-card {
		padding: 1.6rem;
	}

}

@media (max-width: 480px) {

	.stories-grid {
		grid-template-columns: 1fr;
	}

	.story-card h3 {
		font-size: 1.15rem;
	}

}

/* Impact Numbers */

.impact-numbers {
	padding: 100px 0;
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.impact-numbers::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="30" r="1" fill="rgba(255,255,255,0.08)"/></svg>');
	opacity: 0.3;
}

.in-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.impact-numbers .section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	color: white;
	position: relative;
	z-index: 2;
}

.numbers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	position: relative;
	z-index: 2;
}

.number-item {
	text-align: center;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.number-item:hover {
	transform: translateY(-5px);
}

.number-icon {
	margin-bottom: 1rem;
}

.number-icon i {
	font-size: 3rem;
	color: #fff;
	opacity: 0.9;
}

.number-value {
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.5rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.number-label {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

/* Impact Numbers Responsiveness */

@media (max-width: 768px) {

	.impact-numbers,
	.share-story,
	.cta-section {
		padding: 80px 0;
	}

	.impact-numbers .section-title {
		font-size: 2rem;
	}

	.numbers-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* Share Story Section */
.share-story {
	padding: 100px 0;
	background: #f8faf7;
}

.ss-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.share-content {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.share-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 1.5rem;
}

.share-content p {
	font-size: 1.2rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 3rem;
}

.share-options {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Button Styles */
.ssbtn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 15px 30px;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.ssbtn-primary {
	background: linear-gradient(45deg, #2563eb, #1e3a8a);
	color: white;
	box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.ssbtn-primary:hover {
	transform: translateY(-3px);
}

.ssbtn-secondary {
	background: white;
	color: #1e3a8a;
	border: 2px solid #1e3a8a;
}

.ssbtn-secondary:hover {
	background-color: #1e3a8a;
	color: #fff;
}

/* Share Your Story Responsiveness */
@media (max-width: 768px) {
	.share-story {
		padding: 80px 0;
	}

	.share-content h2 {
		font-size: 2rem;
	}

	.share-options {
		flex-direction: column;
		align-items: center;
	}
}