/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Our Scrolling Ticker css
06. About Us css
07. Our Services css
08. Why Choose Us css
09. Our Benefits css
10. Our Programs css
11. Our Causes css
12. How We Work css
13. What We Do css
14. Our Testimonials css
15. Our Volunteers css
16. Our Blog css
17. Footer css
18. About Us Page css
19. Services Page css
20. Service Single css
21. Blog Archive css
22. Blog Single css
23. Programs Page css
24. Program Single css
25. Team Page css
26. Team Single css
27. Testimonials Page css
28. Image Gallery css
29. Video Gallery css
30. Contact Us Page css
31. 404 Error Page css
32. Responsive css
33.	Home - Version 2 css
34. Home - Version 3 css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/
/* Font declarations */
/* At the very top of custom.css, replace existing font imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oregano:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

:root {
	--primary-color: #353535;
	/* near-black */
	--secondary-color: #F7F5F0;
	/* off-white */
	--bg-color: #F7F5F0;
	/* off-white */
	--text-color: #1A1A1A;
	/* med-gray */
	--gradient: #F2D62E;
	/* golden */
	--white-color: #FFFFFF;
	/* pure white (keep as is) */
	--divider-color: #1A1A1A1A;
	/* near-black with 10% opacity */
	--dark-divider-color: #FFFFFF1A;
	/* keep as is for dark backgrounds */
	--error-color: #BD2E2E;
	--new-color: #adc825;
	/* CSS Gradient */
	/* --gradient: linear-gradient(135deg, #F2D62E, #ADC825); */
	--gradient: #Adc825;

	/* fonts */
	--default-font: "Nunito", sans-serif;
	--baloo-font: "Baloo 2", cursive, sans-serif;
	--oregano-font: "Cormorant Garamond", serif;

	--heading-custom: "Fredoka", sans-serif;
	--caption-custom: "Cormorant Garamond", serif;

	--brick-red: #BD2E2E;
	/* Red color for numbers */
	--pear-green: #ADC825;
	/* Green color for big stat */
	--golden: #F7D516;
	/* Golden/yellow color */
	--near-black: #1A1A1A;
	/* Dark color for text */

	/* --alternate-bg:rgb(255, 255, 191); */
	--alternate-bg: #fffadb;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

html,
body {
	width: 100%;
	overflow-x: clip;
}

body {
	font-family: var(--default-font);
	font-size: 18px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: white !important;
}

::-webkit-scrollbar-track {
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--gradient);
}

::-webkit-scrollbar-thumb {
	background: var(--gradient);
}

::selection {
	color: var(--primary-color);
	background-color: var(--gradient);
	filter: invert(1);
}

p {
	line-height: 1.5em;
	margin-bottom: 1.5em;
	font-size:18px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
	line-height: 1.2em;
	color: var(--primary-color);
	margin: 0;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}


.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--primary-color);
	background: var(--golden);
	border-radius: 5px;
	padding: 17px 54px 17px 24px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover {
	color: var(--white-color) !important;
	/* background-color: var(--gradient) !important; */
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	width: 20px;
	height: 20px;
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translateY(-50%) rotate(45deg);
	filter: brightness(0) invert(1);
}

.btn-default::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}

.btn-default.btn-highlighted:hover {
	color: var(--primary-color) !important;
}

.btn-default.btn-highlighted:hover:before {
	filter: none;
}

.btn-default.btn-highlighted::after {
	background: var(--secondary-color);
}

.readmore-btn {
	margin: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	color: var(--white-color);
	background: var(--error-color);
	padding: 12px 45px 12px 28px;
	border-radius: 40px;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.2;
	text-transform: capitalize;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	z-index: 1;
	cursor: pointer;
	border: none;
	width: auto;
	min-width: 160px;
}

/* Arrow using background image */
.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
	background: var(--gradient);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.readmore-btn:hover::before {
	transform: translateY(-50%) translateX(5px);
}

.readmore-btn:active {
	transform: translateY(0);
}

.cb-cursor:before {
	background: var(--gradient);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}


.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.dark-section {
	background-color: #03352C;
	background-image: url('../images/dark-section-bg-image.png');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.section-row {
	margin-bottom: 20px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-row .section-title.section-title-center {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.section-row .section-title.section-title-center p {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	margin-top: 30px;
	text-align: left;
}

.section-title-content p {
	margin-bottom: 20px;
}

.section-title-content p:last-child {
	margin-bottom: 0;
}

.section-title {
	margin-bottom: 40px;
}

.section-sub-title,
.section-title .section-sub-title {
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	text-transform: capitalize;
	line-height: 1em;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	padding: 8px 16px 8px 32px;
	margin-bottom: 15px;
}

.section-sub-title::before,
.section-title .section-sub-title::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--gradient);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.section-title h1 {
	font-size: 80px;
	font-weight: 600;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 44px;
	font-weight: 600;
	margin-bottom: 0;
	cursor: none;
	font-family: var(--heading-custom);
	color: darkred;
}

.media-title h2 {
	font-size: 50px;
	font-weight: 600;
	margin-bottom: 0;
	cursor: none;
	font-family: var(--heading-custom);
	/* color: #fff !important; */
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.dark-section .section-title .section-sub-title {
	border-color: var(--dark-divider-color);
}

.dark-section .section-title .section-sub-title,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
	color: var(--white-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 03. Header css      ****/
/************************************/

header.main-header {
	width: 90%;
	position: absolute;
	top: 14px;
	left: 0;
	right: 0;
	z-index: 100;
	margin-top: 20px;
	margin: auto;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(0);
	background: var(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

/* NEW: Flatten the bottom of the white navbar when the mobile menu is open */
.header-sticky:has(.slicknav_btn.slicknav_open) .navbar {
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
	transition: border-radius 0.3s ease;
}

.navbar {
	padding: 5px 0;
	align-items: center;
	background-color: white;
	border-radius: 80px;
	position: relative;
	z-index: 2;
}

header.main-header .navbar .container {
	max-width: 100% !important;
	padding-left: 30px;
	padding-right: 30px;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.navbar-brand img {
	width: 125px;
}

.navbar-brand-line {
	padding: 0;
	margin: 0;
}

.navbar-brand-line img {
	width: 150px;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 10px;
	position: relative;
}

.main-menu ul li a {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2em;
	padding: 12px 10px !important;
	color: rgb(14, 14, 14);
	border-radius: 0px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--error-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scale(1, 0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 10px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--bg-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 235px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--primary-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--error-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	position: relative;
	top: 0;
}

.slicknav_btn {
	background: var(--gradient);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--primary-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--gradient);
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
	margin-top: -2px;
	z-index: 1;
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--primary-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--white-color);
}

.slicknav_menu ul ul li a {
	padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--primary-color);
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--white-color);
}

/************************************************/
/**** Shrink Navbar Internals (992px - 1200px) ***/
/************************************************/
@media screen and (min-width: 992px) and (max-width: 1200px) {
	.navbar-brand img {
		width: 100px;
	}

	.navbar-brand-line img {
		width: 110px;
	}

	.main-menu ul li {
		margin: 0 4px;
	}

	.main-menu ul li a {
		font-size: 14px;
		padding: 10px 6px !important;
	}

	.main-menu .nav-menu-wrapper {
		margin: 0 5px;
	}

	/* UPDATED: Increased right padding to prevent arrow from overlapping text */
	.header-btn .head-btn {
		padding: 10px 38px 10px 18px !important;
		font-size: 14px;
	}
}

/************************************/
/*** 	    04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	background-image: url('../images/hero-bg-image.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 230px 0 100px;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(270deg, transparent 27.97%, rgba(3, 53, 44, 0.90) 68.07%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero .container {
	position: relative;
	z-index: 2;
}

.hero-sub-heading {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 100px;
	padding: 5px 20px 5px 5px;
	margin-bottom: 15px;
}

.satisfy-client-images {
	display: flex;
	align-items: center;
}

.satisfy-client-image {
	position: relative;
	display: inline-block;
	margin-left: -15px;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

.satisfy-client-image:first-child {
	margin: 0;
}

.satisfy-client-image figure {
	display: block;
	border-radius: 50%;
}

.satisfy-client-image figure img {
	width: 100%;
	max-width: 40px;
	border-radius: 50%;
}

.satisfy-client-image.add-more {
	width: 42px;
	height: 42px;
	background-color: var(--gradient);
	display: flex;
	justify-content: center;
	align-items: center;
}

.satisfy-client-image.add-more i {
	font-size: 18px;
	color: var(--white-color);
}

.satisfy-client-image.add-more h3 {
	color: var(--white-color);
	font-size: 16px;
	line-height: 1em;
}

.satisfy-client-content p {
	margin: 0;
}

.hero-sub-heading .satisfy-client-image {
	margin-left: -10px;
}

.hero-sub-heading .satisfy-client-image:first-child {
	margin-left: 0;
}

.hero-sub-heading .satisfy-client-image figure img {
	max-width: 28px;
}

.hero-sub-heading .satisfy-client-content p {
	font-size: 14px;
	color: var(--white-color);
}

.hero .section-title {
	margin-bottom: 0;
}

.hero-body {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	margin-top: 180px;
}

.hero-body-content {
	max-width: 560px;
}

.hero-content p {
	font-size: 18px;
	color: var(--white-color);
	margin: 0;
}

.hero-body-btn {
	margin-top: 30px;
}

.hero-counter-box {
	max-width: 335px;
	border: 1px solid var(--dark-divider-color);
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 40px;
}

.hero-counter-box h2 {
	font-size: 40px;
	font-weight: 600;
	line-height: 1em;
	color: var(--white-color);
}

.hero-counter-box h2 sup {
	color: var(--gradient);
}

.hero-counter-box h3 {
	font-size: 20px;
	color: var(--white-color);
	margin: 15px 0 0;
}

.hero-counter-box p {
	color: var(--white-color);
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 20px;
	margin: 40px 0 0;
}

/************************************/
/*** 05. Our Scrolling Ticker css ***/
/************************************/

.our-scrolling-ticker {
	position: relative;
	background: var(--gradient);
	padding: 20px 0;
	z-index: 1;
}

.scrolling-ticker-box {
	--gap: 40px;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 80s linear infinite;
}

.scrolling-content span {
	display: inline-flex;
	align-items: center;
	gap: var(--gap);
	font-size: 28px;
	font-weight: 600;
	line-height: 1.43em;
	color: var(--primary-color);
	text-transform: capitalize;
}

.scrolling-content span img {
	width: 100%;
	max-width: 26px;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}


/************************************/
/***      07. Our Services css    ***/
/************************************/

.our-service {
	background-color: var(--secondary-color);
	padding: 120px 0;
}

.service-item {
	position: relative;
	border-radius: 10px;
	min-height: 450px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.service-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--bg-color);
	border-radius: 10px;
	width: 100%;
	height: 100%;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.service-item.active::before,
.service-item:hover::before {
	transform: translate(100%, -100%);
}

.service-item-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-image,
.service-item:hover .service-item-image {
	opacity: 1;
}

.service-item-image::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	opacity: 50%;
}

.service-item-image figure {
	display: block;
	height: 100%;
}

.service-item-image figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-item-body {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	z-index: 2;
}

.service-item-body-content .icon-box {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--gradient);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}

.service-item-body-content .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.service-item-content h2 {
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-content h2,
.service-item:hover .service-item-content h2 {
	color: var(--white-color);
}

.service-item-content h2 a {
	color: inherit;
}

.service-item-content p {
	border-top: 1px solid var(--divider-color);
	padding-top: 15px;
	margin: 15px 0 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-content p,
.service-item:hover .service-item-content p {
	border-color: var(--dark-divider-color);
	color: var(--white-color);
}

.service-item-btn {
	padding-top: 20px;
	border-top: 1px solid var(--divider-color);
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-btn,
.service-item:hover .service-item-btn {
	border-color: var(--dark-divider-color);
}

.service-item.active .service-item-btn .readmore-btn::before,
.service-item:hover .service-item-btn .readmore-btn::before {
	filter: brightness(0) invert(1);
}

.service-item-btn a {
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-btn a,
.service-item:hover .service-item-btn a {
	color: var(--white-color);
}

.section-footer-text {
	/* margin-top: 30px; */
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 30px;
	text-align: center;
}

.section-footer-text p {
	color: var(--primary-color);
	margin-bottom: 0;
}

.section-footer-text p span {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1em;
	background: var(--gradient);
	color: var(--primary-color);
	border-radius: 20px;
	padding: 5px 10px;
	margin-right: 10px;
}

.section-footer-text p a {
	font-weight: 600;
	color: var(--error-color);
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--primary-color);
}

.section-footer-text ul {
	width: 100%;
	padding: 0;
	margin: 20px 0 0;
	list-style: none;
}

.section-footer-text ul li {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	color: var(--primary-color);
	margin-right: 10px;
}

.section-footer-text ul li:last-child {
	margin: 0;
}

.section-footer-text ul li i {
	color: var(--error-color);
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li {
	color: var(--white-color);
}

.dark-section .section-footer-text p a {
	color: var(--error-color);
}

.dark-section .section-footer-text p a:hover {
	color: var(--white-color);
}

.section-footer-text.section-footer-contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 20px;
}

.section-footer-text.section-footer-contact span {
	width: 30px;
	height: 30px;
	padding: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}

.section-footer-text.section-footer-contact span img {
	width: 100%;
	max-width: 16px;
}

.section-footer-text.section-satisfy-img {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image {
	border-color: var(--bg-color);
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
	max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
	width: 32px;
	height: 32px;
	margin-left: -10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
	max-width: 16px;
}

.section-footer-text.section-satisfy-img ul {
	margin: 5px 0 0;
}

.dark-section .section-footer-text.section-satisfy-img .satisfy-client-image {
	border-color: var(--primary-color);
}

/************************************/
/***     08. Why Choose Us css    ***/
/************************************/

.why-choose-us {
	padding: 120px 0;
}

.why-choose-item-list {
	background: var(--secondary-color);
	border-radius: 10px;
	padding: 30px;
}

.why-choose-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.why-choose-item:last-child {
	margin-bottom: 0;
}

.why-choose-item .icon-box {
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--gradient);
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.why-choose-item .icon-box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 5px;
	width: 100%;
	height: 100%;
	transform: scale(0) rotate(180deg);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.why-choose-item:hover .icon-box::before {
	transform: scale(1) rotate(0deg);
}

.why-choose-item .icon-box img {
	width: 100%;
	max-width: 20px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.why-choose-item-content {
	width: calc(100% - 55px);
}

.why-choose-item-content p {
	margin: 0;
}

.why-choose-btn {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.why-choose-us-image-box {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-left: 15px;
}

.why-choose-image-box-1 {
	position: relative;
	width: 51%;
	z-index: 2;
}

.why-choose-image-box-2 {
	position: relative;
	width: 49%;
	padding-right: 70px;
	margin-bottom: 60px;
}

.why-choose-image figure {
	display: block;
	border-radius: 10px;
}

.why-choose-image figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.why-choose-image-box-1 .why-choose-image figure {
	border: 10px solid var(--bg-color);
	border-radius: 20px;
}

.why-choose-image-box-1 .why-choose-image figure img {
	aspect-ratio: 1 / 0.99;
}

.why-choose-image-box-2 .why-choose-image figure {
	margin-left: -220px;
}

.why-choose-image-box-2 .why-choose-image figure img {
	aspect-ratio: 1 / 1.332;
}

.why-choose-contact-box {
	position: absolute;
	min-width: 245px;
	top: 60px;
	right: 0;
	background: var(--secondary-color);
	box-shadow: 0 0 20px 0 rgba(41, 37, 36, 0.06);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	padding: 20px;
	animation: contactboxmove 3s infinite linear alternate;
	z-index: 1;
}

@keyframes contactboxmove {
	50% {
		transform: translateX(-30px);
	}
}

.why-choose-contact-box .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.why-choose-contact-box .icon-box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.why-choose-contact-box:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-contact-box .icon-box img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.why-choose-contact-box:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.why-choose-contact-content {
	width: calc(100% - 65px);
}

.why-choose-contact-content h3 {
	font-size: 20px;
}

.why-choose-contact-content p {
	margin: 5px 0 0;
}

.why-choose-contact-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.why-choose-contact-content p a:hover {
	color: var(--error-color);
}

/************************************/
/***      09. Our Benefits css    ***/
/************************************/

.our-benefits {
	padding: 120px 0;
}

.our-benefit-box {
	background: var(--dark-divider-color);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.our-benefit-counter-content h2 {
	font-size: 48px;
	color: var(--white-color);
}

.our-benefit-counter-content h2 sup {
	color: var(--gradient);
}

.our-benefit-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
	overflow: hidden;
}

.our-benefit-item .icon-box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.our-benefit-box:hover .our-benefit-item .icon-box::before {
	transform: scale(1);
}

.our-benefit-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.our-benefit-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.our-benefit-item-content p {
	color: var(--white-color);
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 20px;
	margin: 20px 0 0;
}

.our-benefit-item-content ul {
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
}

.our-benefit-item-content ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
	padding-left: 25px;
	margin-bottom: 15px;
}

.our-benefit-item-content ul li:last-child {
	margin-bottom: 0;
}

.our-benefit-item-content ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--gradient);
	top: 0;
	left: 0;
}

.benefit-image-box {
	border-radius: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.benefit-image-box figure {
	display: block;
	height: 100%;
}

.benefit-image-box figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.0562;
	object-fit: cover;
}

.our-benefit-image figure {
	display: block;
	width: 200px;
	height: 100px;
	mask-image: url('../images/our-benefits-item-image-shape.svg');
	background-image: url('../images/our-benefits-item-image-shape.svg');
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: cover;
}

.our-benefit-image figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/************************************/
/***      11. Our Causes css      ***/
/************************************/

.our-causes {
	background: var(--white-color);
}

.our-causes .container-fluid {
	padding: 0;
}

.our-causes-image {
	height: 100%;
}

.our-causes-image figure {
	display: block;
	height: 100%;
}

.our-causes-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.04;
	object-fit: cover;
}

.our-causes-content {
	height: 100%;
	align-content: center;
	padding: 5.208vw 4.167vw;
}

.causes-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.causes-item {
	width: calc(50% - 15px);
	background: var(--bg-color);
	border-radius: 10px;
	padding: 30px;
	transition: all 0.4s ease-in-out;
}

.causes-item:hover {
	transform: translateY(-5px);
}

.causes-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
	overflow: hidden;
}

.causes-item .icon-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.causes-item:hover .icon-box::before {
	transform: scale(1);
}

.causes-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.causes-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.causes-item-content h3 {
	font-size: 20px;
}

.causes-item-content p {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin: 20px 0 0;
}

/************************************/
/***      12. How We Work css     ***/
/************************************/


/************************************/
/***      13. What We Do css      ***/
/************************************/

.what-we-do {
	padding: 120px 0;
}

.what-we-do-image-box {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
}

.what-we-image-box-1 {
	position: relative;
	width: 46%;
	margin-bottom: 45px;
}

.what-we-image-box-2 {
	position: relative;
	width: 54%;
	z-index: 1;
}

.what-we-image figure {
	display: block;
	border-radius: 10px;
}

.what-we-image figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.what-we-image-box-1 .what-we-image figure {
	margin-right: -155px;
}

.what-we-image-box-1 .what-we-image figure img {
	aspect-ratio: 1 / 1.2;
}

.what-we-image-box-2 .what-we-image figure {
	border: 10px solid var(--primary-color);
	border-radius: 20px;
}

.what-we-image-box-2 .what-we-image figure img {
	aspect-ratio: 1 / 1.3815;
}

.what-we-counter-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	background: var(--secondary-color);
	box-shadow: 0 0 20px 0 rgba(41, 37, 36, 0.06);
	border-radius: 10px;
	margin: 20px 10px 0 0;
	padding: 20px;
}

.what-we-counter-box .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.what-we-counter-box .icon-box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.what-we-counter-box:hover .icon-box::before {
	transform: scale(1);
}

.what-we-counter-box .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.what-we-counter-box:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.what-we-counter-content {
	width: calc(100% - 65px);
}

.what-we-counter-content h3 {
	font-size: 20px;
}

.what-we-counter-content p {
	margin: 5px 0 0;
}

.what-we-client-box {
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border: 20px solid var(--primary-color);
	border-radius: 0 0 20px 0;
	border-top: none;
	border-left: none;
	z-index: 1;
}

.what-we-client-box::before,
.what-we-client-box::after {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	mask: url('../images/image-corner-shape.svg');
	-webkit-mask: url('../images/image-corner-shape.svg');
	background-color: var(--primary-color);
	mask-repeat: no-repeat;
	mask-size: cover;
}

.what-we-client-box::before {
	top: 0;
	right: -30px;
}

.what-we-client-box::after {
	bottom: -30px;
	left: 0;
}

.what-we-client-box-body {
	max-width: 170px;
	background: var(--secondary-color);
	border-radius: 10px;
	padding: 20px;
}

.what-we-client-content h3 {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 40px;
}

.what-we-client-content h3 span {
	font-weight: 600;
}

.what-we-do-content {
	margin-left: 15px;
}

.what-we-nav {
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
	text-align: center;
}

.what-we-nav .nav-tabs {
	width: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 15px 30px;
	border: none;
	list-style: none;
	margin: 0;
}

.what-we-nav ul li {
	width: calc(33.33% - 20px);
}

.what-we-nav ul li .nav-link {
	width: 100%;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	border-radius: 100px;
	border: none;
	padding: 18px 20px;
	transition: all 0.4s ease-in-out;
}

.what-we-nav ul li .nav-link.active,
.what-we-nav ul li .nav-link:hover {
	background-color: var(--gradient);
	color: var(--primary-color);
}

.what-we-item {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 30px;
}

.what-we-item:last-child {
	margin-bottom: 0;
}

.what-we-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.what-we-item .icon-box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.what-we-item:hover .icon-box::before {
	transform: scale(1);
}

.what-we-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.what-we-item-content {
	width: calc(100% - 65px);
}

.what-we-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.what-we-item-content p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.what-we-content-btn {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.what-we-do .section-footer-text {
	margin-top: 60px;
}

/************************************/
/***   14. Our Testimonials css   ***/
/************************************/

.our-testimonials {
	background-image: url('../images/section-bg-image.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 120px 0;
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-item {
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 10px;
	min-height: 500px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	padding: 40px;
	overflow: hidden;
}

.testimonial-slider .swiper-wrapper .testimonial-item {
	transform: scale(0.95);
	transition: all 0.6s ease-in-out;
}

.testimonial-slider .swiper-wrapper .swiper-slide.swiper-slide-next .testimonial-item {
	transform: scale(1);
}

.testimonial-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	border-radius: 0px;
	background: var(--gradient);
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out;
	height: 100%;
	z-index: 0;
}

.testimonial-slider .swiper-slide.swiper-slide-next .testimonial-item::before {
	top: 0;
	border-radius: 0;
}

.testimonial-item-header {
	position: relative;
	z-index: 1;
}

.testimonial-item-rating i {
	color: var(--gradient);
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .swiper-wrapper .swiper-slide.swiper-slide-next .testimonial-item-rating i {
	color: var(--primary-color);
}

.testimonial-item-content {
	margin-top: 30px;
}

.testimonial-item-content p {
	font-size: 20px;
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 0;
}

.testimonial-item-body {
	position: relative;
	border-top: 1px solid var(--divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 30px;
	z-index: 1;
}

.testimonial-author-content h2 {
	font-size: 20px;
}

.testimonial-author-content p {
	margin: 5px 0 0;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .swiper-wrapper .swiper-slide.swiper-slide-next .testimonial-author-content p {
	color: var(--primary-color);
}

.testimonial-item-image-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.testimonial-author-image {
	position: relative;
	z-index: 1;
}

.testimonial-author-image figure {
	display: block;
	border-radius: 50%;
}

.testimonial-author-image figure img {
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.testimonial-item-quote {
	width: 50px;
	height: 50px;
	background-color: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: -12px;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .swiper-wrapper .swiper-slide.swiper-slide-next .testimonial-item-quote {
	background-color: var(--primary-color);
}

.testimonial-item-quote img {
	width: 100%;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .swiper-wrapper .swiper-slide.swiper-slide-next .testimonial-item-quote img {
	filter: brightness(0) invert(1);
}

.our-testimonials .section-footer-text {
	margin-top: 60px;
}



/************************************/
/***    15. Our Volunteers css    ***/
/************************************/

.our-volunteer {
	background-color: var(--secondary-color);
}

.our-volunteer .container-fluid {
	padding: 0;
}

.our-volunteer-image-box {
	position: relative;
	height: 100%;
	align-content: center;
	background-image: url('../images/our-volunteer-bg-image.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 5.208vw;
}

.our-volunteer-image-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 40%;
	z-index: 1;
}

.volunteer-donate-box {
	position: relative;
	border: 1px solid var(--dark-divider-color);
	background-color: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 2.604vw;
	z-index: 1;
}

.volunteer-donate-box .section-title h2,
.volunteer-donate-box .section-title p {
	color: var(--white-color);
}

.donate-form .form-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.donate-form .form-group .form-control {
	width: auto;
	flex-grow: 1;
	font-size: 14px;
	font-weight: 400;
	line-height: 1em;
	color: var(--white-color);
	background-color: var(--dark-divider-color);
	border-radius: 10px;
	border: none;
	outline: none;
	box-shadow: none;
	padding: 14px 15px;
}

.donate-form .form-group .form-control::placeholder {
	color: var(--white-color);
	opacity: 70%;
}

.volunteer-donate-value-body {
	margin-top: 30px;
}

.skills-progress-bar {
	margin-bottom: 30px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skillbar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.skill-data .skill-title,
.skill-data .skill-no {
	font-size: 16px;
	color: var(--white-color);
}

.skill-progress {
	position: relative;
	background: var(--dark-divider-color);
	border-radius: 10px;
	width: 100%;
	height: 10px;
}

.skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--gradient);
	border-radius: 10px;
}

.volunteer-donate-value-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.volunteer-donate-value-item p {
	color: var(--white-color);
	margin-bottom: 5px;
}

.volunteer-donate-value-item h3 {
	font-size: 20px;
	color: var(--white-color);
}

.volunteer-donate-box-notice {
	border-top: 1px solid var(--dark-divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding-top: 25px;
	margin-top: 25px;
}

.volunteer-donate-box-notice .icon-box img {
	width: 100%;
	max-width: 20px;
}

.volunteer-donate-box-notice-content {
	width: calc(100% - 30px);
}

.volunteer-donate-box-notice-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.our-volunteer-content {
	height: 100%;
	align-content: center;
	padding: 5.208vw;
}

.our-volunteer-list {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.our-volunteer-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.our-volunteer-list ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.our-volunteer-list ul li:last-child {
	margin-bottom: 0;
}

.our-volunteer-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--gradient);
	top: 0;
	left: 0;
}

.our-volunteer-content-btn {
	margin-top: 40px;
}

/************************************/
/***       16. Our Blog css       ***/
/************************************/

.our-blog {
	padding: 120px 0 90px;
}

.post-item {
	position: relative;
	border-radius: 10px;
	height: calc(100% - 30px);
	min-height: 500px;
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.post-item-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.post-item-image a {
	display: block;
	height: 100%;
	cursor: none;
}

.post-item-image a figure {
	position: relative;
	display: block;
	height: 100%;
}

.post-item-image a figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* Near-black version */
	background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.99) 100%);
	z-index: 1;
}

.post-item-image a figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.post-item:hover .post-item-image a figure img {
	transform: scale(1.06);
}

.post-item-body {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.post-item-tag {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	z-index: 1;
}

.post-item-tag a {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3em;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	background-color: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 100px;
	padding: 7px 16px;
	transition: all 0.4s ease-in-out;
}

.post-item-tag a:hover {
	background-color: var(--gradient);
	color: var(--primary-color);
}

.post-item-body-content {
	position: relative;
	z-index: 1;
}

.post-item-content h2 {
	font-size: 20px;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-item-content h2 a {
	color: inherit;
}

.post-item-btn {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

.post-item-btn .readmore-btn {
	color: var(--white-color);
}

.post-item-btn .readmore-btn::before {
	filter: brightness(0) invert(1);
}

/************************************/
/***        17. Footer css        ***/
/************************************/

.main-footer {
	padding: 120px 0 0;
}

.about-footer {
	max-width: 380px;
}

.footer-logo img {
	width: 100%;
	/* max-width: 137px; */

}

.about-footer-content {
	margin-top: 20px;
}

.about-footer-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-links-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-left: 2.604vw;
}

.footer-links {
	max-width: 31%;
}

.footer-links h2 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links ul {
	list-style: disc;
	margin: 0;
	padding: 0 0 0 20px;
}

.footer-links ul li {
	line-height: 1.5em;
	color: var(--white-color);
	margin-bottom: 15px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-links ul li a:hover {
	color: var(--gradient);
}

.footer-links ul li::marker {
	color: var(--gradient);
}

.footer-location-info {
	max-width: 34%;
}

.footer-location-info ul {
	list-style: none;
	padding: 0;
}

.footer-location-info ul li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-location-info ul li img {
	width: 100%;
	max-width: 24px;
}

.footer-social-links {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.footer-social-links h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-social-links ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 15px;
}

.footer-social-links ul li {
	line-height: 0;
	margin-bottom: 0;
}

.footer-social-links ul li a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
	background-color: var(--gradient);
	border-color: var(--gradient);
}

.footer-social-links ul li a i {
	font-size: 18px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover i {
	color: var(--primary-color);
}

.footer-body {
	border-top: 1px solid var(--dark-divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding-top: 40px;
	margin-top: 60px;
}

.footer-newsletter-form .form-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	background: var(--dark-divider-color);
	border-radius: 10px;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	min-width: 410px;
	padding: 5px;
}

.footer-newsletter-form .form-group .form-control {
	width: auto;
	flex-grow: 1;
	font-size: 14px;
	font-weight: 400;
	line-height: 1em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 10px 15px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--white-color);
	opacity: 70%;
}

.footer-contact-items-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 4.167vw;
	max-width: 580px;
}

.footer-contact-item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.footer-contact-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -2.083vw;
	width: 1px;
	height: 100%;
	background: var(--dark-divider-color);
}

.footer-contact-item:last-child:before {
	display: none;
}

.footer-contact-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-contact-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.footer-contact-item:hover .icon-box::before {
	transform: scale(1);
}

.footer-contact-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.footer-contact-item-content {
	width: calc(100% - 65px);
}

.footer-contact-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.footer-contact-item-content p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.footer-contact-item-content p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-item-content p a:hover {
	color: var(--error-color);
}

.footer-copyright-text {
	border-top: 1px solid var(--dark-divider-color);
	text-align: center;
	padding: 60px 0;
	margin-top: 40px;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin-bottom: 0;
}

/************************************/
/***     18. About Us Page css    ***/
/************************************/

.page-header {
	position: relative;
	background-image: url('../images/page-header-bg.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 260px 0 150px;
	overflow: hidden;
}

.page-header:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(270deg, transparent 17.97%, rgba(3, 53, 44, 0.90) 68.07%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.page-header-box {
	position: relative;
	text-align: center;
	z-index: 2;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 80px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol {
	justify-content: center;
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.our-approach {
	background-color: var(--secondary-color);
	padding: 120px 0;
}

.approach-item {
	position: relative;
	background-color: var(--bg-color);
	border-radius: 10px;
	min-height: 460px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.approach-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background-color: var(--primary-color);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.approach-item:hover::before {
	height: 100%;
}

.approach-item.box-1::after,
.approach-item.box-2::after,
.approach-item.box-3::after {
	content: '';
	position: absolute;
	top: -20px;
	right: -20px;
	width: 140px;
	height: 140px;
	mask-size: cover;
	background-color: var(--divider-color);
	animation: infiniterotate 20s infinite linear;
	transition: all 0.6s ease-in-out;
	z-index: 1;
}

.approach-item.box-1::after {
	mask-image: url('../images/our-approach-item-bg-shape-1.svg');
}

.approach-item.box-2::after {
	mask-image: url('../images/our-approach-item-bg-shape-2.svg');
}

.approach-item.box-3::after {
	mask-image: url('../images/our-approach-item-bg-shape-3.svg');
}

.approach-item.box-1:hover:after,
.approach-item.box-2:hover:after,
.approach-item.box-3:hover:after {
	background-color: var(--dark-divider-color);
	opacity: 100%;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.approach-item-header .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	overflow: hidden;
}

.approach-item-header,
.approach-item-content {
	position: relative;
	z-index: 1;
}

.approach-item-title h3 {
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.approach-item-content p {
	transition: all 0.4s ease-in-out;
	margin: 0;
}

.approach-item-content ul {
	list-style: none;
	border-top: 1px solid var(--divider-color);
	padding: 25px 0 0;
	margin: 25px 0 0;
	transition: all 0.4s ease-in-out;
}

.approach-item-content ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.approach-item-content ul li:last-child {
	margin-bottom: 0;
}

.approach-item-content ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--gradient);
	top: 0px;
	left: 0px;
}

.approach-item:hover .approach-item-title h3,
.approach-item:hover .approach-item-content p,
.approach-item:hover .approach-item-content ul li {
	color: var(--white-color);
}

.approach-item:hover .approach-item-content ul {
	border-color: var(--dark-divider-color);
}

.our-impact {
	padding: 120px 0;
}

.our-impact-images-box {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
}

.our-impact-images-box figure {
	display: block;
	height: 100%;
	border-radius: 10px;
}

.our-impact-images-box figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.our-impact-image-1 {
	width: 71%;
	height: 100%;
	padding-bottom: 115px;
}

.our-impact-image-1 figure img {
	aspect-ratio: 1 / 1.354;
	height: 100%;
}

.our-impact-image-2 {
	position: relative;
	width: 29%;
	z-index: 1;
}

.our-impact-image-2 figure {
	border: 6px solid var(--white-color);
	border-right: none;
	border-bottom: none;
	margin-left: -194px;
}

.our-impact-image-2 figure img {
	aspect-ratio: 1 / 1.317;
}

.our-impact-content {
	margin-left: 15px;
}

.our-impact-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.our-impact-item {
	position: relative;
	width: calc(50% - 15px);
	min-height: 310px;
	background-color: var(--white-color);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 40px;
	overflow: hidden;
}

.our-impact-item::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: var(--gradient);
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.our-impact-item:hover:before {
	height: 100%;
}

.our-impact-item-header {
	position: relative;
	z-index: 1;
}

.our-impact-item-header h2 {
	font-size: 48px;
}

.our-impact-item-header h2 sup {
	color: var(--gradient);
	transition: all 0.4s ease-in-out;
}

.our-impact-item:hover .our-impact-item-header h2 sup {
	color: var(--white-color);
}

.our-impact-item-body {
	position: relative;
	z-index: 1;
}

.our-impact-item-body h3 {
	font-size: 20px;
}

.our-impact-item-body p {
	border-top: 1px solid var(--divider-color);
	padding-top: 15px;
	margin: 15px 0px 0px;
	transition: all 0.4s ease-in-out;
}

.our-impact-item:hover .our-impact-item-body p {
	color: var(--primary-color);
}

.our-impact-content-btn {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.our-team {
	padding: 120px 0;
}

.team-item {
	position: relative;
	border-radius: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.team-item-image figure,
.team-item-image a {
	position: relative;
	display: block;
	overflow: hidden;
	cursor: none;
}

.team-item-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(180deg, transparent 44%, rgba(3, 53, 44, 0.90) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.team-item-image img {
	width: 100%;
	aspect-ratio: 1 / 1.192;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.team-item:hover .team-item-image img {
	transform: scale(1.06);
}

.team-social-list {
	position: absolute;
	top: 30px;
	right: 30px;
	transform: scaleX(0.6);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 2;
}

.team-item:hover .team-social-list {
	opacity: 1;
	transform: scaleX(1);
	visibility: visible;
}

.team-social-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-social-list ul li {
	margin-bottom: 15px;
}

.team-social-list ul li:last-child {
	margin-bottom: 0;
}

.team-social-list ul li a {
	height: 36px;
	width: 36px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	color: var(--white-color);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.team-social-list ul li a:hover {
	background-color: var(--gradient);
	border-color: var(--gradient);
	color: var(--primary-color);
}

.team-social-list ul li a i {
	font-size: 18px;
	color: inherit;
}

.team-item-content {
	position: absolute;
	left: 40px;
	bottom: 40px;
	z-index: 1;
}

.team-item-content ul {
	list-style: disc;
	padding: 0 0 0 20px;
	margin: 0 0 10px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 30px;
}

.team-item-content ul li {
	line-height: 1.5em;
	color: var(--white-color);
}

.team-item-content ul li::marker {
	color: var(--gradient);
}

.team-item-content h2 {
	font-size: 20px;
	color: var(--white-color);
}

.team-item-content h2 a {
	color: inherit;
}

.our-faqs {
	background-color: var(--white-color);
	padding: 120px 0;
}

.accordian-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.accordian-list .faq-accordion {
	width: calc(50% - 15px);
}

.faq-accordion .accordion-item {
	background: var(--bg-color);
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 0;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
	background-color: var(--gradient);
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.333em;
	background-color: transparent;
	color: var(--primary-color);
	padding: 21px 70px 21px 24px;
	transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f055';
	font-family: 'Font Awesome 7 Free';
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 34px;
	font-weight: 900;
	color: var(--gradient);
	transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	content: '\f056';
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body {
	border-top: 1px solid var(--divider-color);
	padding: 20px 24px;
}

.faq-accordion .accordion-item .accordion-body p {
	color: var(--primary-color);
	margin: 0;
}

/************************************/
/***     19. Services Page css    ***/
/************************************/

.page-services {
	padding: 120px 0 90px;
}

.page-services .service-item::before {
	background-color: var(--secondary-color);
}

/************************************/
/***     20. Service Single css   ***/
/************************************/

.page-service-single {
	padding: 120px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 15px;
}

.page-category-list {
	background: var(--secondary-color);
	border-radius: 10px;
	margin-bottom: 40px;
	overflow: hidden;
}

.page-category-list .page-category-list-title {
	font-size: 20px;
	color: var(--primary-color);
	background-color: var(--gradient);
	line-height: normal;
	padding: 17px 40px;
}

.page-category-list ul {
	list-style: none;
	padding: 40px;
	margin: 0;
}

.page-category-list ul li {
	font-weight: 500;
	line-height: 1.5em;
	color: var(--primary-color);
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.page-category-list ul li:last-child {
	border-bottom: none;
	padding: 0;
	margin: 0;
}

.page-category-list ul li a {
	position: relative;
	display: block;
	color: inherit;
	padding-right: 25px;
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: url('../images/arrow-primary.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 18px;
	height: 18px;
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.sidebar-cta-box {
	position: relative;
	min-height: 310px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	padding: 40px;
	overflow: hidden;
}

.sidebar-cta-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.sidebar-cta-image figure {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.sidebar-cta-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 60%;
	z-index: 1;
}

.sidebar-cta-image figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.sidebar-cta-content {
	position: relative;
	z-index: 2;
}

.sidebar-cta-content h2 {
	font-size: 20px;
	color: var(--white-color);
}

.sidebar-cta-content p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.sidebar-cta-contact-info {
	position: relative;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 20px;
	z-index: 1;
}

.sidebar-cta-contact-info h3 {
	font-size: 20px;
	color: var(--white-color);
}

.sidebar-cta-contact-info h3 a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-info h3 a:hover {
	color: var(--gradient);
}

.page-single-image {
	margin-bottom: 30px;
}

.page-single-image figure {
	display: block;
	border-radius: 10px;
}

.page-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.622;
	object-fit: cover;
	border-radius: 10px;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

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

.service-entry h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.service-entry ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-entry ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 10px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--gradient);
}

.service-entry ul li a {
	color: inherit;
}

.service-who-we-helps,
.service-why-matters {
	margin-top: 60px;
}

.service-who-we-helps-box {
	background-color: var(--secondary-color);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
	margin-top: 40px;
}

.service-who-we-helps-image {
	width: 50%;
}

.service-who-we-helps-image figure {
	display: block;
	height: 100%;
	border-radius: 10px;
}

.service-who-we-helps-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.156;
	object-fit: cover;
	border-radius: 10px;
}

.service-who-we-helps-list {
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 30px 30px 30px 40px;
}

.service-we-helps-item {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
}

.service-we-helps-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.service-we-helps-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	overflow: hidden;
}

.service-we-helps-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-we-helps-item:hover .icon-box::before {
	transform: scale(1);
}

.service-we-helps-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-we-helps-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.service-we-helps-item-content h3 {
	font-size: 20px;
	margin-bottom: 0;
}

.service-we-helps-item-content p {
	border-top: 1px solid var(--divider-color);
	padding-top: 15px;
	margin: 15px 0 0;
}

.service-why-matters-list-box {
	margin-top: 40px;
}

.service-why-matters-list {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.service-why-matters-list:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.service-why-matters-list ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 0;
	margin: 0;
}

.service-why-matters-list ul li {
	width: calc(50% - 7.5px);
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 0;
}

.page-single-faqs .faq-accordion .accordion-item {
	background-color: var(--secondary-color);
}

/************************************/
/***     21. Blog Archive css     ***/
/************************************/

.page-blog {
	padding: 120px 0;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: var(--secondary-color);
	border-radius: 5px;
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-weight: 500;
	line-height: 1em;
	margin: 0 5px;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--gradient);
}

/************************************/
/***      22. Blog Single css     ***/
/************************************/

.page-single-post {
	padding: 120px 0;
}

.post-single-meta {
	margin-top: 10px;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child {
	margin-right: 0;
}

.post-single-meta ol li i {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 10px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--gradient);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 500;
	line-height: 1.2em;
	margin: 0 0 0.36em;
}

.post-entry h1 {
	font-size: 80px;
}

.post-entry h2 {
	font-size: 56px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 20px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
	position: relative;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: var(--secondary-color) url('../images/icon-blockquote.svg');
	background-repeat: no-repeat;
	background-position: 30px 35px;
	background-size: 45px;
	border-radius: 20px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.7em;
	color: var(--primary-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--gradient);
	color: var(--primary-color);
	border-radius: 100px;
	padding: 12px 20px;
	transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--gradient);
	color: var(--primary-color);
	border-radius: 100px;
	width: 40px;
	height: 40px;
	transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
	color: var(--white-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***     23. Programs Page css    ***/
/************************************/

.page-programs {
	padding: 120px 0 90px;
}

/************************************/
/***     24. Program Single css   ***/
/************************************/

.page-program-single {
	padding: 120px 0;
}

.program-entry {
	margin-bottom: 60px;
}

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

.program-entry p {
	margin-bottom: 20px;
}

.program-entry p:last-child {
	margin-bottom: 0;
}

.program-entry h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.program-entry ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.program-entry ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 10px;
}

.program-entry ul li:last-child {
	margin-bottom: 0;
}

.program-entry ul li::before {
	content: '\f058';
	position: absolute;
	top: 1px;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--gradient);
	left: 0;
}

.program-what-we-do-box,
.program-how-we-work-box {
	margin-top: 60px;
}

.program-what-we-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.program-what-we-image {
	width: calc(50% - 15px);
}

.program-what-we-image figure {
	display: block;
	height: 100%;
	border-radius: 10px;
}

.program-what-we-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.9918;
	object-fit: cover;
	border-radius: 10px;
}

.program-what-we-item-list {
	width: calc(50% - 15px);
	align-content: center;
}

.program-what-we-item {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.program-what-we-item:last-child {
	border: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.program-what-we-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	overflow: hidden;
}

.program-what-we-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.program-what-we-item:hover .icon-box::before {
	transform: scale(1);
}

.program-what-we-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.program-what-we-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.program-how-work-accordion {
	margin-top: 40px;
}

.program-how-work-accordion .accordion-item {
	margin-bottom: 40px;
}

.program-how-work-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.program-how-work-accordion .accordion-header {
	margin: 0;
}

.program-how-work-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	color: var(--primary-color);
	border-bottom: 1px solid var(--divider-color);
	padding: 5px 40px 25px 0;
	transition: all 0.4s ease-in-out;
}

.program-how-work-accordion .accordion-item:last-of-type .accordion-header .accordion-button.collapsed {
	border-bottom: none;
	padding-bottom: 5px;
}

.program-how-work-accordion .accordion-item .accordion-button::after,
.program-how-work-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f055';
	font-family: 'Font Awesome 7 Free';
	position: absolute;
	right: 0;
	top: 0;
	font-size: 34px;
	font-weight: 900;
	color: var(--gradient);
	transition: all 0.4s ease-in-out;
}

.program-how-work-accordion .accordion-button:not(.collapsed)::after {
	content: '\f056';
}

.program-how-work-accordion .accordion-item .accordion-body {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 25px 0 0;
}

.program-how-work-accordion .accordion-item .accordion-body .accordion-body-image {
	max-width: 190px;
}

.program-how-work-accordion .accordion-item .accordion-body .accordion-body-image figure {
	display: block;
	height: 100%;
	border-radius: 10px;
}

.program-how-work-accordion .accordion-item .accordion-body .accordion-body-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.9375;
	object-fit: cover;
	border-radius: 10px;
}

.program-how-work-accordion .accordion-item .accordion-body .accordion-body-content {
	width: calc(100% - 210px);
	align-content: center;
}

.program-how-work-accordion .accordion-item .accordion-body .accordion-body-content p {
	margin: 0;
}

.program-how-work-accordion .accordion-item .accordion-body .accordion-body-content ul {
	border-top: 1px solid var(--divider-color);
	padding: 20px 0 0;
	margin: 20px 0 0;
}


/************************************/
/***       25. Team Page css      ***/
/************************************/

.page-team {
	padding: 120px 0 90px;
}

/************************************/
/***      26. Team Single css     ***/
/************************************/

.page-team-single {
	padding: 120px 0;
}

.team-single-image {
	margin-bottom: 40px;
}

.team-single-image figure {
	display: block;
	border-radius: 10px;
}

.team-single-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.185;
	object-fit: cover;
	border-radius: 10px;
}

.team-member-about,
.team-member-awards {
	margin-bottom: 60px;
}

.member-social-list {
	border-top: 1px solid var(--divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 20px;
	padding-top: 40px;
}

.member-social-list h3 {
	font-size: 20px;
}

.member-social-list ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin: 0;
	padding: 0;
}

.member-social-list ul li a {
	width: 40px;
	height: 40px;
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.member-social-list ul li a:hover {
	background-color: var(--gradient);
	border-color: var(--gradient);
}

.member-social-list ul li a i {
	font-size: 18px;
	color: inherit;
}

.member-about-skill-box {
	background-color: var(--secondary-color);
	border-radius: 10px;
	margin-top: 40px;
	padding: 40px;
}

.member-about-skill-title {
	margin-bottom: 30px;
}

.member-about-skill-title h3 {
	font-size: 20px;
}

.member-about-list {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.member-about-list ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 0;
	margin: 0;
}

.member-about-list ul li {
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 25px;
}

.member-about-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--gradient);
}

.member-skill-list .skills-progress-bar .skill-data .skill-title,
.member-skill-list .skills-progress-bar .skill-data .skill-no {
	font-weight: 500;
	color: var(--primary-color);
}

.member-skill-list .skills-progress-bar .skill-progress {
	background: var(--bg-color);
}

.member-awards-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.member-awards-item {
	width: calc(50% - 15px);
	min-height: 350px;
	background-color: var(--secondary-color);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	padding: 40px;
}

.member-awards-item-image figure {
	display: inline-block;
	border-radius: 10px;
}

.member-awards-item-image figure img {
	width: 100%;
	max-width: 120px;
	object-fit: cover;
	border-radius: 10px;
}

.member-awards-item-content h3 {
	font-size: 20px;
}

.member-awards-item-content p {
	border-top: 1px solid var(--divider-color);
	padding-top: 15px;
	margin: 15px 0 0;
}

.team-contact-form {
	background-color: var(--secondary-color);
	border-radius: 10px;
	padding: 60px;
}

/************************************/
/***   27. Testimonials Page css  ***/
/************************************/

.page-testimonials {
	padding: 120px 0 90px;
}

.page-testimonials .testimonial-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-testimonials .testimonial-item:hover:before {
	top: 0;
	border-radius: 0;
}

.page-testimonials .testimonial-item:hover .testimonial-item-rating i {
	color: var(--primary-color);
}

.page-testimonials .testimonial-item:hover .testimonial-author-content p {
	color: var(--primary-color);
}

.page-testimonials .testimonial-item:hover .testimonial-item-quote {
	background-color: var(--primary-color);
}

.page-testimonials .testimonial-item:hover .testimonial-item-quote img {
	filter: none;
}

/************************************/
/***     28. Image Gallery css    ***/
/************************************/

.page-gallery {
	padding: 120px 0 90px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	cursor: none;
}

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 10px;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	border-radius: 10px;
}

/************************************/
/***     29. Video Gallery css    ***/
/************************************/

.page-video-gallery {
	padding: 120px 0 90px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 10px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 50%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--gradient);
	color: var(--primary-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	width: 100%;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	border-radius: 10px;
}

/************************************/
/***    30. Contact Us Page css   ***/
/************************************/

.page-contact-us {
	padding: 120px 0 60px;
}

.contact-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 20px;
}

.contact-info-item {
	width: calc(33.33% - 20px);
	background-color: var(--golden);
	border-radius: 10px;
	text-align: center;
	padding: 20px;
	margin-top: 40px;
}

.contact-info-item .icon-box {
	position: relative;
	width: 80px;
	height: 80px;
	background: var(--gradient);
	border: 6px solid var(--bg-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	overflow: hidden;
	margin: -40px auto 40px;
}

.contact-info-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box::before {
	transform: scale(1);
}

.contact-info-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 34px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.contact-info-content h2 {
	font-size: 20px;
}

.contact-info-content p {
	margin: 10px 0 0;
}

.contact-info-content ul {
	list-style: none;
	text-align: center;
	border-top: 1px solid var(--divider-color);
	padding: 20px 0 0;
	margin: 20px 0 0;
}

.contact-info-content ul li {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.contact-info-content ul li:last-child {
	margin-bottom: 0;
}

.contact-info-content ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.contact-info-content ul li a:hover {
	color: var(--gradient);
}

.contact-image-form-box {
	background-color: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	padding: 10px;
}

.contact-us-image {
	width: 49%;
}

.contact-us-image figure {
	position: relative;
	display: block;
	height: 100%;
	border-radius: 10px;
}

.contact-us-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.346;
	object-fit: cover;
	border-radius: 10px;
}

.page-contact-us .contact-form {
	width: 51%;
	align-content: center;
	padding: 3.125vw;
}

.contact-form label {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.contact-form form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--primary-color);
	background-color: var(--bg-color);
	border: none;
	border-radius: 10px;
	padding: 18px 24px;
	outline: none;
	box-shadow: none;
}

.contact-form form .form-control::placeholder {
	color: var(--text-color);
	opacity: 50%;
}

.google-map {
	padding: 60px 0 120px;
}

.google-map-iframe {
	width: 100%;
	height: 600px;
}

.google-map-iframe iframe {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

/************************************/
/***    31. 404 Error Page css    ***/
/************************************/

.error-page {
	padding: 120px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 540px;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 15px;
}

/************************************/
/***      32. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1440px) {

	.hero-body {
		margin-top: 100px;
	}

	.our-causes-content {
		padding: 60px;
	}

	.causes-item {
		padding: 30px 20px;
	}

	.our-volunteer-image-box,
	.our-volunteer-content {
		padding: 60px;
	}
}

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin: 0;
	}

	.section-content-btn .section-btn {
		margin-top: 20px;
	}

	.section-title-content {
		margin-top: 10px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.section-title h1 {
		font-size: 54px;
	}

	.hero-body {
		margin-top: 100px;
	}

	.about-us-image-box {
		max-width: 650px;
		margin: 0 auto 30px;
	}

	.why-choose-us-content {
		margin-bottom: 30px;
	}

	.why-choose-us-image-box {
		max-width: 740px;
		margin: 0 auto;
	}

	.benefit-image-box figure {
		height: auto;
	}

	.benefit-image-box figure img {
		height: auto;
		aspect-ratio: 1 / 0.6;
	}

	.our-causes-image,
	.our-causes-image figure {
		height: auto;
	}

	.our-causes-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.7;
	}

	.our-causes-content {
		height: auto;
		padding: 60px 15px;
	}

	.what-we-do-image-box {
		max-width: 740px;
		margin: 0 auto 30px;
	}

	.what-we-do-content {
		margin: 0;
	}

	.testimonial-slider .swiper-wrapper .testimonial-item {
		transform: scale(1);
	}

	.testimonial-item::before {
		display: none;
	}

	.testimonial-slider .swiper-wrapper .swiper-slide.swiper-slide-next .testimonial-item-rating i {
		color: var(--gradient);
	}

	.testimonial-slider .swiper-wrapper .swiper-slide.swiper-slide-next .testimonial-author-content p {
		color: var(--text-color);
	}

	.testimonial-slider .swiper-wrapper .swiper-slide.swiper-slide-next .testimonial-item-quote {
		background-color: var(--gradient);
	}

	.testimonial-slider .swiper-wrapper .swiper-slide.swiper-slide-next .testimonial-item-quote img {
		filter: brightness(0) invert(0);
	}

	.our-volunteer-image-box,
	.our-volunteer-content {
		height: auto;
	}

	.our-volunteer-content {
		padding: 60px 15px;
	}

	.about-footer {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.about-footer-content {
		margin-top: 15px;
	}

	.footer-links-box {
		margin-left: 0;
	}

	.footer-location-info {
		max-width: 38%;
	}

	.our-impact-images-box {
		max-width: 740px;
		margin: 0 auto 30px;
		height: auto;
	}

	.our-impact-content {
		margin-left: 0;
	}

	.accordian-list .faq-accordion {
		width: 100%;
	}

	.page-single-sidebar {
		margin-right: 0;
	}

	.page-category-list .page-category-list-title {
		padding: 15px 20px;
	}

	.page-category-list ul {
		padding: 20px;
	}

	.page-category-list ul li {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.sidebar-cta-box {
		padding: 30px;
	}

	.page-single-image {
		margin-bottom: 20px;
	}

	.service-entry {
		margin-bottom: 40px;
	}

	.service-who-we-helps,
	.service-why-matters {
		margin-top: 40px;
	}

	.service-who-we-helps-image {
		width: 100%;
	}

	.service-who-we-helps-image figure {
		height: auto;
	}

	.service-who-we-helps-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.8;
	}

	.service-who-we-helps-list {
		width: 100%;
		flex-wrap: wrap;
		flex-direction: row;
		gap: 20px;
		padding: 30px 20px 20px;
	}

	.service-we-helps-item {
		width: calc(50% - 10px);
		border-bottom: none;
		padding-bottom: 0;
	}

	.program-entry {
		margin-bottom: 40px;
	}

	.program-what-we-do-box,
	.program-how-we-work-box {
		margin-top: 40px;
	}

	.team-member-about,
	.team-member-awards {
		margin-bottom: 40px;
	}

	.member-about-skill-box,
	.member-awards-item,
	.team-contact-form {
		padding: 30px;
	}

	.page-testimonials .testimonial-item::before {
		display: block;
	}

	.contact-info-item {
		padding: 0 30px 30px;
	}

	.contact-info-content ul li {
		font-size: 18px;
	}

	.contact-us-image {
		width: 100%;
	}

	.contact-us-image figure {
		height: auto;
	}

	.contact-us-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.85;
	}

	.page-contact-us .contact-form {
		width: 100%;
		padding: 30px 20px 20px 20px;
	}
}

/************************************/
/***   33. Home - Version 2 css   ***/
/************************************/
/* 
.hero-prime{
	position: relative;
	height: 70vh;
    min-height: 700px;
	padding: 100px 0 20px;
	align-content: end;
	overflow: hidden;
}

.hero-prime::before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(26, 26, 26, 0.80) 0%, transparent 19.42%, rgba(26, 26, 26, 0.50) 63.88%, var(--primary-color) 106.47%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-prime .container{
	position: relative;
	z-index: 2;
}

.hero-prime .hero-bg-video-prime{
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-prime .hero-bg-video-prime video{
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-prime .section-title .section-sub-title{
	background: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.hero-content-prime .section-title h1{
	font-weight: 500;
}

.hero-content-footer-prime{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
}

.hero-footer-client-box-prime{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.hero-footer-client-content-prime{
	width: 175px;
}

.hero-footer-client-content-prime p{
	font-size: 18px;
	line-height: normal;
	color: var(--white-color);
	margin-bottom: 0;
}

.hero-footer-client-content-prime p span{
	font-weight: 600;
	color: var(--gradient);
} */

.about-us-prime {
	padding: 120px 0;
}

.about-us-image-box-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-right: 15px;
}

.about-us-image-box-1-prime {
	position: relative;
	width: 57%;
	align-content: end;
	margin-bottom: 50px;
}

.about-us-image-box-1-prime::before {
	content: "";
	position: absolute;
	top: -165px;
	left: 38px;
	width: 170px;
	height: 190px;
	background: url('../images/about-us-image-box-bg-prime.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: rotate(-28deg);
	z-index: 0;
}

.about-us-image-box-1-prime .about-us-image-prime {
	position: relative;
	z-index: 2;
}

.about-us-image-prime figure {
	display: block;
	border-radius: 10px;
}

.about-us-image-prime figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.about-us-image-box-1-prime figure {
	border: 10px solid var(--bg-color);
	border-radius: 20px;
}

.about-us-image-box-1-prime figure img {
	aspect-ratio: 1 / 0.78;
}

.about-us-image-box-2-prime {
	width: 43%;
}

.about-us-image-box-2-prime figure {
	margin-left: -153px;
}

.about-us-image-box-2-prime figure img {
	aspect-ratio: 1 / 1.51;
}

.about-us-item-list-prime {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-us-item-prime {
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.about-us-item-prime .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.about-us-item-prime .icon-box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-us-item-prime:hover .icon-box::before {
	transform: scale(1);
}

.about-us-item-prime .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.about-us-item-prime:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.about-us-item-content-prime {
	width: calc(100% - 75px);
}

.about-us-item-content-prime h3 {
	font-size: 20px;
	font-weight: 600;
}

.about-us-list-prime {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.about-us-list-prime ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	padding: 0;
	margin: 0;
}

.about-us-list-prime ul li {
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 25px;
}

.about-us-list-prime ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--gradient);
	top: 0;
	left: 0;
}

.about-us-btn-prime {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.our-service-prime {
	background-color: var(--secondary-color);
	padding: 120px 0;
}

.service-item-prime {
	position: relative;
	height: calc(100% - 30px);
	min-height: 450px;
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.service-item-prime::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--bg-color);
	border-radius: 10px;
	width: 100%;
	height: 100%;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.service-item-prime.active::before,
.service-item-prime:hover::before {
	transform: translate(100%, -100%);
}

.service-item-image-prime {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.service-item-prime.active .service-item-image-prime,
.service-item-prime:hover .service-item-image-prime {
	opacity: 1;
}

.service-item-image-prime::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	opacity: 50%;
}

.service-item-image-prime figure {
	height: 100%;
	display: block;
	border-radius: 10px;
}

.service-item-image-prime figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-item-body-prime {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	z-index: 2;
}

.service-item-header-prime .icon-box {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--gradient);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}

.service-item-header-prime .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.service-item-title-prime h2 {
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.service-item-prime.active .service-item-title-prime h2,
.service-item-prime:hover .service-item-title-prime h2 {
	color: var(--white-color);
}

.service-item-title-prime h2 a {
	color: inherit;
}

.service-item-title-prime p {
	border-top: 1px solid var(--divider-color);
	padding-top: 15px;
	margin: 15px 0 0;
	transition: all 0.4s ease-in-out;
}

.service-item-prime.active .service-item-title-prime p,
.service-item-prime:hover .service-item-title-prime p {
	border-color: var(--dark-divider-color);
	color: var(--white-color);
}

.service-item-content-prime p {
	transition: all 0.4s ease-in-out;
	margin: 0;
}

.service-item-prime:hover .service-item-content-prime p,
.service-item-prime.active .service-item-content-prime p {
	color: var(--white-color);
}

.service-item-btn-prime {
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
	transition: all 0.4s ease-in-out;
}

.service-item-prime.active .service-item-btn-prime,
.service-item-prime:hover .service-item-btn-prime {
	border-color: var(--dark-divider-color);
}

.service-item-prime.active .service-item-btn-prime .readmore-btn::before,
.service-item-prime:hover .service-item-btn-prime .readmore-btn::before {
	filter: brightness(0) invert(1);
}

.service-item-btn-prime a {
	transition: all 0.4s ease-in-out;
}

.service-item-prime.active .service-item-btn-prime a,
.service-item-prime:hover .service-item-btn-prime a {
	color: var(--white-color);
}

.what-we-do-prime {
	padding: 120px 0;
}

.what-we-image-box-prime {
	position: relative;
	height: 100%;
	margin-right: 15px;
}

.what-we-image-prime {
	height: 100%;
}

.what-we-image-prime figure {
	display: block;
	height: 100%;
	border-radius: 10px;
}

.what-we-image-prime figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.034;
	object-fit: cover;
	border-radius: 10px;
}

.what-we-counter-box-prime {
	position: absolute;
	left: 30px;
	bottom: 30px;
	right: 30px;
	max-width: 220px;
	text-align: center;
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 20px;
	z-index: 1;
}

.what-we-counter-box-prime h2 {
	font-size: 26px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 15px;
}

.what-we-counter-box-prime h3 {
	font-size: 20px;
	color: var(--white-color);
}

.what-we-counter-box-prime p {
	font-size: 14px;
	color: var(--white-color);
	margin: 10px 0 0;
}

.what-we-content-prime {
	align-content: center;
	height: 100%;
}

.what-we-item-prime {
	position: relative;
	padding-left: 30px;
	margin-bottom: 30px;
}

.what-we-item-prime:last-child {
	margin-bottom: 0;
}

.what-we-item-prime::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 20px;
	font-weight: 900;
	color: var(--gradient);
	top: 5px;
	left: 0;
}

.what-we-item-prime h3 {
	font-size: 20px;
	font-weight: 600;
}

.what-we-item-prime p {
	margin: 10px 0 0;
}

.what-we-btn-prime {
	margin-top: 40px;
}

.why-choose-us-prime {
	padding: 120px 0;
}

.why-choose-us-prime .section-row {
	margin-bottom: 0;
}

.why-choose-btn-prime {
	text-align: center;
	margin-top: 40px;
}

.why-choose-item-prime {
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 10px;
	overflow: hidden;
}

.why-choose-box-1-prime {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 30px;
}

.why-choose-review-box-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	padding: 30px;
}

.why-choose-review-image-box {
	width: calc(70% - 15px);
}

.why-choose-review-image-box figure {
	display: block;
	margin: 0 0 -35px -60px;
}

.why-choose-review-image-box figure img {
	width: 100%;
	aspect-ratio: 1 / 1.227;
	object-fit: cover;
}

.why-choose-rating-box-prime {
	width: calc(30% - 15px);
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	align-content: end;
	text-align: center;
}

.why-choose-item-rating-prime {
	margin-left: 5px;
}

.why-choose-item-rating-prime i {
	color: var(--gradient);
	margin-bottom: 5px;
}

.why-choose-item-rating-prime i:last-child {
	margin-bottom: 0;
}

.why-choose-rating-counter-prime p {
	color: var(--white-color);
	margin: 0;
}

.why-choose-donation-box-prime {
	padding: 20px;
}

.why-choose-donation-content-prime p {
	color: var(--white-color);
	margin-bottom: 0;
}

.why-choose-donation-btn-prime {
	margin-top: 30px;
}

.why-choose-donation-btn-prime a {
	color: var(--white-color);
}

.why-choose-donation-btn-prime .readmore-btn::before {
	filter: brightness(0) invert(1);
}

.why-choose-image-box-prime {
	position: relative;
	margin-bottom: 30px;
}

.why-choose-image-prime figure {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('../images/why-choose-image-bg-shape-prime.svg');
	mask-image: url('../images/why-choose-image-bg-shape-prime.svg');
	mask-repeat: no-repeat;
	mask-position: center center;
	mask-size: 100% auto;
	overflow: hidden;
}

.why-choose-image-prime figure::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 30%;
	z-index: 1;
}

.why-choose-image-prime figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-play-button-prime {
	position: absolute;
	display: inline-flex;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.video-play-button-prime a {
	position: relative;
	height: 74px;
	width: 74px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button-prime a:hover {
	background: var(--white-color);
}

.video-play-button-prime a:before,
.video-play-button-prime a:after {
	content: '';
	position: absolute;
	width: 160%;
	height: 160%;
	border: 33px solid var(--white-color);
	opacity: 30%;
	border-radius: 50%;
	transform: scale(0.6);
	animation: border-zooming-prime 1.2s infinite linear;
	z-index: -1;
}

.video-play-button-prime a:after {
	animation-delay: .3s;
}

@keyframes border-zooming-prime {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button-prime a i {
	position: relative;
	font-size: 30px;
	color: var(--primary-color);
	margin-left: 2px;
	z-index: 1;
}

.why-choose-box-3-prime {
	display: flex;
	flex-direction: column;
	gap: 30px;
	text-align: center;
	padding: 30px;
	margin-bottom: 30px;
}

.why-choose-box-3-image-prime figure {
	display: block;
	margin-top: -42px;
	border-radius: 0 0 10px 10px;
}

.why-choose-box-3-image-prime figure img {
	width: 100%;
	aspect-ratio: 1 / 1.1;
	object-fit: cover;
	border-radius: 0 0 10px 10px;
}

.why-choose-item-content-prime h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--secondary-color);
}

.why-choose-item-content-prime p {
	color: var(--white-color);
	margin: 20px 0 0;
}

.our-programs-prime {
	padding: 120px 0;
}

.program-item-prime {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.program-item-image-prime {
	margin-bottom: 30px;
}

.program-item-image-prime a {
	cursor: none;
}

.program-item-image-prime figure {
	display: block;
	border-radius: 10px;
}

.program-item-image-prime figure img {
	width: 100%;
	aspect-ratio: 1 / 0.868;
	object-fit: cover;
	border-radius: 10px;
	transition: all 0.6s ease-in-out;
}

.program-item-prime:hover .program-item-image-prime figure img {
	transform: scale(1.06);
}

.program-item-content-prime {
	text-align: center;
}

.program-item-content-prime ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.program-item-content-prime ul li {
	display: inline-block;
	font-size: 14px;
	line-height: 1em;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 7px 15px;
	transition: all 0.4s ease-in-out;
}

.program-item-prime:hover .program-item-content-prime ul li {
	background-color: var(--gradient);
	border-color: var(--gradient);
	color: var(--primary-color);
}

.program-item-content-prime h2 {
	font-size: 20px;
	font-weight: 600;
	margin-top: 15px;
}

.program-item-content-prime h2 a {
	color: inherit;
}

.our-programs-prime .section-footer-text {
	max-width: 475px;
	margin: 30px auto 0;
}



/* .main-footer-prime{
	padding: 120px 0 0;
} */

.footer-header-prime {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 80px;
	margin-bottom: 80px;
}

.footer-logo-prime img {
	width: 100%;
	border-radius: 30px;
	max-width: 170px;


}

/* ============================================
     FOOTER WITH SEPARATE LOGO BAR
   ============================================ */

/* Logo Bar - White Background */
.footer-logo-bar {
	background: #ffffff;
	padding: 15px 0;
	border-bottom: 1px solid #e0e0e0;
}

.footer-logo-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-logo {
	flex-shrink: 0;
}

.footer-logo img {
	width: 180px;
	height: auto;
}

.footer-tagline p {
	margin: 0;
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

/* Main Footer - Dark Background */
.footer-main {
	background-color: #03352C;
	padding-top: 60px;
}

/* Rest of your existing footer styles remain */
.main-footer-prime {
	background: transparent;
}

/* css for png butterfly */
/* css for png butterfly */
/* Lines PNG - Both Sides in Footer Logo Bar */
.footer-logo-bar {
	position: relative;
	overflow: hidden;
}

/* Left side - Normal */
.footer-logo-bar::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 150px;
	height: 100px;
	background: url('../images/lines2.png') no-repeat left center;
	background-size: contain;
	background-position: left center;
	/* opacity: 0.25; */
	pointer-events: none;
	z-index: 0;
}

/* Right side - Mirrored/Reversed */
.footer-logo-bar::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) scaleX(-1);
	width: 150px;
	height: 100px;
	background: url('../images/lines2.png') no-repeat right center;
	background-size: contain;
	background-position: right center;
	/* opacity: 0.25; */
	pointer-events: none;
	z-index: 0;
}

/* Ensure content stays above lines */
.footer-logo-wrapper {
	position: relative;
	z-index: 1;
}


.footer-newsletter-form-prime .form-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	min-width: 450px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 5px;
	padding: 5px;
}

.footer-newsletter-form-prime .form-group .form-control {
	width: auto;
	flex-grow: 1;
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 10px 15px;
}

.footer-newsletter-form-prime .form-group .form-control::placeholder {
	color: var(--white-color);
}

.about-footer-box-prime {
	max-width: 300px;
}

.about-footer-content-prime h2 {
	font-size: 20px;
	color: var(--white-color);
}

.about-footer-content-prime p {
	color: var(--white-color);
	margin: 20px 0 0;
}

.footer-social-links-prime {
	margin-top: 30px;
}

.footer-social-links-prime ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
}

.footer-social-links-prime ul li a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links-prime ul li a:hover {
	background-color: var(--gradient);
	border-color: var(--gradient);
}

.footer-social-links-prime ul li a i {
	font-size: 18px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.footer-social-links-prime ul li a:hover i {
	color: var(--primary-color);
}

.footer-links-box-prime {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

/* .footer-links-prime{
	max-width: 40%;
} */

.footer-links-prime h2 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links-prime ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links-prime ul li {
	line-height: 1.5em;
	color: var(--white-color);
	margin-bottom: 15px;
}

.footer-links-prime ul li:last-child {
	margin-bottom: 0;
}

.footer-links-prime ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-links-prime ul li a:hover {
	color: var(--gradient);
}

.footer-contact-box-prime {
	max-width: 300px;
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 10px;
}

.footer-contact-box-prime h2 {
	font-size: 20px;
	background-color: var(--dark-divider-color);
	color: var(--white-color);
	border-radius: 10px;
	padding: 15px;
}

.footer-contact-box-prime ul {
	list-style: none;
	padding: 30px 20px 20px;
	margin: 0;
}

.footer-contact-box-prime ul li {
	line-height: 1.5em;
	color: var(--white-color);
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.footer-contact-box-prime ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.footer-contact-box-prime ul li img {
	width: 100%;
	max-width: 18px;
}

.footer-contact-box-prime ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-box-prime ul li a:hover {
	color: var(--gradient);
}

/* .footer-copyright-prime {
	text-align: center;
	border-top: 1px solid var(--dark-divider-color);
	padding: 60px 0;
	margin-top: 60px;
} */

.footer-copyright-text-prime p {
	color: var(--white-color);
	margin-bottom: 0;
}


/* ════════════════════════════════════════════════════════
   TRUST & COMPLIANCE STRIP
════════════════════════════════════════════════════════ */

.footer-trust-strip {
    padding: 22px 0 0;
    /* background: #04241d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); */
}

.footer-trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-trust-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--golden);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}

.footer-trust-label i {
    font-size: 18px;
}

.footer-trust-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 9px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.footer-badge-item:hover {
    background: rgba(242, 214, 46, 0.12);
    border-color: rgba(242, 214, 46, 0.3);
    transform: translateY(-2px);
}

.footer-badge-item img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-badge-item i {
    font-size: 15px;
    color: var(--golden);
}

.footer-badge-item span {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

/* ════════════════════════════════════════════════════════
   ADDRESS CARDS
════════════════════════════════════════════════════════ */

.footer-address-row {
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 50px;
    margin-top: 60px;
}

.footer-address-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 26px 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.footer-address-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(242, 214, 46, 0.25);
}

.footer-address-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(242, 214, 46, 0.15);
    color: var(--golden);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.footer-address-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-address-content p {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 14px;
}

.footer-address-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-address-meta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.footer-address-meta a i {
    color: var(--golden);
    font-size: 12px;
    width: 14px;
}

.footer-address-meta a:hover {
    color: var(--golden);
}

/* ════════════════════════════════════════════════════════
   LEGAL / POLICY ROW
════════════════════════════════════════════════════════ */

.footer-legal-row {
    border-top: 1px solid var(--dark-divider-color);
    padding: 26px 0;
    margin-top: 25px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 0;
}

.footer-legal-links a {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    padding: 0 16px;
    transition: color 0.3s ease;
}

.footer-legal-links a:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-legal-links a:hover {
    color: var(--golden);
}

.footer-legal-links span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 500;
    padding: 0 16px;
    cursor: default;
}

.footer-legal-links span:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
}

/* Adjust for the span wrapper */
.footer-legal-links span {
    position: relative;
}

/* ════════════════════════════════════════════════════════
   COPYRIGHT (updated, simplified from old prime style)
════════════════════════════════════════════════════════ */

.footer-copyright-prime {
    text-align: center;
    /* border-top: 1px solid var(--dark-divider-color); */
    padding: 0px 0 25px;
    margin: 0;
}

.footer-copyright-text-prime p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

.footer-copyright-text-prime a {
    color: var(--golden);
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-copyright-text-prime a:hover {
    color: #fff;
}

@media only screen and (max-width: 1024px) {

	/* .hero-prime{
		height: auto;
		min-height: 800px;
	} */

	.about-us-image-box-prime {
		max-width: 610px;
		margin: 0 auto 30px;
	}

	.what-we-image-box-prime {
		height: auto;
		margin: 0 0 30px;
	}

	.what-we-image-prime,
	.what-we-image-prime figure {
		height: auto;
	}

	.what-we-image-prime figure img {
		height: auto;
		aspect-ratio: 1 / 0.75;
	}

	.what-we-content-prime {
		height: auto;
	}

	.why-choose-us-prime .section-row {
		margin-bottom: 80px;
	}

	.why-choose-review-image-box figure {
		margin: 0 0 -30px -50px;
	}

	.key-fact-item-prime.box-1 {
		min-height: 400px;
		padding: 30px;
	}

	.key-fact-item-prime {
		padding: 30px;
	}

	.key-fact-item-prime.box-1 .key-fact-item-image-prime {
		margin: 0 -30px -30px 0;
	}

	.key-fact-item-prime.box-2 .key-fact-item-image-prime {
		margin: 0 -30px 0 -30px;
	}

	.testimonial-content-prime {
		position: initial;
		height: auto;
		margin: 0 0 30px;
	}

	.footer-header-prime {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.about-footer-box-prime {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.about-footer-content-prime p {
		margin-top: 15px;
	}

	.footer-social-links-prime {
		margin-top: 20px;
	}

	.footer-contact-box-prime ul {
		padding: 20px 10px 10px;
	}

	.footer-copyright-prime {
		margin-top: 30px;
		padding: 30px 0;
	}
}


/* ── Footer Image Column ── */
.footer-image-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo-image {
    max-width: 200px;
    height: auto;
    display: block;
}

/* Ensure the social links remain under the image */
.footer-image-box .footer-social-links-prime {
    margin-top: 0;
}

/************************************/
/***   34. Home - Version 3 css   ***/
/************************************/

.hero-ultra {
	position: relative;
	background-image: url('../images/hero-bg-image-ultra.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	align-content: end;
	min-height: 950px;
	padding: 240px 0 80px;
	overflow: hidden;
}

.hero-ultra::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(3, 53, 44, 0.80) 0%, rgba(3, 53, 44, 0.00) 17.84%), linear-gradient(180deg, rgba(3, 53, 44, 0.00) 36.77%, #03352C 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-ultra .container {
	position: relative;
	z-index: 2;
}

.hero-content-ultra .section-title h1 {
	font-size: 60px;
}

.hero-content-footer-ultra {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
}

.video-play-button-ultra {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.video-play-button-ultra a {
	position: relative;
	height: 50px;
	width: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button-ultra:hover a {
	background: var(--white-color);
}

.video-play-button-ultra a i {
	position: relative;
	font-size: 18px;
	color: var(--primary-color);
	margin-left: 2px;
	z-index: 1;
}

.video-play-button-ultra p {
	font-weight: 600;
	color: var(--white-color);
	margin: 0;
}

.hero-info-box-ultra {
	max-width: 415px;
	background: var(--divider-color);
	border: 1px solid var(--dark-divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
	padding: 30px;
	margin-left: auto;
}

.hero-info-item-header-ultra {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

.hero-info-item-header-ultra .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.hero-info-item-header-ultra .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.hero-info-item-ultra:hover .hero-info-item-header-ultra .icon-box::before {
	transform: scale(1);
}

.hero-info-item-header-ultra .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.hero-info-item-title-ultra {
	width: calc(100% - 70px);
}

.hero-info-item-title-ultra h2 {
	font-size: 20px;
	color: var(--white-color);
}

.hero-info-item-content-ultra p {
	color: var(--white-color);
	margin: 0;
}

.hero-counter-item-list-ultra {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 50px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.hero-counter-item {
	position: relative;
	width: calc(50% - 25px);
}

.hero-counter-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -25px;
	bottom: 0;
	background: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.hero-counter-item:last-child:before,
.hero-counter-item:nth-of-type(2n + 2):before {
	display: none;
}

.hero-counter-item h2 {
	font-size: 30px;
	color: var(--white-color);
}

.hero-counter-item p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.about-us-ultra {
	padding: 40px 0;
	background: var(--alternate-bg);
	background-size: cover;
}

.about-us-item-list-ultra {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-us-item-ultra {
	width: calc(50% - 15px);
}

.about-us-item-header-ultra {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.about-us-item-header-ultra .icon-box {
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.about-us-item-header-ultra .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-us-item-ultra:hover .about-us-item-header-ultra .icon-box::before {
	transform: scale(1);
}

.about-us-item-header-ultra .icon-box img {
	position: relative;
	width: 100%;
	max-width: 20px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.about-us-item-ultra:hover .about-us-item-header-ultra .icon-box img {
	filter: brightness(0) invert(1);
}

.about-us-item-title-ultra {
	width: calc(100% - 55px);
}

.about-us-item-title-ultra h3 {
	font-size: 20px;
}

.about-us-item-content-ultra p {
	margin: 10px 0 0;
	font-size: 15px;
}

.about-us-btn-ultra {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.about-us-image-box-ultra {
	background: url('../images/about-us-image-box-bg-ultra.png') no-repeat;
	background-position: top 170px right 44px;
	background-size: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-left: 35px;
}

.about-us-image-box-1-ultra {
	position: relative;
	width: 67%;
	margin-bottom: 115px;
}

.about-us-image-box-2-ultra {
	position: relative;
	width: 33%;
	z-index: 1;
}

.about-us-image-ultra figure {
	display: block;
	border-radius: 10px;
}

.about-us-image-ultra figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.about-us-image-box-1-ultra .about-us-image-ultra figure img {
	aspect-ratio: 1 / 1.2978;
}

.about-us-image-box-2-ultra .about-us-image-ultra figure {
	margin-left: -251px;
	border: 5px solid var(--bg-color);
	border-radius: 16px;
}

.about-us-image-box-2-ultra .about-us-image-ultra figure img {
	aspect-ratio: 1 / 0.745;
}

.about-years-experience-box-ultra {
	position: absolute;
	top: 20px;
	right: -101px;
	max-width: 140px;
	background: var(--gradient);
	border: 5px solid var(--bg-color);
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	animation: yearsboxmove 3s infinite linear alternate;
	z-index: 1;
}

@keyframes yearsboxmove {
	50% {
		transform: translateX(-30px);
	}
}

.about-years-experience-box-ultra h2 {
	font-size: 34px;
}

.about-years-experience-box-ultra p {
	color: var(--primary-color);
	line-height: normal;
	margin: 5px 0 0;
}

.our-service-ultra {
	background: var(--secondary-color);
	padding: 120px 0;
}

.service-item-ultra {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--bg-color);
	border-radius: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.service-item-image-ultra a {
	display: block;
	cursor: none;
	overflow: hidden;
}

.service-item-image-ultra a figure {
	display: block;
}

.service-item-image-ultra a figure img {
	width: 100%;
	aspect-ratio: 1 / 0.6446;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.service-item-ultra:hover .service-item-image-ultra a figure img {
	transform: scale(1.06);
}

.service-item-body-ultra {
	padding: 30px;
}

.service-item-body-ultra .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	overflow: hidden;
}

.service-item-body-ultra .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item-ultra:hover .service-item-body-ultra .icon-box::before {
	transform: scale(1);
}

.service-item-body-ultra .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-item-ultra:hover .service-item-body-ultra .icon-box img {
	filter: brightness(0) invert(1);
}

.service-item-content-ultra h2 {
	font-size: 20px;
}

.service-item-content-ultra h2 a {
	color: inherit;
}

.service-item-content-ultra p {
	margin: 10px 0 0;
}

.service-item-btn-ultra a {
	width: 100%;
	line-height: 1em;
	background-color: var(--gradient);
	text-align: center;
	padding: 17px 25px;
	transition: all 0.4s ease-in-out;
}

.service-item-btn-ultra .readmore-btn::before {
	display: none;
}

.service-item-btn-ultra:hover a {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.why-choose-us-ultra {
	padding: 120px 0;
}

.why-choose-us-content-ultra {
	height: 100%;
	display: flex;
	flex-direction: column;
	margin-right: 15px;
}

.why-choose-image-box-ultra {
	position: relative;
	height: 100%;
}

.why-choose-image-ultra {
	height: 100%;
}

.why-choose-image-ultra figure {
	display: block;
	height: 100%;
	border-radius: 10px;
}

.why-choose-image-ultra figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
	border-radius: 10px;
}

.why-choose-image-box-ultra .video-play-button-ultra {
	position: absolute;
	display: inline-flex;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.why-choose-image-box-ultra .video-play-button-ultra a {
	height: 56px;
	width: 56px;
}

.why-choose-image-box-ultra .video-play-button-ultra a:before,
.why-choose-image-box-ultra .video-play-button-ultra a:after {
	content: '';
	position: absolute;
	width: 160%;
	height: 160%;
	border: 33px solid var(--white-color);
	opacity: 30%;
	border-radius: 50%;
	transform: scale(0.6);
	animation: border-zooming-ultra 1.2s infinite linear;
	z-index: -1;
}

.why-choose-image-box-ultra .video-play-button-ultra a:after {
	animation-delay: .3s;
}

@keyframes border-zooming-ultra {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.why-choose-image-box-ultra .video-play-button-ultra a i {
	font-size: 22px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.why-choose-image-box-ultra .video-play-button-ultra a:hover i {
	color: var(--primary-color);
}

.why-choose-item-list-ultra {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-content: center;
}

.why-choose-item-ultra {
	width: 100%;
	background: var(--white-color);
	border-radius: 10px;
	padding: 30px;
}

.why-choose-item-header-ultra {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.why-choose-item-header-ultra .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.why-choose-item-header-ultra .icon-box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.why-choose-item-ultra:hover .why-choose-item-header-ultra .icon-box::before {
	transform: scale(1);
}

.why-choose-item-header-ultra .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.why-choose-item-ultra:hover .why-choose-item-header-ultra .icon-box img {
	filter: brightness(0) invert(1);
}

.why-choose-item-title-ultra {
	width: calc(100% - 65px);
}

.why-choose-item-title-ultra h3 {
	font-size: 20px;
}

.why-choose-item-content-ultra {
	margin-top: 15px;
}

.why-choose-item-content-ultra p {
	margin: 0;
}

.why-choose-item-content-ultra ul {
	list-style: disc;
	border-top: 1px solid var(--divider-color);
	margin: 20px 0 0;
	padding: 20px 0 0 20px;
}

.why-choose-item-content-ultra ul li {
	position: relative;
	line-height: 1.5em;
	margin-bottom: 10px;
}

.why-choose-item-content-ultra ul li:last-child {
	margin-bottom: 0;
}

.why-choose-item-content-ultra ul li::marker {
	color: var(--gradient);
}

.our-volunteer-ultra {
	position: relative;
	background-image: url('../images/our-volunteer-image-bg-ultra.jpg');
	background-position: center center;
	padding: 120px 0;
}

.our-volunteer-ultra::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 80%;
	z-index: 1;
}

.our-volunteer-ultra .container {
	position: relative;
	z-index: 2;
}

.our-volunteer-content-ultra {
	position: sticky;
	top: 30px;
}

.our-volunteer-content-ultra .section-title {
	margin-bottom: 0;
}

.our-volunteer-donation-box-ultra {
	border: 1px solid var(--dark-divider-color);
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 40px;
}

.volunteer-donation-item-ultra {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.volunteer-donation-item-ultra .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.volunteer-donation-item-ultra .icon-box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.volunteer-donation-item-ultra:hover .icon-box::before {
	transform: scale(1);
}

.volunteer-donation-item-ultra .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.volunteer-donation-item-content-ultra {
	width: calc(100% - 65px);
}

.volunteer-donation-item-content-ultra h3 {
	font-size: 20px;
	color: var(--white-color);
}

.volunteer-donation-item-content-ultra p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.our-volunteer-donation-box-ultra .skillbar .skill-data {
	justify-content: end;
}

.volunteer-donation-values-ultra {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.volunteer-donation-value-item-ultra p {
	color: var(--white-color);
	margin-bottom: 5px;
}

.volunteer-donation-value-item-ultra h3 {
	font-size: 20px;
	color: var(--white-color);
}

.our-volunteer-donation-box-btn-ultra {
	margin-top: 40px;
}

.our-volunteer-donation-box-btn-ultra .btn-default {
	width: 100%;
	text-align: center;
	padding: 17px 20px;
}

.our-volunteer-donation-box-btn-ultra .btn-default::before {
	display: none;
}

.our-volunteer-counter-item-list-ultra {
	display: flex;
	flex-wrap: wrap;
	gap: 5.208vw;
	margin-top: 120px;
}

.our-volunteer-counter-item-ultra {
	position: relative;
	text-align: center;
	width: calc(20% - 4.167vw);
}

.our-volunteer-counter-item-ultra::before {
	content: '';
	position: absolute;
	top: 0;
	right: -2.604vw;
	transform: rotate(10deg);
	background: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.our-volunteer-counter-item-ultra:nth-child(5n + 5):before,
.our-volunteer-counter-item-ultra:last-child:before {
	display: none;
}

.our-volunteer-counter-item-ultra h2 {
	font-size: 56px;
	line-height: 1em;
	color: var(--white-color);
}

.our-volunteer-counter-item-ultra p {
	color: var(--white-color);
	line-height: normal;
	margin: 5px 0 0;
}

.our-team-ultra {
	padding: 120px 0;
}

.team-item-ultra {
	position: relative;
	height: calc(100% - 30px);
	border-radius: 10px;
	margin-bottom: 30px;
	overflow: hidden;
}

.team-item-image-ultra a {
	display: block;
	cursor: none;
}

.team-item-image-ultra figure {
	display: block;
}

.team-item-image-ultra figure img {
	width: 100%;
	aspect-ratio: 1 / 1.1158;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.team-item-ultra:hover .team-item-image-ultra figure img {
	transform: scale(1.06);
}

.team-item-body-ultra {
	position: absolute;
	right: 10px;
	bottom: 10px;
	left: 10px;
	padding: 30px;
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 10px;
	text-align: center;
	overflow: hidden;
	z-index: 1;
}

.team-item-content-ultra h2 {
	font-size: 20px;
	color: var(--secondary-color);
}

.team-item-content-ultra h2 a {
	color: inherit;
}

.team-item-content-ultra p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.team-social-list-ultra {
	height: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

.team-item-ultra:hover .team-social-list-ultra {
	height: 36px;
	opacity: 1;
	visibility: visible;
	margin-top: 20px;
}

.team-social-list-ultra ul {
	list-style: none;
	display: inline-flex;
	align-items: center;
	gap: 15px;
	padding: 0;
	margin: 0;
}

.team-social-list-ultra ul li a {
	width: 36px;
	height: 36px;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-list-ultra ul li a:hover {
	border-color: var(--gradient);
	background: var(--gradient);
	color: var(--primary-color);
}

.team-social-list-ultra ul li a i {
	font-size: 18px;
	color: inherit;
}

.our-faq-ultra {
	background-color: var(--secondary-color);
	padding: 120px 0;
}

.faq-image-box-ultra {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-right: 15px;
}

.faq-image-box-1-ultra {
	width: 30%;
	margin-bottom: 200px;
}

.faq-image-box-2-ultra {
	width: 70%;
}

.faq-image-box-1-ultra figure {
	display: block;
	border-radius: 10px;
}

.faq-image-ultra figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.faq-image-box-1-ultra .faq-image-ultra figure {
	margin-right: -248px;
}

.faq-image-box-1-ultra .faq-image-ultra figure img {
	aspect-ratio: 1 / 1.0537;
}

.faq-image-box-2-ultra .faq-image-ultra {
	position: relative;
	z-index: 1;
}

.faq-image-box-2-ultra .faq-image-ultra figure img {
	aspect-ratio: 1 / 1.0024;
}

.faq-cta-box-ultra {
	position: relative;
	max-width: 265px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	background: var(--gradient);
	border-radius: 10px;
	padding: 20px;
	margin: 0 0 30px auto;
	z-index: 1;
}

.faq-cta-box-ultra::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background: var(--primary-color);
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.faq-cta-box-ultra:hover:before {
	top: auto;
	height: 100%;
}

.faq-cta-box-ultra .icon-box img {
	width: 100%;
	max-width: 68px;
	transition: all 0.4s ease-in-out;
}

.faq-cta-box-ultra:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.faq-cta-content-ultra {
	position: relative;
	width: calc(100% - 83px);
	z-index: 1;
}

.faq-cta-content-ultra h3 {
	font-size: 20px;
	line-height: 1.3em;
	transition: all 0.4s ease-in-out;
}

.faq-cta-box-ultra:hover .faq-cta-content-ultra h3 {
	color: var(--white-color);
}

.faq-accordion-ultra .accordion-item {
	background-color: var(--bg-color);
	border-radius: 10px;
	margin-bottom: 30px;
	overflow: hidden;
}

.faq-accordion-ultra .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion-ultra .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--primary-color);
	padding: 20px 46px 20px 20px;
}

.faq-accordion-ultra .accordion-item .accordion-button::after,
.faq-accordion-ultra .accordion-item .accordion-button.collapsed::after {
	content: '\f078';
	font-family: 'FontAwesome';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion-ultra .accordion-button:not(.collapsed)::after {
	transform: translateY(-50%) rotate(180deg);
}

.faq-accordion-ultra .accordion-item .accordion-body {
	border-top: 1px solid var(--divider-color);
	padding: 20px;
}

.faq-accordion-ultra .accordion-item .accordion-body p {
	margin: 0;
}

.our-core-value-ultra {
	padding: 40px 0;
	background: var(--alternate-bg);
	background-size: cover;

}

.core-value-box-ultra {
	display: flex;
	flex-direction: column;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.core-value-item-ultra {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	background: var(--secondary-color);
	border-radius: 10px;
	padding: 30px;
}

.core-value-item-content-ultra p {
	max-width: 310px;
	margin: 0;
}

.core-value-counter-box-ultra {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}

.core-value-counter-content-ultra {
	width: calc(100% - 90px);
}

.core-value-counter-content-ultra h2 {
	font-size: 22px;
	line-height: 1.3em;
}

.core-value-counter-content-ultra h2 span {
	font-size: 30px;
	color: var(--gradient);
}

.core-value-counter-box-ultra .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.core-value-counter-box-ultra .icon-box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.core-value-item-ultra:hover .core-value-counter-box-ultra .icon-box::before {
	transform: scale(1);
}

.core-value-counter-box-ultra .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.core-value-item-ultra:hover .core-value-counter-box-ultra .icon-box img {
	filter: brightness(0) invert(1);
}

.core-value-image-ultra {
	height: 100%;
}

.core-value-image-ultra figure {
	position: relative;
	height: 100%;
	display: block;
	border-radius: 10px;
}

.core-value-image-ultra figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.7438;
	object-fit: cover;
	border-radius: 10px;
}

.core-value-image-box-ultra {
	position: relative;
	border-radius: 10px;
	padding: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.core-value-image-box-ultra .core-value-image-ultra {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
}

.core-value-image-box-ultra .core-value-image-ultra figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 60%;
}

.core-value-box-content-ultra {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	z-index: 1;
}

.core-value-box-content-ultra h2 {
	max-width: 270px;
	font-size: 22px;
	line-height: 1.3em;
	color: var(--white-color);
}

.core-value-box-content-ultra h2 span {
	font-size: 30px;
	color: var(--gradient);
}

.core-value-box-content-ultra p {
	color: var(--white-color);
	margin: 0;
}



.main-footer-ultra {
	padding: 120px 0 0;
}

.footer-logo-ultra img {
	width: 100%;
	max-width: 137px;
}

.about-footer-content-ultra {
	margin-top: 20px;
}

.about-footer-content-ultra p {
	color: var(--white-color);
	margin: 0;
}

.footer-social-links-ultra {
	margin-top: 40px;
}

.footer-social-links-ultra ul {
	list-style: none;
	display: inline-flex;
	gap: 15px;
	margin: 0;
	padding: 0;
}

.footer-social-links-ultra ul li a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links-ultra ul li a:hover {
	background: var(--gradient);
	border-color: var(--gradient);
}

.footer-social-links-ultra ul li a i {
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.footer-social-links-ultra ul li a:hover i {
	color: var(--primary-color);
}

.footer-links-box-ultra {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

.footer-links-ultra {
	max-width: 32%;
}

.footer-links-ultra h2 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links-ultra ul {
	list-style: disc;
	padding: 0 0 0 20px;
	margin: 0;
}

.footer-links-ultra ul li {
	line-height: 1.5em;
	color: var(--white-color);
	margin-bottom: 15px;
}

.footer-links-ultra ul li:last-child {
	margin-bottom: 0;
}

.footer-links-ultra ul li::marker {
	color: var(--gradient);
}

.footer-links-ultra ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-links-ultra ul li a:hover {
	color: var(--gradient);
}

.footer-contact-info-ultra {
	max-width: 43%;
}

.footer-contact-item-ultra {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.footer-contact-item-ultra:last-child {
	margin-bottom: 0;
}

.footer-contact-item-ultra .icon-box img {
	width: 100%;
	max-width: 24px;
}

.footer-contact-item-content-ultra {
	width: calc(100% - 34px);
}

.footer-contact-item-content-ultra p {
	color: var(--white-color);
	margin: 0;
}

.footer-contact-item-content-ultra p span {
	font-weight: 600;
}

.footer-contact-item-content-ultra p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-item-content-ultra p a:hover {
	color: var(--error-color);
}

.footer-copyright-ultra {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--dark-divider-color);
	padding: 60px 0;
	margin-top: 60px;
}

.footer-copyright-text-ultra p {
	color: var(--white-color);
	margin: 0;
}

.footer-privacy-policy-ultra ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 5px 30px;
	margin: 0;
	padding: 0;
}

.footer-privacy-policy-ultra ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
}

.footer-privacy-policy-ultra ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -18px;
	background: var(--gradient);
	border-radius: 100px;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
}

.footer-privacy-policy-ultra ul li:last-child:before {
	display: none;
}

.footer-privacy-policy-ultra ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-privacy-policy-ultra ul li a:hover {
	color: var(--gradient);
}

@media only screen and (max-width: 1440px) {

	.hero-ultra {
		min-height: 850px;
	}
}

@media only screen and (max-width: 1024px) {

	.hero-ultra::before {
		background: var(--primary-color);
		opacity: 60%;
	}

	.hero-content-ultra {
		margin-bottom: 30px;
	}

	.hero-info-box-ultra {
		max-width: 100%;
		margin-left: 0;
	}

	.about-us-content-ultra {
		margin-bottom: 30px;
	}

	.about-us-image-box-ultra {
		max-width: 585px;
		margin: 0 auto;
	}

	.why-choose-us-content-ultra {
		height: auto;
		margin: 0 0 30px;
	}

	.why-choose-image-box-ultra,
	.why-choose-image-ultra,
	.why-choose-image-ultra figure,
	.why-choose-image-ultra figure img,
	.why-choose-item-list-ultra {
		height: auto;
	}

	.why-choose-item-ultra {
		width: calc(50% - 15px);
	}

	.our-volunteer-content-ultra {
		position: initial;
		margin-bottom: 30px;
	}

	.our-volunteer-counter-item-list-ultra {
		gap: 40px;
	}

	.our-volunteer-counter-item-ultra {
		width: calc(20% - 32px);
		text-align: center;
	}

	.our-volunteer-counter-item-ultra::before {
		right: -20px;
		transform: rotate(6deg);
	}

	.faq-image-box-ultra {
		max-width: 610px;
		margin: 0 auto 30px;
	}

	.core-value-box-ultra.box-2 {
		flex-direction: row-reverse;
	}

	.core-value-box-ultra.box-2 .core-value-item-ultra,
	.core-value-box-ultra.box-2 .core-value-image-ultra {
		width: calc(50% - 15px);
	}

	.testimonial-client-box-ultra {
		margin: 20px 0 0;
	}

	.testimonial-cta-body-ultra {
		padding: 20px;
	}

	.testimonial-item-ultra {
		padding: 30px;
	}

	.about-footer-ultra {
		margin-bottom: 30px;
	}

	.about-footer-content-ultra {
		margin-top: 15px;
	}

	.footer-social-links-ultra {
		margin-top: 20px;
	}

	.footer-links-ultra {
		max-width: 38%;
	}
}


/* Symbolism Box - Professional */
.symbolism-box {
	padding: 20px 30px;
	margin-top: 40px;
	background: rgb(255, 255, 255);
	border-radius: 100px;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.symbolism-box p {
	font-size: 16px;
	color: #555;
	margin: 0;
	letter-spacing: 0.3px;
}

.symbolism-box em {
	font-style: italic;
	color: var(--error-color);
	font-weight: 500;
	font-style: normal;
}

.symbolism-box .dot {
	display: inline-block;
	width: 4px;
	height: 4px;
	background: #ccc;
	border-radius: 50%;
	margin: 0 12px;
	vertical-align: middle;
}

/* Dark version for dark sections */
.dark-section .symbolism-box {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.1);
}

.dark-section .symbolism-box p {
	color: rgba(255, 255, 255, 0.8);
}

.dark-section .symbolism-box .dot {
	background: rgba(255, 255, 255, 0.3);
}


.core-values-mini-box {
	margin-top: 20px;
	padding: 15px 20px;
	background: #f7f2f0;
	border-radius: 40px;
	text-align: center;
}

.core-values-mini-box p {
	margin: 0;
	font-size: 14px;
	color: #480000;
}


/* ── Hero Text Slider ───────────────────────────────────────── */
.hero-text-slider {
	overflow: hidden;
	position: relative;
}

.hero-text-slider .swiper-slide {
	opacity: 0;
	transition: opacity 0.4s ease;
}

.hero-text-slider .swiper-slide.swiper-slide-active {
	opacity: 1;
}

/* Stat layout */
.hero-stat-block {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hero-stat-number {
	display: block;
	font-size: clamp(3rem, 8vw, 6.5rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -2px;
	color: #ffff57;
}

.hero-stat-label {
	display: block;
	font-size: clamp(1rem, 2.5vw, 1.5rem);
	font-weight: 400;
	line-height: 1.3;
	color: rgb(255, 255, 255);
	max-width: 480px;
}

/* Slide 4 – donate + twin stats */
.hero-slide4-wrap {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.hero-twin-stats {
	display: flex;
	align-items: flex-end;
	gap: 32px;
	flex-wrap: wrap;
}

.hero-twin-stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hero-twin-stat .stat-num {
	font-size: clamp(2.8rem, 6vw, 5rem);
	font-weight: 800;
	letter-spacing: -2px;
	color: #fff;
	line-height: 1;
}

.hero-twin-stat .stat-lbl {
	font-size: clamp(0.8rem, 1.6vw, 1rem);
	color: rgba(255, 255, 255, 0.75);
	max-width: 200px;
	line-height: 1.3;
}

.hero-stat-divider-v {
	width: 1px;
	height: 60px;
	background: rgba(255, 255, 255, 0.35);
	align-self: center;
}

.hero-donate-cta {
	display: flex;
	align-items: center;
	gap: 18px;
	align-items: center;
	/* flex-wrap: wrap; */
	flex-direction: row;
}

.hero-donate-cta .btn-default.btn-highlighted {
	animation: pulse-glow 2.2s ease-in-out infinite;
}

@keyframes pulse-glow {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25);
	}

	50% {
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}
}

.hero-donate-note {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.65);
}

.hero-slider-pagination {
	margin-top: 10px;
}

/* Slide indicator dots override */
.hero-slider-pagination .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	transition: background 0.3s, transform 0.3s;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
	background: #fff;
	transform: scale(1.3);
}

/* Thin accent line above the stat number */
.hero-stat-accent {
	display: none;
	width: 48px;
	height: 3px;
	background: var(--color-primary, #e8a045);
	border-radius: 2px;
	margin-bottom: 12px;
}

/* Slide entrance animation */
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.swiper-slide-active .hero-stat-block,
.swiper-slide-active .hero-slide4-wrap {
	animation: slideUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}



/************************************/
/***    Hero Section with Video    ***/
/************************************/

.hero-prime {
	position: relative;
	min-height: 600px;
	padding: 150px 0;
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #fff873 100%);
}

.hero-prime .container {
	position: relative;
	z-index: 2;
}

/* Left Side - Impact Slider */
.hero-content-prime {
	padding-right: 30px;
}

.hero-stat-block {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.hero-stat-number {
	display: block;
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -2px;
	background: linear-gradient(135deg, #03352C, #F2D62E);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-stat-label {
	display: block;
	font-size: clamp(1rem, 1.8vw, 1.3rem);
	font-weight: 500;
	line-height: 1.4;
	color: #333;
	max-width: 90%;
}

/* Right Side - Video Wrapper */
.hero-video-wrapper {
	position: relative;
	padding: 10px;
}

.hero-video-box {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
	background: #000;
	aspect-ratio: 16 / 9;
}

.hero-video-box video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Video Control Button */
.video-control-btn {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 45px;
	height: 45px;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(5px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}

.video-control-btn i {
	color: white;
	font-size: 18px;
	transition: all 0.3s ease;
}

.video-control-btn:hover {
	background: var(--gradient);
	transform: scale(1.1);
}

.video-control-btn:hover i {
	color: var(--primary-color);
}

/* Swiper Pagination Styling */
.hero-slider-pagination {
	margin-top: 30px;
	text-align: left;
}

.hero-slider-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #ccc;
	opacity: 1;
	margin: 0 6px;
	transition: all 0.3s ease;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
	width: 28px;
	border-radius: 10px;
	background: var(--gradient);
}

/* Donate CTA Button */
.hero-donate-cta {
	margin-top: 25px;
}

.hero-donate-cta .btn-default {
	display: inline-block;
	padding: 14px 35px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 50px;
	background: var(--gradient);
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.hero-donate-cta .btn-default:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
	.hero-prime {
		min-height: 500px;
		padding: 60px 0;
	}

	.hero-stat-label {
		max-width: 100%;
	}
}


/* Optional: Gradient overlay for better text readability if needed */
.hero-prime::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 245, 240, 0.7) 50%, rgba(3, 53, 44, 0.1) 100%);
	pointer-events: none;
	z-index: 1;
}

.hero-prime .container {
	position: relative;
	z-index: 2;
}

/************************************/
/***   Hero Banner Floating PNGs   ***/
/************************************/

/* Container for all floating elements */
.hero-prime {
	position: relative;
	overflow: hidden;
}

/* Stars PNG - Top Right */
.hero-stars {
	position: absolute;
	/* top: 30px; */
	right: 0px;
	width: 120px;
	height: auto;
	z-index: 3;
	animation: floatStar 8s ease-in-out infinite;
	pointer-events: none;
}

/* Red Flower - Bottom Left */
.hero-red-flower {
	position: absolute;
	bottom: 10px;
	left: 30px;
	width: 100px;
	height: auto;
	z-index: 3;
	animation: floatFlower 7s ease-in-out infinite;
	pointer-events: none;
}

/* Butterfly - Floating around */
.hero-butterfly {
	position: absolute;
	top: 55%;
	right: 60%;
	width: 120px;
	height: auto;
	z-index: 3;
	opacity: 0.9;
	animation: floatButterfly 6s ease-in-out infinite;
	pointer-events: none;
}

/* Animations */
@keyframes floatStar {

	0%,
	100% {
		transform: translateY(0) rotate(0deg);
		opacity: 0.7;
	}

	50% {
		transform: translateY(-20px) rotate(8deg);
		opacity: 1;
	}
}

@keyframes floatFlower {

	0%,
	100% {
		transform: translateY(0) rotate(0deg);
		opacity: 0.8;
	}

	50% {
		transform: translateY(-15px) rotate(12deg);
		opacity: 1;
	}
}

@keyframes floatButterfly {

	0%,
	100% {
		transform: translateX(0) translateY(0) rotate(0deg);
		opacity: 0.85;
	}

	25% {
		transform: translateX(12px) translateY(-8px) rotate(8deg);
	}

	50% {
		transform: translateX(0px) translateY(-15px) rotate(0deg);
		opacity: 1;
	}

	75% {
		transform: translateX(-12px) translateY(-5px) rotate(-8deg);
	}
}

/************************************/
/***  Education Challenges Circles ***/
/************************************/

.edu-challenges-circle {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	overflow: hidden;
}

/* .section-title-center h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
} */

.challenges-circle-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 60px;
	position: relative;
}

/* Individual Circle */
.challenge-circle {
	position: relative;
	flex: 1;
	min-width: 280px;
	text-align: center;
}

.circle-float {
	width: 280px;
	height: 280px;
	margin: 0 auto;
	background: linear-gradient(135deg, #F2D62E, #ADC825);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
	transition: all 0.4s ease;
	animation: float 3s ease-in-out infinite;
	position: relative;
	overflow: hidden;
}

.circle-float::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent);
	pointer-events: none;
}

.circle-float::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.1), transparent);
	pointer-events: none;
}

/* Different animation delays for each circle */
.challenge-circle:nth-child(1) .circle-float {
	animation-delay: 0s;
}

.challenge-circle:nth-child(2) .circle-float {
	animation-delay: 0.5s;
}

.challenge-circle:nth-child(3) .circle-float {
	animation-delay: 1s;
}

.challenge-circle:hover .circle-float {
	transform: scale(1.05) translateY(-10px);
	box-shadow: 0 35px 60px rgba(0, 0, 0, 0.2);
}

/* Circle Number */
.circle-number {
	font-size: 42px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 15px;
	line-height: 1.2;
	text-transform: uppercase;
}

/* Circle Label */
.circle-label {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	max-width: 200px;
	line-height: 1.4;
	text-transform: uppercase;
}

/* Floating Animation */
@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}
}

/* Connecting lines between circles */
.challenges-circle-container::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gradient), var(--gradient), transparent);
	transform: translateY(-50%);
	z-index: 0;
}

/* ========================================
   HERO FULL VIDEO BACKGROUND
======================================== */

.hero-video-bg-full-new {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0;
}

/* ========================================
   FULL VIDEO BACKGROUND
======================================== */

.hero-video-full-bg-new {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video-full-bg-new video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.hero-overlay-full-new {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.30) 35%,
            rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
}

/* Container */
.hero-video-bg-full-new .container {
    position: relative;
    z-index: 5;
}

/* ── HERO WRAPPER ────────────────────────────────── */
.hero-full-wrapper-new {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 40px 0;
}

.hero-left-slider-new {
    width: 50%;
    max-width: 700px;
    position: relative;
}

/* ── SLIDER CONTAINER ───────────────────────────── */
.hero-text-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Each slide – fixed height to prevent layout shift */
.hero-text-slider .swiper-slide {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 0;
}

/* ── STAT BLOCK ──────────────────────────────────── */
.hero-stat-block-new {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 100%;
}

/* Accent Line (optional) */
.hero-stat-accent-new {
    width: 80px;
    height: 6px;
    border-radius: 50px;
    background: #ffe44f;
    display: none;
}

/* Number */
.hero-stat-number-new {
    font-family: var(--heading-custom, 'Cormorant Garamond', serif);
    display: block;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--golden);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Label */
.hero-stat-label-new {
    display: block;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    max-width: 650px;
}

/* ── LAST SLIDE – special styling ────────────────── */
.hero-slide-last .hero-stat-number-new {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--golden);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ── DONATE BUTTON ────────────────────────────────── */
.hero-donate-cta-new {
    margin-top: 15px;
}
.hero-donate-cta-new .btn-default {
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
}
.hero-donate-cta-new .btn-default:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ── PAGINATION ──────────────────────────────────── */
.hero-slider-pagination-new {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}
.hero-slider-pagination-new .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}
.hero-slider-pagination-new .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 50px;
    background: #ffe44f;
}

/* ── FLOATING PNGS ────────────────────────────────── */
.hero-stars-full-new {
    position: absolute;
    top: 20px;
    right: 0;
    width: 130px;
    z-index: 4;
    animation: heroStarFloatNew 8s infinite ease-in-out;
}

.hero-red-flower-full-new {
    position: absolute;
    bottom: 20px;
    left: 30px;
    width: 110px;
    z-index: 4;
    animation: heroFlowerFloatNew 7s infinite ease-in-out;
}

.hero-butterfly-full-new {
    position: absolute;
    top: 50%;
    left: 45%;
    width: 90px;
    z-index: 4;
    animation: heroButterflyFloatNew 6s infinite ease-in-out;
}

/* Animations */
@keyframes heroStarFloatNew {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px) rotate(8deg); }
}

@keyframes heroFlowerFloatNew {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px) rotate(10deg); }
}

@keyframes heroButterflyFloatNew {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(10px) translateY(-8px); }
    50% { transform: translateX(0px) translateY(-15px); }
    75% { transform: translateX(-10px) translateY(-5px); }
    100% { transform: translateX(0) translateY(0); }
}

/* ──────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
────────────────────────────────────────────────── */

/* ===== TABLETS & SMALL DESKTOPS (≤ 1024px) ===== */
@media (max-width: 1024px) {
    .hero-video-bg-full-new {
        min-height: auto;
        padding: 110px 0 80px;
    }
    .hero-left-slider-new {
        width: 70%;
        max-width: 100%;
    }
    .hero-stat-number-new {
        font-size: clamp(2.8rem, 6vw, 4.5rem);
    }
}

/* ── Utility ── */
.head-btn {
    background-color: var(--brick-red) !important;
    color: var(--white-color);
}

/* ========================================
   ABOUT MUKTANGAN NEW
======================================== */

/************************************/
/***   ABOUT MUKTANGAN – NEW LAYOUT ***/
/************************************/

.about-muktangan-new {
    padding: 50px 0 30px;
    background-color: rgba(255, 253, 209, 0.756);
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
}

/* ── Main wrapper ─────────────────── */
.about-muktangan-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 70px;
    flex-wrap: wrap;
}

/* ── LEFT: Image ──────────────────── */
.about-image-left {
    flex: 0 0 45%;
    max-width: 500px;
}

.about-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-container:hover img {
    transform: scale(1.03);
}

/* Years Badge – floating on image */
.years-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
    z-index: 5;
}

.years-badge h2 {
    font-size: 42px;
    color: #e41e26;
    line-height: 1;
    margin: 0;
    font-weight: 800;
}

.years-badge p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #444;
    font-weight: 600;
}

/* ── LEFT: Vision & Mission stacked ── */
.about-content-left {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ── RIGHT: Vision & Mission stacked ── */
.about-content-right {
    flex: 1;
    /* max-width: 600px; */
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.about-mission-box,
.about-vision-box {
    background: var(--white-color);
    border-radius: 16px;
    padding: 24px 28px;
    transition: all 0.4s ease;
    border-left: 5px solid transparent;
}

.about-mission-box {
    border-left-color: #e41e26;   /* brick-red */
}

.about-vision-box {
    border-left-color: #adc825;    /* pear-green */
}

.about-mission-box:hover,
.about-vision-box:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 1);
}

.about-mission-box h3,
.about-vision-box h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.about-mission-box h3 {
    color: #e41e26;
}

.about-vision-box h3 {
    color: #adc825;
}

.about-mission-box p,
.about-vision-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* ── RIGHT: Core Values (compact) ───────────── */
.about-core-right {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
}

.core-values-compact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    padding: 10px 0;
}

.core-label {
    font-family: var(--heading-custom);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--error-color);
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--pear-green);
    padding-bottom: 6px;
    display: inline-block;
}

.core-item {
    display: flex;
    align-items: baseline;
    gap: 4px;
    /* font-family: var(--heading-custom); */
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 4px;
}

.core-letter {
    font-size: 34px;
    font-weight: 900;
    color:var(--error-color);
    line-height: 1;
    min-width: 24px;
}

.core-word {
    font-size: 20px;
    font-weight: 700;
    color: var(--pear-green);
    line-height: 1.2;
	spacing:10px;
}

.core-word-small {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--pear-green);
    margin-left: 2px;
}

/* ========================================
   MUKTANGAN MEANING SECTION
======================================== */

.muktangan-meaning {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

/* Main Container */
.meaning-container {
	text-align: center;
	padding: 0 20px;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

/* First Row - Words */
.meaning-words {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

/* Word Groups - Each word in its own column */
.word-group {
	display: inline-block;
	text-align: center;
	min-width: 180px;
}

/* Quotation Marks - Red */
.quote-left,
.quote-right {
	font-size: 80px;
	font-weight: 600;
	color: var(--error-color);
	line-height: 1;
	font-family: var(--heading-custom);
}

/* Main Words - Green */
.word-mukt {
	font-size: 72px;
	font-weight: 800;
	color: var(--pear-green);
	letter-spacing: 2px;
	line-height: 1;
	font-family: var(--heading-custom);
	display: block;
}

.word-aangan {
	font-size: 72px;
	font-weight: 800;
	color: var(--pear-green);
	letter-spacing: 2px;
	line-height: 1;
	font-family: var(--heading-custom);
	display: block;
}

.word-and {
	font-size: 48px;
	font-weight: 700;
	color: var(--error-color);
	line-height: 1;
	font-family: 'Baloo 2', cursive;
}

/* Second Row - Meanings (Two columns aligned with words) */
.meanings-row {
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
}

.meaning-col {
	flex: 1;
	min-width: 180px;
	text-align: center;
}

/* First column meaning (below Mukt) */
.meaning-col:first-child {
	max-width: 180px;
}

/* Second column meaning (below Aangan) */
.meaning-col:last-child {
	max-width: 320px;
}

.meaning-text {
	font-size: 22px;
	font-weight: 800;
	color: var(--error-color);
	margin: 0;
	line-height: 1.5;
	font-family: var(--oregano-font);

}

.section-title .meaning-text p {
	margin-top: 0;
}

/* ── Merge state – bring words together ── */
.meaning-words.merged {
    gap: 0 !important;                 /* removes spacing between words */
}
.meaning-words.merged .word-group {
    min-width: auto !important;
    display: inline !important;
}
.meaning-words.merged .word-mukt,
.meaning-words.merged .word-aangan {
    display: inline !important;
    letter-spacing: 0 !important;      /* removes extra letter spacing */
}

/* The merged word (optional) – keep it hidden */
.ma-merged-content {
    opacity: 0;
    transition: opacity 0.4s ease;
}
.ma-merged-content.visible {
    opacity: 1;
}

/* Add Here About Responsive */
/* Add Here About Responsive */
/* Add Here About Responsive */


/* Donation Box Styling */
.donate-value-prime label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 15px 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.donate-amount {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	display: block;
	margin-bottom: 5px;
}

.donate-subtitle {
	font-size: 11px;
	font-weight: 500;
	color: #666;
	display: block;
	line-height: 1.3;
}

.donate-popular {
	display: inline-block;
	font-size: 9px;
	font-weight: 700;
	background: #F2D62E;
	color: var(--primary-color);
	padding: 3px 8px;
	border-radius: 20px;
	margin-top: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Selected/hover state */
.donate-value-prime input[type="radio"]:checked+label {
	background: var(--gradient);
}

.donate-value-prime input[type="radio"]:checked+label .donate-amount {
	color: var(--primary-color);
}

.donate-value-prime input[type="radio"]:checked+label .donate-subtitle {
	color: var(--primary-color);
}

.donate-value-prime input[type="radio"]:checked+label .donate-popular {
	background: white;
	color: var(--primary-color);
}

/* Hover effect */
.donate-value-prime label:hover {
	transform: translateY(-2px);
}


/* ========================================
   CORE VALUES SECTION (5 COLUMN LAYOUT)
======================================== */

.core-values-section {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
	background: var(--alternate-bg);
}

/* Wrapper */
.core-values-wrapper {
	display: flex;
	justify-content: center;
	gap: 20px;
	/* Reduced gap to fit 5 columns */
	margin-top: 20px;
	flex-wrap: wrap;
}

/* Each Item - 5 Columns */
.core-value-item {
	width: calc(20% - 16px);
	/* Perfect 5-column math */
	text-align: center;
	position: relative;
}

/* Image Area */
.core-image-wrap {
	position: relative;
	display: inline-block;
}

/* Yellow Brush BG */
.yellow-brush {
	position: absolute;
	width: 100%;
	height: 180px;
	background: #ffd632;
	border-radius: 40% 60% 50% 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-5deg);
	z-index: 1;
	filter: blur(1px);
}

/* PNG IMAGE */
.core-image-wrap img {
	position: relative;
	z-index: 2;
	max-width: 100%;
	/* Ensures images scale down in 5 columns */
	height: 160px;
	/* Fixed height to keep all images uniform */
	object-fit: contain;
	transition: all 0.4s ease;
}

.core-value-item:hover .core-image-wrap img {
	transform: translateY(-10px) scale(1.03);
}

/* White Brush Text BG */
.core-text-box {
	background: url('../images/our work/brush.png') no-repeat center center;
	background-size: 100% 100%;
	margin: -10px auto 0;
	position: relative;
	z-index: 5;
	width: 100%;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
}

/* Heading */
.core-text-box h3 {
	margin: 0;
	line-height: 1.1;
	font-weight: 700;
}

/* Big Red Letter */
.big-red {
	font-size: 42px;
	/* Scaled down for 5 columns */
	color: #e32020;
	font-weight: 900;
	line-height: 1;
	display: inline-block;
}

/* Green Text */
.green-text {
	font-size: 20px;
	/* Scaled down for 5 columns */
	color: #0f9b55;
	font-weight: 700;
	vertical-align: super;
}

.green-small {
	margin-left: 0;
	font-size: 16px;
	display: block;
	margin-top: -5px;
}

/* Description */
.core-desc {
	margin-top: 15px;
	font-size: 14px;
	line-height: 1.6;
	color: #555;
	width: 100%;
}

/* Hover */
.core-value-item:hover .core-text-box {
	transform: translateY(-5px);
	transition: all 0.4s ease;
}

/* ========================================
   RESPONSIVE GRID SCALING
======================================== */

@media (max-width: 1199px) {
	.core-values-wrapper {
		gap: 30px;
	}

	/* Wrap to 3 items top, 2 items bottom on smaller desktops */
	.core-value-item {
		width: calc(33.333% - 20px);
	}

	.core-text-box {
		width: 90%;
	}

	.green-text {
		font-size: 24px;
	}

	.big-red {
		font-size: 50px;
	}
}

/* Lines PNG - Left Side Background for Specific Sections */
.approach-section,
.how-we-work,.home-alumni-featured,
.partners-supporters-section,
.media-gallery-square-section {
	position: relative;
	overflow: hidden;
}

.core-values-section::before,
.how-we-work::before,.home-alumni-featured::before,
.partners-supporters-section::before,
.media-gallery-square-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 100%;
	background: url('../images/lines2.png') no-repeat left center;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 200px;
	/* opacity: 0.15; */
	pointer-events: none;
	z-index: 0;
}

/* Make sure container stays above the lines */
.approach-section .container,
.how-we-work .container,.home-alumni-featured,
.partners-supporters-section .container,
.media-gallery-square-section .container {
	position: relative;
	z-index: 1;
}


/* Lines PNG - Right Side Bottom Background for Specific Sections (Mirrored) */
.approach-section,
.how-we-work,
.partners-supporters-section,
.media-gallery-square-section {
	position: relative;
	overflow: hidden;
}

/* Left side - top (existing) */
.approach-section::before,
.how-we-work::before,.home-alumni-featured::before,
.partners-supporters-section::before,
.media-gallery-square-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 100%;
	background: url('../images/lines2.png') no-repeat left center;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 200px;
	pointer-events: none;
	z-index: 0;
}

/* Right side - bottom (mirrored/reversed) */
.approach-section::after,
.how-we-work::after,
.partners-supporters-section::after,
.media-gallery-square-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 300px;
	height: 100%;
	background: url('../images/lines2.png') no-repeat right bottom;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right bottom;
	transform: scaleX(-1);
	/* Mirror the image horizontally */
	margin-bottom: 10px;
	pointer-events: none;
	z-index: 0;
}

/* Make sure container stays above the lines */
.approach-section .container,
.how-we-work .container,
.partners-supporters-section .container,
.media-gallery-square-section .container {
	position: relative;
	z-index: 1;
}

/* ============================================
     FULL WIDTH BANNER LEAD MAGNETS
     MINIMAL TEXT VERSION
   ============================================ */

.banner-lead-magnet {
	position: relative;
	width: 100%;
	min-height: 400px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* Different heights for different banners */
.banner-lead-magnet-left,
.banner-lead-magnet-right {
	min-height: 450px;
}

.banner-lead-magnet-center {
	min-height: 500px;
}

.banner-lead-magnet-simple {
	min-height: 350px;
}

/* Black Overlay */
.banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.65);
	z-index: 1;
	transition: all 0.3s ease;
}

/* Different overlay densities */
.banner-lead-magnet-left .banner-overlay {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.banner-lead-magnet-right .banner-overlay {
	background: linear-gradient(270deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.banner-lead-magnet-center .banner-overlay {
	background: rgba(0, 0, 0, 0.7);
}

.banner-lead-magnet-simple .banner-overlay {
	background: rgba(0, 0, 0, 0.6);
}

/* Container */
.banner-lead-magnet .container {
	position: relative;
	z-index: 2;
	width: 100%;
}

/* Content Wrapper */
.banner-content {
	max-width: 700px;
	padding: 60px 20px;
}

.banner-lead-magnet-left .banner-content {
	margin-left: 0;
	margin-right: auto;
}

.banner-lead-magnet-right .banner-content {
	margin-left: auto;
	margin-right: 0;
}

.banner-lead-magnet-center .banner-content,
.banner-lead-magnet-simple .banner-content {
	margin-left: auto;
	margin-right: auto;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

/* Badge */
.banner-badge {
	display: inline-block;
	background: var(--pear-green);
	color: #1a1a1a;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 6px 18px;
	border-radius: 50px;
	margin-bottom: 20px;
}

/* Headings */
.banner-content h2 {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 15px;
	color: #ffffff;
}

.banner-content h2 .highlight {
	color: var(--golden);
	position: relative;
	display: inline-block;
}

/* Paragraph */
.banner-content p {
	font-size: 1.2rem;
	line-height: 1.5;
	color: var(--white-color);
	margin-bottom: 30px;
	max-width: 500px;
}

.banner-lead-magnet-center .banner-content p,
.banner-lead-magnet-simple .banner-content p {
	margin-left: auto;
	margin-right: auto;
}

.banner-lead-magnet-right .banner-content p {
	margin-left: auto;
}

/* Buttons */
.banner-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.banner-lead-magnet-center .banner-buttons,
.banner-lead-magnet-simple .banner-buttons {
	justify-content: center;
}

.banner-lead-magnet-right .banner-buttons {
	justify-content: flex-end;
}

.btn-banner {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: var(--pear-green);
	color: #1a1a1a;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(242, 214, 46, 0.4);
	color: #1a1a1acf;
}

.btn-outline {
	background: transparent;
	border: 2px solid #F2D62E;
	color: #F2D62E;
}

.btn-outline:hover {
	background: #F2D62E;
	color: #1a1a1a;
	transform: translateY(-3px);
}

.btn-large {
	padding: 16px 40px;
	font-size: 1.2rem;
}

/* Animation on Scroll */
.banner-lead-magnet {
	animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/************************************/
/***       06. About Us css       ***/
/************************************/

.about-us {
	padding: 80px 0;
	background: var(--primary-bg);
}

/* Image Wrapper - Free, No Box */
.about-us-image-wrapper {
	position: relative;
	text-align: center;
}

.about-us-founder-img {
	width: 100%;
	border-radius: 500px;
	max-width: 400px;
	height: auto;
	display: block;
	margin: 0 auto;
	transition: transform 0.4s ease;
}

.about-us-founder-img:hover {
	transform: scale(1.02);
}

/* Content Styles */

.about-us-content .section-title {
	margin-bottom: 30px;
}

/* .about-us-content .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
	font-family: var(--baloo-font);
} */

.about-us-content .section-title p {
	font-size: 16px;
	line-height: 1.7;
	color: #555;
	margin-bottom: 20px;
}

.about-us-content .section-title p b {
	color: var(--primary-color);
}

/* Footer */
.about-us-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 20px;
}

.video-play-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	z-index: 1;
}

.video-play-button a {
	position: relative;
	height: 50px;
	width: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.video-play-button:hover a {
	background: var(--primary-color);
}

.video-play-button a i {
	position: relative;
	font-size: 16px;
	color: var(--primary-color);
	margin-left: 2px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.video-play-button:hover a i {
	color: var(--white-color);
}

.video-play-button p {
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
}

/************************************/
/***       How We Work Section    ***/
/************************************/

.how-we-work {
	padding: 50px 0;
	/* background-image: url("../images/philosophy.png"); */
	background-size: cover;
	background-position: center;
	overflow: hidden;
	position: relative;
}

/* Section Spacing */
/* .how-we-work .section-row {
	margin-bottom: 90px;
} */

.how-we-work .section-title-content p {
	font-size: 17px;
	line-height: 1.8;
	color: #5f5f5f;
	margin-bottom: 25px;
}

/* Grid */
.schools-inline-grid {
	position: relative;
	z-index: 2;
	align-items: flex-end;
	margin-bottom: 50px;
}

/************************************/
/***         Glass Cards          ***/
/************************************/
/* 
.school-glass-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 180px 30px 40px;
	text-align: center;
	background: rgba(255, 255, 255, 0.26);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 36px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.35);
	transition: all 0.4s ease;
	overflow: visible;
} */

/* Proper Stagger (Desktop) */
.card-left {
	margin-top: 60px;
}
.school-glass-card {
    padding: 25px;
    border-radius: 30px;
}

.card-center {
	margin-top: 0;
}

.card-right {
	margin-top: 60px;
}

/* Hover */
.school-glass-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/************************************/
/***         Image Area           ***/
/************************************/

/* .school-image-wrap {
	position: absolute;
	top: -95px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
} */

/* PNG Image */
/* .school-image-wrap img {
	max-width: 300px;
	height: auto;
	position: relative;
	z-index: 3;
	transition: all 0.4s ease;
} */

.school-glass-card:hover .school-image-wrap img {
	transform: translateY(-6px);
}

/************************************/
/***      Watercolor Glow         ***/
/************************************/

/* .glow {
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	filter: blur(45px);
	opacity: 0.7;
	z-index: 1;
}

.glow-yellow {
	background: rgba(255, 228, 130, 0.5);
}

.glow-pink {
	background: rgba(255, 197, 214, 0.45);
}

.glow-purple {
	background: rgba(215, 202, 255, 0.5);
} */

/************************************/
/***        Ground Shadow         ***/
/************************************/

/* .ground-shadow {
	position: absolute;
	width: 160px;
	height: 28px;
	background: rgba(0, 0, 0, 0.12);
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	filter: blur(16px);
	z-index: 0;
} */

/************************************/
/***           Content            ***/
/************************************/

.school-glass-content {
	position: relative;
	z-index: 5;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 25px 0px;
}

/* Title */
.school-glass-content h3 {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 22px;
	color: var(--near-black);
}


/************************************/
/***    10.  Our Programs CSS         ***/
/************************************/

.our-program {
	padding: 50px 0;
	background: var(--alternate-bg);
}

/* Cards Grid */
.cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 50px;
}

/* Preview Card */
.previewCard {
	padding: 20px;
	border-radius: 20px;
	aspect-ratio: 3/4;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	background: #1a1a1a;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.35s ease-in-out;
	position: relative;
	/* height: 420px; */
}

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

.previewCard:hover .backdrop {
	transform: scale(1.1);
}

.previewCard:hover svg {
	transform: translateX(5px);
}

/* Backdrop Image - Crystal Clear */
.backdrop {
	position: absolute;
	object-fit: cover;
	pointer-events: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: transform 0.5s ease-in-out;
}

/* Pure gradient overlay - NO COLORS, just smooth dark gradient */
.previewCard::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60%;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(to bottom,
			transparent 0%,
			transparent 20%,
			rgba(0, 0, 0, 0.2) 40%,
			rgba(0, 0, 0, 0.6) 60%,
			rgba(0, 0, 0, 0.85) 80%,
			rgba(0, 0, 0, 0.95) 100%);
}

/* Content */
.content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.category {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 4px;
}

.title {
	font-size: 20px;
	font-weight: 700;
	color: white;
	margin: 0;
	line-height: 1.3;
}

.description {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-top: 8px;

	/* Hidden normally */
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transform: translateY(10px);
	pointer-events: none;

	transition: all 0.45s ease;
}

.description p {
	font-size: 15px;
	line-height: 1.5;
	color: white;
	margin: 0;
	flex: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);

	/* Remove the 3-line limitation */
	display: block;
	overflow: visible;
}

.card-link {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.card-link:hover {
	background: rgba(255, 255, 255, 0.4);
}

.card-link svg {
	width: 18px;
	height: 18px;
	fill: white;
	transition: transform 0.3s ease;
}

/* Remove all colored gradients - all cards have same dark gradient */
/* Responsive */
@media (max-width: 1200px) {
	.cards {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

/************************************/
/***    Hover Full Color Effect   ***/
/************************************/

/* Smooth Transition */
.previewCard,
.previewCard .backdrop,
.previewCard .content,
.previewCard .category,
.previewCard .title,
.previewCard .description p,
.previewCard .card-link,
.previewCard::before,
.previewCard::after {
	transition: all 0.45s ease;
}

.previewCard:hover .description {
	opacity: 1;
	max-height: 250px;
	transform: translateY(0);
	pointer-events: auto;
}

/* NEW COLOR LAYER */
.previewCard::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0;
}

/************************************/
/***      CARD HOVER COLORS       ***/
/************************************/

/* Card 1 - Dark Green */
.program-card-1::before {
	background: #070;
}

/* Card 2 - Fade Green */
.program-card-2::before {
	background: var(--new-color);
}

/* Card 3 - Red */
.program-card-3::before {
	background: var(--brick-red);
}

/* Card 4 - Yellow */
.program-card-4::before {
	background: var(--golden);
}

/************************************/
/***          HOVER               ***/
/************************************/

.previewCard:hover {
	transform: translateY(-10px);
}

/* Hide Image */
.previewCard:hover .backdrop {
	opacity: 0;
	transform: scale(1.08);
}

/* Show Full Color */
.previewCard:hover::before {
	opacity: 1;
}

/* Remove Dark Overlay */
.previewCard:hover::after {
	opacity: 0;
}

/************************************/
/***      FULL DESCRIPTION        ***/
/************************************/

.previewCard:hover .description p {
	-webkit-line-clamp: unset;
	overflow: visible;
}
/************************************/
/***  Our Programs - Mobile Carousel ***/
/************************************/

.program-slider-pagination {
	display: none;
}

/************************************/
/***       TEXT COLORS            ***/
/************************************/

/* Default hover text */
.previewCard:hover .category,
.previewCard:hover .title,
.previewCard:hover .description p {
	color: #fff;
}

/* Yellow Card Needs Dark Text */
.program-card-2:hover .title,
.program-card-2:hover .category,
.program-card-2:hover .description p {
	color: var(--near-black);
}

/* Yellow Card Needs Dark Text */
.program-card-4:hover .category,
.program-card-4:hover .title,
.program-card-4:hover .description p {
	color: var(--near-black);
}

/************************************/
/***        BUTTON STYLE          ***/
/************************************/

.previewCard:hover .card-link {
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(8px);
}

/* Yellow Card Button */
.program-card-4:hover .card-link {
	background: rgba(0, 0, 0, 0.12);
}

/* SVG Colors */
.previewCard:hover .card-link svg {
	fill: #fff;
}

.program-card-4:hover .card-link svg {
	fill: #222;
}

/************************************/
/***     BETTER CONTENT SPACE     ***/
/************************************/

.previewCard:hover .content {
	gap: 5px;
}

/* Slightly Bigger Text on Hover */
.previewCard:hover .title {
	font-size: 22px;
}

.previewCard:hover .description p {
	font-size: 15px !important;
	line-height: 1.6;
}

/* ============================================================
   IMPACT SCATTER SECTION
   Ref: scattered stats around centre image - sketch/drawing feel
============================================================ */

.impact-scatter-section {
	position: relative;
	padding: 50px 0;
	overflow: hidden;
	background: transparent;
}

/* Full-bleed background image */
.impact-scatter-bg {
	position: absolute;
	inset: 0;
	background: url("../images/handprints.png") no-repeat center center / cover;
	pointer-events: none;
	z-index: 0;
	opacity: 0.5;
}

.impact-scatter-section .container {
	position: relative;
	z-index: 1;
}



/* ── Three-column grid ──────────────────────────────────── */

.impact-scatter-grid {
	display: grid;
	grid-template-columns: 1.2fr auto 1.2fr;
	gap: 0 60px;
	align-items: center;
	min-height: 500px;
}

/* ── Left / Right columns - stat items ─────────────────── */

.impact-scatter-col {
	display: flex;
	flex-direction: column;
	gap: 70px;
	justify-content: center;
}

/* Each stat block */
.impact-stat-item {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

/* Left column - text right-aligned toward image */
.impact-scatter-left .impact-stat-item {
	align-items: flex-end;
	text-align: right;
}

/* Right column - text left-aligned toward image */
.impact-scatter-right .impact-stat-item {
	align-items: flex-start;
	text-align: left;
}

/* Big sketch-font numbers */
.isi-number {
	font-family: var(--sketch-font, 'Caveat', cursive);
	font-size: clamp(2.6rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1;
	color: var(--brick-red);
	display: block;
}

/* Description text */
.isi-label {
	font-size: 1rem;
	font-weight: 500;
	color: var(--near-black);
	line-height: 1.5;
	display: block;
}

/* Small decorative accents near each stat */
.isi-deco {
	position: absolute;
	pointer-events: none;
	opacity: 0.35;
}

/* Star deco - top-left stat */
.isi-deco-star {
	width: 28px;
	height: 28px;
	background: var(--golden);
	clip-path: polygon(50% 0%, 72% 27%, 98% 35%, 78% 57%, 82% 85%,
			50% 72%, 18% 85%, 22% 57%, 2% 35%, 28% 27%);
	top: 0;
	left: -36px;
}

.impact-scatter-left .isi-deco-star {
	left: auto;
	right: -36px;
}

/* Circle deco - top-right stat */
.isi-deco-circle {
	width: 22px;
	height: 22px;
	border: 3px solid var(--pear-green);
	border-radius: 50%;
	top: 4px;
	right: -32px;
}

/* Pencil/line deco - bottom-left stat */
.isi-deco-pencil {
	width: 40px;
	height: 3px;
	background: var(--brick-red);
	border-radius: 4px;
	bottom: -10px;
	right: 0;
}

/* Dot cluster - bottom-right stat */
.isi-deco-dot {
	width: 10px;
	height: 10px;
	background: var(--golden);
	border-radius: 50%;
	bottom: -14px;
	left: 0;
	box-shadow: 14px 0 0 var(--pear-green), 28px 0 0 var(--brick-red);
}

/* ── Centre column ──────────────────────────────────────── */

.impact-scatter-centre {
	/* width: clamp(240px, 30vw, 360px); */
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	position: relative;
}

/* Big middle stat - sits ABOVE the image */
.impact-big-stat {
	text-align: center;
	margin-bottom: 8px;
	z-index: 2;
	position: relative;
}

.isi-number-big {
	font-family: var(--sketch-font, 'Caveat', cursive);
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 700;
	color: var(--pear-green) !important;
	display: block;
	line-height: 1;
}

.isi-label-big {
	font-size: 1rem;
	font-weight: 500;
	color: var(--near-black);
	line-height: 1.45;
	display: block;
	text-align: center;
	max-width: 240px;
	margin: 4px auto 0;
}

/* Handprints deco - above image */
.impact-handprints {
	display: flex;
	justify-content: center;
	gap: 2px;
	font-size: 1.6rem;
	position: absolute;
	top: 58px;
	right: -20px;
	z-index: 3;
	transform: rotate(15deg);
	line-height: 1;
}

/* Colour tints on emoji - via filter hue-rotate trick */
.hp-green {
	filter: hue-rotate(80deg) saturate(1.8);
}

.hp-yellow {
	filter: hue-rotate(30deg) saturate(2) brightness(1.2);
}

.hp-red {
	filter: hue-rotate(-30deg) saturate(2);
}

/* Individual stagger/offset for handprints */
.hp-1 {
	transform: rotate(-10deg) translateY(4px);
}

.hp-2 {
	transform: rotate(8deg) translateY(-8px);
}

.hp-3 {
	transform: rotate(25deg) translateY(0px);
}



.impact-centre-img {
	width: 100%;
	display: block;
	object-fit: cover;
	object-position: top center;
	max-width: 420px;
}

/* ── CTA row ────────────────────────────────────────────── */

.impact-scatter-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 10px;
}

/* ── IMPACT SCATTER SECTION ──────────────────────────── */

@media (max-width: 1100px) {
	.impact-scatter-grid {
		gap: 0 24px;
	}

	.isi-number {
		font-size: 2.8rem;
	}

	.isi-number-big {
		font-size: 3.5rem;
	}

	.impact-centre-img {
		min-height: 280px;
		max-height: 340px;
	}
}


.donate-now-prime {
	position: relative;
	background-image: url('../images/DSC01104.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 80px 0;
	overflow: hidden;
}

.donate-now-prime::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(3, 53, 44, 0.50) 100%);
	z-index: 1;
}

.donate-now-prime .container {
	position: relative;
	z-index: 2;
}

.donate-box-prime {
	position: relative;
	max-width: 600px;
	background-color: var(--secondary-color);
	border-radius: 10px;
	padding: 40px;
	margin-left: auto;
	z-index: 1;
}

.donate-form-prime .form-control {
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 700;
	background-color: transparent;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	box-shadow: none;
	outline: none;
	padding: 17px 20px;
}

.donate-form-prime .form-control::placeholder {
	color: var(--text-color);
	opacity: 50%;
}

.donate-value-box-prime {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}

.donate-form-prime .donate-value-prime {
	width: calc(33.33% - 6.66px);
}

.donate-value-box-prime .donate-value-prime input {
	position: absolute;
	left: -9999px;
}

.donate-value-box-prime .donate-value-prime input[type="radio"]:hover+label,
.donate-value-box-prime .donate-value-prime input[type="radio"]:focus+label,
.donate-value-box-prime .donate-value-prime input[type="radio"]:checked+label {
	background-color: var(--gradient);
	color: var(--primary-color);
}

.donate-value-box-prime .donate-value-prime label {
	position: relative;
	font-weight: 400;
	line-height: 1em;
	background-color: var(--bg-color);
	color: var(--text-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	overflow: hidden;
	padding: 22px;
	transition: all 0.3s ease-in-out;
}

.donate-box-prime .donate-form-prime .form-group-btn-prime .btn-default {
	width: 100%;
	display: block;
	text-align: center;
	padding: 17px;
}

.donate-box-prime .donate-form-prime .form-group-btn-prime .btn-default::before {
	display: none;
}

@media only screen and (max-width: 767px) {

	/* Disable laggy parallax */
	.donate-now-prime,
	.parallaxie {
		background-attachment: scroll !important;
		transform: none !important;
	}

	@media only screen and (max-width: 767px) {
		.donate-now-prime {
			/* VERY IMPORTANT */
			background-attachment: scroll !important;
			background-size: cover;
			background-position: center center;
			padding: 50px 0;
		}
	}

	.donate-box-prime {
		padding: 24px 18px;
		border-radius: 18px;
	}

	/* KEEP 3 COLUMNS */
	.donate-value-box-prime {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
		margin-bottom: 24px;
	}

	.donate-form-prime .donate-value-prime {
		width: 100%;
	}

	/* COMPACT CARDS */
	.donate-value-box-prime .donate-value-prime label {
		min-height: 82px;
		padding: 10px 6px;

		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;

		border-radius: 10px;
	}

	/* SMALLER TEXT */
	.donate-amount {
		font-size: 16px;
		line-height: 1.1;
		margin-bottom: 3px;
		font-weight: 700;
	}

	.donate-subtitle {
		font-size: 10px;
		line-height: 1.2;
		text-align: center;
	}

	/* POPULAR BADGE */
	.donate-popular {
		font-size: 8px;
		padding: 2px 6px;
		margin-top: 4px;
		border-radius: 20px;
	}

	/* INPUT */
	.donate-form-prime .form-control {
		padding: 14px 16px;
		font-size: 15px;
	}

	/* BUTTON */
	.donate-box-prime .donate-form-prime .form-group-btn-prime .btn-default {
		padding: 14px;
		font-size: 16px;
	}

}



.our-key-fact-prime {
	padding: 120px 0;
}

.key-fact-item-prime {
	position: relative;
	height: calc(100% - 30px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	border-radius: 10px;
	padding: 40px;
	margin-bottom: 30px;
	overflow: hidden;
}

.key-fact-item-prime.box-1 {
	min-height: 500px;
	background-color: var(--secondary-color);
	background-image: url('../images/our-key-fact-item-bg-image-prime.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
	display: flex;
	flex-wrap: wrap;
	flex-direction: initial;
	align-items: end;
	gap: 30px;
	padding: 60px;
}

.key-fact-item-content-box-prime {
	width: calc(40% - 15px);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

.key-fact-item-prime .icon-box img {
	width: 100%;
	max-width: 100px;
}

.key-fact-item-prime.box-1 .key-fact-item-image-prime {
	width: calc(60% - 15px);
	margin: 0 -60px -60px 0;
}

.key-fact-item-image-prime figure {
	display: block;
}

.key-fact-item-image-prime figure img {
	width: 100%;
	aspect-ratio: 1 / 0.833;
	object-fit: cover;
}

.key-fact-item-prime.box-1 .key-fact-item-content-prime {
	max-width: 320px;
}

.key-fact-item-content-prime p {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
}

.key-fact-item-content-prime p span {
	color: var(--gradient);
}

.key-fact-item-prime.box-2 {
	background-color: var(--gradient);
}

.key-fact-item-counter-content-prime h2 {
	font-size: 50px;
	font-weight: 600;
}

.key-fact-item-prime.box-2 .key-fact-item-image-prime {
	margin: 0 -40px 0;
}

.key-fact-item-prime.box-2 .key-fact-item-image-prime figure img {
	aspect-ratio: 1 / 0.47;
}

.key-fact-item-prime.box-2 .key-fact-item-content-prime {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
}

.key-fact-item-prime.box-2 .key-fact-item-content-prime p {
	font-size: 16px;
	font-weight: 400;
}

.our-testimonial-prime {
	background: var(--secondary-color) url('../images/section-bg-image.png') no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 120px 0;
}

.testimonial-content-prime {
	/* height: 100%; */
	position: sticky;
	top: 30px;
	/* display: flex; */
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	margin-right: 15px;
}

.testimonial-list-prime ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.testimonial-list-prime ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.testimonial-list-prime ul li:last-child {
	margin-bottom: 0;
}

.testimonial-list-prime ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--gradient);
	top: 0;
	left: 0;
}

.testimonial-btn-prime {
	margin-top: 40px;
}

.testimonial-item-prime {
	position: sticky;
	top: 30px;
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--divider-color);
	background-color: var(--bg-color);
	border-radius: 10px;
	padding: 10px;
	margin-bottom: 30px;
}

.testimonial-item-prime:last-child {
	margin-bottom: 0;
}

.testimonial-item-image-prime {
	width: 37%;
}

.testimonial-item-image-prime figure {
	display: block;
	height: 100%;
	border-radius: 10px;
}

.testimonial-item-image-prime figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
	border-radius: 10px;
}

.testimonial-item-body-prime {
	width: 63%;
	align-content: center;
	padding: 30px 30px 30px 40px;
}

.testimonial-item-rating-prime i {
	color: var(--gradient);
}

.testimonial-item-content-prime {
	margin-top: 20px;
}

.testimonial-item-content-prime p {
	margin: 0;
	font-size: 14px;
}

.testimonial-item-author-prime {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 50px;
}

.testimonial-author-content-prime h2 {
	font-size: 20px;
	font-weight: 600;
}

.testimonial-author-content-prime p {
	margin: 5px 0 0;
}

.testimonial-item-quote-prime img {
	width: 100%;
	max-width: 40px;
}

/************************************/
/***   14. Our Testimonials css   ***/
/************************************/

.our-testimonials-ultra {
              /* better than 100% auto */
    padding: 80px 0;
	background: var(--alternate-bg);
}

.testimonial-slider-ultra .swiper-wrapper {
    cursor: default;                   /* changed from 'none' for usability */
}

/* ---- Testimonial Item (Side‑by‑side) ---- */
.testimonial-item-ultra {
    display: flex;
    flex-direction: row;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.testimonial-item-ultra:hover {
    transform: translateY(-5px);       /* only vertical hover effect */
    /* remove translateX to avoid layout shift */
}

/* ---- Left Side - Image ---- */
.testimonial-image-side {
    width: 30%;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
    flex-shrink: 0;                   /* prevent shrinking */
}

.testimonial-image-side figure {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.testimonial-image-side figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-in-out;
}

.testimonial-item-ultra:hover .testimonial-image-side figure img {
    transform: scale(1.06);
}

.testimonial-image-side::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    z-index: 1;
    pointer-events: none;
}

/* ---- Right Side - Content ---- */
.testimonial-content-side {
    width: 70%;                       /* adjust to fill remaining space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 40px 40px 30px;     /* balanced padding */
}

.testimonial-item-content-ultra p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 20px 0;
    color: var(--text-color);
}

.testimonial-item-body-ultra {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--divider-color);
    padding-top: 20px;
    margin-top: 0;
}

.testimonial-author-ultra {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.testimonial-author-content-ultra h2 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-author-content-ultra p {
    font-size: 13px !important;
    margin: 0;
    color: var(--text-color);
}

.testimonial-item-quote-ultra img {
    width: 40px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.testimonial-item-ultra:hover .testimonial-item-quote-ultra img {
    opacity: 1;
}

/* ---- Hide old unused elements ---- */
.testimonial-client-box-ultra,
.testimonial-cta-box-ultra,
.testimonial-cta-image-ultra,
.testimonial-cta-body-ultra,
.testimonial-cta-counter-box-ultra,
.testimonial-cta-rating-box-ultra {
    display: none;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS (single, clean set)
   ============================================================ */


/* ── Testimonial Slider Controls (outside .swiper) ── */
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Navigation buttons */
.testimonial-button-next,
.testimonial-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    color: var(--primary-color);
    border: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 18px;
    flex-shrink: 0;
}
.testimonial-button-next:hover,
.testimonial-button-prev:hover {
    background: var(--pear-green);
    color: #ffffff;
    border-color: var(--pear-green);
    transform: scale(1.05);
}

/* Pagination dots */
.testimonial-pagination {
    display: flex;
    gap: 10px;
}
.testimonial-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 0.6;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}
.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--pear-green);
    opacity: 1;
    width: 32px;
    border-radius: 20px;
}

/* ============================================================
   PARTNERS & SUPPORTERS (inside testimonials section)
   ============================================================ */

.our-testimonials-ultra .company-supports-slider-box-ultra {
    margin-top: 60px;
}

.company-supports-content-ultra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.company-supports-content-ultra hr {
    height: 1px;
    flex-grow: 1;
    color: var(--divider-color);
    opacity: 1;
    margin: 0;
}

.company-supports-content-ultra p {
    text-align: center;
    color: var(--primary-color);
    margin: 0;
}

/* ---- Partners & Supporters Section (global) ---- */
.partners-supporters-section {
    padding: 50px 0;
    background-size: cover;
}

.company-supports-logo-ultra {
    padding: 20px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
}

.company-supports-logo-ultra:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.company-supports-logo-ultra img {
    max-height: 100px;
    max-width: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.company-supports-logo-ultra:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ---- Partner CTA Box ---- */
.partner-cta-box {
    text-align: center;
    margin-top: 50px;
    padding: 25px 30px;
    background: var(--error-color);
    border-radius: 60px;
}

.partner-cta-box p {
    font-size: 18px;
    color: white;
    margin: 0;
}

.partner-cta-box a {
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    padding-bottom: 3px;
    margin-left: 10px;
    transition: border-color 0.3s ease;
}

.partner-cta-box a:hover {
    border-bottom-color: white;
}

.footer-links-box-prime {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.footer-links-prime h2 {
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-links-prime h2:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: #F2D62E;
}

.footer-links-prime ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links-prime ul li {
	margin-bottom: 10px;
}

.footer-links-prime ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
}

.footer-links-prime ul li a:hover {
	color: #F2D62E;
	padding-left: 5px;
}

/* Footer Contact Row */
.footer-contact-row {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-info-prime {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.contact-info-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-weight: 600;
	font-size: 15px;
	gap: 12px;

	background: var(--golden);
}

.contact-info-item img {
	width: 20px;
	height: 20px;
	filter: brightness(0.2);
	opacity: 0.8;
}

.contact-info-item a,
.contact-info-item span {
	color: rgba(0, 0, 0, 0.8);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.contact-info-item a:hover {
	color: var(--error-color);
}

/* Social Links Update */
.footer-social-links-prime ul {
	display: flex;
	gap: 12px;
}

.footer-social-links-prime ul li a {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: rgb(0, 0, 0);
	transition: all 0.3s ease;
}

.footer-social-links-prime ul li a:hover {
	background: #F2D62E;
	transform: translateY(-3px);
}

/* Copyright */
.footer-copyright-text-prime a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	margin: 0 5px;
	transition: color 0.3s ease;
}

.footer-copyright-text-prime a:hover {
	color: #F2D62E;
}

/* Responsive */
@media (max-width: 1200px) {
	.footer-links-box-prime {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 20px;
	}
}

/* ========================================================
   SCHOOL PROGRAMME PAGE - ISOLATED STYLES (Prefix: .sp-)
   ======================================================== */

/* ========================================================
   SCHOOL PROGRAMME PAGE - ISOLATED STYLES (Prefix: .sp-)
   ======================================================== */

/* ========================================================
   SCHOOL PROGRAMME PAGE - ISOLATED STYLES (Prefix: .sp-)
   ======================================================== */

/* --- 1. CREATIVE HERO BANNER --- */

.sp-breadcrumb-nav .breadcrumb-item,
.sp-breadcrumb-nav .breadcrumb-item a {
	color: var(--primary-color);
	font-weight: 500;
	text-decoration: none;
}

.sp-breadcrumb-nav .breadcrumb-item.active {
	color: var(--error-color);
	font-weight: 600;
}

.sp-cards-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 24px;
	/* margin-top: 50px; */
	max-width: 1250px;
	margin: 50px auto 0;
}

@media (min-width: 1024px) {
	.sp-cards-grid {
		grid-template-columns: repeat(3, 1fr);
		/* Forces exactly 3 columns on desktop */
	}
}

.sp-card {
	padding: 28px;
	border-radius: 20px;
	aspect-ratio: 3/3.2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	background: #1a1a1a;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.45s ease;
}

.sp-card-backdrop {
	position: absolute;
	object-fit: cover;
	pointer-events: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: transform 0.5s ease-in-out, opacity 0.45s ease;
}

/* Default Dark Gradient */
.sp-card::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 85%;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(to bottom,
			transparent 0%,
			rgba(0, 0, 0, .45) 30%,
			rgba(0, 0, 0, .85) 65%,
			rgba(0, 0, 0, .96) 100%);
	transition: opacity 0.45s ease;
}

/* Hover Color Layer (Hidden by default) */
.sp-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.45s ease;
}

/* Theme Colors mappings */
.sp-theme-green::before {
	background: #070;
}

.sp-theme-pear::before {
	background: var(--new-color);
}

/* Pear Green */
.sp-theme-red::before {
	background: var(--brick-red);
}

.sp-theme-yellow::before {
	background: var(--golden);
}

.sp-card-content-wrap {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	/* gap: 12px; */
	padding-bottom: 10px;
	transition: gap 0.45s ease;
}

.sp-card-tag {
	font-size: 13px !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 4px;
	transition: color 0.45s ease;
}

.sp-card-title {
	font-size: 30px;
	font-weight: 700;
	color: white;
	margin: 0;
	line-height: 1.15;
	transition: font-size 0.45s ease, color 0.45s ease;
}

.sp-card-desc {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-top: 8px;
}

.sp-card-desc p {
	font-size: 16px;
	line-height: 1.65;
	color: white;
	margin: 0;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
	transition: font-size 0.45s ease, color 0.45s ease;
}

.sp-card-action {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.sp-card-action svg {
	width: 18px;
	height: 18px;
	fill: white;
	transition: transform 0.3s ease, fill 0.3s ease;
}

/* --- CARD HOVER EFFECTS --- */
.sp-card:hover {
	transform: translateY(-10px);
}

.sp-card:hover .sp-card-backdrop {
	opacity: 0;
	transform: scale(1.08);
}

.sp-card:hover::before {
	opacity: 1;
}

.sp-card:hover::after {
	opacity: 0;
}

.sp-card:hover .sp-card-desc p {
	-webkit-line-clamp: unset;
	overflow: visible;
	font-size: 13px;
	text-shadow: none;
}

.sp-card:hover .sp-card-content-wrap {
	gap: 5px;
}

.sp-card:hover .sp-card-title {
	font-size: 22px;
}

.sp-card:hover .sp-card-action {
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(8px);
}

.sp-card:hover .sp-card-action svg {
	transform: translateX(4px);
	fill: #fff;
}

/* Text color fixes based on hover theme */
.sp-card:hover .sp-card-tag,
.sp-card:hover .sp-card-title,
.sp-card:hover .sp-card-desc p {
	color: #fff;
}

/* Yellow/Pear cards need dark text on hover */
.sp-theme-yellow:hover .sp-card-tag,
.sp-theme-yellow:hover .sp-card-title,
.sp-theme-yellow:hover .sp-card-desc p,
.sp-theme-pear:hover .sp-card-tag,
.sp-theme-pear:hover .sp-card-title,
.sp-theme-pear:hover .sp-card-desc p {
	color: var(--near-black);
}

.sp-theme-yellow:hover .sp-card-action,
.sp-theme-pear:hover .sp-card-action {
	background: rgba(0, 0, 0, 0.12);
}

.sp-theme-yellow:hover .sp-card-action svg,
.sp-theme-pear:hover .sp-card-action svg {
	fill: #222;
}

/* ========================================================
   NEW SECTION 2: STAGGERED FLOATING CARDS
   ======================================================== */

/* --- METHODOLOGY SECTION FIX --- */
.sp-modern-methodology,
.sp-programs-section {
	padding: 60px 0;
	background: #ffffff;
}

.sp-main-title {
	font-family: var(--heading-custom);
	color: var(--error-color);
	font-size: 48px;
	font-weight: 600;
}

.sp-text-pear {
	color: var(--pear-green);
}

.sp-lead-text {
	font-size: 22px;
	line-height: 1.5;
	color: var(--primary-color);
	font-weight: 600;
}

.sp-text-content {
	border-left: 4px solid var(--pear-green);
	padding-left: 20px;
	margin-top: 20px;
}

.sp-text-content p {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 15px;
}

/* Premium Image Wrapper */
.sp-image-wrapper {
	position: relative;
	z-index: 1;
}

.sp-image-wrapper img {
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}

/* Offset Background Block */
.sp-image-wrapper::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	z-index: 0;
	top: 20px;
	left: -20px;
	background: var(--pear-green);
}

/* Elegant Quote Block */
.sp-elegant-quote {
	background: #fffadb;
	padding: 30px 40px;
	border-radius: 100px;
	/* Pill shape */
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin: 50px auto;
	max-width: 900px;
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.sp-elegant-quote i {
	font-size: 32px;
	color: var(--pear-green);
}

.sp-elegant-quote p {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
	font-style: italic;
}

.sp-elegant-quote span {
	color: var(--error-color);
	font-weight: 700;
	font-size: 15px;
	text-transform: uppercase;
}

/* Staggered Features Grid */
.sp-staggered-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	padding-top: 40px;
	/* Space for the overlapping icons */
	margin-top: 20px;
}

/* Stagger effect: push the middle column down */
.sp-staggered-grid .sp-feature-box:nth-child(2),
.sp-staggered-grid .sp-feature-box:nth-child(5) {
	transform: translateY(40px);
}

.sp-feature-box {
	background: #eeeeee;
	border-radius: 20px;
	padding: 50px 30px 30px;
	/* Extra top padding for the icon */
	text-align: center;
	position: relative;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.02);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-feature-box:hover {
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.sp-feature-box p {
	font-size: 15px;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

.sp-feature-box p strong {
	color: var(--primary-color);
	font-weight: 700;
}

/* Floating Overlapping Icons */
.sp-floating-icon {
	position: absolute;
	top: -35px;
	/* Pulls it outside the box */
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: #ffffff;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	border: 5px solid #ffffff;
	/* Gives it a cut-out look */
	transition: transform 0.3s ease;
}

.sp-feature-box:hover .sp-floating-icon {
	transform: translateX(-50%) scale(1.1);
}

/* Icon Colors */
.sp-icon-green {
	background: var(--pear-green);
}

.sp-icon-red {
	background: var(--error-color);
}

.sp-icon-yellow {
	background: var(--golden);
}


/* --- EDITORIAL TEXT LAYOUT --- */
.sp-mission-body {
	max-width: 900px;
	margin: 0;
}

.sp-lead-text {
	font-size: 24px;
	line-height: 1.6;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 25px;
}

.sp-text-content {
	border-left: 4px solid var(--pear-green);
	padding-left: 25px;
	margin-top: 20px;
}

.sp-text-content p {
	font-size: 17px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 15px;
}

.sp-text-content p:last-child {
	margin-bottom: 0;
}

.sp-text-content strong {
	color: var(--error-color);
	font-weight: 600;
}

/* Left Column Image Styles */
.sp-image-wrapper {
	position: relative;
	border-radius: 20px;
	z-index: 1;
}

.sp-image-wrapper img {
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	position: relative;
	z-index: 2;
	transition: transform 0.4s ease;
	object-fit: cover;
	aspect-ratio: 4/3;
}

.sp-image-wrapper:hover img {
	transform: translateY(-5px);
}

.sp-image-wrapper::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	z-index: 0;
	top: 20px;
}

/* Places the offset block to the left behind the image */
.sp-img-pear::before {
	background: var(--pear-green);
	left: -20px;
}

/* --- METHODOLOGY FLOATING ELEMENTS --- */
.sp-meth-stars {
	top: 5%;
	right: 5%;
	/* Positioned on the right to balance the hero stars */
	left: auto;
	width: 130px;
	opacity: 0.3;
}

.sp-meth-butterfly {
	top: 45%;
	left: 3%;
	/* Positioned on the middle-left */
	right: auto;
	width: 85px;
	opacity: 0.6;
	animation: spFloatAlt 8s infinite ease-in-out;
}

/* Custom, wider float animation for this section */
@keyframes spFloatAlt {
	0% {
		transform: translateY(0px) rotate(0deg) scale(1);
	}

	50% {
		transform: translateY(40px) rotate(-15deg) scale(1.1);
	}

	100% {
		transform: translateY(0px) rotate(0deg) scale(1);
	}
}

/* --- METHODOLOGY FLOATING ELEMENTS FIX --- */
.sp-meth-stars {
	position: absolute;
	/* This is the magic property that makes it float */
	top: 5%;
	right: 5%;
	left: auto;
	/* Clears any left positioning */
	width: 130px;
	opacity: 0.3;
	z-index: 1;
	/* Keeps it behind the text */
	animation: spPulse 4s infinite alternate ease-in-out;
	pointer-events: none;
	/* Prevents it from blocking clicks on text */
}

.sp-meth-butterfly {
	position: absolute;
	/* This makes it float */
	top: 45%;
	left: 3%;
	right: auto;
	width: 85px;
	opacity: 0.6;
	z-index: 1;
	/* Keeps it behind the text */
	animation: spFloatAlt 8s infinite ease-in-out;
	pointer-events: none;
}

/* Animations (Ensure these are in your CSS) */
@keyframes spPulse {
	0% {
		transform: scale(1);
		opacity: 0.2;
	}

	100% {
		transform: scale(1.15);
		opacity: 0.5;
	}
}

@keyframes spFloatAlt {
	0% {
		transform: translateY(0px) rotate(0deg) scale(1);
	}

	50% {
		transform: translateY(40px) rotate(-15deg) scale(1.1);
	}

	100% {
		transform: translateY(0px) rotate(0deg) scale(1);
	}
}




/* ========================================================
   TEACHER PROGRAMME PAGE - ISOLATED STYLES (.tp-)
   ======================================================== */

/* ========================================================
   TEACHER PROGRAMME PAGE - ISOLATED STYLES (.tp-)
   ======================================================== */

/* ========================================================
   TEACHER PROGRAMME PAGE - ISOLATED STYLES (.tp-)
   ======================================================== */

.tp-breadcrumb-nav .breadcrumb-item,
.tp-breadcrumb-nav .breadcrumb-item a {
	color: var(--primary-color);
	font-weight: 500;
	text-decoration: none;
}

.tp-breadcrumb-nav .breadcrumb-item.active {
	color: var(--pear-green);
	font-weight: 600;
}

/* --- 2. INTRO SECTION (Editorial Text) --- */
.tp-intro-section {
	background: #ffffff;
	/* Changed to pure white */
	padding: 120px 0;
	position: relative;
}

.tp-main-title {
	font-family: var(--heading-custom);
	color: var(--error-color);
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2;
}

.tp-text-pear {
	color: var(--pear-green);
}

.tp-lead-text {
	font-size: 24px;
	line-height: 1.5;
	color: var(--primary-color);
	font-weight: 500;
	margin: 0;
}

.tp-secondary-text {
	font-size: 17px;
	line-height: 1.8;
	color: #666;
	margin: 0;
}


/* --- 3. MODERN ALTERNATING PROGRAMS --- */
.tp-programs-section {
	background: #ffffff;
	/* Changed to pure white */
	padding: 40px 0;
}

.tp-program-row {
	margin-bottom: 100px;
}

.tp-program-row:last-child {
	margin-bottom: 0;
}

/* Text Content Area */
.tp-program-content {
	position: relative;
	padding-left: 30px;
	border-left: 4px dotted transparent;
}

.tp-program-tag {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.tp-program-title {
	font-family: var(--heading-custom);
	font-size: 38px;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.2;
}

.tp-program-desc {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin: 0;
}

/* Theme Colors for Text */
.tp-theme-yellow {
	border-left-color: var(--golden);
}

.tp-theme-yellow .tp-program-tag {
	color: var(--golden);
}

.tp-theme-red {
	border-left-color: var(--error-color);
}

.tp-theme-red .tp-program-tag {
	color: var(--error-color);
}

.tp-theme-green {
	border-left-color: var(--pear-green);
}

.tp-theme-green .tp-program-tag {
	color: var(--pear-green);
}

/* Floating Image Wrapper */
.tp-image-wrapper {
	position: relative;
	border-radius: 20px;
	z-index: 1;
}

.tp-image-wrapper img {
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	position: relative;
	z-index: 2;
	transition: transform 0.4s ease;
}

.tp-image-wrapper:hover img {
	transform: translateY(-5px);
}

/* Creative Offset Color Blocks behind images */
.tp-image-wrapper::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	z-index: 0;
	top: 20px;
}

.tp-img-yellow::before {
	background: var(--golden);
	left: 20px;
}

.tp-img-red::before {
	background: var(--error-color);
	left: -20px;
}

.tp-img-green::before {
	background: var(--pear-green);
	left: 20px;
}

/* ========================================================
   RESEARCH & ADVOCACY PAGE
   ======================================================== */

/* --- 2. EDITORIAL INTRO SECTION --- */
.ra-intro-section {
	background: #ffffff;
	padding: 100px 0 20px;
}

.ra-main-title {
	font-family: var(--heading-custom);
	font-size: 48px;
	color: var(--error-color);
	font-weight: 600;
	line-height: 1.2;
}

.ra-text-pear {
	color: var(--pear-green);
}

.ra-editorial-text {
	position: relative;
}

.ra-lead-text {
	font-size: 19px;
	line-height: 1.7;
	color: var(--primary-color);
	font-weight: 500;
	margin: 0;
}

.ra-secondary-text {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin: 0;
}


/* ==========================================
   MILESTONES SECTION
========================================== */

.ra-milestones-section {
	padding: 60px 0;
	/* background:#fafafa; */
	/* background-image: url("../images/scenery-2-bg.jpg"); */
	/* background-color: rgba(255, 253, 209, 0.6); */
	background-blend-mode: overlay;

	background-size: cover !important;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.ra-milestone-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 50px;
}

/* ==========================================
   CARD
========================================== */

.ra-feature-card {
	background: #fff;
	border-radius: 28px;
	padding: 28px;
	position: relative;
	overflow: hidden;

	border: 1px solid rgba(0, 0, 0, .05);

	box-shadow:
		0 10px 40px rgba(0, 0, 0, .04),
		0 2px 10px rgba(0, 0, 0, .02);

	transition: all .35s ease;
}

.ra-feature-card:hover {
	transform: translateY(-6px);

	box-shadow:
		0 25px 60px rgba(0, 0, 0, .08),
		0 5px 20px rgba(0, 0, 0, .04);
}

/* ==========================================
   DECORATION
========================================== */

.ra-feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 120px;
	height: 120px;
	border-radius: 0 28px 0 100%;
	opacity: .11;
}

.ra-feature-card::after {
	content: "";
	position: absolute;
	top: 24px;
	left: 24px;

	width: 40px;
	height: 40px;

	background-image:
		radial-gradient(currentColor 1.5px, transparent 1.5px);

	background-size: 10px 10px;

	opacity: .15;
}

/* ==========================================
   COLOR THEMES
========================================== */

.card-green::before {
	background: var(--pear-green);
}

.card-green::after {
	color: var(--pear-green);
}

.card-yellow::before {
	background: var(--golden);
}

.card-yellow::after {
	color: var(--golden);
}

.card-red::before {
	background: var(--brick-red);
}

.card-red::after {
	color: var(--brick-red);
}

/* ==========================================
   HEADER
========================================== */

.ra-card-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
	position: relative;
	z-index: 2;
}

.ra-card-icon {
	width: 60px;
	height: 60px;
	min-width: 60px;

	border-radius: 20px;

	display: flex;
	align-items: center;
	justify-content: center;

	color: #fff;
	font-size: 28px;

	box-shadow: 0 12px 25px rgba(0, 0, 0, .12);
}

.card-icon-green {
	background: var(--pear-green);
}

.card-icon-yellow {
	background: var(--golden);
}

.card-icon-red {
	background: var(--brick-red);
}

/* ==========================================
   TITLE
========================================== */

.ra-feature-card h3 {
	margin: 0;

	font-size: 18px;
	line-height: 1.3;
	font-weight: 700;
}

.card-green h3 {
	color: #146b36;
}

.card-yellow h3 {
	color: #d48b00;
}

.card-red h3 {
	color: var(--brick-red);
}

/* ==========================================
   LIST
========================================== */

.ra-feature-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 2;
}

.ra-feature-card li {
	position: relative;

	padding-left: 24px;

	margin-bottom: 12px;

	color: #555;
	font-size: 15px;
	line-height: 1.75;
}

.ra-feature-card li:last-child {
	margin-bottom: 0;
}

.ra-feature-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 700;
}

.card-green li::before {
	color: #9ac12d;
}

.card-yellow li::before {
	color: #f4c542;
}

.card-red li::before {
	color: #d43b3b;
}

.ra-feature-card strong {
	color: #222;
	font-weight: 700;
}


/* ── Educational Advocacy with Background Image ── */
#advocacy-bg {
    position: relative;
    background-image: url(../images/research-advocacy/research-5.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    z-index: 1;
    overflow: hidden;
}

#advocacy-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

#advocacy-bg .container-xl {
    position: relative;
    z-index: 2;
}

/* Cards – glass effect */
#advocacy-bg .ra-feature-card {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 24px 22px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#advocacy-bg .ra-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

#advocacy-bg .ra-feature-card p {
    color: #333 !important;
    margin-bottom: 0;
}

#advocacy-bg .ra-feature-card .ra-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

#advocacy-bg .ra-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.card-icon-green { background: var(--pear-green); }
.card-icon-yellow { background: var(--golden); }
.card-icon-red { background: var(--brick-red); }

#advocacy-bg .ra-feature-card h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--primary-color);
}

#advocacy-bg .section-sub-title {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

#advocacy-bg .ra-main-title {
    color: #fff !important;
}
#advocacy-bg .ra-main-title .ra-text-pear {
    color: var(--pear-green) !important;
}

/* ========================================================
   OUTREACH PAGE - CLEAN THEME (.out-)
   ======================================================== */

/* --- 2. LEFT-ALIGNED TEXT & IMAGE --- */
.out-intro-section {
	background: #ffffff;
	padding: 60px 0 40px;
}

.out-main-title {
	font-family: var(--heading-custom);
	font-size: 48px;
	color: var(--error-color);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 20px;
}

.out-text-pear {
	color: var(--pear-green);
}

.out-mission-body {
	max-width: 900px;
	margin: 0;
}

.out-lead-text {
	font-size: 24px;
	line-height: 1.6;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 25px;
}

.out-text-content {
	border-left: 4px solid var(--golden);
	padding-left: 25px;
	margin-top: 20px;
}

.out-text-content p {
	font-size: 17px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 15px;
}

.out-text-content p:last-child {
	margin-bottom: 0;
}

.out-text-content strong {
	color: var(--error-color);
	font-weight: 600;
}

/* Right Column Image Styles */
.out-image-wrapper {
	position: relative;
	border-radius: 20px;
	z-index: 1;
	margin-right: 20px;
}

.out-image-wrapper img {
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	position: relative;
	z-index: 2;
	transition: transform 0.4s ease;
	object-fit: cover;
	aspect-ratio: 4/3;
	/* Ensures the image looks uniform and neat */
}

.out-image-wrapper:hover img {
	transform: translateY(-5px);
}

.out-image-wrapper::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	z-index: 0;
	top: 20px;
}

.out-img-pear::before {
	background: var(--pear-green);
	left: 20px;
}


/* --- 3. SIMPLE IMPACT CARDS --- */
.out-impact-section {
	/* background-image: url("../images/scenery-section-bg.jpg"); */
	background-color: rgba(255, 253, 209, 0.5);
	background-blend-mode: overlay;

	background-size: cover !important;
	background-position: center;
	background-repeat: no-repeat;

	padding: 30px 0;
	position: relative;
	overflow: hidden;
}

.out-simple-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 40px 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.03);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.out-simple-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
}

.out-card-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin: 0 auto 25px;
}

.out-bg-green {
	background: rgba(173, 200, 37, 0.15);
	color: var(--pear-green);
}

.out-bg-yellow {
	background: rgba(242, 214, 46, 0.15);
	color: var(--golden);
}

.out-card-number {
	font-family: var(--caption-custom);
	font-size: 50px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 5px;
	line-height: 1;
}

.out-card-label {
	font-size: 16px;
	font-weight: 600;
	color: #666;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}


/* ==========================================================================
   GET INVOLVED PAGE STYLES
   ========================================================================== */

.hero-section {
	position: relative;
	overflow: hidden;
	padding: 100px 0 100px;
	/* background: linear-gradient(135deg,#faf7f2,#fffdf9); */
	background-image: url("../images/garden2-section-bg.jpg");
	background-size: cover !important;
	background-color: rgba(255, 253, 209, 0.5);
	background-blend-mode: overlay;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.hero-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: .4;
	z-index: 1;
}

.blob-green {
	width: 150px;
	height: 400px;
	background: #f6d7c9;
	top: -120px;
	left: -100px;
}

.blob-yellow {
	width: 150px;
	height: 350px;
	background: #f7e5b7;
	bottom: -100px;
	right: 100px;
}

.floating-stars {
	position: absolute;
	top: 100px;
	right: 120px;
	width: 120px;
	opacity: .7;
	z-index: 1;
}

.floating-butterfly {
	position: absolute;
	bottom: 120px;
	left: 100px;
	width: 90px;
	opacity: .8;
	z-index: 1;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	background: #fff;
	padding: 12px 24px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	color: var(--brick-red);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
	margin-bottom: 25px;
}

.hero-title {
	font-family: var(--heading-custom);
	font-size: 62px;
	line-height: 1.1;
	color: var(--near-black);
	margin-bottom: 20px;
	font-weight: 600;
}

.hero-title span {
	color: var(--brick-red);
}

.hero-subtitle {
	font-size: 18px;
	line-height: 1.8;
	color: var(--text-color);
	max-width: 705px;
	margin: auto;
}

.hero-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

/* NAV TABS */
.gi-nav-tabs-wrap {
	padding: 15px 0;
	background: #fff;
	border-bottom: 1px solid var(--divider-color);
	position: sticky;
	top: 0px;
	z-index: 97;
}

.gi-nav-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}

.gi-nav-tabs a {
	background: var(--bg-color);
	padding: 14px 24px;
	border-radius: 50px;
	color: var(--near-black);
	font-weight: 600;
	transition: .3s;
}

.gi-nav-tabs a:hover {
	background: var(--brick-red);
	color: #fff;
	transform: translateY(-3px);
}

/* MAIN SECTIONS */
.gi-main-section {
	padding: 80px 0;
	background: #fff;
}

/* .gi-alt-section{
    background:#faf8f5;
} */

.gi-alternate-section {
	background: var(--alternate-bg) !important;
}

.gi-section-tag {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 50px;
	/* background:#fff; */
	border: 1px solid var(--divider-color);
	color: var(--brick-red);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
}

.gi-section-heading h2,
.gi-section-content h2 {
	font-family: var(--heading-custom);
	font-size: 54px;
	font-weight: 600 !important;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--near-black);
}

.gi-section-heading h2 span,
.gi-section-content h2 span {
	color: var(--brick-red);
}

.gi-section-heading p,
.gi-section-content p {
	font-size: 17px;
	line-height: 1.9;
	color: var(--text-color);
}

/* BACKGROUND LINES PNG for container-xl*/
.gi-careers-section,
.out-intro-section,
.sp-modern-methodology,
.cu-dashboard,
.ra-intro-section,
.tp-intro-section,
.cu-dashboard-section {
	position: relative;
	overflow: hidden;
}

.gi-careers-section::before,
.out-intro-section::before,
.sp-modern-methodology::before,
.cu-dashboard::before,
.ra-intro-section::before,
.tp-intro-section::before,
.cu-dashboard-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 100%;
	background: url('../images/lines2.png') no-repeat left top;
	background-size: contain;
	margin-top: 50px;
	pointer-events: none;
	z-index: 0;
}

.gi-careers-section::after,
.out-intro-section::after,
.sp-modern-methodology::after,
.cu-dashboard::after,
.home-alumni-featured::after,
.ra-intro-section::after,
.tp-intro-section::after,
.cu-dashboard-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 300px;
	height: 100%;
	background: url('../images/lines2.png') no-repeat right bottom;
	background-size: contain;
	transform: scaleX(-1);
	margin-bottom: 10px;
	pointer-events: none;
	z-index: 0;
}

.gi-careers-section .container-xl,
.out-intro-section .container-xl,
.sp-modern-methodology .container-xl,
.cu-dashboard .container-xl,
.ra-intro-section .container-xl,
.tp-intro-section .container-xl,
.cu-dashboard-section .container-xl {
	position: relative;
	z-index: 1;
}

/* CAREER IMAGE */
.gi-image-stack {
	position: relative;
	padding-left: 50px;
}

.gi-main-image {
	width: 100%;
	height: 600px;
	object-fit: cover;
	border-radius: 35px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.gi-floating-card {
	position: absolute;
	left: 0;
	bottom: 40px;
	background: #fff;
	padding: 20px;
	border-radius: 20px;
	display: flex;
	gap: 15px;
	align-items: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
	max-width: 280px;
}

.gi-floating-card i {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: var(--brick-red);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.gi-floating-card strong {
	display: block;
	color: var(--near-black);
}

.gi-floating-card span {
	color: var(--text-color);
	font-size: 14px;
}

.theme-callout {
	display: flex;
	align-items: flex-start;
	/* Changed from center to support multi-line text gracefully */
	gap: 16px;
	background-color: var(--off-white);
	padding: 24px;
	border-radius: 16px;
	/* Slightly modernized border radius */
	border-left: 6px solid var(--callout-accent);
	margin-top: 32px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	/* Subtle depth */
	transition: transform 0.2s ease;
}

.theme-callout:hover {
	transform: translateY(-2px);
	/* Slight lift on hover */
}

.callout-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: color-mix(in srgb, var(--callout-accent) 15%, transparent);
	/* Soft background behind icon */
	width: 44px;
	height: 44px;
	border-radius: 50%;
	flex-shrink: 0;
	/* Prevents the icon from squishing on mobile */
}

.callout-icon i {
	font-size: 20px;
	color: var(--golden);
}

.callout-text {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	padding-top: 9px;
	/* Aligns text perfectly with the center of the icon */
}

/* VOLUNTEER */
.gi-benefit-card {
	background: #fff;
	padding: 35px 30px;
	border-radius: 25px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
	transition: .3s;
	height: 100%;
	border: 1px solid #eee;
}

.gi-benefit-card:hover {
	transform: translateY(-5px);
}

.gi-benefit-card span {
	font-size: 42px;
	font-weight: 700;
	color: var(--brick-red);
	display: block;
	margin-bottom: 15px;
	font-family: var(--caption-custom);
}

.gi-benefit-card h5 {
	font-size: 20px;
	margin-bottom: 10px;
	color: var(--near-black);
}

.gi-volunteer-image-wrap img {
	width: 100%;
	height: 580px;
	object-fit: cover;
	border-radius: 35px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .1);
}

/* RESEARCH */
.gi-research-box {
	background: #faf8f5;
	padding: 60px 40px;
	border-radius: 35px;
	text-align: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .05);
}

.gi-research-icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto auto 25px;
	font-size: 34px;
	color: var(--brick-red);
}

.gi-research-box h3 {
	font-size: 48px;
	color: var(--near-black);
	margin-bottom: 15px;
	font-family: var(--heading-custom);
}

.gi-tag-list {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 25px;
}

.gi-tag-list span {
	padding: 10px 18px;
	background: #fff;
	border-radius: 50px;
	border: 1px solid #eee;
}

/* COLLAGE */
.gi-collage-wrap {
	position: relative;
	min-height: 540px;
}

.gi-collage-main {
	width: 75%;
	height: 500px;
	object-fit: cover;
	border-radius: 35px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .1);
}

.gi-collage-small {
	position: absolute;
	right: 0;
	bottom: 40px;
	width: 250px;
	height: 300px;
	object-fit: cover;
	border-radius: 25px;
	border: 8px solid #fff;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

/* VACANCY CARD */
.gi-vacancy-card {
	background: #fff;
	padding: 45px;
	border-radius: 30px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .06);

	/* Make the card a flex container that allows wrapping */
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	/* Pushes the two items apart */
}

/* VACANCY ITEMS - 50% width to sit side-by-side */
.gi-vacancy-item {
	display: flex;
	gap: 20px;

	/* Take up just under half the space each */
	width: calc(50% - 15px);
	margin-bottom: 30px;
	/* Space between the text row and the button row */
}

.gi-vacancy-item i {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: #faf8f5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brick-red);
	/* Ensure this variable is defined in your root! */
	font-size: 20px;
	flex-shrink: 0;
}

/* BUTTON - Force to full width on its own row */
.gi-vacancy-card .btn-default {
	margin: 0 auto;
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--primary-color);
	background: var(--gradient);
	border-radius: 5px;
	padding: 17px 54px 17px 24px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

/* CTA */
.gi-cta-section {
	padding: 130px 0;
	background: linear-gradient(135deg, #1f1f1f, #343434);
}

.gi-cta-box {
	max-width: 850px;
	margin: auto;
}

.gi-cta-box h2 {
	font-family: var(--heading-custom);
	font-size: 56px;
	color: #fff;
	margin-bottom: 20px;
}

.gi-cta-box h2 span {
	color: var(--golden);
}

.gi-cta-box p {
	font-size: 18px;
	line-height: 1.8;
	color: rgba(255, 255, 255, .8);
}

.gi-section-tag.light {
	background: rgba(255, 255, 255, .08);
	border-color: rgba(255, 255, 255, .15);
	color: #fff;
}

.gi-volunteer-image-wrap {
	position: relative;
}

.gi-volunteer-image-wrap img {
	width: 100%;
	height: 620px;
	object-fit: cover;
	border-radius: 35px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .1);
}

.gi-volunteer-badge {
	position: absolute;
	bottom: 30px;
	left: 30px;
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(10px);
	padding: 16px 22px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.gi-volunteer-badge i {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: var(--brick-red);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gi-volunteer-badge span {
	font-weight: 600;
	color: var(--near-black);
}

/* ==========================================================================
   SHARED HERO BANNER STRUCTURE
   ========================================================================== */
/* 2. Bottom Wave */
.hero-wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	line-height: 0;
	z-index: 1;
}

.hero-wave svg {
	display: block;
	width: 100%;
	height: 80px;
}

/* ==========================================================================
   SHARED BANNER BLOBS
   ========================================================================== */
.hero-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	z-index: 0;
	opacity: 0.6;
}

.blob-green {
	top: -10%;
	right: -5%;
	width: 400px;
	height: 400px;
	background: var(--pear-green);
}

.blob-yellow {
	bottom: -10%;
	left: -5%;
	width: 300px;
	height: 300px;
	background: var(--golden);
}

/* ==========================================================================
   SHARED FLOATING ELEMENTS
   ========================================================================== */
/* Stars (Top Right) */
.floating-stars {
	position: absolute;
	top: 15%;
	right: 8%;
	width: 120px;
	height: auto;
	animation: floatStar 8s ease-in-out infinite;
	z-index: 1;
	pointer-events: none;
}

/* Butterfly (Middle/Bottom Left) */
.floating-butterfly {
	position: absolute;
	top: 75%;
	left: 8%;
	width: 100px;
	height: auto;
	animation: floatButterfly 6s ease-in-out infinite;
	z-index: 1;
	pointer-events: none;
}


/* --------------------------------- About Page css started --------------------------- */

/* ========================================================
   ABOUT US: TIMELINE SECTION - SP STYLE CARDS (.atl-)
   ======================================================== */

.atl-timeline-section {
	padding: 100px 0;
	background-image: url("../images/timeline-section-bg.jpg");
	background-color: rgba(255, 253, 209, 0.6);
	background-blend-mode: overlay;
	background-size: cover !important;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	/* Prevents the massive zoom issue */
	position: relative;
	overflow: hidden;
}

.atl-main-title {
	font-family: var(--heading-custom);
	font-size: 42px;
	font-weight: 600;
	color: var(--primary-color);
}

.atl-text-pear {
	color: var(--pear-green);
}

/* --- TIMELINE WRAPPER (Decreased Width) --- */
.atl-wrapper {
	position: relative;
	max-width: 650px;
	/* Reduced to make cards considerably smaller */
	margin: 40px auto 0;
}

/* --- THE LEFT ALIGNED LINE (SCROLL TRACK) --- */
.atl-line {
	position: absolute;
	left: 40px;
	top: 0;
	bottom: 0;
	width: 3px;
	background-image: repeating-linear-gradient(to bottom, #e2e8f0 0, #e2e8f0 8px, transparent 8px, transparent 16px);
	border-radius: 4px;
}

/* --- THE ANIMATED FILL LINE (BUTTERFLY FLIGHT PATH) --- */
.atl-line-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	/* Starts at 0, Javascript will increase this */
	background-image: repeating-linear-gradient(to bottom, var(--pear-green) 0, var(--pear-green) 8px, transparent 8px, transparent 16px);
	/* Removed height transition to prevent scroll recoil */
}

/* The Flying Butterfly */
.atl-line-fill::after {
	content: "";
	position: absolute;
	bottom: -22px;
	left: calc(50% - 45px + var(--fly-x, 0px));
	/* Shifted to the left side to fly among the flowers */
	transform: translateX(-50%) rotate(var(--fly-rot, 15deg));
	width: 45px;
	height: 45px;
	background-image: url('../images/butterfly.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
	/* Removed left/transform transition to prevent scroll recoil */
	animation: butterflyFlutter 1.8s infinite alternate ease-in-out;
}

/* Tiny flutter just for life while it rests */
@keyframes butterflyFlutter {
	0% {
		transform: translateX(-50%) rotate(calc(var(--fly-rot, 15deg) - 3deg)) scale(0.95);
	}

	100% {
		transform: translateX(-50%) rotate(calc(var(--fly-rot, 15deg) + 3deg)) scale(1.05);
	}
}

/* --- THE LIST --- */
.atl-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.atl-item {
	position: relative;
	padding-left: 100px;
	/* Pushes the card to the right of the line */
	margin-bottom: 40px;
}

.atl-item:last-child {
	margin-bottom: 0;
}

/* --- YEAR BADGES (ANIMATED PULSE) --- */
.atl-badge {
	position: absolute;
	left: 42px;
	/* Centered on the line */
	top: 40px;
	/* Aligned near the top of the card */
	transform: translate(-50%, -50%);
	background: var(--golden);
	color: var(--primary-color);
	font-family: var(--caption-custom);
	font-size: 14px;
	font-weight: 700;
	padding: 5px 16px;
	border-radius: 30px;
	border: 3px solid #ffffff;
	z-index: 2;
	/* Glowing Pulse Animation */
	animation: pulseBadge 2s infinite;
}

/* Keyframes for the glowing pulse */
@keyframes pulseBadge {
	0% {
		box-shadow: 0 0 0 0 rgba(242, 214, 46, 0.6);
		transform: translate(-50%, -50%) scale(1);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(242, 214, 46, 0);
		transform: translate(-50%, -50%) scale(1.05);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(242, 214, 46, 0);
		transform: translate(-50%, -50%) scale(1);
	}
}

/* ========================================================
   SP-STYLE CARD LOGIC FOR TIMELINE (.atl-card)
   ======================================================== */

.atl-card {
	padding: 20px;
	border-radius: 20px;
	height: 170px;
	/* Reduced from 280px to make images smaller */
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	background: #1a1a1a;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.45s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.45s ease;
}

.atl-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.atl-card.is-visible:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.atl-card-backdrop {
	position: absolute;
	object-fit: cover;
	pointer-events: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: transform 0.5s ease-in-out, opacity 0.45s ease;
	z-index: 0;
}

/* Default Dark Gradient (Readable text on image) */
.atl-card::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80%;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.95) 100%);
	transition: opacity 0.45s ease;
}

/* Hover Color Layer (Hidden by default) */
.atl-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.45s ease;
}

/* Theme Colors mapped exactly like SP Cards */
.atl-theme-green::before {
	background: #070;
}

.atl-theme-pear::before {
	background: var(--new-color);
}

.atl-theme-red::before {
	background: var(--brick-red);
}

.atl-theme-yellow::before {
	background: var(--golden);
}

/* Content wrapper */
.atl-card-content-wrap {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: gap 0.45s ease;
}

.atl-card-title {
	font-size: 20px;
	font-weight: 700;
	color: white;
	margin: 0;
	line-height: 1.3;
	transition: font-size 0.45s ease, color 0.45s ease;
}

.atl-card-desc {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 5px;
}

.atl-card-desc p {
	font-size: 13.5px;
	line-height: 1.5;
	color: white;
	margin: 0;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* Truncates text when not hovering */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
	transition: font-size 0.45s ease, color 0.45s ease;
}

/* --- HOVER EFFECTS --- */
.atl-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.atl-card:hover .atl-card-backdrop {
	opacity: 0;
	transform: scale(1.08);
}

.atl-card:hover::before {
	opacity: 1;
}

.atl-card:hover::after {
	opacity: 0;
}

.atl-card:hover .atl-card-desc p {
	-webkit-line-clamp: unset;
	overflow: visible;
	text-shadow: none;
}

.atl-card:hover .atl-card-content-wrap {
	gap: 5px;
}

/* Text color fixes based on hover theme */
.atl-card:hover .atl-card-title,
.atl-card:hover .atl-card-desc p {
	color: #fff;
}

/* Yellow/Pear cards need dark text on hover */
.atl-theme-yellow:hover .atl-card-title,
.atl-theme-yellow:hover .atl-card-desc p,
.atl-theme-pear:hover .atl-card-title,
.atl-theme-pear:hover .atl-card-desc p {
	color: var(--near-black);
}

/* ========================================
   MODERN TEAM SECTION (reference style)
======================================== */
.team-modern-section {
	padding: 60px 0;
	background: white;
	position: relative;
	overflow-x: hidden;
}

/* decorative circles (matching reference) */
.team-modern-section::before,
.team-modern-section::after {
	content: '';
	position: absolute;
	width: clamp(200px, 30vw, 400px);
	height: clamp(200px, 30vw, 400px);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(242, 214, 46, 0.08) 0%, rgba(173, 200, 37, 0.02) 70%, transparent 100%);
	pointer-events: none;
	z-index: 0;
}

.team-modern-section::before {
	top: 5%;
	left: -10%;
}

.team-modern-section::after {
	bottom: 5%;
	right: -10%;
}

/* Header */
.team-header-modern {
	margin-bottom: 60px;
	position: relative;
	z-index: 1;
}

.team-header-modern .section-sub-title {
	display: inline-block;
	background: rgba(242, 214, 46, 0.12);
	padding: 6px 18px;
	border-radius: 40px;
	font-size: 14px;
	font-weight: 600;
	color: #F2D62E;
	margin-bottom: 15px;
}

.team-header-modern h2 {
	font-size: 42px;
	font-weight: 700;
	color: var(--primary-color, #1a1a1a);
}

.team-header-modern h2 span {
	color: #F2D62E;
}

.team-header-modern p {
	font-size: 16px;
	color: #555;
	max-width: 700px;
	margin: 15px auto 0;
}

/* Category title */
.category-title-modern {
	font-size: 26px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0px 0 30px;
	padding-bottom: 12px;
	border-bottom: 3px solid var(--gradient, #F2D62E);
	display: inline-block;
}

.category-title-modern i {
	color: #F2D62E;
	margin-right: 10px;
	font-size: 28px;
}

/* Responsive grid */
.team-grid-modern {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 30px;
	margin-bottom: 30px;
}

/* Card */
.team-card-modern {
	background: white;
	border-radius: 20px;
	padding: 30px 20px 25px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(242, 214, 46, 0.2);
	cursor: pointer;
}

.team-card-modern:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
	border-color: rgba(242, 214, 46, 0.5);
}

/* Circular avatar */
.card-avatar {
	width: 130px;
	height: 130px;
	margin: 0 auto 20px;
	border-radius: 50%;
	overflow: hidden;
	background: #f5f5f5;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.avatar-fallback {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #F2D62E20, #ADC82520);
	font-size: 48px;
	font-weight: 700;
	color: var(--primary-color);
	font-family: 'Baloo 2', cursive;
}

/* Name & role */
.card-name {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.card-role {
	font-size: 13px !important;
	font-weight: 600;
	color: var(--pear-green);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

/* Description – hidden by default, expands on hover with scrollbar */
.card-description {
	max-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
	transition: max-height 0.4s ease-out, margin 0.2s;
	margin-top: 0;
	font-size: 13px;
	line-height: 1.5;
	color: #666;
	padding-right: 5px;
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
}

.team-card-modern:hover .card-description {
	max-height: 200px;
	margin-top: 12px;
}

.card-description::-webkit-scrollbar {
	display: none;
}

.card-description::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.card-description::-webkit-scrollbar-thumb {
	background: #F2D62E;
	border-radius: 10px;
}

.card-description::-webkit-scrollbar-thumb:hover {
	background: #d4ba25;
}

/* CEO special card (wider, horizontal) */
.ceo-card-modern {
	background: linear-gradient(135deg, #fff, #fef9e6);
	border-radius: 32px;
	padding: 40px;
	display: flex;
	gap: 40px;
	align-items: center;
	flex-wrap: wrap;
	border: 1px solid rgba(242, 214, 46, 0.3);
	box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
}

.ceo-avatar {
	flex-shrink: 0;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	background: linear-gradient(135deg, #F2D62E, #ADC825);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ceo-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ceo-avatar .avatar-fallback.large {
	font-size: 64px;
}

.ceo-info-modern {
	flex: 1;
}

.ceo-info-modern h3 {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.ceo-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--pear-green);
	margin-bottom: 20px;
}

.ceo-description {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 20px;
}

.ceo-tags-modern {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ceo-tags-modern span {
	background: rgba(242, 214, 46, 0.12);
	padding: 6px 14px;
	border-radius: 40px;
	font-size: 13px;
	font-weight: 500;
	color: var(--primary-color);
}

/* ========================================
   PARTNERS SECTION – Only Logos
/*  */
.partners-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Filter Tabs */
.partners-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 50px;
}

.pfilter-btn {
	background: white;
	border: 1px solid rgba(242, 214, 46, 0.3);
	padding: 8px 20px;
	border-radius: 40px;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	transition: all 0.3s ease;
	cursor: pointer;
}

.pfilter-btn i {
	color: #F2D62E;
	margin-right: 6px;
}

.pfilter-btn.active,
.pfilter-btn:hover {
	background: var(--gradient);
	border-color: transparent;
	color: var(--primary-color);
	transform: translateY(-2px);
}

/* Partners Grid */
.partners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 30px;
	align-items: center;
	justify-items: center;
}

/* Partner Card – only logo with soft container */
.partner-card {
	width: 100%;
	max-width: 160px;
	background: white;
	border-radius: 20px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(242, 214, 46, 0.15);
}

.partner-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
	border-color: rgba(242, 214, 46, 0.4);
}

.partner-logo-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.partner-logo-wrapper img {
	max-width: 100%;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(0%);
	transition: all 0.3s ease;
}

.partner-card:hover .partner-logo-wrapper img {
	transform: scale(1.05);
	filter: brightness(1.02);
}

/* =========================================
   AWARDS BLOG SECTION - DESKTOP & BASE STYLES
   ========================================= */

.awards-blog-section {
	background-image: url("../images/handprints.png");
	background-color: rgba(255, 253, 209, 0.6);
	background-blend-mode: overlay;
	background-size: cover !important;
	background-position: center;
	background-repeat: no-repeat;
	padding: 30px 0;
	position: relative;
	overflow: hidden;
}

/* Main slider container */
.awards-blog-slider {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	background: #fff;
	padding: 25px;
	border-radius: 25px;
	transition: all .3s;
	position: relative;
}

/* Slider item – image left, content right */
.awards-blog-slider .blog-slider__item {
	display: flex;
	align-items: center;
}

/* Active slide animations */
.awards-blog-slider .swiper-slide-active .blog-slider__img img {
	opacity: 1;
	transition-delay: .3s;
}

.awards-blog-slider .swiper-slide-active .blog-slider__content>* {
	opacity: 1;
	transform: none;
}

.awards-blog-slider .swiper-slide-active .blog-slider__content>*:nth-child(1) {
	transition-delay: 0.3s;
}

.awards-blog-slider .swiper-slide-active .blog-slider__content>*:nth-child(2) {
	transition-delay: 0.4s;
}

.awards-blog-slider .swiper-slide-active .blog-slider__content>*:nth-child(3) {
	transition-delay: 0.5s;
}

.awards-blog-slider .swiper-slide-active .blog-slider__content>*:nth-child(4) {
	transition-delay: 0.6s;
}

/* Image area */
.awards-blog-slider .blog-slider__img {
	width: 300px;
	flex-shrink: 0;
	height: 300px;
	background: #fff;
	border-radius: 20px;
	transform: translateX(-80px);
	overflow: hidden;
	position: relative;
	border: 1px solid rgba(242, 214, 46, 0.3);
}

.awards-blog-slider .blog-slider__img:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(147deg, rgba(242, 214, 46, 0.1), rgba(173, 200, 37, 0.1));
	border-radius: 20px;
	pointer-events: none;
}

.awards-blog-slider .blog-slider__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	border-radius: 20px;
	transition: all .3s;
}

/* Content area */
.awards-blog-slider .blog-slider__content {
	padding-right: 25px;
}

.awards-blog-slider .blog-slider__content>* {
	opacity: 0;
	transform: translateY(25px);
	transition: all .4s;
}

/* Typography */
.awards-blog-slider .blog-slider__code {
	color: var(--golden);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	margin-bottom: 15px;
	display: block;
}

.awards-blog-slider .blog-slider__title {
	font-size: 26px;
	font-weight: 700;
	color: var(--primary-color, #353535);
	margin-bottom: 20px;
}

.awards-blog-slider .blog-slider__title span {
	font-size: 18px;
	color: var(--pear-green);
}

.awards-blog-slider .blog-slider__text {
	color: #555;
	margin-bottom: 25px;
	line-height: 1.5em;
	font-size: 15px;
}

/* Meta info */
.award-meta-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	border-top: 1px solid #eaeaea;
	padding-top: 18px;
	margin-top: 10px;
}

.award-meta-inline span {
	font-size: 13px;
	color: #777;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.award-meta-inline i {
	color: var(--golden);
}

/* Pagination - Vertical on Desktop */
.awards-blog-slider .blog-slider__pagination {
	position: absolute;
	z-index: 21;
	right: 20px;
	width: 11px !important;
	text-align: center;
	left: auto !important;
	top: 50%;
	bottom: auto !important;
	transform: translateY(-50%);
}

.awards-blog-slider .blog-slider__pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 8px 0;
	background: #ccc;
	opacity: 0.6;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.awards-blog-slider .blog-slider__pagination .swiper-pagination-bullet-active {
	width: 12px;
	height: 12px;
	background: var(--golden);
	opacity: 1;
	border-radius: 50%;
	transform: scale(1.35);
}

/* ========================================
   CERTIFICATE SECTION – MUKTANGAN STYLE
/*  */
.certificate-section {
	padding: 40px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Certificate Card (image container) */
.certificate-card {
	background: white;
	border-radius: 28px;
	padding: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.certificate-frame {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: #f5f5f5;
	border: 1px solid rgba(173, 200, 37, 0.2);
}

.certificate-img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}

.certificate-card:hover .certificate-img {
	transform: scale(1.02);
}

/* Ribbon on image */
.certificate-ribbon {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: linear-gradient(90deg, #F2D62E, #ADC825);
	color: var(--primary-color);
	padding: 8px 16px;
	border-radius: 40px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	backdrop-filter: blur(4px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

.certificate-ribbon i {
	margin-right: 6px;
}

/* Right side – info cards grid */
.certificate-info-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.info-card {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	background: white;
	padding: 20px;
	border-radius: 24px;
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.03);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.info-card:hover {
	transform: translateX(8px);
	border-color: rgba(242, 214, 46, 0.3);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.info-icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	background: rgba(242, 214, 46, 0.12);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #F2D62E;
	transition: all 0.3s ease;
}

.info-card:hover .info-icon {
	background: var(--gradient);
	color: white;
	transform: scale(1.05);
}

.info-content h6 {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.info-content p {
	font-size: 14px;
	line-height: 1.5;
	color: #555;
	margin: 0;
}
/* ========================================
   FCRA Overview – Muktangan style
/*  */
.fcra-overview-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Badge cards (reuse team-card-modern but with custom avatar) */
.badge-card-custom {
	text-align: center;
	padding: 30px 20px !important;
}

.badge-avatar {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	background-size: cover;
	position: relative;
}

/* Instead of inline styles, use these classes */
.gold-badge {
	background: rgba(242, 214, 46, 0.12);
	color: #F2D62E;
}

.gold-badge::before {
	content: "\f1e6";
	/* shield-halved */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	font-size: 32px;
}

.red-badge {
	background: rgba(189, 46, 46, 0.1);
	color: #BD2E2E;
}

.red-badge::before {
	content: "\f578";
	/* file-invoice-dollar */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 32px;
}

.green-badge {
	background: rgba(173, 200, 37, 0.12);
	color: #ADC825;
}

.green-badge::before {
	content: "\f0ac";
	/* globe */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 32px;
}

.rose-badge {
	background: rgba(225, 147, 147, 0.12);
	color: #E19393;
}

.rose-badge::before {
	content: "\f19c";
	/* building-columns */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 32px;
}

/* Info cards (reuse from certificate section, add icon backgrounds) */
.gold-bg-icon {
	background: rgba(242, 214, 46, 0.12);
	color: #F2D62E;
}

.red-bg-icon {
	background: rgba(189, 46, 46, 0.1);
	color: #BD2E2E;
}

.green-bg-icon {
	background: rgba(173, 200, 37, 0.12);
	color: #ADC825;
}

.rose-bg-icon {
	background: rgba(225, 147, 147, 0.12);
	color: #E19393;
}

.trust-description p {
	font-size: 15px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 20px;
}

.trust-description strong {
	color: var(--primary-color);
}

/* /* ======================================== */
/* FCRA Documents Section – Muktangan style */

.fcra-docs-section {
	padding: 80px 0;
	background: var(--secondary-color);
}

/* Tabs wrapper */
.fcra-tabs-wrapper {
	margin-bottom: 50px;
	text-align: center;
}

.fcra-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	border-bottom: none;
}

.fcra-tab-btn {
	background: white;
	border: 1px solid rgba(0, 0, 0, 0.05);
	padding: 12px 28px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	color: var(--primary-color);
	transition: all 0.3s ease;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.fcra-tab-btn i {
	color: var(--golden);
}

.fcra-tab-btn .tab-count {
	background: rgba(0, 0, 0, 0.05);
	padding: 2px 8px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 500;
	margin-left: 6px;
}

.fcra-tab-btn.active,
.fcra-tab-btn:hover {
	background: var(--gradient);
	border-color: transparent;
	color: var(--primary-color);
}

.fcra-tab-btn.active i,
.fcra-tab-btn:hover i {
	color: var(--primary-color);
}

.fcra-tab-btn.active .tab-count,
.fcra-tab-btn:hover .tab-count {
	background: rgba(255, 255, 255, 0.3);
}

/* Tab panes */
.fcra-tab-pane {
	display: none;
	animation: fadeIn 0.3s ease;
}

.fcra-tab-pane.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Document card (same style as your program cards, but adjusted) */
.document-card {
	background: white;
	border-radius: 20px;
	padding: 24px;
	display: flex;
	align-items: center;
	gap: 18px;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.03);
	height: 100%;
}

.document-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
	border-color: rgba(242, 214, 46, 0.2);
}

.doc-icon {
	font-size: 42px;
	color: var(--golden);
	flex-shrink: 0;
}

.red-icon {
	color: var(--brick-red);
}

.doc-details {
	flex: 1;
}

.doc-year {
	font-size: 12px;
	font-weight: 700;
	background: rgba(242, 214, 46, 0.12);
	display: inline-block;
	padding: 4px 12px;
	border-radius: 30px;
	margin-bottom: 8px;
	color: #b8860b;
}

.red-year {
	background: rgba(189, 46, 46, 0.1);
	color: var(--brick-red);
}

.doc-title {
	font-size: 15px;
	font-weight: 600;
	margin: 8px 0 6px;
	line-height: 1.4;
	color: var(--primary-color);
}

.badge-new {
	font-size: 11px;
	background: rgba(242, 214, 46, 0.15);
	padding: 3px 10px;
	border-radius: 30px;
	color: #b8860b;
	display: inline-block;
}

.doc-actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.doc-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f5f5f5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #777;
	transition: all 0.2s;
}

.doc-btn:hover {
	background: var(--gradient);
	color: var(--primary-color);
	transform: scale(1.05);
}

/* Quarterly grouping */
.quarterly-fy-group {
	background: white;
	border-radius: 24px;
	padding: 20px 24px;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.fy-header {
	display: flex;
	align-items: baseline;
	gap: 16px;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--golden);
}

.fy-icon {
	font-size: 28px;
	color: var(--golden);
}

.fy-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0;
	color: var(--primary-color);
}

.fy-count {
	font-size: 13px;
	color: #888;
}

.quarterly-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.quarter-item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	background: #fafafc;
	padding: 12px 18px;
	border-radius: 16px;
	transition: all 0.2s;
}

.quarter-item:hover {
	background: white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.quarter-badge {
	background: rgba(242, 214, 46, 0.12);
	padding: 4px 14px;
	border-radius: 40px;
	font-weight: 600;
	font-size: 13px;
	min-width: 100px;
	text-align: center;
}

.quarter-title {
	flex: 1;
	font-size: 14px;
	color: #444;
}

.quarter-actions {
	display: flex;
	gap: 8px;
}

/* MEDIA PAGE */
/* ========================================
   PHOTO GALLERY – CLEAN SQUARE CARDS
======================================== */

.media-gallery-square-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Square card */
.square-gallery-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.square-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.square-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.square-gallery-card:hover .square-gallery-img {
    transform: scale(1.08);
}

/* Overlay (gradient + zoom icon + title) */
.square-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.square-gallery-card:hover .square-gallery-overlay {
    opacity: 1;
}

.square-gallery-zoom {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient, #F2D62E);
    color: var(--primary-color, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: translateY(10px);
    transition: transform 0.35s ease;
}

.square-gallery-card:hover .square-gallery-zoom {
    transform: translateY(0);
}

.square-gallery-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    align-self: flex-end;
    width: 100%;
    text-align: left;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    transform: translateY(10px);
    transition: transform 0.35s ease 0.05s;
}

.square-gallery-card:hover .square-gallery-title {
    transform: translateY(0);
}

/* ---- Lightbox ---- */
.media-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.media-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.lightbox-box {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1001;
    animation: lightboxPop 0.25s ease;
}

@keyframes lightboxPop {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

.lightbox-img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    display: block;
    margin: 0 auto;
}

.lightbox-caption {
    text-align: center;
    margin-top: 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: -46px;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    background: var(--gradient, #F2D62E);
    color: var(--primary-color, #1a1a1a);
    transform: rotate(90deg);
}

/* ========================================
   VIDEO GALLERY SECTION – Muktangan style
======================================== */

.media-section-alt {
	position: relative;
	padding: 80px 0;
	background: rgba(255, 255, 255, 0.85);
	/* fallback / overlay colour */
	overflow: hidden;
	isolation: isolate;
}

.media-section-alt::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -2;
	background: var(--bg-color);
	/* background: url("../images/Scan_0009.jpg") no-repeat center center / cover; */
	filter: blur(5.5px);
	/* adjust blur intensity (px) */
	transform: scale(1.05);
	/* prevents unblurred edges */
	background-position: left;
	opacity: 0.7;
}

/* Video card (matches photo gallery card) */
.video-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.35s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.02);
	height: 100%;
}

.video-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
	border-color: rgba(242, 214, 46, 0.3);
}

/* Video thumbnail – 16:9 aspect ratio */
.video-thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000;
}

.video-thumb iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	transition: transform 0.4s ease;
}

.video-card:hover .video-thumb iframe {
	transform: scale(1.02);
}

/* Video info */
.video-info {
	padding: 18px 20px 20px;
}

.video-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
	line-height: 1.4;
}

.video-description {
	font-size: 0.8rem;
	color: #777;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 6px;
}

.video-description i {
	color: #FF0000;
	/* YouTube red */
}

/* ========================================
   IN THE NEWS – Card Grid (No Images)
======================================== */


.news-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 0.75rem;
}

.media-news-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* ── Card ── */
.news-card {
    display: block;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-decoration: none;
    height: 100%;
    position: relative;
}

/* Top accent bar – appears on hover */
.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--golden, #F7D516), var(--pear-green, #ADC825));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover::before {
    opacity: 1;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
    border-color: rgba(242, 214, 46, 0.25);
}

/* ── Card body (flex column to push link to bottom) ── */
.news-card-body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ── Top row: source + date (badge style) ── */
.news-card-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 12px;
    margin-bottom: 14px;
}

.news-source-badge,
.news-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    background: #f5f6f8;
    padding: 4px 12px;
    border-radius: 30px;
    transition: all 0.2s;
}

.news-source-badge i,
.news-date-badge i {
    color: var(--golden, #F7D516);
    font-size: 11px;
}

.news-card:hover .news-source-badge,
.news-card:hover .news-date-badge {
    background: rgba(242, 214, 46, 0.10);
    color: var(--near-black);
}

/* ── Title ── */
.news-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.2s;
}

.news-card:hover .news-title {
    color: var(--brick-red, #BD2E2E);
}

/* ── Excerpt ── */
.news-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1; /* pushes the link to the bottom */
}

/* ── Link (always at bottom) ── */
.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--golden, #F7D516);
    transition: gap 0.25s ease, color 0.25s ease;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.news-link i {
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}

.news-card:hover .news-link {
    gap: 14px;
    color: var(--brick-red, #BD2E2E);
}

.news-card:hover .news-link i {
    transform: translateX(4px);
}

/* ── Empty state ── */
.empty-state i {
    opacity: 0.3;
}
/* ========================================
   ANNUAL REPORTS – Swiper Slider Style
======================================== */

.media-reports-slider-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Swiper container */
.reports-swiper-container {
	position: relative;
	padding: 20px 40px;
	overflow: hidden;
}

.reports-swiper-container .swiper-slide {
	height: auto;
}

/* Report card (same as before, but inside swiper) */
.report-slide-card {
	position: relative;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.35s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.02);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.report-slide-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
	border-color: rgba(242, 214, 46, 0.3);
}

/* Badge, cover, overlay, info – identical to previous card CSS */
.report-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: #F2D62E;
	color: var(--primary-color);
	font-size: 0.7rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 30px;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.report-cover {
	position: relative;
	aspect-ratio: 3/4;
	overflow: hidden;
	background: #f5f3f0;
}

.report-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.report-slide-card:hover .report-cover img {
	transform: scale(1.05);
}

.report-cover-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0ede8;
}

.report-cover-placeholder i {
	font-size: 48px;
	color: #BD2E2E;
	opacity: 0.5;
}

.report-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	opacity: 0;
	transition: opacity 0.3s;
}

.report-slide-card:hover .report-overlay {
	opacity: 1;
}

.report-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: 40px;
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
}

.report-view {
	background: rgba(255, 255, 255, 0.9);
	color: var(--primary-color);
}

.report-view:hover {
	background: var(--gradient);
	transform: scale(1.05);
}

.report-download {
	background: rgba(255, 255, 255, 0.9);
	color: var(--primary-color);
}

.report-download:hover {
	background: var(--gradient);
	transform: scale(1.05);
}

.report-info {
	padding: 18px 20px 20px;
	text-align: center;
}

.report-year {
	font-size: 0.75rem;
	font-weight: 700;
	color: #F2D62E;
	background: rgba(242, 214, 46, 0.12);
	display: inline-block;
	padding: 4px 12px;
	border-radius: 30px;
	margin-bottom: 10px;
}

.report-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
	line-height: 1.4;
}

/* Swiper navigation buttons */
.reports-swiper-button-prev,
.reports-swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.2s;
	z-index: 10;
	color: var(--primary-color);
	border: 1px solid rgba(242, 214, 46, 0.3);
}

.reports-swiper-button-prev {
	left: 0;
}

.reports-swiper-button-next {
	right: 0;
}

.reports-swiper-button-prev:hover,
.reports-swiper-button-next:hover {
	background: var(--gradient);
	color: white;
	transform: translateY(-50%) scale(1.05);
}

/* Swiper pagination dots */
.reports-swiper-pagination {
	position: relative;
	margin-top: 30px;
	text-align: center;
}

.reports-swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #ccc;
	opacity: 0.6;
	margin: 0 6px;
	transition: all 0.2s;
}

.reports-swiper-pagination .swiper-pagination-bullet-active {
	background: #F2D62E;
	width: 24px;
	border-radius: 10px;
	opacity: 1;
}


/* ========================================
   NEWSLETTERS – Card Grid (4 columns desktop)
======================================== */

.media-newsletter-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Newsletter card */
.newsletter-card {
	position: relative;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.35s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.02);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.newsletter-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
	border-color: rgba(242, 214, 46, 0.3);
}

/* "Latest" badge */
.newsletter-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: #F2D62E;
	color: var(--primary-color);
	font-size: 0.7rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 30px;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Cover image area (2:3 aspect ratio) */
.newsletter-cover {
	position: relative;
	aspect-ratio: 2 / 3;
	overflow: hidden;
	background: #f5f3f0;
}

.newsletter-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.newsletter-card:hover .newsletter-cover img {
	transform: scale(1.05);
}

.newsletter-cover-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0ede8;
}

.newsletter-cover-placeholder i {
	font-size: 48px;
	color: #F2D62E;
	opacity: 0.5;
}

/* Overlay with Read/Download buttons */
.newsletter-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	opacity: 0;
	transition: opacity 0.3s;
}

.newsletter-card:hover .newsletter-overlay {
	opacity: 1;
}

.newsletter-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: 40px;
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
}

.newsletter-view {
	background: rgba(255, 255, 255, 0.9);
	color: var(--primary-color);
}

.newsletter-view:hover {
	background: var(--gradient);
	transform: scale(1.05);
}

.newsletter-download {
	background: rgba(255, 255, 255, 0.9);
	color: var(--primary-color);
}

.newsletter-download:hover {
	background: var(--gradient);
	transform: scale(1.05);
}

/* Card info (title) */
.newsletter-info {
	padding: 18px 20px 20px;
	text-align: center;
}

.newsletter-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
	line-height: 1.4;
}

/* ========================================
   BLOG SECTION – Muktangan style (Featured + side list)
======================================== */

.media-blog-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* ========== FEATURED CARD (left) ========== */
.blog-featured-card {
	background: white;
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.35s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.02);
	height: 100%;
}

.blog-featured-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
	border-color: rgba(242, 214, 46, 0.3);
}

.blog-featured-img {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f0f2f5;
}

.blog-featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.blog-featured-card:hover .blog-featured-img img {
	transform: scale(1.03);
}

.blog-img-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0ede8;
	font-size: 48px;
	color: #F2D62E;
	opacity: 0.5;
}

.blog-featured-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #F2D62E;
	color: var(--primary-color);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 30px;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-featured-body {
	padding: 24px;
}

.blog-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 12px;
	font-size: 0.8rem;
	color: #888;
}

.blog-meta i {
	color: #F2D62E;
	margin-right: 4px;
}

.blog-featured-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 12px;
	line-height: 1.3;
}

.blog-featured-excerpt {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.5;
	margin-bottom: 20px;
}

.blog-read-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	font-weight: 600;
	color: #F2D62E;
	text-decoration: none;
	transition: gap 0.2s;
}

.blog-read-more:hover {
	gap: 10px;
	color: #ADC825;
}

/* ========== SIDE CARDS LIST (right) ========== */
.blog-side-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: 100%;
}

.blog-side-card {
	display: flex;
	gap: 18px;
	background: white;
	border-radius: 20px;
	padding: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
	border: 1px solid rgba(0, 0, 0, 0.02);
}

.blog-side-card:hover {
	transform: translateX(6px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	border-color: rgba(242, 214, 46, 0.3);
}

.blog-side-img {
	flex-shrink: 0;
	width: 90px;
	height: 90px;
	border-radius: 16px;
	overflow: hidden;
	background: #f0f2f5;
}

.blog-side-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.blog-side-card:hover .blog-side-img img {
	transform: scale(1.05);
}

.blog-side-img-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0ede8;
	font-size: 32px;
	color: #F2D62E;
	opacity: 0.5;
}

.blog-side-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.blog-side-content .blog-meta {
	margin-bottom: 6px;
}

.blog-side-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
	line-height: 1.4;
}

.blog-read-sm {
	font-size: 0.75rem;
}

/* ========================================
   STICKY JUMP TABS – Muktangan style
======================================== */

.gi-jumptabs-section {
	position: sticky;
	top: 0px;
	/* adjust based on your header height */
	z-index: 98;
	background: white;
	padding: 12px 0;
	margin-bottom: 40px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(8px);
	background: rgba(255, 255, 255, 0.96);
	transition: all 0.3s ease;
}

.gi-jumptabs {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
}

.gi-jumptabs a {
	color: #666666 !important;
	text-decoration: none;
}

.gi-jumptab:hover,
.gi-jumptab:focus {
	color: var(--pear-green);
}

/* ========================================
   DONATION INTRO – Philosophy Style
======================================== */

.donation-philosophy {
	padding: 80px 0;
	background: var(--bg-color, #ffffff);
}

.donation-philosophy__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.donation-philosophy__header {
	text-align: center;
	margin-bottom: 40px;
}

/* Gold badge – same as .section-sub-title in your philosophy section */
.donation-philosophy__header .section-sub-title {
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	text-transform: capitalize;
	line-height: 1em;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	padding: 8px 16px 8px 32px;
	margin-bottom: 15px;
}

.donation-philosophy__header .section-sub-title::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--gradient);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

/* Heading – animated style */
.donation-philosophy__header .text-anime-style-3 {
	font-size: 42px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
	cursor: none;
}

.donation-philosophy__header .text-anime-style-3 span {
	color: var(--gradient);
}

/* Paragraphs */
.donation-philosophy__content p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-color, #555);
	margin-bottom: 24px;
}

/* Footer buttons – exactly like the philosophy section */
.donation-philosophy__footer {
	margin-top: 40px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.donation-philosophy__btn-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

/* Reuse existing .btn-default and .video-play-button from your site */
.video-play-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	z-index: 1;
}

.video-play-button a {
	height: 50px;
	width: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
}

.video-play-button a i {
	font-size: 16px;
	color: var(--primary-color);
	margin-left: 2px;
}

.video-play-button:hover a {
	background: var(--primary-color);
}

.video-play-button:hover a i {
	color: var(--white-color);
}

.video-play-button p {
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
}

/* ========================================
   DONATION CARDS – Faded Background Image
======================================== */

.donation-cards {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.donation-cards__header {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.donation-cards__title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color, #353535);
	margin-bottom: 16px;
}

.donation-cards__subtitle {
	font-size: 1.1rem;
	color: #666;
}

/* Grid – 2 columns on desktop, 1 on mobile */
.donation-cards__grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 30px;
	margin-top: 20px;
}

/* Common card styles */
.donation-card {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	min-height: 160px;
	display: flex;
	align-items: center;
}

.donation-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.donation-card--indian,
.donation-card--foreign {
	background-size: cover;
	background-repeat: no-repeat;
}

/* Background images – you can replace with your own */
.donation-card--indian {
	background-image: url('../images/artwork/lake.jpg');
	/* background-position: right center; */
}

.donation-card--foreign {
	background-image: url('../images/artwork/lake.jpg');
	/* background-position: left center; */
}

/* Faded overlay – gradient to make image visible on one side */
.donation-card--indian::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #ffffff 0%, #ffffff 40%, rgba(255, 255, 255, 0.6) 70%, transparent 100%);
	z-index: 1;
}

.donation-card--foreign::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(270deg, #ffffff 0%, #ffffff 40%, rgba(255, 255, 255, 0.6) 70%, transparent 100%);
	z-index: 1;
}

/* Content – sits above the overlay */
.donation-card__content {
	position: relative;
	z-index: 2;
	padding: 40px;
	max-width: 70%;
}

.donation-card--indian .donation-card__content {
	text-align: left;
}

.donation-card--foreign .donation-card__content {
	text-align: left;
	margin-left: auto;
	/* push content to the right */
}

.donation-card__title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--primary-color, #353535);
	margin-bottom: 16px;
}

.donation-card__text {
	font-size: 1rem;
	line-height: 1.6;
	color: #444;
	margin-bottom: 24px;
}

.donation-card__footer {
	margin-top: auto;
}

/* Buttons */
.donation-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 28px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	border: none;
	cursor: pointer;
}

.donation-btn--primary {
	background: var(--gradient, #F2D62E);
	color: var(--primary-color, #353535);
}

.donation-btn--primary:hover {
	background: #e5c200;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.donation-btn--secondary {
	background: transparent;
	border: 2px solid #F2D62E;
	color: var(--primary-color);
}

.donation-btn--secondary:hover {
	background: #F2D62E;
	transform: translateY(-2px);
}

/* ========================================================
   UNIFIED CONTACT DASHBOARD - ISOLATED STYLES (.cu-)
   ======================================================== */

.cu-dashboard-section {
	padding: 100px 0;
	/* background: var(--alternate-bg, #fffadb); */
	position: relative;
}

.cu-main-title {
	font-family: var(--heading-custom);
	font-size: 54px;
	color: var(--primary-color);
	font-weight: 600;
}

.cu-text-pear {
	color: var(--pear-green);
}

.cu-subtitle {
	font-size: 18px;
	color: #555;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* LEFT PANEL: Light Theme Update */
.contact-info-wrapper {
	background: var(--white-color);
	color: var(--text-color);
	border-radius: 20px;
	padding: 40px;
	height: 100%;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
	border: 1px solid var(--divider-color);
	position: relative;
	overflow: hidden;
}

/* Subtle decorative background blob for the light theme */
.contact-info-wrapper::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -30%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, var(--pear-green) 0%, transparent 60%);
	opacity: 0.08;
	/* Very light opacity to keep it subtle */
	z-index: 0;
}

.contact-info-content {
	position: relative;
	z-index: 1;
}

.contact-info-item-new {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 30px;
}

.contact-info-item-new:last-child {
	margin-bottom: 0;
}

.contact-icon-box {
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 50%;
	background: var(--pear-green);
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: transform 0.3s ease;
	box-shadow: 0 5px 15px rgba(173, 200, 37, 0.2);
}

.contact-info-item-new:hover .contact-icon-box {
	transform: scale(1.1);
	background: var(--golden);
	color: var(--primary-color);
	box-shadow: 0 5px 15px rgba(242, 214, 46, 0.3);
}

.contact-details-new h6 {
	color: var(--primary-color);
	font-size: 18px;
	font-family: var(--default-font);
	font-weight: 600;
	margin-bottom: 5px;
}

.contact-details-new p,
.contact-details-new a {
	color: var(--text-color);
	font-size: 15px;
	font-family: var(--default-font);
	text-decoration: none;
	transition: color 0.3s ease;
	margin-bottom: 0;
}

.contact-details-new a:hover {
	color: var(--pear-green);
}

/* Light Theme Social Links */
.social-links-new {
	/* margin-top: 40px; */
	display: flex;
	gap: 15px;
}

.social-links-new a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--secondary-color);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border: 1px solid var(--divider-color);
}

.social-links-new a:hover {
	background: var(--golden);
	color: #000;
	border-color: var(--pear-green);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(173, 200, 37, 0.2);
}

/* RIGHT PANEL: Form Styling */
.contact-form-wrapper {
	background: var(--white-color);
	border-radius: 20px;
	padding: 40px;
	height: 100%;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
	border: 1px solid var(--divider-color);
}

.contact-form-wrapper h3 {
	color: var(--primary-color);
	font-family: var(--heading-custom);
	font-size: 32px;
	margin-bottom: 10px;
	font-weight: 600;
}

.contact-form-wrapper p.text-muted {
	font-family: var(--default-font);
	margin-bottom: 30px;
}

.form-control-custom {
	background: var(--secondary-color);
	border: 1px solid transparent;
	border-radius: 10px;
	padding: 15px 20px;
	font-family: var(--default-font);
	color: var(--text-color);
	width: 100%;
	transition: all 0.3s ease;
}

.form-control-custom:focus {
	background: var(--white-color);
	border-color: var(--pear-green);
	box-shadow: 0 0 0 4px rgba(173, 200, 37, 0.1);
	outline: none;
}

.custom-form-label {
	font-family: var(--default-font);
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 8px;
	display: block;
	font-size: 14px;
}

.quick-tags-new button {
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	color: var(--text-color);
	font-family: var(--default-font);
	padding: 6px 15px;
	border-radius: 20px;
	font-size: 13px;
	margin-right: 8px;
	margin-bottom: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.quick-tags-new button:hover {
	background: var(--pear-green);
	color: var(--white-color);
	border-color: var(--pear-green);
}

.btn-submit-new {
	background: var(--pear-green);
	color: var(--white-color);
	border: none;
	padding: 16px 35px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	font-family: var(--default-font);
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.btn-submit-new:hover {
	background: var(--golden);
	color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(242, 214, 46, 0.2);
}

/* ── Field-level validation ── */
.cu-field-error {
    display: block;
    color: var(--error-color, #BD2E2E);
    font-size: 12.5px;
    font-weight: 600;
    margin-top: 6px;
    min-height: 0;
}

.form-control-custom.cu-input-error {
    border-color: var(--error-color, #BD2E2E) !important;
    background: rgba(189, 46, 46, 0.04);
}

.form-control-custom.cu-input-error:focus {
    box-shadow: 0 0 0 4px rgba(189, 46, 46, 0.1);
}

/* ── Alert box entrance ── */
.cu-alert {
    animation: cuAlertIn 0.35s ease;
}

@keyframes cuAlertIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.cu-alert ul { margin: 0; }
.cu-alert li { font-size: 13.5px; line-height: 1.6; }

/* ── Submit button loading state ── */
#contactSubmitBtn:disabled {
    opacity: 0.75;
    cursor: not-allowed !important;
}

#contactSubmitBtn .btn-spinner {
    align-items: center;
    gap: 8px;
}
/* ========================================================
   20+ YEARS ACADEMIC RESEARCH CARD
   ======================================================== */

.gi-academic-section {
	padding: 0 0 80px;
	background: #ffffff;
}

.gi-academic-card {
	background: linear-gradient(145deg, #ffffff, #fdfaf2);
	border-radius: 30px;
	padding: 50px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(242, 214, 46, 0.3);
	position: relative;
	overflow: hidden;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gi-academic-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Decorative Background Elements */
.gi-academic-card::before {
	content: '';
	position: absolute;
	top: -50px;
	left: -50px;
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(173, 202, 50, 0.12) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.gi-academic-card::after {
	content: '';
	position: absolute;
	bottom: -80px;
	right: -50px;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(242, 214, 46, 0.12) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

/* 20+ Years Badge */
.gi-years-badge {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--golden);
	width: 220px;
	height: 220px;
	border-radius: 50%;
	box-shadow: 0 15px 35px rgba(242, 214, 46, 0.3);
	position: relative;
	z-index: 2;
	border: 8px solid #ffffff;
}

.gi-years-num {
	font-family: var(--caption-custom);
	font-size: 72px;
	font-weight: 800;
	color: var(--primary-color);
	line-height: 1;
	margin-bottom: 5px;
}

.gi-years-text {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.4;
}

/* Content */
.gi-academic-title {
	font-family: var(--heading-custom);
	font-size: 32px;
	font-weight: 600;
	color: var(--error-color);
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.gi-academic-desc {
	font-size: 17px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
}

/* Feature tags */
.gi-academic-features {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	position: relative;
	z-index: 2;
}

.gi-acad-feature {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	padding: 10px 18px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.gi-acad-feature i {
	color: var(--pear-green);
	font-size: 16px;
}

.gi-acad-feature:hover {
	background: var(--pear-green);
	color: #ffffff;
	border-color: var(--pear-green);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(173, 202, 50, 0.2);
}

.gi-acad-feature:hover i {
	color: #ffffff;
}

/* ========================================================
   DONATION PAGE - LIGHT & SHAPED THEME (.don-nw-)
   ======================================================== */

/* --- GENERAL TITLES & BUTTONS --- */
.don-nw-section-title {
	font-family: var(--heading-custom);
	font-size: 42px;
	font-weight: 600;
	color: var(--primary-color);
}

.don-nw-section-title span {
	color: var(--pear-green);
}

.don-nw-btn-solid {
	display: inline-block;
	padding: 14px 30px;
	border-radius: 50px;
	font-weight: 600;
	background: var(--pear-green);
	color: var(--primary-color);
	transition: all 0.3s;
	text-decoration: none;
	border: none;
}

.don-nw-btn-solid:hover {
	background: var(--primary-color);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(173, 200, 37, 0.3);
}

/* --- 1. HERO SECTION --- */
/* .don-nw-hero {
	position: relative;
	padding: 160px 0 40px;
	background: var(--alternate-bg, #fdfaf2);
	overflow: hidden;
} */

.don-nw-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	z-index: 1;
	opacity: 0.4;
}

.don-nw-blob-yellow {
	width: 400px;
	height: 400px;
	background: var(--golden);
	top: -100px;
	left: -100px;
}

.don-nw-blob-green {
	width: 300px;
	height: 300px;
	background: var(--pear-green);
	bottom: 10%;
	right: -50px;
}

.don-nw-floating-stars {
	position: absolute;
	top: 15%;
	right: 5%;
	width: 150px;
	opacity: 0.4;
	z-index: 1;
	pointer-events: none;
	animation: tpPulse 4s infinite alternate ease-in-out;
}

.don-nw-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: var(--primary-color);
}

.don-nw-dot {
	width: 8px;
	height: 8px;
	background: var(--golden);
	border-radius: 50%;
}

.don-nw-title {
	font-family: var(--heading-custom);
	font-size: 52px;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.1;
}

.don-nw-italic {
	font-style: italic;
	color: var(--error-color);
}

.don-nw-outline {
	color: transparent;
	-webkit-text-stroke: 1.5px var(--primary-color);
	font-family: 'Times New Roman', Times, serif;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 1px;
}

.don-nw-form-box {
	background: transparent;
	margin-top: 30px;
}

.don-nw-form-group {
	margin-bottom: 20px;
}

.don-nw-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.don-nw-input {
	width: 100%;
	padding: 14px 20px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #ffffff;
	font-size: 15px;
	color: var(--primary-color);
	transition: border-color 0.3s ease;
	appearance: none;
	outline: none;
}

.don-nw-input:focus {
	border-color: var(--primary-color);
}

.don-nw-select-wrapper {
	position: relative;
}

.don-nw-select-icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #888;
	pointer-events: none;
}

.don-nw-freq-toggle {
	display: flex;
	background: rgba(0, 0, 0, 0.04);
	border-radius: 50px;
	padding: 4px;
}

.don-nw-freq-btn {
	flex: 1;
	text-align: center;
	padding: 12px 0;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
}

input[type="radio"]:checked+.don-nw-freq-btn {
	background: var(--primary-color);
	color: #ffffff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.don-nw-amt-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
}

.don-nw-amt-chip span {
	display: block;
	text-align: center;
	padding: 12px 0;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #ffffff;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	cursor: pointer;
	transition: all 0.2s ease;
}

.don-nw-amt-chip input:checked+span {
	background: var(--golden);
	border-color: var(--golden);
	color: var(--primary-color);
}

.don-nw-amt-chip span:hover {
	border-color: var(--golden);
}

.don-nw-custom-amt {
	position: relative;
}

.don-nw-currency {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 13px;
	font-weight: 700;
	color: #888;
}

.don-nw-submit-btn {
	width: 100%;
	padding: 18px;
	border-radius: 50px;
	background: var(--primary-color);
	color: #ffffff;
	border: none;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
}

.don-nw-submit-btn:hover {
	background: var(--error-color);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(189, 46, 46, 0.2);
}

.don-nw-disclaimer {
	font-size: 11px;
	color: #777;
	line-height: 1.5;
	text-align: center;
}

/* RIGHT COLLAGE (SWADES MASONRY) */
.don-nw-collage-wrapper {
	position: relative;
	width: 100%;
	height: 500px;
}

.don-nw-collage {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1.5fr 1fr 1.5fr;
	gap: 15px;
	height: 100%;
}

.don-nw-collage div {
	border-radius: 20px;
	overflow: hidden;
}

.don-nw-collage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.don-nw-img-1 {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}

.don-nw-img-2 {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
}

.don-nw-img-3 {
	grid-column: 1 / 2;
	grid-row: 3 / 4;
}

.don-nw-img-4 {
	grid-column: 2 / 3;
	grid-row: 2 / 4;
}

.don-nw-badge {
	position: absolute;
	background: #ffffff;
	padding: 12px 20px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 700;
	color: var(--primary-color);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	z-index: 5;
}

.badge-top-left {
	top: 30%;
	left: -30px;
}

.badge-center-right {
	bottom: 10%;
	right: -20px;
	padding: 15px 25px;
	border-radius: 20px;
}

.badge-icon-bg {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(173, 200, 37, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

/* --- 4. CORPORATE & CSR (LIGHT THEME + BLOB IMAGE) --- */
.don-nw-csr-section {
	padding: 100px 0;
	background: var(--primary-bg);
}

.don-nw-light-panel {
	background: #ffffff;
	border-radius: 30px;
	padding: 60px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.04);
	position: relative;
	overflow: hidden;
}

.don-nw-panel-bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
	background: var(--alternate-bg, #fdfaf2);
	border-radius: 300px 0 0 300px;
	z-index: 0;
}

.don-nw-csr-desc {
	font-size: 16px;
	color: #666;
	line-height: 1.7;
}

.don-nw-csr-feature {
	background: #fff;
	padding: 20px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
	border: 1px solid #f0f0f0;
}

.don-nw-blob-img-wrapper {
	text-align: right;
	position: relative;
	z-index: 2;
}

.don-nw-blob-img {
	width: 100%;
	max-width: 400px;
	height: 450px;
	object-fit: cover;
	border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* --- 5. TRANSPARENCY & TRUST BOARD --- */
.don-nw-trust-section {
	padding: 80px 0 120px;
	background: var(--alternate-bg, #fdfaf2);
}

.don-nw-trust-panel {
	background: #ffffff;
	border-radius: 30px;
	padding: 30px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.02);
}

.don-nw-trust-card {
	text-align: center;
	padding: 30px 20px;
	background: #fafafc;
	border-radius: 20px;
	height: 100%;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.don-nw-trust-card:hover {
	background: #ffffff;
	border-color: rgba(173, 200, 37, 0.3);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transform: translateY(-5px);
}

.don-nw-trust-card i {
	font-size: 36px;
	margin-bottom: 20px;
	display: block;
	opacity: 0.9;
}

.don-nw-trust-card h5 {
	font-family: var(--heading-custom);
	font-weight: 600;
	color: var(--primary-color);
	font-size: 20px;
	margin-bottom: 10px;
}

.don-nw-trust-card p {
	font-size: 14px;
	color: #777;
	line-height: 1.6;
	margin: 0;
}

.don-btn-large {
	padding: 18px 40px;
	font-size: 18px;
}

/************************************/
/***      IMPACT STORY SECTION   ***/
/************************************/

.impact-story-section {
	position: relative;
	padding: 30px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	overflow: hidden;
}

.impact-story-wrapper {
	display: flex;
	align-items: center;
	gap: 90px;
	position: relative;
	z-index: 2;
}

/************************************/
/***         LEFT SIDE           ***/
/************************************/

.impact-story-content {
	width: 48%;
	position: relative;
	z-index: 2;
}

.impact-tag {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 10px 18px;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #777;
	margin-bottom: 35px;
	backdrop-filter: blur(10px);
}

.impact-tag span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--golden);
	display: block;
}

.impact-story-content h2 {
	font-size: 52px;
	line-height: 1em;
	color: var(--primary-color);
	margin-bottom: 35px;
	font-weight: 700;
	max-width: 650px;
}

.impact-story-content h2 span {
	color: var(--pear-green);
	font-style: italic;
	position: relative;
}

.impact-story-content p {
	font-size: 20px;
	line-height: 1.9em;
	color: #6d6d6d;
	margin-bottom: 30px;
	max-width: 620px;
	text-align: justify;
}

.impact-explore-btn {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	padding: 18px 30px;
	background: #fff;
	border-radius: 100px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.4s ease;
}

.impact-explore-btn i {
	transition: all 0.4s ease;
}

.impact-explore-btn:hover {
	transform: translateY(-5px);
	background: var(--gradient);
	color: #fff;
}

.impact-explore-btn:hover i {
	transform: translateX(6px);
}

/************************************/
/***        VISUAL AREA          ***/
/************************************/

.impact-visual-area {
	width: 52%;
	position: relative;
	height: 720px;
}

/* soft organic background */
.impact-blob {
	position: absolute;
	width: 540px;
	height: 540px;
	background: radial-gradient(circle,
			rgba(173, 200, 37, 0.20) 0%,
			rgba(173, 200, 37, 0) 70%);
	top: 60px;
	left: 40px;
	filter: blur(20px);
	z-index: 0;
}

/************************************/
/***          MAIN IMAGE         ***/
/************************************/

.impact-main-image {
	position: absolute;
	top: 0;
	right: 0;
	width: 78%;
	height: 520px;
	border-radius: 38px;
	overflow: hidden;
	transform: rotate(-4deg);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
	z-index: 2;
}

.impact-main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease;
}

.impact-main-image:hover img {
	transform: scale(1.08);
}

/************************************/
/***       SMALL FLOATING IMAGE  ***/
/************************************/

.impact-small-image {
	position: absolute;
	left: 0;
	bottom: 70px;
	width: 290px;
	height: 360px;
	border-radius: 32px;
	overflow: hidden;
	border: 8px solid var(--secondary-color);
	transform: rotate(6deg);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
	z-index: 3;
}

.impact-small-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease;
}

.impact-small-image:hover img {
	transform: scale(1.08);
}

/************************************/
/***        QUOTE CARD           ***/
/************************************/

.impact-quote-card img {
	width: 30px;
	margin-bottom: 14px;
}

.impact-quote-card p {
	font-size: 17px;
	line-height: 1.7em;
	color: #444;
	margin: 0;
}


/************************************/
/***       INFO STRIP             ***/
/************************************/

.impact-info-strip {
	position: absolute;
	left: 250px;
	bottom: 30px;
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 24px 34px;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(14px);
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	z-index: 5;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.impact-info-item h3 {
	font-size: 42px;
	line-height: 1em;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.impact-info-item p {
	font-size: 15px;
	line-height: 1.6em;
	color: #6f6f6f;
	margin: 0;
	max-width: 140px;
}

.impact-divider {
	width: 1px;
	height: 60px;
	background: rgba(0, 0, 0, 0.08);
}

/************************************/
/***         DOODLE               ***/
/************************************/

.impact-doodle {
	position: absolute;
	top: 120px;
	left: 120px;
	z-index: 6;
	animation: doodleFloat 4s ease-in-out infinite;
}

.impact-doodle img {
	width: 70px;
	opacity: 0.9;
}

@keyframes doodleFloat {
	0% {
		transform: translateY(0px) rotate(-6deg);
	}

	50% {
		transform: translateY(-12px) rotate(4deg);
	}

	100% {
		transform: translateY(0px) rotate(-6deg);
	}
}


/* Custom Breadcrumb Override to bypass theme JS completely */
.mukt-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style: none;
}

.mukt-breadcrumb-item {
	display: flex;
	align-items: center;
}

.mukt-breadcrumb-item a {
	color: inherit;
	text-decoration: none;
	font-weight: 600;
	transition: opacity var(--trans-fast);
}

.mukt-breadcrumb-item a:hover {
	opacity: 0.7;
}

.mukt-breadcrumb-item.active {
	opacity: 0.8;
}

.mukt-breadcrumb-item+.mukt-breadcrumb-item::before {
	content: "/";
	padding: 0 0.5rem;
	color: inherit;
	opacity: 0.6;
}


/* ═══════════════════════════════════════
   HERO TITLE RESPONSIVE & LINE-HEIGHT FIX
════════════════════════════════════════ */

.gi-hero-title {
	display: block !important;
	line-height: 1.3 !important;
	/* Unitless is much strictly enforced by browsers */
}

.gi-hero-title span {
	display: inline !important;
	line-height: inherit !important;
}

/* ==========================================
   DONATION CHECKOUT SECTION (NEW THEME)
========================================== */

#donation-checkout {
	background-color: var(--alternate-bg);
	/* Removed overflow-x: hidden; to restore sticky behavior! */
}

/* --- Form Cards --- */
#donation-checkout .su-card,
#donation-checkout .su-card-dark {
	background-color: var(--white-color) !important;
	border-radius: 24px !important;
	border: 1px solid rgba(0, 0, 0, 0.03) !important;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04) !important;
}

/* Headings */
#donation-checkout h4 {
	font-family: var(--heading-custom), sans-serif;
	color: var(--primary-color);
	font-weight: 600 !important;
	font-size: 28px;
}

#donation-checkout .form-label {
	color: var(--primary-color);
	font-family: var(--default-font), sans-serif;
	font-weight: 600;
	font-size: 14px;
}

/* --- Frequency Buttons --- */
.don-nw-freq-btn {
	border: 1px solid var(--divider-color) !important;
	color: var(--text-color) !important;
	border-radius: 8px !important;
	padding: 12px 20px !important;
	font-family: var(--default-font), sans-serif;
	font-weight: 600 !important;
	transition: all 0.3s ease;
	background-color: var(--white-color) !important;
	text-align: center;
}

.don-nw-freq-toggle input[type="radio"]:checked+.don-nw-freq-btn {
	background-color: var(--golden) !important;
	border-color: var(--golden) !important;
	color: var(--primary-color) !important;
	box-shadow: 0 5px 15px rgba(242, 214, 46, 0.3);
}

/* --- Amount Selection Pills --- */
.su-btn-amount-pill {
	background-color: var(--white-color) !important;
	border: 1px solid var(--divider-color) !important;
	border-radius: 12px !important;
	color: var(--text-color) !important;
	font-family: var(--default-font), sans-serif;
	transition: all 0.3s ease !important;
	min-height: 130px;
}

.su-btn-amount-pill:hover {
	border-color: var(--golden) !important;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* Selected State - Using Brick Red */
.btn-check:checked+.su-btn-amount-pill {
	background-color: rgba(189, 46, 46, 0.04) !important;
	border-color: var(--brick-red) !important;
	color: var(--brick-red) !important;
	box-shadow: 0 5px 15px rgba(189, 46, 46, 0.12);
}

.btn-check:checked+.su-btn-amount-pill span {
	color: var(--white-color) !important;
}

.btn-check:checked+.su-btn-amount-pill .su-impact-text {
	color: var(--primary-color);
}

/* --- Text Inputs & Selects --- */
.su-input {
    background-color: var(--secondary-color) !important;
    border: 1px solid transparent !important;
    border-radius: 0px 12px 12px 0px !important;
    padding: 14px 20px !important;
    font-size: 15px;
    font-family: var(--default-font), sans-serif;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.su-input:focus {
	background-color: var(--white-color) !important;
	border-color: var(--golden) !important;
	box-shadow: 0 0 0 4px rgba(242, 214, 46, 0.15) !important;
	outline: none;
}

/* Custom Amount Input Group Specifics */
#donation-checkout .input-group-text {
	background-color: var(--secondary-color) !important;
	border: 1px solid transparent !important;
	border-radius: 12px 0 0 12px !important;
	color: var(--primary-color);
	font-family: var(--default-font), sans-serif;
	transition: all 0.3s ease;
}

#custom_amount_input {
	border-radius: 0 12px 12px 0 !important;
}

#donation-checkout .input-group:focus-within .input-group-text,
#donation-checkout .input-group:focus-within #custom_amount_input {
	border-color: var(--golden) !important;
	background-color: var(--white-color) !important;
}

/* --- Right Sidebar Details --- */
.su-secure-box {
	background-color: rgba(242, 214, 46, 0.1) !important;
	border: 1px dashed rgba(242, 214, 46, 0.4) !important;
	border-radius: 12px !important;
	color: var(--primary-color) !important;
	font-family: var(--default-font), sans-serif;
}

.su-secure-box i.text-success {
	color: var(--golden) !important;
}

/* Total Price Text */
#display_total {
	color: #000000 !important;
	font-family: var(--caption-custom), sans-serif;
	font-size: 36px !important;
}

/* Impact List Icons */
#dynamic_impact_list i {
	color: var(--golden) !important;
}

/* Fix for Sticky Card Growing Too Large */
#dynamic_impact_list {
	max-height: 200px;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 10px;
	margin-right: -5px;
}

#dynamic_impact_list::-webkit-scrollbar {
	width: 6px;
}

#dynamic_impact_list::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.05);
	border-radius: 10px;
}

#dynamic_impact_list::-webkit-scrollbar-thumb {
	background: var(--golden);
	border-radius: 10px;
}

#dynamic_impact_list::-webkit-scrollbar-thumb:hover {
	background: var(--brick-red);
}

/* Main Donate Button */
#donation-checkout button[type="submit"] {
	background-color: var(--brick-red) !important;
	border: none !important;
	color: var(--white-color) !important;
	border-radius: 8px !important;
	font-family: var(--default-font), sans-serif;
	font-weight: 600;
	font-size: 18px !important;
	padding: 16px 30px !important;
	transition: all 0.3s ease;
	box-shadow: 0 10px 25px rgba(189, 46, 46, 0.25);
}

#donation-checkout button[type="submit"]:hover {
	background-color: #a02525 !important;
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(189, 46, 46, 0.35);
}

/* ==========================================
   RESPONSIVE QUERIES
========================================== */

/* ========================================================
   GET INVOLVED: PARTNER LIST (.gi-partner-list)
   ======================================================== */
.gi-partner-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.gi-partner-list li {
	display: flex;
	align-items: center;
	gap: 15px;
	background: #ffffff;
	padding: 10px 20px;
	border-radius: 50px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.02);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: fit-content;
	padding-right: 30px;
}

.gi-partner-list li:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.gi-partner-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

/* Theme Color Mapping */
.gi-partner-icon.green {
	background: rgba(173, 200, 37, 0.15);
	color: var(--pear-green);
}

.gi-partner-icon.yellow {
	background: rgba(242, 214, 46, 0.15);
	color: var(--golden);
}

.gi-partner-icon.red {
	background: rgba(189, 46, 46, 0.1);
	color: var(--error-color);
}

.gi-partner-text {
	font-weight: 700;
	color: var(--primary-color);
	font-size: 16px;
}

/* === Mukt+Aangan animation === */
/* === Mukt+Aangan animation === */
.word-mukt,
.word-aangan {
	transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.word-and {
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	transition: opacity 0.35s ease, width 0.5s ease, margin 0.5s ease;
}

.quote-left,
.quote-right {
	transition: opacity 0.4s ease;
}

/* Shared stacking container */
.ma-swap-container {
	position: relative;
	width: 100%;
	min-height: 90px;
	margin-top: 8px;
}

/* Meanings - absolutely positioned inside container */
.meanings-row {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.4s ease, transform 0.3s ease;
}

/* Tagline - absolutely positioned in same spot */
.ma-merged-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.45s ease, transform 0.4s ease;
	pointer-events: none;
}

.ma-merged-content.visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.meanings-row.hidden {
	opacity: 0;
	transform: translateY(8px);
}

.ma-tagline {
	font-size: 22px;
	font-weight: 600;
	color: var(--brick-red);
	font-family: var(--oregano-font);
	font-style: italic;
	letter-spacing: 0.02em;
	margin: 0;
	line-height: 1.5;
}


/* ═══════════════════════════════════════
   TEAM PAGE - Additional CSS
   Add these to the bottom of customnew.css
════════════════════════════════════════ */

/* Hero section at top of team page */
.team-page-hero {
	padding: 100px 0 40px;
	background: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.team-page-hero::before {
	content: '';
	position: absolute;
	top: -60px;
	left: -80px;
	width: 350px;
	height: 350px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(173, 200, 37, 0.07) 0%, transparent 70%);
	pointer-events: none;
}

.team-page-hero::after {
	content: '';
	position: absolute;
	bottom: -60px;
	right: -80px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(242, 214, 46, 0.07) 0%, transparent 70%);
	pointer-events: none;
}

.team-page-hero h1 {
	font-size: 52px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 20px;
	line-height: 1.2;
}

.team-page-hero p {
	font-size: 17px;
	color: #555;
	max-width: 680px;
	margin: 0 auto;
	line-height: 1.7;
}

/* Give the team section on the standalone page a bit more top breathing room */
.team-page-section {
	padding-top: 10px;
}


/* SCHOOL PROGRAMME – PARALLAX IMPACT STATS */

/* ── IMPACT STATS – PARALLAX ── */
.sp-impact-parallax {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.sp-impact-parallax__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.sp-impact-parallax__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px 80px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* ── Featured Stat (Left/Big) ── */
.sp-impact-featured {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.sp-impact-number--big {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    font-family: var(--sketch-font, 'Caveat', cursive);
    color: #F2D62E;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

.sp-impact-label {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    margin-top: 10px;
    line-height: 1.4;
    max-width: 300px;
}

/* ── Connector ── */
.sp-impact-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.sp-impact-connector__line {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, #F2D62E, transparent);
}

.sp-impact-connector__dot {
    width: 18px;
    height: 18px;
    background: #F2D62E;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 6px rgba(242, 214, 46, 0.2);
}

/* ── Side Stat (Right) ── */
.sp-impact-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.sp-impact-side__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sp-impact-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    font-family: var(--sketch-font, 'Caveat', cursive);
    color: #F2D62E;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

.sp-impact-side .sp-impact-label {
    font-size: 1.2rem;
    max-width: 260px;
}

.sp-impact-side .sp-impact-label small {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-top: 6px;
}
/* ════════════════════════════════
   FORUM PAGE 
════════════════════════════════ */

.forum-hero-section .hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(173, 200, 37, 0.12);
	border: 1px solid rgba(173, 200, 37, 0.30);
	color: var(--pear-green);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 100px;
	padding: 7px 18px;
	margin-bottom: 20px;
}

.forum-hero-section .hero-badge i {
	font-size: 14px;
}


/* ════════════════════════════════
   SECTION B - CORE PILLARS
════════════════════════════════ */
.forum-pillars-section {
	padding: 100px 0 80px;
	background: var(--alternate-bg);
}

.forum-pillars-section .forum-section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--pear-green);
	background: rgba(173, 200, 37, 0.12);
	border: 1px solid rgba(173, 200, 37, 0.30);
	border-radius: 100px;
	padding: 7px 18px;
	margin-bottom: 14px;
}

.forum-pillars-section .forum-section-heading {
	font-family: var(--heading-custom);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	color: var(--near-black);
	line-height: 1.25;
	margin-bottom: 16px;
}

.forum-pillars-section .forum-section-heading span {
	color: var(--pear-green);
}

.forum-pillars-section .forum-section-lead {
	font-size: 17px;
	color: var(--primary-color);
	line-height: 1.75;
	max-width: 620px;
}

/* Pillar Cards */
.forum-pillar-card {
	background: var(--white-color);
	border-radius: 20px;
	padding: 40px 32px 36px;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.forum-pillar-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--pear-green);
	border-radius: 20px 20px 0 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}

.forum-pillar-card:hover::before {
	transform: scaleX(1);
}

.forum-pillar-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.forum-pillar-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: rgba(173, 200, 37, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--error-color);
	margin-bottom: 24px;
	transition: transform 0.3s ease, background 0.3s ease;
}

.forum-pillar-card:hover .forum-pillar-icon {
	transform: rotate(-8deg) scale(1.1);
	background: var(--golden);
	color: #fff;
}

.forum-pillar-card h3 {
	font-family: var(--heading-custom);
	font-size: 21px;
	font-weight: 700;
	color: var(--near-black);
	margin-bottom: 14px;
	line-height: 1.3;
}

.forum-pillar-card p {
	font-size: 15px;
	color: var(--primary-color);
	line-height: 1.75;
	margin: 0;
}


/* ════════════════════════════════
   SECTION C - LATEST DISCUSSIONS
════════════════════════════════ */
.forum-feed-section {
	padding: 90px 0 80px;
	background: var(--bg-color);
}

.forum-feed-section .forum-section-heading {
	font-family: var(--heading-custom);
	font-size: clamp(26px, 3.5vw, 40px);
	font-weight: 700;
	color: var(--near-black);
	line-height: 1.25;
	margin-bottom: 12px;
}

.forum-feed-section .forum-section-heading span {
	color: var(--pear-green);
}

/* Post Card */
.forum-post-card {
	background: var(--white-color);
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.forum-post-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
}

.forum-post-card .forum-post-image-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #eee;
	flex-shrink: 0;
}

.forum-post-card .forum-post-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.forum-post-card:hover .forum-post-image-wrap img {
	transform: scale(1.05);
}

/* Fallback if no image */
.forum-post-card .forum-post-image-wrap .img-fallback {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e8eecc 0%, #d0db7b 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	color: var(--pear-green);
}

.forum-post-body {
	padding: 28px 28px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* Pear-Green Category Badge */
.forum-badge-green {
	display: inline-block;
	background: rgba(173, 200, 37, 0.12);
	color: #849618;
	border: 1px solid rgba(173, 200, 37, 0.30);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	border-radius: 100px;
	padding: 4px 12px;
	margin-bottom: 14px;
	width: fit-content;
}

.forum-post-title {
	font-family: var(--heading-custom);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 10px;
}

.forum-post-title a {
	color: var(--near-black);
	text-decoration: none;
	transition: color 0.25s ease;
}

.forum-post-title a:hover {
	color: var(--pear-green);
}

.forum-post-meta {
	font-size: 12px;
	color: var(--primary-color);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.forum-post-meta i {
	font-size: 11px;
}

.forum-post-excerpt {
	font-size: 14px;
	color: var(--primary-color);
	line-height: 1.7;
	flex: 1;
	margin-bottom: 20px;
}

/* Read More link */
.forum-read-more {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 700;
	color: var(--pear-green);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	padding-bottom: 2px;
	transition: border-color 0.25s ease, gap 0.25s ease;
	width: fit-content;
	margin-top: auto;
}

.forum-read-more i {
	font-size: 13px;
	transition: transform 0.25s ease;
}

.forum-read-more:hover {
	border-color: var(--pear-green);
	gap: 11px;
}

.forum-read-more:hover i {
	transform: translateX(3px);
}

/* Empty state */
.forum-empty-state {
	text-align: center;
	padding: 60px 20px;
	color: var(--primary-color);
}

.forum-empty-state i {
	font-size: 48px;
	color: rgba(173, 200, 37, 0.30);
	margin-bottom: 16px;
	display: block;
}


/* ════════════════════════════════
   SECTION D - JOIN THE DIALOGUE CTA
════════════════════════════════ */
.forum-cta-section {
	padding: 90px 0;
	background: #ffffff;
}

.forum-cta-inner {
	/* background: var(--bg-color); */
	background: url("../../assets/images/backgrounds/smiling.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	/* opacity: 0.8; */
	border-radius: 28px;
	padding: 70px 48px;
	text-align: center;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Subtle green accent ring in background */
.forum-cta-inner::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(173, 200, 37, 0.12) 0%, transparent 70%);
	pointer-events: none;
}

.forum-cta-inner::after {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -80px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(247, 213, 22, 0.10) 0%, transparent 70%);
	pointer-events: none;
}

.forum-cta-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(173, 200, 37, 0.12);
	border: 1px solid rgba(173, 200, 37, 0.30);
	color: var(--pear-green);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 22px;
	position: relative;
	z-index: 1;
}

.forum-cta-heading {
	font-family: var(--heading-custom);
	font-size: clamp(26px, 4vw, 42px);
	font-weight: 700;
	color: var(--white-color);
	line-height: 1.25;
	margin-bottom: 18px;
	position: relative;
	z-index: 1;
}

.forum-cta-heading span {
	color: var(--golden);
}

.forum-cta-text {
	font-size: 16px;
	color: var(--secondary-color);
	line-height: 1.75;
	max-width: 580px;
	margin: 0 auto 36px;
	position: relative;
	z-index: 1;
}

/* CTA Primary Button - matches site .btn-default style but in green */
.forum-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--pear-green);
	color: #1a1a1a;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 8px;
	padding: 15px 34px;
	border: 2px solid var(--pear-green);
	transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
	position: relative;
	z-index: 1;
}

.forum-btn-primary i {
	font-size: 14px;
	transition: transform 0.25s ease;
}

.forum-btn-primary:hover {
	background: #849618;
	border-color: #849618;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(173, 200, 37, 0.35);
}

.forum-btn-primary:hover i {
	transform: translateX(3px);
}

/* Email Subscription Group */
.forum-subscribe-group {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	max-width: 460px;
	margin: 0 auto;
	border-radius: 50px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	position: relative;
	z-index: 1;
}

.forum-subscribe-group .forum-email-input {
	flex: 1;
	padding: 15px 22px;
	font-size: 14px;
	font-family: var(--default-font);
	color: var(--near-black);
	background: #ffffff;
	border: none;
	outline: none;
	border-radius: 50px 0 0 50px;
	min-width: 0;
	/* prevent flex overflow */
}

.forum-subscribe-group .forum-email-input::placeholder {
	color: #b0b7c3;
}

.forum-subscribe-group .forum-subscribe-btn {
	flex-shrink: 0;
	background: var(--pear-green);
	color: #1a1a1a;
	font-size: 14px;
	font-weight: 700;
	font-family: var(--default-font);
	border: none;
	cursor: pointer;
	padding: 15px 26px;
	border-radius: 0 50px 50px 0;
	white-space: nowrap;
	transition: background 0.3s ease, color 0.3s ease;
}

.forum-subscribe-group .forum-subscribe-btn:hover {
	background: #849618;
	color: #ffffff;
}

.forum-subscribe-note {
	font-size: 12px;
	color: var(--secondary-color);
	margin-top: 12px;
	position: relative;
	z-index: 1;
}

.forum-divider-or {
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 460px;
	margin: 28px auto;
	color: var(--secondary-color);
	font-size: 13px;
	font-weight: 600;
	position: relative;
	z-index: 1;
}

.forum-divider-or::before,
.forum-divider-or::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(0, 0, 0, 0.1);
}


/* Partners section css  */

/* ── OPPORTUNITY CARDS ────────────────────────── */
.pw-involved-section {
	padding: 90px 0 70px;
}

.pw-opportunity-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.pw-opp-card {
	border-radius: 24px;
	padding: 40px 32px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
	border: 2px solid transparent;
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
}

.pw-opp-green {
	background: linear-gradient(135deg, rgba(84, 169, 84, 0.04), rgba(173, 200, 37, 0.06));
}

.pw-opp-golden {
	background: linear-gradient(135deg, rgba(242, 214, 46, 0.06), rgba(255, 180, 0, 0.08));
}

.pw-opp-red {
	background: linear-gradient(135deg, rgba(212, 56, 56, 0.04), rgba(255, 100, 100, 0.06));
}

.pw-opp-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	background: #fff;
}

.pw-opp-green:hover {
	border-color: #54a954;
}

.pw-opp-golden:hover {
	border-color: #f2d62e;
}

.pw-opp-red:hover {
	border-color: #d43838;
}

.pw-opp-icon {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.pw-opp-card:hover .pw-opp-icon {
	transform: scale(1.1) rotate(-5deg);
}

.pw-opp-green .pw-opp-icon {
	background: rgba(84, 169, 84, 0.12);
	color: #3a8a3a;
}

.pw-opp-golden .pw-opp-icon {
	background: rgba(242, 214, 46, 0.18);
	color: #c9a800;
}

.pw-opp-red .pw-opp-icon {
	background: rgba(212, 56, 56, 0.1);
	color: #c23030;
}

.pw-opp-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0;
	line-height: 1.3;
}

.pw-opp-card p {
	font-size: 15px;
	color: #6b7280;
	margin: 0;
	flex: 1;
	line-height: 1.7;
}

.pw-opp-link {
	font-size: 14px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: gap 0.3s ease;
}

.pw-opp-green .pw-opp-link {
	color: #3a8a3a;
}

.pw-opp-golden .pw-opp-link {
	color: #c9a800;
}

.pw-opp-red .pw-opp-link {
	color: #c23030;
}

.pw-opp-card:hover .pw-opp-link {
	gap: 10px;
}


/* ── DETAIL SECTIONS ──────────────────────────── */
.pw-detail-section {
	padding: 90px 0;
}


/* ── BENEFIT LIST ─────────────────────────────── */
.pw-benefit-list {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.pw-benefit-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.pw-benefit-icon {
	width: 28px;
	height: 28px;
	background: #54a954;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
	margin-top: 2px;
}

.pw-benefit-list span {
	font-size: 15px;
	color: #4b5563;
	line-height: 1.65;
}


/* ── PHILANTHROPIC COMBO CARD ─────────────────── */
.pw-phil-combo-card {
	background: #fff;
	border-radius: 28px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.07);
	border: 1px solid rgba(0, 0, 0, 0.04);
	overflow: hidden;
	height: 100%;
}

.pw-phil-combo-image {
	position: relative;
	height: 240px;
}

.pw-phil-combo-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pw-phil-pulse-badge {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	width: 70px;
	height: 70px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: #c9a800;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

.pw-phil-pulse {
	animation: philPulse 2.5s ease-in-out infinite;
	border-radius: 50%;
}

@keyframes philPulse {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(242, 214, 46, 0.5);
		transform: scale(1);
	}

	50% {
		box-shadow: 0 0 0 15px rgba(242, 214, 46, 0);
		transform: scale(1.08);
	}
}

.pw-phil-combo-content {
	padding: 50px 30px 36px;
}

.pw-phil-title {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 4px;
}

.pw-phil-sub {
	font-size: 14px;
	color: #9ca3af;
	margin: 0 0 24px;
	font-weight: 500;
}

.pw-phil-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.pw-phil-tags span {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 50px;
	padding: 7px 16px;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	transition: all 0.3s ease;
}

.pw-phil-tags span:hover {
	background: rgba(242, 214, 46, 0.12);
	border-color: #f2d62e;
	color: #c9a800;
}

.pw-phil-tags span i {
	color: #c9a800;
}


/* ── ENGAGE GRID ──────────────────────────────── */
.pw-engage-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 28px;
}

.pw-engage-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: #f9fafb;
	border-radius: 16px;
	padding: 20px;
	border: 1px solid #f3f4f6;
	transition: all 0.3s ease;
}

.pw-engage-item:hover {
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	transform: translateY(-3px);
}

.pw-engage-num {
	font-size: 28px;
	font-weight: 800;
	color: rgba(242, 214, 46, 0.5);
	line-height: 1;
	flex-shrink: 0;
	min-width: 36px;
}

.pw-engage-item h5 {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 6px;
}

.pw-engage-item p {
	font-size: 13.5px;
	color: #6b7280;
	margin: 0;
	line-height: 1.6;
}


.pw-individual-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	margin-bottom: 48px;
}

.pw-ind-card {
	background: #fff;
	border-radius: 22px;
	padding: 36px 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
	border: 1px solid #f3f4f6;
	transition: all 0.35s ease;
}

.pw-ind-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}

.pw-ind-icon {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.pw-ind-card:hover .pw-ind-icon {
	transform: scale(1.12) rotate(-6deg);
}

.pw-ind-icon--green {
	background: rgba(84, 169, 84, 0.12);
	color: #3a8a3a;
}

.pw-ind-icon--golden {
	background: rgba(242, 214, 46, 0.18);
	color: #c9a800;
}

.pw-ind-icon--red {
	background: rgba(212, 56, 56, 0.1);
	color: #c23030;
}

.pw-ind-card h4 {
	font-size: 17px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0;
}

.pw-ind-card p {
	font-size: 14.5px;
	color: #6b7280;
	margin: 0;
	flex: 1;
	line-height: 1.7;
}

.pw-ind-btn {
	display: inline-block;
	font-size: 13.5px;
	font-weight: 700;
	color: #3a8a3a;
	text-decoration: none;
	padding: 8px 0 0;
	border-top: 1px solid #f0f0f0;
	transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.pw-ind-btn:hover {
	color: #c9a800;
	letter-spacing: 0.3px;
}


/* ── TAX BANNER ───────────────────────────────── */
.pw-tax-banner {
	display: flex;
	align-items: center;
	gap: 24px;
	background: linear-gradient(135deg, #1a1a2e, #2d2d50);
	border-radius: 20px;
	padding: 30px 36px;
	color: #fff;
	flex-wrap: wrap;
}
.pw-tax-icon {
	width: 60px;
	height: 60px;
	background: rgba(242, 214, 46, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #f2d62e;
	flex-shrink: 0;
}

.pw-tax-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.pw-tax-text strong {
	font-size: 18px;
	font-weight: 700;
	color: #f2d62e;
}

.pw-tax-text span {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.6;
}


/* ── PARTNERS SECTION ─────────────────────────── */
.pw-partners-section {
	padding: 60px 0;
	background: #fff;
}

.pw-partner-group {
	margin-bottom: 60px;
}

.pw-partner-group:last-child {
	margin-bottom: 0;
}

.pw-partner-group-header {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 10px 32px;
	border-radius: 18px 18px 0 0;
	margin-bottom: 0;
}

.pw-group-green {
	background: linear-gradient(135deg, rgba(84, 169, 84, 0.1), rgba(173, 200, 37, 0.12));
}

.pw-group-golden {
	background: linear-gradient(135deg, rgba(242, 214, 46, 0.1), rgba(255, 200, 0, 0.12));
}

.pw-group-red {
	background: linear-gradient(135deg, rgba(212, 56, 56, 0.08), rgba(255, 120, 120, 0.1));
}

.pw-group-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
}

.pw-group-green .pw-group-icon {
	background: rgba(84, 169, 84, 0.18);
	color: #3a8a3a;
}

.pw-group-golden .pw-group-icon {
	background: rgba(242, 214, 46, 0.25);
	color: #c9a800;
}

.pw-group-red .pw-group-icon {
	background: rgba(212, 56, 56, 0.15);
	color: #c23030;
}

.pw-partner-group-header h3 {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 4px;
}

.pw-partner-group-header p {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}

.pw-partner-logo-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
	background: transparent;
	padding: 24px 0;
}

.pw-partner-logo-item {
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	transition: all 0.3s ease;
	min-height: 90px;
	border-radius: 12px;
}

.pw-partner-logo-item:hover {
	background: #fff;
	transform: scale(1.06);
	z-index: 2;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pw-partner-logo-item img {
	max-height: 90px;
	max-width: 150px;
	object-fit: contain;
	filter: grayscale(0%);
	opacity: 0.85;
	transition: all 0.3s ease;
}

.pw-partner-logo-item:hover img {
	opacity: 1;
}

/* Report Page CSS  */

/* ── Statutory Document Cards (revised) ── */
.stat-doc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 10px;
}

.stat-doc-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding: 28px 24px 24px;
	gap: 14px;
}

.stat-doc-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

/* Large gradient icon circle */
.sdc-icon-circle {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
	color: #fff;
}

.sdc-icon-circle--gold {
	background: linear-gradient(135deg, #F2D62E, #c9a800);
}

.sdc-icon-circle--green {
	background: linear-gradient(135deg, #7cb94e, #4a8e20);
}

.sdc-icon-circle--red {
	background: linear-gradient(135deg, #e35b4e, #b02d22);
}

.sdc-icon-circle--rose {
	background: linear-gradient(135deg, #e88f8f, #c04444);
}

.sdc-icon-circle--blue {
	background: linear-gradient(135deg, #4a90d9, #1d5ea8);
}

.sdc-label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: #aaa;
	margin-bottom: 3px;
}

.sdc-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--primary-color, #353535);
	margin: 0 0 6px;
	line-height: 1.3;
}

.sdc-desc {
	font-size: 0.82rem;
	color: #777;
	line-height: 1.55;
	margin: 0;
}

.sdc-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--primary-color, #353535);
	text-decoration: none;
	margin-top: auto;
	padding-top: 8px;
	transition: gap 0.2s ease, color 0.2s;
}

.sdc-link:hover {
	gap: 10px;
	color: #555;
}

.sdc-link i {
	font-size: 0.75rem;
}


/* ── SSC Milestone Section ──────────────── */
.ssc-milestone-section {
	padding: 90px 0;
	background: var(--secondary-color);
	position: relative;
}

/* ── Left Highlight Box ─────────────────── */
.ssc-highlight-box {
	background: linear-gradient(145deg, var(--pear-green) 0%, #c8e02a 100%);
	border-radius: 20px;
	padding: 42px 36px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: var(--near-black);
	position: relative;
	overflow: hidden;
}

.ssc-highlight-box::before {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 150px;
	height: 150px;
	background: rgba(0, 0, 0, 0.06);
	border-radius: 50%;
}

.ssc-highlight-number {
	font-size: 62px;
	font-weight: 800;
	line-height: 1;
	color: var(--near-black);
	margin-bottom: 8px;
}

.ssc-highlight-number span {
	font-size: 32px;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.4);
}

.ssc-highlight-label {
	font-size: 18px;
	font-weight: 700;
	color: var(--near-black);
	margin-bottom: 6px;
}

.ssc-highlight-pct {
	font-size: 13px;
	font-weight: 700;
	color: var(--near-black);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 18px;
	background: rgba(0, 0, 0, 0.1);
	display: inline-block;
	padding: 4px 12px;
	border-radius: 20px;
}

.ssc-highlight-desc {
	font-size: 13.5px;
	color: rgba(0, 0, 0, 0.6);
	line-height: 1.7;
	margin: 0;
}

/* ── Right Stat Rows ────────────────────── */
.ssc-stat-row {
	background: #fff;
	border-radius: 16px;
	padding: 28px 24px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	height: 100%;
	border-left: 4px solid transparent;
	border-image: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.ssc-stat-row:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.ssc-sr-number {
	font-size: 38px;
	font-weight: 800;
	line-height: 1;
	flex-shrink: 0;
	min-width: 72px;
}

.ssc-sr-body strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--near-black);
	margin-bottom: 6px;
}

.ssc-sr-body p {
	font-size: 13px;
	color: #6b7280;
	line-height: 1.6;
	margin: 0;
}

/* ── Alumni Section ────────────────────── */
.alumni-section {
	padding: 90px 0;
	background: var(--secondary-color);
	overflow: hidden;
}

.alumni-content-wrap {
	padding-right: 20px;
}

.alumni-intro {
	font-size: 17px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 28px;
}

.alumni-quote {
	border-left: 3px solid var(--pear-green);
	padding: 10px 16px;
	margin: 0 0 28px;
}

.alumni-quote p {
	font-size: 15px;
	line-height: 1.7;
	color: #555;
	font-style: italic;
	margin: 0 0 6px;
}

.alumni-quote cite {
	font-size: 12.5px;
	color: #999;
	font-style: normal;
	letter-spacing: 0.03em;
}

.alumni-body {
	font-size: 15.5px;
	line-height: 1.8;
	color: #666;
	margin: 0;
}

/* ── Image Frame ───────────────────────── */
.alumni-img-frame {
	position: relative;
	border-radius: 24px;
	overflow: visible;
}

.alumni-photo {
	width: 100%;
	height: 460px;
	object-fit: cover;
	border-radius: 24px;
	display: block;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Floating Badge */
.alumni-badge {
	position: absolute;
	bottom: -22px;
	left: -22px;
	background: var(--golden);
	border-radius: 18px;
	padding: 18px 22px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	min-width: 100px;
}

.alumni-badge-number {
	font-size: 32px;
	font-weight: 800;
	color: var(--primary-color);
	line-height: 1;
}

.alumni-badge-label {
	font-size: 12px;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.4;
	margin-top: 4px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}


/* Outreach new changes */

/* ── FLN SECTION ─────────────────────────────── */
.out-fln-section {
	padding: 90px 0;
	background: #f9fbf7;
}

.out-fln-image-wrap {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.out-fln-image-wrap img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.out-fln-image-wrap:hover img {
	transform: scale(1.03);
}

.out-fln-badge {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: #fff;
	border-radius: 50px;
	padding: 10px 20px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 14px;
	color: #1a1a2e;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.out-fln-badge i {
	color: #7aac00;
	font-size: 18px;
}

.out-fln-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.out-fln-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(173, 200, 37, 0.1);
	border: 1px solid rgba(173, 200, 37, 0.3);
	color: #4a6a00;
	font-size: 13.5px;
	font-weight: 600;
	padding: 8px 18px;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.out-fln-pill i {
	color: #7aac00;
	font-size: 14px;
}

.out-fln-pill:hover {
	background: rgba(173, 200, 37, 0.22);
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(173, 200, 37, 0.2);
}


/* ── RESEARCH & ADVOCACY SECTION ─────────────── */
.out-research-section {
	padding: 90px 0;
	position: relative;
	background:
		linear-gradient(rgba(18, 28, 22, 0.82), rgba(18, 28, 22, 0.82)),
		url('/public/assets/images/DSC01235.jpg') center / cover no-repeat;
	background-attachment: fixed;
}

/* Override text colours so they read well on dark bg */
.out-research-section .section-sub-title {
	color: #adc826 !important;
}

.out-research-section .section-sub-title::before,
.out-research-section .section-sub-title::after {
	background-color: #adc826 !important;
}

.out-research-section h2 {
	color: #ffffff !important;
}

.out-research-section>.container-xl>.row>.col-lg-8>.section-title>p,
.out-research-section .section-title p {
	color: rgba(255, 255, 255, 0.72) !important;
}

.out-research-card {
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 20px;
	padding: 32px 28px;
	display: flex;
	gap: 20px;
	align-items: flex-start;
	border: 1px solid rgba(255, 255, 255, 0.12);
	height: 100%;
	transition: all 0.35s ease;
}

.out-research-card:hover {
	background: rgba(255, 255, 255, 0.11);
	transform: translateY(-5px);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.out-research-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
}

.out-rc-green {
	background: rgba(84, 169, 84, 0.25);
	color: #7fd47f;
}

.out-rc-golden {
	background: rgba(242, 214, 46, 0.2);
	color: #f2d62e;
}

.out-rc-red {
	background: rgba(212, 56, 56, 0.2);
	color: #f08080;
}

.out-research-body h4 {
	font-size: 17px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 10px;
	line-height: 1.3;
}

.out-research-body p {
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.68);
	margin: 0;
	line-height: 1.75;
}

.out-research-body p strong {
	color: rgba(255, 255, 255, 0.9);
}


/* ========================================================
   VOLUNTEER BOTTOM ACTION CARD
   ======================================================== */
.volunteer-action-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 25px 35px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.03);
	/* border-left: 5px solid var(--golden); */
	transition: all 0.4s ease;
	max-width: 900px;
	margin: 0 auto;
}

.volunteer-action-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	border-left-color: var(--pear-green);
}

.action-card-content {
	display: flex;
	align-items: center;
	gap: 18px;
	text-align: left;
}

.action-card-icon {
	width: 50px;
	height: 50px;
	background: rgba(242, 214, 46, 0.15);
	/* Light Golden */
	color: var(--golden);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
	transition: all 0.4s ease;
}

.volunteer-action-card:hover .action-card-icon {
	background: rgba(173, 200, 37, 0.15);
	/* Light Pear Green */
	color: var(--pear-green);
	transform: scale(1.1) rotate(-10deg);
}

.action-card-text {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1.4;
	margin: 0;
}

/* Blogs css  */
.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.blog-content-body img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 20px 0;
}

.blog-content-body p {
	margin-bottom: 20px;
}

.blog-content-body h2,
.blog-content-body h3,
.blog-content-body h4 {
	margin-top: 40px;
	margin-bottom: 20px;
	color: var(--primary-color);
}

.blog-content-body blockquote {
	border-left: 4px solid var(--pear-green);
	padding: 20px 30px;
	margin: 30px 0;
	background: #f8f9fa;
	border-radius: 0 12px 12px 0;
	font-style: italic;
	color: #555;
}

/* Sidebar Social Icons */
.sidebar-donate-btn:hover {
	background-color: var(--primary-color) !important;
	color: #fff !important;
	transform: translateY(-2px);
}

.social-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	font-size: 16px;
	transition: all 0.3s ease;
	text-decoration: none;
	border: none;
	margin-left: 10px;
	margin-right: 10px;
}

.social-icon-btn.facebook {
	background-color: #3b5998;
}

.social-icon-btn.twitter {
	background-color: #1da1f2;
}

.social-icon-btn.instagram {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-btn.linkedin {
	background-color: #0077b5;
}

.social-icon-btn:hover {
	transform: translateY(-3px);
	background: #f8f9fa !important;
	color: #444 !important;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

/* pooja css */
ul#citizenshipTabs .nav-link.active {
    background-color: var(--golden) !important;
    border-color: var(--golden) !important;
    color: var(--primary-color) !important;
    box-shadow: 0 5px 15px rgba(242, 214, 46, 0.3);
}
ul#citizenshipTabs .nav-link{
border: 1px solid var(--divider-color) !important;
    color: var(--text-color) !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    font-family: var(--default-font), sans-serif;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    background-color: var(--white-color) !important;
    text-align: center;
}

  .collaboration-list li{
    list-style: none;
    margin: 10px;
    line-height: 25px;
  }
   .collaboration-list li i{
color:#Adc825;
   }

.img_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 20px;
}

.knw-partners-image {
    width: 100%;
    height: 250px; /* Adjust as needed */
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
/* Layout */

.knowledge-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
}

.knowledge-content{
    width:42%;
}

.masonry-gallery{
    width:58%;
}

/* Card */

.collaboration-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.collaboration-card h3{
    font-size:34px;
    margin-bottom:20px;
    font-weight:700;
}

.collaboration-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.collaboration-list{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.collaboration-list li{
    display:flex;
    align-items:center;
    margin-bottom:18px;
    font-size:17px;
}

.collaboration-list i{
    color:#2ca24c;
    margin-right:12px;
    font-size:18px;
}

/* Masonry Grid */

.masonry-gallery{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:170px;
    gap:18px;

}

.gallery-item{

    overflow:hidden;
    border-radius:18px;
    position:relative;
    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.gallery-item img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item.tall{

    grid-row:span 2;

}

.gallery-item.wide{

    grid-column:span 2;

}
.program-slider-pagination {
	display: none;
}
@media (max-width: 1024px) {
    .pm-floating-panel {
        display: none;
    }

    .pm-mobile-dropdown-open .pm-floating-panel {
        display: block !important;
    }
}

/* ═══════════════════════════════════════
   ACADEMIC EXCELLENCE – COMPARISON CARD
════════════════════════════════════════ */

.comparison-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 36px 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.comparison-header {
    text-align: center;
    margin-bottom: 24px;
}

.comparison-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 214, 46, 0.12);
    color: var(--golden);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 18px;
    border-radius: 40px;
}

.comparison-badge i {
    font-size: 14px;
}

.comparison-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.comparison-side {
    flex: 1 1 200px;
    text-align: center;
    padding: 16px 12px;
    border-radius: 16px;
    background: #fafaf8;
    transition: background 0.3s ease;
}

.comparison-green {
    background: rgba(173, 200, 37, 0.08);
    border-bottom: 4px solid var(--pear-green);
}

.comparison-gold {
    background: rgba(242, 214, 46, 0.08);
    border-bottom: 4px solid var(--golden);
}

.comparison-side:hover {
    background: #ffffff;
}

.comparison-percent {
    display: block;
    font-family: var(--heading-custom);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
}

.comparison-green .comparison-percent {
    color: var(--pear-green);
}

.comparison-gold .comparison-percent {
    color: var(--golden);
}

.comparison-label {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 0;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #bbb;
    padding: 0 10px;
    flex-shrink: 0;
}

.comparison-footer {
    margin-top: 28px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-multiplier {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.multiplier-number {
    font-family: var(--heading-custom);
    font-size: 36px;
    font-weight: 800;
    color: var(--brick-red);
    line-height: 1;
}

.multiplier-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.comparison-footnote {
    font-size: 13px;
    color: #999;
    margin: 12px 0 0;
    font-style: italic;
}

