/*
Color 1- 297bc3 (Blue)
Color 2- e74159 (Pink)
Color 3- ed7543 (Orange)
*/
:root{
	--color1:rgba(0, 63, 92, 0.7);
    --color2:rgba(47, 75, 124, 0.7);
    --color3:rgba(102, 81, 145, 0.7);
    --color4:rgba(160, 81, 149, 0.7);
    --color5:rgba(212, 80, 135, 0.7);
    --color6:rgba(249, 93, 106, 0.7);
    --color7:rgba(255, 124, 67, 0.7);
}
::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: #ed7543;
}

::selection {
    color: #fff; 
    background: #ed7543;
}
*{
	margin:0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	box-sizing: border-box;
	font-size: 15px;
}
*:focus{
	outline: none;
}
.shadow{
	box-shadow: 0 2px 4px rgba(0,0,0,0.10);
}
.shadow-md{
	box-shadow: 0 4px 10px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.08);
}
.shadow-lg{
	box-shadow: 0 15px 30px rgba(0,0,0,0.11), 0 5px 15px rgba(0,0,0,0.08);
}
.link{
	color:#ed7543;
	text-decoration: none;
}
html{
	background-color: #f5f5f5;
}
body{
	min-height: 100vh;
}
body.menu-open{ overflow:hidden; }
/* ================================================================
   HEADER & NAVIGATION
   ================================================================ */
.site-header{
	position: sticky;
	top:0;
	z-index: 100;
	background: #fff;
	height: 72px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.site-header .wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	padding: 0 16px;
}

/* Logo */
.nav-logo{
	flex-shrink: 0;
	width: 220px;
	height: 56px;
	background: url('../images/logo.png') no-repeat left center;
	background-size: contain;
	display: block;
}
.nav-logo-img{
	width: 220px;
	height: 56px;
	object-fit: contain;
	object-position: left center;
}

/* Nav Menu (desktop) */
.nav-menu{ display:flex; align-items:center; gap:2px; }
.nav-overlay{ display:none; }
.nav-panel{ display:flex; align-items:center; gap:2px; }
.nav-panel-header{ display:none; }
.nav-close{ display:none; }

.nav-link{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 8px 14px;
	font-size: 13.5px;
	font-weight: 500;
	color: #374151;
	text-decoration: none;
	border-radius: 8px;
	transition: background .15s, color .15s;
	white-space: nowrap;
}
.nav-link:hover{ background:#f1f5f9; color:#111827; }

.nav-chevron{ width:14px; height:14px; transition:transform .2s; flex-shrink:0; }

/* Dropdown */
.nav-dropdown{ position:relative; }
.nav-dropdown:hover .nav-chevron{ transform:rotate(180deg); }
.nav-dropdown.open .nav-chevron{ transform:rotate(180deg); }
.nav-dropdown-menu{
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 200px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
	padding: 6px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity .2s, transform .2s, visibility .2s;
	z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.nav-dropdown-menu a{
	display: block;
	padding: 10px 14px;
	font-size: 13px;
	color: #374151;
	text-decoration: none;
	border-radius: 8px;
	transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover{ background:#f1f5f9; color:#111827; }

/* Donate Button */
.nav-donate-btn{
	display: inline-flex;
	align-items: center;
	padding: 10px 22px;
	font-size: 13px;
	font-weight: 600;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: #fff;
	background: linear-gradient(135deg, #e74159, #ed7543);
	border: none;
	border-radius: 10px;
	text-decoration: none;
	transition: opacity .15s, transform .15s, box-shadow .15s;
	margin-left: 10px;
	box-shadow: 0 2px 8px rgba(231,65,89,.3);
}
.nav-donate-btn:hover{
	opacity:.92;
	transform:translateY(-1px);
	box-shadow: 0 4px 14px rgba(231,65,89,.4);
}

/* Hamburger */
.hamburger{
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	padding: 6px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 110;
}
.hamburger span{
	display: block;
	width: 100%;
	height: 2px;
	background: #424242;
	border-radius: 2px;
	transition: transform .25s, opacity .25s;
}
.hamburger.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media screen and (max-width: 950px){
	.hamburger{ display:flex; margin-left:auto; }

	.nav-menu{ position:static; width:0; overflow:visible; }

	.nav-overlay{
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(0,0,0,.4);
		z-index: 105;
		opacity: 0;
		visibility: hidden;
		transition: opacity .3s, visibility .3s;
	}
	.nav-menu.open .nav-overlay{ opacity:1; visibility:visible; }

	.nav-panel{
		position: fixed;
		top: 0;
		right: -300px;
		width: 280px;
		height: 100vh;
		background: #fff;
		z-index: 110;
		padding: 20px 16px;
		display: flex;
		flex-direction: column;
		gap: 2px;
		overflow-y: auto;
		transition: right .3s ease;
		box-shadow: -4px 0 20px rgba(0,0,0,.08);
	}
	.nav-menu.open .nav-panel{ right:0; }

	.nav-panel-header{
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-bottom: 14px;
		margin-bottom: 8px;
		border-bottom: 1px solid #e2e8f0;
	}
	.nav-panel-header span{ font-size:14px; font-weight:700; color:#1e293b; }
	.nav-close{
		display: block;
		width: 32px;
		height: 32px;
		background: none;
		border: none;
		font-size: 22px;
		color: #64748b;
		cursor: pointer;
		line-height: 1;
	}

	.nav-link{
		display: flex;
		padding: 12px 14px;
		font-size: 14px;
		border-radius: 10px;
		width: 100%;
		justify-content: flex-start;
		text-align: left;
	}
	.nav-dropdown{ width:100%; }
	.nav-link .nav-chevron{ margin-left: auto; }

	.nav-dropdown-menu{
		position: static;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		padding: 0 0 0 16px;
		margin-bottom: 4px;
		display: none;
	}
	.nav-dropdown.open .nav-dropdown-menu{ display:block; }
	.nav-dropdown:hover .nav-dropdown-menu{ display:none; }
	.nav-dropdown.open:hover .nav-dropdown-menu{ display:block; }
	.nav-dropdown-menu a{
		text-align: left;
		justify-content: flex-start;
	}

	.nav-donate-btn{
		margin: 8px 0 0;
		justify-content: center;
		padding: 13px;
		font-size: 14px;
		border-radius: 10px;
		width: 100%;
	}

	/* Keep old header_fixed for backward compat if needed */
	.header{ display:none; }
	.header_fixed{ display:none; }
}

/* Desktop reset — ensure mobile menu styles don't bleed */
@media screen and (min-width: 951px){
	.nav-menu{ width:auto; }
	.nav-dropdown{ width:auto; }
	.nav-menu.open .nav-overlay{ display:none; opacity:0; visibility:hidden; }
	.nav-menu.open .nav-panel{
		position: static;
		width: auto;
		height: auto;
		background: transparent;
		padding: 0;
		flex-direction: row;
		box-shadow: none;
		overflow: visible;
	}
	.nav-panel-header{ display:none; }
	.nav-close{ display:none; }
	/* Revert mobile dropdown display:none back to visibility-based hover */
	.nav-dropdown-menu{
		display: block;
		opacity: 0;
		visibility: hidden;
	}
	.nav-dropdown:hover .nav-dropdown-menu,
	.nav-dropdown.open .nav-dropdown-menu{
		display: block;
		opacity: 1;
		visibility: visible;
	}
}

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

/* ================================================================
   SLIDER
   ================================================================ */
.slider{
	position: relative;
	min-height: 580px;
	display: flex;
	align-items: center;
	background:url('../images/slider3.jpg') no-repeat center;
	background-size: cover;
}
.slider .wrapper{
	position: relative;
	z-index: 1;
	padding: 100px 0;
}
.slider h1{
	color:#fff;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: 42px;
	letter-spacing: 1px;
	line-height: 1.2;
	max-width: 600px;
}
.slider p{
	color:rgba(255,255,255,.9);
	font-size: 17px;
	max-width: 520px;
	padding-top: 16px;
	padding-bottom: 28px;
	line-height: 1.6;
}
.slider .btn1{
	font-size: 14px;
	padding: 14px 36px;
	border-radius: 8px;
	background: #ed7543;
	border-color: #ed7543;
}

@media screen and (max-width: 1000px){
	.slider{ min-height:420px; }
	.slider h1{ font-size:30px; max-width:100%; }
	.slider p{ font-size:15px; max-width:100%; }
}
@media screen and (max-width: 600px){
	.slider{ min-height:360px; text-align:center; }
	.slider .wrapper{ padding:80px 0 60px; }
	.slider h1{ font-size:24px; }
	.slider p{ font-size:14px; }
	.slider .btn1{ padding:12px 28px; font-size:13px; }
}

.overlay{
	position: absolute;
	inset:0;
	background: linear-gradient(135deg, rgba(0,0,0,.65), rgba(0,0,0,.35));
}

/* Input & Buttons Starts */
.label{
	display: block;
	width: 90%;
	margin:auto auto;
	margin-bottom: 10px;
}
.label span{
	display: block;
	font-size: 12px;
	letter-spacing: 1px;
	font-weight: bold;
	color:#424242;
	text-transform: uppercase;
}
.label input[type="text"], .label textarea{
	display: block;
	width: 100%;
	padding:10px;
	resize: none;
	border:none;
	border-bottom:1px solid #ccc;
}
.btn1{
	border:none;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	color:white;
	text-align: center;
	padding:12px 40px;
	letter-spacing: 1px;
	background-color: #ed7543;
	transition: 0.4s all;
	border:1px solid #ed7543;
	font-size: 15px;
}
.btn1:hover{
	background-color:#297bc3;
	border:1px solid #297bc3;
}

.btn_black{
	border:1px solid #424242;
	background-color: transparent;
	color:#424242;
	font-size: 14px !important;
}
.btn_black:hover{
	background-color:#ed7543;
	border:1px solid #ed7543;
	color:white;
}

.btn_white{
	border:1px solid #fff;
	background-color: transparent;
	color:#fff;
	font-size: 14px !important;
}
.btn_white:hover{
	background-color:#ed7543;
	border:1px solid #ed7543;
	color:white;
}
.btn-loading{
	position: relative;
	color: transparent !important;
	pointer-events: none;
	opacity: 0.85;
}
/* Ensure white spinner is visible on dark/transparent buttons too */
.btn-loading.btn_black,
.btn-loading.btn_white{
	background-color: #ed7543 !important;
	border-color: #ed7543 !important;
}
.btn-loading::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 18px;
	margin-top: -9px;
	margin-left: -9px;
	border: 2.5px solid rgba(255,255,255,0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: btn-spin 0.6s linear infinite;
}
@keyframes btn-spin {
	to { transform: rotate(360deg); }
}

/* ── Toast Notifications ─────────────────────────────────── */
.toast-container{
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	max-width: 400px;
	width: calc(100% - 40px);
	pointer-events: none;
}
.toast{
	pointer-events: auto;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	animation: toast-in 0.35s ease-out;
	cursor: default;
}
.toast--error{
	background: #dc2626;
	color: #fff;
}
.toast--success{
	background: #16a34a;
	color: #fff;
}
.toast--info{
	background: #4f46e5;
	color: #fff;
}
.toast__icon{
	flex-shrink: 0;
	font-size: 20px;
}
.toast--error .toast__icon{ color: #fff; }
.toast--success .toast__icon{ color: #fff; }
.toast--info .toast__icon{ color: #fff; }
.toast__close{
	margin-left: auto;
	background: none;
	border: none;
	color: #9ca3af;
	font-size: 18px;
	cursor: pointer;
	padding: 0 0 0 10px;
	line-height: 1;
	transition: color 0.2s;
}
.toast__close:hover{ color: #374151; }
@keyframes toast-in {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes toast-out {
	from { opacity: 1; transform: translateY(0); }
	to   { opacity: 0; transform: translateY(20px); }
}
/* Input & Buttons Ends */


/* ================================================================
   MISSION
   ================================================================ */
.mission{
	padding: 100px 0;
	background: #fff;
}
.mission .grid{
	display: flex;
	align-items: center;
	gap: 80px;
}
.mission .grid .icon{
	flex-shrink: 0;
	width: 360px;
	height: 360px;
	background: url('../images/mission.jpg') no-repeat center;
	background-size: cover;
	border-radius: 50%;
}
.mission .grid .content{ flex:1; }
.mission .grid .content h1{
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 32px;
	color: #1e293b;
	padding-bottom: 20px;
}
.mission .grid .content p{
	font-size: 16px;
	line-height: 1.7;
	color: #475569;
	padding-bottom: 28px;
}
.mission .btn_black{
	padding: 12px 30px;
	border-radius: 8px;
	font-size: 13px;
}

@media screen and (max-width: 900px){
	.mission{ padding: 70px 0; }
	.mission .grid{ flex-direction: column; gap: 40px; text-align: center; }
	.mission .grid .icon{ width: 240px; height: 240px; }
	.mission .grid .content h1{ font-size: 26px; }
}
@media screen and (max-width: 500px){
	.mission{ padding: 50px 0; }
	.mission .grid .icon{ width: 180px; height: 180px; }
	.mission .grid .content h1{ font-size: 22px; }
	.mission .grid .content p{ font-size: 15px; }
}

/* ================================================================
   STATS
   ================================================================ */
.stats{
	padding: 90px 0;
	background: #f8fafc;
}
.stats h2{
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 28px;
	color: #475569;
	text-align: center;
	padding-bottom: 50px;
}
.stats .grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	text-align: center;
}
.stats .grid > div{
	background: #fff;
	border-radius: 16px;
	padding: 40px 20px;
	box-shadow: 0 1px 3px rgba(0,0,0,.04);
	transition: transform .2s;
}
.stats .grid > div:hover{ transform: translateY(-3px); }
.stats .grid span{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: #eef2ff;
}
.stats .grid .student{ background: #eef2ff; }
.stats .grid .teacher{ background: #fef3c7; }
.stats .grid .classroom{ background: #dcfce7; }
.stats .grid i{ font-size:28px; color:#6366f1; }
.stats .grid .student i{ color:#6366f1; }
.stats .grid .teacher i{ color:#d97706; }
.stats .grid .classroom i{ color:#16a34a; }
.stats .grid h1{ font-family:'Raleway',sans-serif; font-size:18px; color:#334155; font-weight:400; }
.stats .grid h1 b{ display:block; font-family:'Oswald',sans-serif; font-size:30px; color:#1e293b; }

@media screen and (max-width: 700px){
	.stats{ padding:60px 0; }
	.stats h2{ font-size:22px; padding-bottom:35px; }
	.stats .grid{ grid-template-columns:1fr; gap:16px; }
	.stats .grid > div{ padding:30px 20px; }
	.stats .grid span{ width:70px; height:70px; }
	.stats .grid h1 b{ font-size:24px; }
}

/* ================================================================
   SUCCESS STORIES
   ================================================================ */
.success_stories{
	display: flex;
	background: #fff;
	min-height: 420px;
}
.success_stories .content{
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px 5%;
}
.success_stories .content h1{
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 28px;
	color: #1e293b;
	padding-bottom: 8px;
}
.success_stories .content h2{
	font-size: 15px;
	color: #ed7543;
	padding-bottom: 20px;
	font-weight: 500;
}
.success_stories .content p{
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: #475569;
	padding-bottom: 24px;
}
.success_stories .image{
	flex: 1;
	min-height: 420px;
	background: url('../images/vocational-training.png') no-repeat center;
	background-size: cover;
	background-color: #f1f5f9;
	clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.success_stories .content button{
	align-self: flex-start;
	padding: 11px 28px;
	border-radius: 8px;
	font-size: 13px;
}

/* New Volunteer (reversed) */
.new_volunteer{ flex-direction: row-reverse; }
.new_volunteer .image{
	background: url('../images/volunteer_back.jpg') no-repeat center;
	background-size: cover;
	clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}
.new_volunteer .content{ padding: 60px 5%; }
.new_volunteer .content h1{ font-size: 28px; }
.new_volunteer .content p{ padding-top:12px; }
.new_volunteer .content button{
	display: inline-block;
	margin-top: 8px;
	align-self: flex-start;
	padding: 11px 28px;
	border-radius: 8px;
	font-size: 13px;
}

@media screen and (max-width: 800px){
	.success_stories{ flex-direction: column; }
	.new_volunteer{ flex-direction: column; }
	.success_stories .image{
		min-height: 260px;
		clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
	}
	.new_volunteer .image{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
	}
	.success_stories .content{
		padding: 40px 24px;
		text-align: center;
	}
	.success_stories .content h1{ font-size: 22px; }
	.success_stories .content p{ font-size: 14px; }
	.success_stories .content button,
	.new_volunteer .content p button{
		display: block;
		margin: 16px auto 0;
		align-self: center;
	}
}

/* Milestones Timeline */
.milestones{
	padding: 80px 0;
	background: #fff;
}
.milestones h1{
	padding-bottom: 50px;
	font-size: 32px;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #1e293b;
	text-align: center;
}
@media screen and (max-width: 600px){
	.milestones{ padding:50px 0; }
	.milestones h1{ font-size:24px; padding-bottom:35px; }
}

/* ================================================================
   ANNUAL REPORTS GRID
   ================================================================ */
.reports-grid{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 24px;
}
.report-card{
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.report-card:hover{
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}
.report-card-img{
	height: 200px;
	background-size: cover;
	background-position: center;
	background-color: #e2e8f0;
}
.report-card-body{
	padding: 20px;
	text-align: center;
}
.report-card-body h3{
	font-size: 17px;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 4px;
}
.report-card-year{
	font-size: 12px;
	color: #94a3b8;
	display: block;
	margin-bottom: 14px;
}
.report-card-action{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	background: #ed7543;
	color: #fff;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background 0.2s;
}
.report-card:hover .report-card-action{
	background: #d4653a;
}

/* ================================================================
   DONORS SECTION
   ================================================================ */
.donors-section{
	padding: 80px 0 70px;
	background: #f8fafc;
}
.donors-grid{
	display: flex;
	gap: 60px;
}
.donors-col{
	flex: 1;
	text-align: center;
}
.donors-col h3{
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
	color: #94a3b8;
	padding-bottom: 28px;
}
.donors-logos{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 24px;
}
.donors-logos > div{
	width: 150px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 12px;
	padding: 12px;
	box-shadow: 0 1px 3px rgba(0,0,0,.04);
	transition: transform .2s, box-shadow .2s;
}
.donors-logos > div:hover{
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.donors-logos > div img{
	max-width: 100%;
	max-height: 56px;
	object-fit: contain;
}
@media screen and (max-width: 800px){
	.donors-section{ padding:60px 0 50px; }
	.donors-grid{ flex-direction:column; gap:40px; }
	.donors-col h3{ padding-bottom:20px; }
	.donors-logos{ gap:12px; }
	.donors-logos > div{ width:120px; height:70px; }
}

/* ================================================================
   FOOTER
   ================================================================ */
footer{
	padding: 70px 0 50px;
	background: #fff;
	border-top: 1px solid #e2e8f0;
}
footer .grid{
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 30px;
}
footer .grid h1{
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
	color: #1e293b;
	padding-bottom: 16px;
}
footer .grid a,
footer .grid p{
	display: block;
	text-decoration: none;
	color: #64748b;
	font-size: 13px;
	padding-bottom: 8px;
	transition: color .15s;
}
footer .grid a:hover{ color:#ed7543; }
@media screen and (max-width: 800px){
	footer{ padding:50px 0 30px; }
	footer .grid{ grid-template-columns:1fr 1fr; gap:24px; }
}
@media screen and (max-width: 450px){
	footer .grid{ grid-template-columns:1fr; text-align:center; }
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about_header{
	position: relative;
	min-height: 320px;
	display: flex;
	align-items: center;
	background: url('../images/about_us.jpg') no-repeat center;
	background-size: cover;
	background-color: #555;
	background-blend-mode: overlay;
}
.about_header::before{
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
}
.about_header .wrapper{ position:relative; z-index:1; }
.about_header h1{
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 42px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.about_content{
	padding: 80px 0;
	background: #fff;
}
.about_content p{
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	padding-bottom: 18px;
	line-height: 1.7;
	color: #475569;
	text-align: justify;
}
.about_content .grid{
	margin-top: 40px;
	display: flex;
	gap: 30px;
}
.about_content .grid > div{
	flex: 1;
	background: #f8fafc;
	border-radius: 16px;
	padding: 40px 30px;
}
.about_content .grid div i{
	display: block;
	text-align: center;
	margin-bottom: 16px;
	font-size: 36px;
	color: #ed7543;
}
.about_content .grid div h1{
	padding-bottom: 16px;
	text-align: center;
	font-family: 'Oswald', sans-serif;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #1e293b;
}

/* About Program Card */
.about-program-card{
	display: flex;
	gap: 30px;
	align-items: flex-start;
	background: #f8fafc;
	border-radius: 16px;
	padding: 40px;
	margin-top: 40px;
}
.apc-icon{
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ed7543;
	border-radius: 14px;
}
.apc-icon svg{ width: 28px; height: 28px; color: #fff; }
.apc-content{ flex: 1; }
.apc-content h2{
	font-family: 'Oswald', sans-serif;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #1e293b;
	padding-bottom: 10px;
}
.apc-content p{
	font-size: 15px;
	line-height: 1.7;
	color: #475569;
	padding-bottom: 20px;
}
.apc-btn{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 24px;
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: #fff;
	background: #ed7543;
	border-radius: 8px;
	text-decoration: none;
	transition: background .15s;
}
.apc-btn svg{ width:16px; height:16px; }
.apc-btn:hover{ background: #d4653b; }

@media screen and (max-width: 600px){
	.about-program-card{ flex-direction:column; padding:28px; }
	.apc-content h2{ font-size:19px; }
}

/* Intro Quote */
.intro-quote{
	position: relative;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
	padding: 0;
}
.intro-quote span{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	background: #ed7543;
	border-radius: 50%;
}
.intro-quote span i{ color: #fff; font-size: 24px; }
.page-content .intro-quote p,
.intro-quote p{
	font-family: 'Raleway', sans-serif;
	font-size: 24px;
	line-height: 1.5;
	color: #334155;
	font-weight: 300;
}

/* Board Members */
.board_members{
	padding: 80px 0;
}
.board_members h1{
	padding-bottom: 50px;
	font-size: 28px;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #1e293b;
	text-align: center;
}
.board_members .grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.board_members .grid > div{
	background: #fff;
	border-radius: 14px;
	padding: 30px 20px;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
	transition: transform .2s, box-shadow .2s;
}
.board_members .grid > div:hover{
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.board_members .grid div h2{
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 15px;
	color: #1e293b;
	text-align: center;
}
.board_members .grid div h2 span{
	display: block;
	padding-top: 6px;
	letter-spacing: 2px;
	font-size: 11px;
	font-weight: 400;
	color: #ed7543;
}
.board_members .grid div p{
	width: 40px;
	margin: 10px auto;
	height: 1px;
	padding: 0;
	background: #ed7543;
	border: none;
}
.board_members .grid div h3{
	font-weight: 400;
	color: #64748b;
	text-align: center;
	font-size: 13px;
	line-height: 1.5;
}

/* Donors Table */
.gradient{
	position: relative;
	background: linear-gradient(135deg, #1e3a5f, #1e293b);
}
.gradient::before{
	content: '';
	position: absolute;
	inset: 0;
	background: url('../images/gradient6.svg') no-repeat center;
	background-size: cover;
	opacity: .15;
}
.gradient .wrapper{ position:relative; z-index:1; }
.gradient h1{ color: #fff; }
.gradient .board_members .grid div{
	background: rgba(255,255,255,.95) !important;
	color: #1e293b;
}
.gradient .grid div h2,
.gradient .grid div h3{ color: #1e293b; }
.gradient .grid div h2 span{ color: #ed7543; }
.gradient .grid div p{ background: rgba(237,117,67,.6); }
.gradient .grid div:hover{
	background: #fff !important;
}

.offwhite_back{
	background: #f8fafc !important;
}

/* Donors Table */
.donors-table-section{
	padding: 80px 0;
	background: #f8fafc;
}
.donors-table-section h1{
	font-family: 'Oswald', sans-serif;
	font-size: 28px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #1e293b;
	text-align: center;
	padding-bottom: 40px;
}
.donors-table-wrap{
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
	overflow: hidden;
}
.donors-search{
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 24px;
	border-bottom: 1px solid #f1f5f9;
}
.donors-search svg{
	width: 18px;
	height: 18px;
	color: #94a3b8;
	flex-shrink: 0;
}
.donors-search input{
	flex: 1;
	border: none;
	outline: none;
	font-size: 14px;
	color: #1e293b;
	background: transparent;
}
.donors-search input::placeholder{ color: #cbd5e1; }
.donors-table-scroll{
	overflow: auto;
	max-height: 420px;
}
.donors-table{
	width: 100%;
	border-collapse: collapse;
}
.donors-table thead th{
	text-align: left;
	padding: 12px 24px;
	font-size: 11px;
	font-weight: 600;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
}
.donors-table tbody td{
	padding: 14px 24px;
	font-size: 14px;
	color: #334155;
	border-bottom: 1px solid #f1f5f9;
}
.donors-table tbody tr:last-child td{ border-bottom: none; }
.donors-table tbody tr:hover{ background: #f8fafc; }
.donors-table .num{
	width: 50px;
	color: #94a3b8;
	font-size: 12px;
	font-weight: 500;
}
.country-badge{
	display: inline-block;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 500;
	color: #475569;
	background: #f1f5f9;
	border-radius: 20px;
}

@media screen and (max-width: 600px){
	.donors-table-section{ padding: 50px 0; }
	.donors-table-section h1{ font-size: 22px; }
	.donors-table thead th,
	.donors-table tbody td{ padding: 12px 16px; font-size: 13px; }
}

@media screen and (max-width: 1000px){
	.board_members .grid{ grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 600px){
	.about_header{ min-height:240px; }
	.about_header h1{ font-size:30px; }
	.about_content{ padding:50px 0; }
	.about_content .grid{ flex-direction:column; }
	.board_members{ padding:50px 0; }
	.board_members h1{ font-size:22px; padding-bottom:35px; }
	.board_members .grid{ grid-template-columns:1fr; gap:12px; }
}

/* Our programmes Starts */
.our_programmes_content .grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 50px;
}
.our_programmes_content .grid div{
	padding:20px;
	background-color: #fafafa;
}
/* Our programmes Ends */

/* Annual Reports Starts */
.annual_reports{
	background:url('../images/report.jpg') no-repeat center;
	background:url('../images/annual_reports.jpg') no-repeat center;
	background-position: 0 -220px;
	background-size: cover;
	background-color: #555;
	background-blend-mode: overlay;
}

.annual_reports_content .grid{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 30px;
}
.annual_reports_content .grid label{
	padding:10px 20px;
	background-color: #fafafa;
	cursor: pointer;
}
.annual_reports_content .grid div h1{
	position: relative;
	top:16px;
	float: left;
	color:#424242;
	font-family: 'Oswald';
	font-size: 20px;
}
.annual_reports_content .grid div button{
	float: right;
	color:#ed7543;
	cursor:pointer;
}

.new_annual_reports{
	background-color: white;
	padding-top:100px;
	padding-bottom:100px;
}
.new_annual_reports .grid{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 10px;
}
.new_annual_reports .grid div{
	position: relative;
	height: 250px;
	background-color: white;
	/* //filter: grayscale(1); */
	cursor: pointer;
	transition: 0.3s all;
}
.new_annual_reports .grid div:hover{
	transform: scale(1.03);
}
.new_annual_reports .grid div h1{
	position: absolute;
	width: 100%;
	height: 50px;
	background-color: rgba(0,0,0,0.6);
	background-color: rgba(255,255,255,0.9);
	color:white;
	color:#424242;
	text-align: center;
	line-height: 50px;
	font-family: 'Oswald';
	font-size: 18px;
	font-weight: normal;
}
/* Annual Reports Ends */

/* ================================================================
   SHARED PAGE SECTIONS (School, Kaushal, Samarth, etc.)
   ================================================================ */
.page-hero{
	position: relative;
	min-height: 320px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-color: #555;
	background-blend-mode: overlay;
}
.page-hero::before{
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
}
.page-hero .wrapper{ position:relative; z-index:1; }
.page-hero h1{
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 42px;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.page-hero p{
	color: rgba(255,255,255,.8);
	font-size: 16px;
	padding-top: 10px;
}

.page-content{
	padding: 70px 0;
	background: #fff;
}
.page-content p{
	font-size: 15px;
	line-height: 1.7;
	color: #475569;
	padding-bottom: 16px;
}
.page-content h2{
	font-family: 'Oswald', sans-serif;
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #1e293b;
	padding-bottom: 20px;
}

.page-section{
	padding: 70px 0;
	background: #fff;
}
.page-section.muted{ background: #f8fafc; }
.page-section h2{
	font-family: 'Oswald', sans-serif;
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #1e293b;
	text-align: center;
	padding-bottom: 40px;
	position: relative;
}
.page-section h2::after{
	content: '';
	display: block;
	width: 50px;
	height: 3px;
	background: #ed7543;
	margin: 14px auto 0;
	border-radius: 2px;
}
.page-section .wrapper > p{
	font-size: 15px;
	line-height: 1.7;
	color: #475569;
	max-width: 780px;
	margin: 0 auto;
}
.page-section .wrapper > p + p{ padding-top: 12px; }

/* Enhanced info cards */
.info-cards{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}
.info-card{
	background: #fff;
	border-radius: 14px;
	padding: 32px 24px;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
	text-align: center;
	transition: transform .2s, box-shadow .2s;
}
.info-card:hover{ transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.info-card .ic-icon{
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	border-radius: 14px;
	font-size: 22px;
}
.info-card .ic-icon.amber{ background: #fef3c7; color: #d97706; }
.info-card .ic-icon.indigo{ background: #eef2ff; color: #6366f1; }
.info-card .ic-icon.emerald{ background: #dcfce7; color: #16a34a; }
.info-card h3{
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: #1e293b;
	padding-bottom: 10px;
}
.info-card p{
	font-size: 14px;
	line-height: 1.6;
	color: #64748b;
}

/* Section Head with icon — deprecated, use .side-illustration */
.section-head{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding-bottom: 30px;
}
.section-head h2{ padding-bottom:0; font-size:24px; }
.section-head h2::after{ display:none; }
.sh-icon{
	width:48px; height:48px; display:flex; align-items:center; justify-content:center;
	border-radius:12px; font-size:20px; flex-shrink:0;
}
.sh-icon.amber{ background:#fef3c7; color:#d97706; }
.sh-icon.indigo{ background:#eef2ff; color:#6366f1; }
.sh-icon.emerald{ background:#dcfce7; color:#16a34a; }

/* Side Illustration */
.side-illustration{
	display: flex;
	align-items: center;
	gap: 50px;
}
.side-illustration.reverse{ flex-direction: row-reverse; }
.si-visual{
	flex: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 24px;
	font-size: 64px;
	min-height: 200px;
}
.si-visual i{ font-size: inherit; }
.si-visual img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 20px;
}
.si-visual.amber-bg{ background: #fef3c7; color: #d97706; }
.si-visual.indigo-bg{ background: #eef2ff; color: #6366f1; }
.si-visual.emerald-bg{ background: #dcfce7; color: #16a34a; }
.si-content{ flex: 7; min-width:0; }
.si-content h2{
	font-family: 'Oswald', sans-serif;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #1e293b;
	padding-bottom: 16px;
	text-align: left;
}
.si-content h2::after{ display: none; }
.si-content p{
	font-size: 15px;
	line-height: 1.7;
	color: #475569;
}
.si-content p + p{ padding-top: 12px; }

@media screen and (max-width: 700px){
	.side-illustration{ flex-direction: column !important; gap: 24px; text-align: center; }
	.si-visual{ width: 120px; height: 120px; font-size: 44px; border-radius: 20px; }
	.si-content h2{ text-align: center; }
}

/* Highlight box */
.highlight-box{
	background: linear-gradient(135deg, #eef2ff, #f8fafc);
	border-left: 4px solid #6366f1;
	border-radius: 0 12px 12px 0;
	padding: 24px 28px;
	margin: 30px 0;
}
.highlight-box p{
	font-size: 15px;
	line-height: 1.7;
	color: #475569;
}

@media screen and (max-width: 800px){
	.info-cards{ grid-template-columns:1fr; }
}

/* Holistic Table */
.holistic-table-wrap{
	max-width: 900px;
	margin: 0 auto;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
	overflow: hidden;
}
.holistic-table{
	width: 100%;
	border-collapse: collapse;
}
.holistic-table thead th{
	text-align: left;
	padding: 14px 24px;
	font-size: 11px;
	font-weight: 600;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
}
.holistic-table thead th:first-child{ width: 40%; }
.holistic-table tbody td{
	padding: 14px 24px;
	font-size: 14px;
	color: #334155;
	border-bottom: 1px solid #f1f5f9;
	line-height: 1.5;
}
.holistic-table tbody tr:last-child td{ border-bottom: none; }
.holistic-table tbody tr:hover{ background: #f8fafc; }
.holistic-table tbody td:first-child{ font-weight: 500; color: #1e293b; }

/* Chart Grid */
.chart-grid{
	display: flex;
	align-items: center;
	gap: 50px;
	max-width: 800px;
	margin: 0 auto;
}
.chart-box{ flex-shrink: 0; width: 400px; height: 400px; }
.chart-legend{ flex: 1; }
.chart-legend p{
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: #475569;
	padding-bottom: 10px;
}
.chart-legend p span{
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	border-radius: 4px;
}
.chart-legend .c1{ background: rgba(0,63,92,.7); }
.chart-legend .c2{ background: rgba(47,75,124,.7); }
.chart-legend .c3{ background: rgba(102,81,145,.7); }
.chart-legend .c4{ background: rgba(160,81,149,.7); }
.chart-legend .c5{ background: rgba(212,80,135,.7); }
.chart-legend .c6{ background: rgba(249,93,106,.7); }
.chart-legend .c7{ background: rgba(255,124,67,.7); }

@media screen and (max-width: 800px){
	.page-hero{ min-height:260px; }
	.page-hero h1{ font-size:30px; }
	.page-content, .page-section{ padding:50px 0; }
	.chart-grid{ flex-direction:column; gap:30px; }
	.chart-box{ width:300px; height:300px; }
}
@media screen and (max-width: 600px){
	.holistic-table thead th,
	.holistic-table tbody td{ padding:12px 16px; font-size:13px; }
}

/* Deprecated — use .page-section class instead */
.school_content table{
	margin-top: 20px;
}
.school_content table th{
	text-align: left;
	color: #ed7543;
	padding:10px;
}
.school_content table td{
	font-size: 13px;
	padding:10px;
}
.school_content table tr:nth-child(even){
	/* //background-color: #f1f1f1; */
}
.school_content table td{
	border-top: 1px solid #ccc;
}
.school_content .intro{
	position: relative;
	text-align: center;
	font-family: 'Satisfy', sans-serif;
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	color:#666;
	line-height: 27px;
	/* //padding-bottom: 50px; */
	padding: 50px;
	word-spacing: 5px;
	background: white;
	font-weight: 300;
}
.school_content .intro span{
	position: absolute;
	top:-50px;
	left:0;
	right:0;
	display: block;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin:auto auto;
	background-color: #ed7543;
}
.school_content .intro i{
	color:#fff;
	padding-top: 32px;
	font-size: 35px;
}
/* Samarth Ends */

/* ================================================================
   DONATE PAGE
   ================================================================ */
/* ── Success Banner ─────────────────────────────────────────── */
.donation-success-banner{
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);
	border: 1px solid #bbf7d0;
	border-radius: 20px;
	padding: 40px 36px;
	text-align: center;
	margin-bottom: 36px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(34,197,94,.12);
}
.donation-success-banner::before{
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 120px;
	height: 120px;
	background: rgba(34,197,94,.06);
	border-radius: 50%;
}
.donation-success-banner::after{
	content: '';
	position: absolute;
	bottom: -30px;
	left: -30px;
	width: 90px;
	height: 90px;
	background: rgba(34,197,94,.04);
	border-radius: 50%;
}
.ds-icon-wrap{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	background: linear-gradient(135deg, #22c55e, #16a34a);
	border-radius: 50%;
	margin-bottom: 20px;
	box-shadow: 0 8px 24px rgba(34,197,94,.3);
	animation: ds-pop .5s cubic-bezier(.175,.885,.32,1.275);
	position: relative;
	z-index: 1;
}
.ds-icon-wrap i{
	color: #fff;
	font-size: 34px;
}
@keyframes ds-pop{
	0%{ transform: scale(0); opacity: 0; }
	70%{ transform: scale(1.1); }
	100%{ transform: scale(1); opacity: 1; }
}
.ds-title{
	font-family: 'Oswald', sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: #166534;
	letter-spacing: .3px;
	margin-bottom: 8px;
	position: relative;
	z-index: 1;
}
.ds-subtitle{
	font-size: 15px;
	color: #374151;
	line-height: 1.6;
	max-width: 480px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.ds-subtitle strong{ color: #166534; }
@media screen and (max-width: 600px){
	.donation-success-banner{ padding: 28px 20px; }
	.ds-title{ font-size: 20px; }
	.ds-subtitle{ font-size: 14px; }
}

.donate-grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	max-width: 960px;
	margin: 0 auto;
}
.donate-card{
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 2px 12px rgba(0,0,0,.05), 0 0 0 1px rgba(0,0,0,.04);
	overflow: hidden;
	transition: box-shadow .2s;
}
.donate-card:hover{ box-shadow: 0 8px 32px rgba(0,0,0,.08), 0 0 0 1px rgba(0,0,0,.06); }
.dc-header{
	padding: 20px 28px;
	font-family: 'Oswald', sans-serif;
	font-size: 17px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: #1e293b;
	background: #fafbfc;
	border-bottom: 1px solid #eef1f5;
	display: flex;
	align-items: center;
	gap: 10px;
}
.dc-header i{ color: #ed7543; font-size: 18px; }

/* ── Donation Form ─────────────────────────────────────────── */
.donate-form{ padding: 28px; }
.df-row{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 20px;
}
.btn-donate{
	width: 100% !important;
	padding: 15px !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	border-radius: 14px !important;
	letter-spacing: .5px;
	box-shadow: 0 4px 16px rgba(237,117,67,.3);
	transition: all .2s;
}
.btn-donate:hover{
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(237,117,67,.4);
}

/* ── Amount Field ──────────────────────────────────────────── */
.cfield-amount{ margin-bottom: 16px; }
.amount-input-wrap{
	position: relative;
	display: flex;
	align-items: center;
}
.cfield-amount .amount-symbol{
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	display: inline;
	font-size: 36px;
	font-weight: 600;
	color: #b0b7c3;
	pointer-events: none;
	z-index: 1;
	line-height: 0;
	font-family: 'Montserrat', sans-serif;
	text-transform: none;
	letter-spacing: 0;
	padding: 0;
}
.cfield-amount .amount-input{
	width: 100%;
	padding: 20px 24px 20px 62px;
	font-size: 30px;
	font-weight: 800;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	color: #0f172a;
	background: #fff;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	outline: none;
	transition: all .2s;
	letter-spacing: 1px;
}
.cfield-amount .amount-input:focus{
	border-color: #22c55e;
	box-shadow: 0 0 0 4px rgba(34,197,94,.08);
}
.cfield-amount .amount-input::placeholder{
	color: #cbd5e1;
	font-weight: 800;
	font-size: 30px;
	letter-spacing: 1px;
	font-family: 'Montserrat', sans-serif;
}

/* ── Bank Details Card ─────────────────────────────────────── */
.bank-details{ padding: 20px 28px; }
.bd-item{
	padding: 10px 0;
}
.bd-item:not(:last-child){ border-bottom: 1px solid #f1f5f9; }
.bd-label{
	display: block;
	font-size: 10px;
	font-weight: 600;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	margin-bottom: 3px;
}
.bd-value{
	display: block;
	font-size: 13px;
	color: #1e293b;
	font-weight: 500;
	line-height: 1.5;
}
.bd-row{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 20px;
}
.bd-row .bd-item:not(:last-child){ border-bottom: none; }

.dc-note{
	padding: 16px 28px;
	background: #f8fafc;
	border-top: 1px solid #eef1f5;
	text-align: center;
	font-size: 13px;
	color: #64748b;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.dc-note i{ color: #ed7543; }

.card-types{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 28px 18px;
	font-size: 11px;
	color: #94a3b8;
	font-weight: 500;
}
.card-types span.visa,
.card-types span.mastercard,
.card-types span.amex,
.card-types span.discover{
	width: 40px;
	height: 26px;
	border-radius: 4px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: .5;
}
.card-types .visa{ background-image: url('../images/visa.png'); }
.card-types .mastercard{ background-image: url('../images/mastercard.png'); }
.card-types .amex{ background-image: url('../images/amex.png'); }
.card-types .discover{ background-image: url('../images/discover.png'); }

@media screen and (max-width: 768px){
	.donate-grid{ grid-template-columns: 1fr; }
	.df-row{ grid-template-columns: 1fr; }
	.bd-row{ grid-template-columns: 1fr; }
	.donate-form{ padding: 20px; }
	.bank-details{ padding: 16px 20px; }
	.cfield-amount .amount-input{ font-size: 32px; padding: 16px 18px 16px 48px; }
	.amount-symbol{ font-size: 24px; left: 16px; }
}

/* Hero Video CTA */
.hero-video{
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-top: 24px;
	cursor: pointer;
	padding: 10px 20px;
	background: rgba(255,255,255,.12);
	border-radius: 50px;
	transition: background .2s;
}
.hero-video:hover{ background: rgba(255,255,255,.2); }
.hv-play{
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
	flex-shrink: 0;
}
.hv-play img{ width: 20px; height: 20px; }
.hv-play i{ color: #e74159; font-size: 16px; margin-left: 2px; }

/* Hero actions row */
.hero-actions{
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.hero-actions .hero-video{ margin-top:0; }
@media screen and (max-width: 600px){
	.hero-actions{ justify-content: center; }
}
.hero-video span{
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Video CTA (old) — removed */

@media screen and (max-width: 1000px){
	.donate-grid{ grid-template-columns:1fr; }
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-grid{
	display: flex;
	gap: 50px;
	align-items: flex-start;
}
.contact-info{ flex: 1; display:flex; flex-direction:column; gap:12px; }
.contact-form-wrap{ flex-shrink: 0; width: 420px; }

.ci-card{
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 18px 20px;
	background: #f8fafc;
	border-radius: 12px;
	transition: background .15s;
}
.ci-card:hover{ background: #f1f5f9; }
.ci-icon{
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eef2ff;
	color: #6366f1;
	border-radius: 10px;
	font-size: 18px;
	flex-shrink: 0;
}
.ci-text h3{
	font-size: 13px;
	font-weight: 600;
	color: #1e293b;
	text-transform: uppercase;
	letter-spacing: .5px;
	padding-bottom: 2px;
}
.ci-text p{
	font-size: 14px;
	color: #64748b;
	line-height: 1.5;
}
.ci-text a{ color: #6366f1; text-decoration: none; }
.ci-text a:hover{ text-decoration: underline; }

.ci-donate{
	margin-top: 8px;
	padding: 20px 24px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.ci-donate p{ color: #475569; font-size:14px; margin:0; }
.ci-donate .btn1{
	background: linear-gradient(135deg, #e74159, #ed7543);
	color: #fff;
	border: none !important;
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;
	padding: 10px 22px;
	border-radius: 10px;
	text-decoration: none;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(231,65,89,.3);
	transition: opacity .15s, transform .15s, box-shadow .15s;
}
.ci-donate .btn1:hover{
	background: linear-gradient(135deg, #e74159, #ed7543) !important;
	opacity: .92;
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(231,65,89,.4);
}
.ci-donate .btn1:hover{ background: #f8fafc; }

.contact-form-card{
	background: #fff;
	border-radius: 16px;
	padding: 36px 32px;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.contact-form-card h2{
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #1e293b;
	padding-bottom: 24px;
}
.cfield{
	display: block;
	margin-bottom: 16px;
}
.cfield span{
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-bottom: 6px;
}
.cfield input,
.cfield textarea{
	display: block;
	width: 100%;
	padding: 11px 14px;
	border: 2px solid #e2e8f0;
	border-radius: 10px;
	font-size: 14px;
	color: #1e293b;
	resize: none;
	transition: border-color .15s;
	background: #f8fafc;
}
.cfield input:focus,
.cfield textarea:focus{
	border-color: #6366f1;
	outline: none;
	background: #fff;
}
.csubmit{
	width: 100%;
	padding: 13px !important;
	font-size: 14px !important;
	border-radius: 10px !important;
}

@media screen and (max-width: 900px){
	.contact-grid{ flex-direction:column; gap:30px; }
	.contact-form-wrap{ width:100%; }
}
@media screen and (max-width: 600px){
	.contact-form-card{ padding:24px 20px; }
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery{
	padding: 90px 0;
	background: #fff;
}
.gallery h1{
	font-family: 'Oswald', sans-serif;
	letter-spacing: 1px;
	text-align: center;
	text-transform: uppercase;
	font-size: 28px;
	color: #1e293b;
	padding-bottom: 40px;
}
.gallery_images{
	column-count: 4;
	column-gap: 8px;
}
.gallery_images a{
	display: block;
	margin-bottom: 8px;
	overflow: hidden;
	border-radius: 8px;
}
.gallery_images a img{
	width: 100%;
	display: block;
	transition: transform .4s;
}
.gallery_images a:hover img{
	transform: scale(1.04);
}
@media screen and (max-width: 900px){
	.gallery{ padding:60px 0; }
	.gallery_images{ column-count:3; }
}
@media screen and (max-width: 500px){
	.gallery_images{ column-count:2; column-gap:4px; }
	.gallery_images a{ margin-bottom:4px; border-radius:4px; }
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial{
	padding: 90px 0;
	background: #1e293b;
	color: #fff;
}
.testimonial h1{
	font-family: 'Oswald', sans-serif;
	letter-spacing: 1px;
	text-align: center;
	text-transform: uppercase;
	font-size: 28px;
	padding-bottom: 50px;
}
.testimonial .slick-slide{ padding: 0 15px; }
.testimonial li{ list-style:none; text-align:center; }
.testimonial li > div{
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255,255,255,.85);
	padding-bottom: 16px;
	max-width: 700px;
	margin: 0 auto;
}
.testimonial i{
	display: block;
	text-align: center;
	color: #ed7543;
	font-size: 24px;
	padding-bottom: 12px;
}
.testimonial p{
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
	color: rgba(255,255,255,.6);
	padding-top: 8px;
}
.slick-dots li button:before{ color:#fff; }
.slick-dots li.slick-active button:before{ color:#ed7543; }
@media screen and (max-width: 600px){
	.testimonial{ padding:60px 0; }
	.testimonial h1{ font-size:22px; padding-bottom:35px; }
	.testimonial li > div{ font-size:14px; }
}

/* ================================================================
   FOOTER (kept for backward compat) */

/* ================================================================
   FOOTER
   ================================================================ */
footer{
	padding: 70px 0 50px;
	background: #fff;
	border-top: 1px solid #e2e8f0;
}
footer .grid{
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 30px;
}
footer .grid h1{
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
	color: #1e293b;
	padding-bottom: 16px;
}
footer .grid a,
footer .grid p{
	display: block;
	text-decoration: none;
	color: #64748b;
	font-size: 13px;
	padding-bottom: 8px;
	transition: color .15s;
}
footer .grid a:hover{ color:#ed7543; }
@media screen and (max-width: 800px){
	footer{ padding:50px 0 30px; }
	footer .grid{ grid-template-columns:1fr 1fr; gap:24px; }
}
@media screen and (max-width: 450px){
	footer .grid{ grid-template-columns:1fr; text-align:center; }
}

/* Privacy Policy Starts */
.privacy_policy{
	background-color:#f1f1f1;
}
.privacy_policy h1{
	font-family: 'Oswald';
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 30px;
	margin:auto auto 40px;
	font-size: 25px;
	color:#424242;
}
.privacy_policy p{
	font-family: 'Raleway';
	line-height: 22px;
}
.privacy_policy p b{
	font-family: 'Raleway';
	display: block;
}
/* Privacy Policy Ends */

/* Video Popup */
.video_popup{
	position: fixed;
	top:-100%;
	left: 0;
	width: 100%;
	height:100%;
	background-color: rgba(0,0,0,0.8);
	transition: 0.3s top;
	z-index: 9999;
}
.video_popup .close_icon{
	position: absolute;
	right:20px;
	top:20px;
	color:white;
	font-size: 30px;
	cursor: pointer;
}
.video_popup iframe{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 800px;
	height: 400px;
}
@media screen and (max-width: 800px){
	.video_popup iframe{
		height: 300px;
	}
}
