* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.our-purpose {
	background: linear-gradient(to right, #1d4ed8, #0f172a);
	color: white;
	text-align: center;
	padding: 10px 20px;
}

.our-purpose h2 {
	font-size: 80px;
	margin-bottom: 20px;
	font-style: italic;
	-webkit-text-stroke: 2px black;
}

.our-purpose img {
	border: 5px solid whitesmoke;
}


.our-team {
	background: linear-gradient(to right, #1d4ed8, #0f172a);
	color: white;
	text-align: center;
	padding: 10px 20px;
}


.our-team h2 {
	font-size: 80px;
	font-weight: 1000;
}

.our-team img {
	border: 5px solid whitesmoke;
	border-radius: 50%;
	width: 50%;
}

.our-team hr {
	width: 35%;
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 25px;
	height: 3px;
	background-color: white;
}

.our-beliefs {
	background: linear-gradient(to right, #0f1242, #0f152a);
	color: white;
	text-align: center;
	padding: 10px 20px;
}

.our-beliefs h2 {
	font-size: 80px;
	font-weight: 1000;
}

.our-beliefs hr {
	width: 35%;
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 25px;
	height: 3px;
	background-color: white;
}

.our-beliefs p {
	text-align: left;
	font-size: 30px;
}

.our-beliefs h1 {
	text-align: left;
	font-size: 40px;
	font-style: italic;
}


.eternal-life {
	background: linear-gradient(to right, #0f1242, #0f152a);
	color: white;
	text-align: center;
	padding: 10px 20px;
}




body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	background: #f8fafc;
	color: #1e293b;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
}

header {
	background: #0f172a;
	color: white;
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 28px;

}

.link_logo {

	text-decoration: none;
	color: white;
}

.link_logo:hover {
	color: blueviolet;
}

nav a {
	color: white;
	text-decoration: none;
	margin-left: 20px;
	font-weight: bold;
	transition: 0.3s;
}

nav a:hover {
	color: #60a5fa;
}

.hero {
	background: linear-gradient(to right, #1d4ed8, #0f172a);
	color: white;
	text-align: center;
	padding: 120px 20px;
}

.hero h2 {
	font-size: 56px;
	margin-bottom: 20px;
}

.hero p {
	max-width: 700px;
	margin: auto;
	font-size: 20px;
	margin-bottom: 35px;
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.image-container {
	position: relative;
	max-width: 100%;
	text-align: center;
}

.image-container img {
	display: block;
	max-width: 100%;
	height: auto;
}

.overlay-link {
	position: absolute;
	left: 13.7%;
	top: 77%;
	transform: translate(-50%, -50%);

	background: white;
	color: black;
	padding: 0.5rem 1.5rem;
	border: 2px solid black;
	border-radius: 999px;
	text-decoration: none;
	font-weight: bold;
	white-space: nowrap;
}


.overlay-link:hover {

	background: #e2e8f0;
}

.btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: bold;
	transition: 0.3s;
}

.primary-btn {
	background: white;
	color: #0f172a;
}

.primary-btn:hover {
	background: #e2e8f0;
}

.secondary-btn {
	border: 2px solid white;
	color: white;
}

.secondary-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}

.section {
	padding: 90px 0;
	text-align: center;
}

.section h3 {
	font-size: 40px;
	margin-bottom: 25px;
}

.section p {
	max-width: 800px;
	margin: auto;
	font-size: 18px;
}

.light-section {
	background: white;

}

.dark-section {
	background: #0f172a;
	color: white;
}

.cards {
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.card {
	background: white;
	padding: 35px 25px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: 0.3s;
}

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

.card h4 {
	margin-bottom: 15px;
	font-size: 24px;
}

.dark-card {
	background: #1e293b;
	color: white;
}

.give-section {
	/*background: linear-gradient(to right, #1d4ed8, #0f172a);*/
	background: white;
	color: white;
}

footer {
	background: #020617;
	color: white;
	text-align: center;
	padding: 25px 0;
}

/* Dropdown Button */
.dropbtn {
	background-color: #0f172a;
	color: white;
	padding: 16px;
	font-weight: bold;
	font-size: 16px;
	border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
	position: relative;
	display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
	display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
	background-color: #1d4ed8;
}


@media (max-width: 768px) {
	.nav-container {
		flex-direction: column;
		gap: 15px;
	}

	nav {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	nav a {
		margin: 10px;
	}

	.hero h2 {
		font-size: 40px;
	}

	.section h3 {
		font-size: 32px;
	}

	.overlay-link {
		left: 13.7%;
		top: 80.5%;
		padding: 0.3rem .5rem;
		border: 1px solid black;
		font-size: 0.35rem;
	}
}
